<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/* =============================================== */
/* basic - 共通基本設定 */
/* ----------------------------------------------- */
@media(max-width:768px) {
  .pc {
    display: none;
  }
}
@media(min-width:769px) {
  .smp {
    display: none;
  }
}

/* リセットcss */
article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
  display: block;
  margin: 0;
  padding: 0;
}
html, h1, h2, h3, h4, dl, dt, dd, ul, li, p, img {
  margin: 0;
  padding: 0;
}
ul {
  list-style-type: none;
}

/* ボディ */
body {
    font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
    font-weight: 300;
    font-size: 1em;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: #bab5bd;
    color: #171717;
    -webkit-text-size-adjust: 100%;
}

a:link {text-decoration: underline; color: #e70011;}
a:visited {text-decoration: underline; color: #e70011;}
a:active {text-decoration: underline; color: #e70011;}
a:hover {text-decoration: none; color: #e70011;}

/* 画像関連 */
img {
    border: none;
    vertical-align: bottom;
}

/* 罫線 */
hr {
    height: 0;
    margin: 0 auto;
    padding: 0;
    border: 0;
    width: 96%;
    border-bottom: 1px solid #666;
}

.solid {border-top: 3px #666 solid;}
.dotted {border-top: 3px #666 dotted;}
.dashed {border-top: 1px #666 dashed;}
.double {border-top: 3px #666 double;}

/* ページレイアウト */
header{
    width: 100%;
}

.logo{
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 1%;
    position: relative;
    z-index: 1;
	background-color: #171717;
	text-align: center;
	border-bottom: 3px double #bab5bd;
}
.logo img{
	width: 100%;
	max-width: 800px;
	margin: 50px auto;
}
@media(max-width:768px){
  .logo img{margin: 30px auto 15px;}
}
#wrapper {
    width: 90%;
    max-width: 800px;
    margin: 40px auto 0;
    padding: 0;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.lead{
    font-size: 110%;
    padding: 15px 0;
    text-align: center;
	font-weight: 600;
}
@media(max-width:768px){
  .lead{text-align: left;}
}

.copyright{
    color: #666;
    font-size: 80%;
    text-align: center;
    padding: 15px 0 40px;
}

/* iOSでのデフォルトスタイルをリセット */
input[type="submit"], input[type="button"] { -webkit-appearance: none; }

/* =============================================== */
/* contents - 中身 */
/* ----------------------------------------------- */
section{
    background-color: #fff;
    margin: 30px auto;
    padding: 5%;
    border: 1px solid #171717;
}

h1 {
    position: relative;
    overflow: hidden;
    padding: 1rem 1.5rem 1rem 100px;
    border: 2px solid #171717;
    font-size: 110%;
    background-color: #f0f0f0;
    color: #171717;
}
@media(max-width:768px){
  h1{font-size: 100%; padding: 0.7rem 1rem 0.7rem 80px;}
}

h1:before {
    position: absolute;
    top: -150%;
    left: -100px;
    width: 180px;
    height: 300%;
    content: '';
    -webkit-transform: rotate(25deg);
    transform: rotate(25deg);
    background: #171717;
}
@media(max-width:768px){
  h1:before{width: 160px;}
}

h1 span {
  font-size: 20px;
  font-size: 2rem;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  display: block;
  padding-top: 3px;
  padding-left: 16px;
  color: #fff;
}
@media(max-width:768px){
  h1 span{font-size: 15px;font-size: 1.5rem;}
}

h2{
    padding: 1rem 1.5rem;
    border: 2px solid #e70011;
    font-size: 110%;
    background-color: #fdeaf5;
    color: #e70011;
    text-align: center;
}
@media(max-width:768px){
  h2{font-size: 100%;}
}

/* フォームテキスト枠 */
.cp_iptxt {
	position: relative;
	width: 94%;
	margin: 40px 3%;
}
.cp_iptxt input[type='text'] {
	font: 15px/24px sans-serif;
	box-sizing: border-box;
	width: 100%;
	padding: 0.3em 0;
	transition: 0.3s;
	letter-spacing: 1px;
	color: #444;
	border: none;
	border-bottom: 2px solid #000;
	background: transparent;
}
.ef input[type='text']:focus {
	border-bottom: 2px solid #e70011;
	outline: none;
}

/* フォームボタン */
button {
    display: inline-block;
    padding: 0.7em 2em;
    text-decoration: none;
    color: #e70011;
    border: solid 2px #e70011;
    border-radius: 50px;
    font-size: 90%;
    transition: .4s;
    margin: 1em;
    background: #ffedee;
}

button:hover {
    background: #e70011;
    color: white;
}
button:visited {background: #ffedee;}
button:active {background: #ffedee;}

/* =============================================== */
/* トップページ */
/* ----------------------------------------------- */
.btn {
    display: inline-block;
    padding: 0.7em 2em;
    text-decoration: none;
    color: #e70011;
    border: solid 2px #e70011;
    border-radius: 50px;
    font-size: 90%;
    transition: .4s;
    margin: 1em;
    background: #ffedee;
}

.btn:hover {
    background: #e70011;
    color: white;
}
.btn:visited {background: #ffedee;}
.btn:active {background: #ffedee;}

/* =============================================== */
/* 確認ページ */
/* ----------------------------------------------- */
.box{
    padding: 20px 0;
}

.box table{
    width: 100%;
    max-width: 600px;
    margin: 20px auto;
    border-collapse: collapse;
    text-align: center;
    border: 1px solid #ccc;
}

.box th{
    font-weight: 500;
    width: 30%;
    padding: 1em;
    font-size: 80%;
    background-color: #eee;
    border-bottom: 1px solid #ccc;
}
@media(max-width:768px){
  .box th{width: 100%; display: block; padding: 1em 0;}
}

.box td{
    font-weight: 500;
    width: 70%;
    padding: 1em;
    border-bottom: 1px solid #ccc;
    text-align: left;
}
@media(max-width:768px){
  .box td{width: 100%; display: block; padding: 1em 0; text-align: center;}
}

#mailComfirm form {
    text-align: center;
}

#mailComfirm input {
    display: inline-block;
    padding: 0.7em 2em;
    text-decoration: none;
    color: #999;
    border: solid 2px #999;
    border-radius: 50px;
    font-size: 90%;
    transition: .4s;
    margin: 1em;
    background: #ffedee;
}

#mailComfirm input:hover {
    background: #e70011;
    border: solid 2px #e70011;
    color: white;
}
#mailComfirm input:visited {background: #ffedee;}
#mailComfirm input:active {background: #ffedee;}

/* =============================================== */
/* エラーページ */
/* ----------------------------------------------- */
#mailError form {
    text-align: center;
    margin: 0 auto 30px;
    padding: 0 0 30px;
    width: 90%;
    max-width: 800px;
    background-color: #fff;
}

#mailError section{
    text-align: center;
    margin: 30px auto 0;
    padding: 5% 5% 0;
    border: none;
}

/* =============================================== */
/* 完了ページ */
/* ----------------------------------------------- */
#mailResult section{
    text-align: center;
}

#mailResult section p{
    display: inline-block;
    padding: 0.7em 2em;
    text-decoration: none;
    color: #999;
    border: solid 2px #999;
    border-radius: 50px;
    font-size: 90%;
    transition: .4s;
    margin: 1em;
}

#mailResult section p:hover {
    background: #e70011;
    border: solid 2px #e70011;
    color: white;
}

.caution{
    width: 90%;
    max-width: 700px;
    margin: 0 auto;
    font-size: 90%;
    line-height: 1.4;
    padding: 10px 5%;
}
.caution a:link {text-decoration: underline; color: #e70011;}
.caution a:visited {text-decoration: underline; color: #e70011;}
.caution a:active {text-decoration: underline; color: #e70011;}
.caution a:hover {text-decoration: none; color: #e70011;}

/* =============================================== */
/* clearfix - クリアフィックス設定 */
/* ----------------------------------------------- */
.clearfix:after {
  content: " ";
  display: block;
  clear: both;
}

/* =============================================== */
/* other - その他 */
/* ----------------------------------------------- */

/* ほか */
.ex-large {font-size: 140%;}
.large {font-size: 120%;}
.small {font-size: 80%;}
.ex-small {font-size: 60%;}

.bold {font-weight: 900;}
.normal {font-weight: 300;}

.yellow {color: #c2b826;}
.red {color: #FF0000;}
</pre></body></html>