@charset "utf-8";

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 * 
 * html/body
 * 
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

html * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
}

html {
	font-size: 62.5%; /* font-sizeは10px */
}

@media screen and (min-width: 1920px) {
    html {
        font-size: 75%; /* font-sizeは12px */
    }
}

*, *:after, *:before {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

/* リンクなどの要素をタップした時の色を消す */
* {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* 行頭禁則文字 */
* {
	word-break: break-word;
	word-wrap: break-word;
}

body {
	position: relative;
	z-index: 0;
	width: 100%;
	margin: 0;
	padding: 0;
	background: #f7f1e1;
	line-height: 1.5;
	font-family: "YuGothic", "游ゴシック","Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3","Meiryo","ＭＳ Ｐゴシック","MS PGothic", sans-serif;
	font-size: 16px;
	font-weight: 400;
	font-style: normal;
	color: #000000;
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 * 
 * display
 * 
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.disp {
	display: block !important;
}

.disp-none {
	display: none !important;
}

.disp-table {
	display: table !important;
}

.disp-inline {
	display: inline !important;
}

.disp-inline-block {
	display: inline-block !important;
}

/*----- スマホ対応 ----- */

.sp-disp {
	display: none !important;
}

.sp-disp-table {
	display: none !important;
}

.sp-disp-inline {
	display: none !important;
}

.sp-disp-inline-block {
	display: none !important;
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 * 
 * visibility
 * 
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.visibility-hidden {
	visibility: hidden !important;
}

.visibility-visibile {
	visibility: visible !important;
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 * 
 * main-visual
 * 
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.main-visual {
	overflow: hidden;
	position: relative;
    z-index: 0;
	width: 100%;
	height: 70vh;
    background: url('../images/bg-mv.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.main-visual-overlay {
	z-index: 2;
	position: absolute;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
    background: rgba(0,0,0,0.2);
}

.mv-bg-contents {
    position: absolute;
    top: 50%;
    left: 0;
    z-index: 3;
    width: 100%;
    height: auto;
    transform: translate(0, -50%);
}

.mv-logo {
    position: relative;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.mv-logo {
    width: 40%;
    height: auto;
    filter: drop-shadow(0px 0px 4px #000000);
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 * 
 * footer
 * 
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

footer {
	position: relative;
	width: 100%;
}

.copyright-wrap {
	position: relative;
	clear: both;
	padding: 15px 0;
	width: 100%;
	border-top: 1px solid rgba(255,255,255,0.2);
}

.copyright {
    display: block;
	width: 1000px;
    margin: 0 auto;
    text-align: center;
	font-weight: 400;
	font-style: normal;
	font-size: 12px;
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 * 
 * article/section
 * 
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

article {
	position: relative;
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
}

section {
	position: relative;
	width: 100%;
	margin: 0 auto;
	padding: 0;
}

section p {
	line-height: 2.5;
	font-size: 16px;
}

section ul li {
	font-size: 16px;
}

section ul li ul li {
	list-style: ' - ';
    line-height: 1.5;
}

section ol li ul li {
	list-style: ' - ';
    margin-left: 10px;
    line-height: 1.5;
}

section a {
	color: #d76a70;
}

section a:hover {
    color: #d76a70;
	text-decoration: underline;
}

.section-inner {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: 100px 0;
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 * 
 * heading
 * 
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.h2 {
	position: relative;
	margin-bottom: 50px;
	line-height: 1.2;
    text-align: center;
    font-weight: bold;
    font-size: 24px;
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 * 
 * common parts
 * 
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

hr {
	display: block;
	width: 100%;
	height: 1px;
	margin: 20px auto;
	background-color: rgba(255,255,255,0.2);
	border: 0;  /*デフォルトデザインでは線がある場合があるので、消しておく。*/
}

.link-btn {
	position: relative;
	display: inline-block;
	height: 60px;
    width: 345px;
	margin: 0;
	border-radius: 80px;
	background: #3c2d1e;
	line-height: 60px;
    font-weight: bold;
    color: #ffffff;
    text-align: center;
	transition: all 300ms linear;
    cursor: pointer;
}

.link-btn:hover {
	text-decoration: none;
    color: #ffffff;
	opacity: 0.7;
}

blockquote {
	width: 90%;
	margin: 20px auto;
	padding: 30px;
	background: #fafafa;
	line-height: 1.5em;
	border: 3px solid #dddddd;
	border-radius: 6px;
}

.note {
	margin: 20px auto;
	line-height: 1.5em;
	font-size: 14px;
}

.note dt {
	position: relative;
}

.note dt span {
	position: absolute;
}

.note dd {
	padding-left: 1em;
	padding-bottom: 10px;
}

.atten {
	width: 80%;
	margin: 20px auto;
	padding: 30px;
	line-height: 1.8;
	border: 1px solid rgba(255,255,255,0.2);
	border-radius: 6px;
}

.atten p,
.atten ul li {
    font-size: 14px;
}

.table {
	border-collapse : collapse ;
	position: relative;
	width: 100%;
	margin: 0 auto 50px;
	border-top: 1px solid #555555;
}

.left-td {
	position: relative;
	width: 25%;
	padding: 15px 10px 15px 0;
	border-bottom: 1px solid #555555;
	vertical-align: middle;
    font-weight: bold;
}

.right-td {
	position: relative;
	width: 75%;
	padding: 15px 0;
	border-bottom: 1px solid #555555;
	vertical-align: middle;
}

.pic {
    width: 100%;
    margin-bottom: 50px;
    text-align: center;
}

.pic img {
    width: 100%;
    border-radius: 10px;
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 * 
 *top page
 * 
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/*-------------------------  top-wrapper ------------------------- */

.wrapper {
	overflow: hidden;
	position: relative;
    width: 1000px;
    margin: 0 auto 100px;
    padding: 0 50px 0;
}

/*-------------------------  section intro ------------------------- */

#section-intro {
    position: relative;
	width: 100%;
	margin: 0 auto;
}

.intro-logo {
    margin: 0 auto;
    text-align: center;
}

.intro-logo img {
    width: 500px;
}
