@charset "utf-8";

/* -------------------------------- 
Primary style
-------------------------------- */

html * {}

*, *:after, *:before {
	box-sizing: border-box;
	}

body {
 	font-size: 100%;
 	font-family: 'NotoSansCJKjp', sans-serif;
	font-weight: 400;
 	color: #666;
 	background-color: white;
	}

body, html {
	/* important */
	height: 100%;
	}

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

a:hover {
	color: #008FFF;
	}



/* canvas-wrap
---------------------------------------------------------- */

#canvas-wrap {
	margin: 0px;
	padding: 0px;
	width: 100%;
	height: 100%;
	position: relative;
	}

#canvas-container {
	width: 100%;
	height: 100%;
	margin: 0px;
	padding: 0px;
	position: fixed;
	z-index: 1;
	}


/* -------------------------------- 
Modules - reusable parts of our design
-------------------------------- */

.cd-container {
	width: 90%;
	max-width: 768px;
	margin: 0 auto;
	}

.cd-container h1 {
	font-weight: 300;
	font-size: 2.5rem;
	line-height: 1.2em;
	font-family: 'Noto Serif Japanese';
	margin: 0px 0px 50px;
	padding: 0px;
	}

.cd-container h1 + p { margin-bottom: 2em;}

.cd-container h1 span {
	font-weight: 500;
	font-size: 1.8rem;
	line-height: 1.2em;
	font-family: 'NotoSansCJKjp';
	}

.cd-container h2 {
	font-weight: 300;
	font-size: 2rem;
	line-height: 1.2em;
	font-family: 'Noto Serif Japanese';
	margin: 0px 0px 50px;
	padding: 0px 0px 0px 20px;
	border-left: 3px solid #f60;
	}

.cd-container h2 span {
	font-weight: 500;
	font-size: 1.6rem;
	line-height: 1.2em;
	font-family: 'NotoSansCJKjp';
	}

.cd-containerp {
	line-height: 1.7em;
	margin: 0px 0px 30px;
	}

.cd-container p:last-child {
	text-align: right;
	margin: 3em 0px;
	}

.cd-container::after {
 	content: '';
 	display: table;
 	clear: both;
	}

.cd-container h3 {
	font-weight: 500;
	font-size: 1.4rem;
	line-height: 1.2em;
	font-family: 'Noto Serif Japanese';
	margin: 2em 0px 1em;
	padding: 0px 0px 0.3em;
	border-bottom: 3px dotted #3d3536;
	}

.cd-container dl {
	margin: 0px;
	padding: 0px;
	}

.cd-container dt,
.cd-container h3 + p,
.cd-container ul li {
	font-weight: 500;
	font-size: 1.2rem;
	line-height: 1.7em;
	background: url("../images/iconA.svg") no-repeat 0px 7px;
	margin: 0px 0px 0px 1em;
	padding: 0px 0px 0px 1.2em;
	background-size: 1em 1em;
	}

.cd-container dd {
	font-weight: 500;
	font-size: 1.2rem;
	line-height: 1.7em;
	padding: 0px 0px 0px 3em;
	margin: 0px 0px 1em;
	}


/* -------------------------------- 
Main components 
-------------------------------- */

.cd-header {
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 50px;
	background: rgba(0, 0, 0, 0.5);
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
	z-index: 3;
	}

.cd-header:after {
 	content: "";
 	display: table;
 	clear: both;
	}

.cd-header #cd-logo {
	float: left;
	margin: 13px 0 0 5%;
	}

.cd-header #cd-logo h1 {
	font-weight: 700;
	}

.cd-header aside {
	position: absolute;
	top: 75px;
	right: 5px;
	display: flex;
	justify-content: space-between;
	}

.cd-header aside iframe {
	width: auto;
	height: auto;
	}

.cd-header aside iframe:first-child {
	width: 140px;
	height: auto;
	}

.cd-header aside iframe:nth-child(2) {
	width: 76px !important;
	height: auto;
	}

.cd-header aside iframe html #facebook .svg {
	width: auto;
	height: auto;
	}

