@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 */
}

*, *: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: "游ゴシック","Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3","Meiryo","ＭＳ Ｐゴシック","MS PGothic", sans-serif;
	font-size: 16px;
    font-weight: 400;
	color: #000000f;
}

@media screen and (max-width: 479px) {
    body {
        font-size: 14px;
    }
}

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

@media screen and (max-width: 479px) {
    .sp-disp {
        display: block !important;
    }

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

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

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

    .sp-disp-none {
        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: 40vh;
    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: 60%;
    height: auto;
    filter: drop-shadow(0px 0px 4px #000000);
}

@media screen and (max-width: 479px) {
    .mv-logo {
        width: 90%;
        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: 100%;
    margin: 0 auto;
    text-align: center;
	font-weight: 400;
	font-style: normal;
	font-size: 10px;
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 * 
 * 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 ol 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 {
    width: 100%;
    margin: 0 auto;
    padding: 50px 5%;
}

@media screen and (max-width: 479px) {
    section p {
        line-height: 1.8;
        font-size: 14px;
    }

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

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

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

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

@media screen and (max-width: 479px) {
    .h2 {
        position: relative;
        margin-bottom: 30px;
        line-height: 1.5;
        text-align: center;
        font-weight: bold;
        font-size: 18px;
    }
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 * 
 * 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: 280px;
	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: 1;
}

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;
}

@media screen and (max-width: 479px) {
    .atten {
        width: 100%;
        margin: 20px auto;
        padding: 15px;
        line-height: 1.8;
        border: 1px solid rgba(255,255,255,0.2);
        border-radius: 6px;
    }
    
    .atten p,
    .atten li {
        font-size: 12px;
    }
}

@media screen and (max-width: 479px) {
    .table {
        display: block;
        border-collapse : collapse ;
        position: relative;
        width: 100%;
        margin: 0 auto 50px;
        border-top: none;
    }
    
    .table tbody {
        display: block;
        width: 100%;
    }
    
    .table tr {
        display: block;
        width: 100%;
    }

    .left-td {
        display: block;
        position: relative;
        width: 100%;
        padding: 10px 0;
        border-bottom: none;
        border-radius: 6px;
        background: #ecdeb9;
        vertical-align: middle;
        text-align: center;
        font-weight: bold;
    }

    .right-td {
        display: block;
        position: relative;
        width: 100%;
        padding: 15px 0;
        border-bottom: none;
        vertical-align: middle;
    }

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

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


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

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

.wrapper {
	overflow: hidden;
	position: relative;
    width: 100%;
    padding: 0;
    padding-top: 100px;
    margin: 0;
    border-radius: 0;
}

@media screen and (max-width: 479px) {
    .wrapper {
        overflow: hidden;
        position: relative;
        width: 100%;
        padding: 0;
        padding-top: 30px;
        margin: 0;
        border-radius: 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;
}

@media screen and (max-width: 479px) {
    .intro-logo img {
        width: 100%;
    }
}