@media only screen and (min-width: 768px) {
	.cd-header {
		height: 70px;
	}
	.cd-header #cd-logo {
		margin: 23px 0 0 5%;
	}
}

.cd-main-nav {
 	float: right;
 	margin-right: 5%;
 	width: 44px;
 	height: 100%;
 	background: url("../images/cd-icon-menu.svg") no-repeat center center;
 	background-size: 44px 44px;
 	cursor: pointer;
	}

.cd-main-nav ul {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transform: translateY(-100%);
	}

.cd-main-nav ul.is-visible {
  transform: translateY(50px);
	}

.cd-main-nav a {
  display: block;
  height: 50px;
  line-height: 50px;
  padding-left: 5%;
  background: #2f292a;
  border-top: 1px solid #453c3d;
  color: #8e7d7f;
	}

/* ---------------------------------------------------------------- 
ページの先頭へ
--------------------------------------------------------------- - */

#page-top {
	position: fixed;
	bottom: 0px;
	right: 0px;
	width: 100%;
	height: 40px;
	background: rgba(0, 0, 0, 0.5);
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
	z-index: 4;
	text-align: center;
	font-family: 'NotoSansCJKjp', sans-serif;
	font-weight: 700;
	}

#page-top a {
	text-decoration: none;
	color: #fff;
	padding: 0px;
	line-height: 40px;
	}

#page-top a:hover {
	text-decoration: none;
	}

/* ---------------------------------------------------------------- 
フォーム部分
--------------------------------------------------------------- - */

iframe {
	margin: 0px;
	padding: 0px;
	width: 768px;
	height: 700px;
	overflow: hidden;
	}

#form {
	margin: 0px;
	padding: 0px;
	background-color: #C5AE58;
	}

form {
	margin: 20px 0px;
	padding: 0px;
	}

form p {
	font-size: 1.2rem;
	color: #3d3536;
	line-height: 1.5em;
	border-top: solid 1px #fff;
	padding: 5px 0px 0px 0px;
	margin: 0px 0px 15px 0px;
	}

form p span.pointTxt {
	color: #c00;
	}

input,
textarea { box-sizing: border-box;}

input[type="text"],
textarea {
	margin: 0.5em 0px;
	border:  1px solid #ccc;
	padding: 0.25em;
	font-size: 1.2rem;
	color: #999;
	border-radius: 6px;
	}

textarea {
	margin: 0.5em 0px;
	border:  1px solid #ccc;
	padding: 0.25em;
	font-size: 1.2rem;
	color: #999;
	border-radius: 6px;
	width: 100%;
	height: 10em;
	}

input[type="text"]:focus,
	textarea:focus {
	background-color: #e2ecf6;
	}

input[type="submit"],
input[type="reset"] {
	border: 1px solid #0086f9;
	border-radius: 6px;
	padding: 12px 48px; 
	font-size: 16px;
	background: linear-gradient(0deg, #0086f9, #b6d6f7);
	color: #fff;
	font-weight: bold;
	}

input[type="submit"]:hover,
input[type="reset"]:hover {
	background: linear-gradient(0deg, #2894f9, #d2e4f7);
	}

input[type="submit"]:active,
input[type="reset"]:active {
	background: linear-gradient(0deg, #0074d8, #b6d6f7);
	}


@media only screen and (min-width: 768px) {

.cd-main-nav {
    width: auto;
    height: auto;
    background: none;
    cursor: auto;
  	}
	
.cd-main-nav ul {
    position: static;
    width: auto;
		line-height: 70px;
		transform: translateY(0%);
  	}
	
 .cd-main-nav ul.is-visible {
   	transform: translateY(0);
  	}

  .cd-main-nav li {
    display: inline-block;
    margin-left: 1em;
  	}

.cd-main-nav a {
	display: inline-block;
	height: auto;
	line-height: normal;
	background: transparent;
	padding: .6em 1em;
	border-top: none;
	color: #fff;
	text-transform: uppercase;
	font-weight: bold;
	font-size: 0.875rem;
	}

.no-touch .cd-main-nav a:hover { color: #008FFF;}

}

.cd-main-content {
 	height: 100%;
 	position: relative;
 	z-index: 0;
	}

.cd-fixed-bg {
	position: relative;
	min-height: 100%;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	z-index: 2;
	}
	
.shikakuA {
	width: 100%;
	background: url(../images/bg-shikakuA.svg) 0px -20px repeat-x;
	height: 40px;
	position: absolute;
	top: 0px;
	left: 0px;
	}

.shikakuB {
	width: 100%;
	background: url(../images/bg-shikakuB.svg) 0px 20px repeat-x;
	height: 40px;
	position: absolute;
	bottom: 0px;
	left: 0px;
	}

.shikakuC {
	width: 100%;
	background: url(../images/bg-shikakuB.svg) 0px -20px repeat-x;
	height: 40px;
	position: absolute;
	top: 0px;
	left: 0px;
	}


.cd-fixed-bg h1, .cd-fixed-bg h2 {
	position: absolute;
	left: 50%;
	top: 50%;
	bottom: auto;
	right: auto;
 	transform: translateX(-50%) translateY(-50%);
 	width: 90%;
 	max-width: 1170px;
 	text-align: center;
 	font-size: 1.875rem;
 	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
 	color: white;
	line-height: 0.8em;
	}

.cd-fixed-bg h2 span {
	font-weight: 500;
	font-size: 1.4rem;
	line-height: 1em;
	}

.cd-fixed-bg-Box {
	position: absolute;
	left: 50%;
	top: 50%;
	bottom: auto;
	right: auto;
 	transform: translateX(-50%) translateY(-50%);
 	width: 90%;
 	max-width: 1170px;
 	text-align: center;
 	font-size: 1.875rem;
 	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
 	color: white;
	}

.cd-fixed-bg-Box h2 {
	margin: 0px 0px 0.2em;
	position: relative;
	top: auto;
	bottom: auto;
	right: auto;
 	text-align: center;
 	font-size: 1.875rem;
 	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
 	color: white;
	}

.cd-fixed-bg-Box p,
.cd-fixed-bg-Box address {
 	text-align: center;
 	font-size: 1.2rem;
 	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
 	color: white;
	}

.cd-fixed-bg.cd-bg-1 {
	background-image: url("../images/cd-background-1.webp");
	}

.cd-fixed-bg.cd-bg-1 h2 {
	width: 65%;
	}

.cd-fixed-bg.cd-bg-2 {
 background-image: url("../images/cd-background-2.webp");
	}

.cd-fixed-bg.cd-bg-3 {
 background-image: url("../images/cd-background-3.webp");
	}

.cd-fixed-bg.cd-bg-4 {
 background-image: url("../images/cd-background-4.webp");
	}

.cd-fixed-bg.cd-bg-5 {
 background-image: url("../images/cd-background-5.webp");
	}


@media only screen and (min-width: 768px) {
  .cd-fixed-bg h1, .cd-fixed-bg h2 {
    font-size: 36px;
  }
}

@media only screen and (min-width: 1170px) {

  .cd-fixed-bg {
    background-attachment: fixed;
 	}

  .cd-fixed-bg h1, .cd-fixed-bg h2 {
    font-size: 48px;
    font-weight: 300;
	}
}

.cd-scrolling-bg {
 	position: relative;
 	min-height: 100%;
 	padding: 4em 0;
	line-height: 1.6;
	z-index: 3;
	}

.cd-scrolling-bg.cd-color-1 {
	background-color: #90BC8E;
	color: #3d3536;
	}

.cd-scrolling-bg.cd-color-4 {
background-color: #C5AE58;
	color: #3d3536;
	}


/* SNARK TUNE 文中
--------------------------------- */

.cd-scrolling-bg.cd-color-2 {
	background-color: #fff;
	color: #3d3536;
	}

.cd-scrolling-bg.cd-color-3 {
  background-color: #8BCEF7;
  color: #3d3536;
}
@media only screen and (min-width: 768px) {
  .cd-scrolling-bg {
    padding: 5em 0px;
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 2;
    font-weight: 300;
  }
}
