/* ===================================
基本設定
=================================== */
html{ overflow-y:scroll; }
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
margin: 0;
padding: 0;
font-weight: normal;
font-style: normal;
}
li { list-style: none; }
/* ===================================
共通
=================================== */
/* フォント */
body {
font-family: "游ゴシック Medium","Yu Gothic Medium","游ゴシック",YuGothic,"メイリオ",Verdana,"Hiragino Kaku Gothic ProN",Meiryo,sans-serif;
}
select,input,button,textarea {
font-family: "游ゴシック Medium","Yu Gothic Medium","游ゴシック",YuGothic,"メイリオ",Verdana,"Hiragino Kaku Gothic ProN",Meiryo,sans-serif;
padding: 7px;
border-radius: 5px;
border: 1px solid #aaa;
font-size: 15px;
line-height: 1.8;
font-weight: 400;
}
/* ===================================
画面全体のレイアウト
=================================== */
/* 画面全体の表示設定 */
body {
background:WhiteSmoke; /* 背景色 */
text-align:center; /* フォームエリアを中央に表示 */
}
/* フォームエリア全体の設定 */
div.container {
width:960px; /* 画面の横幅 */
background:white; /* 背景色 */
border:Gainsboro 2px solid; border-top:none; /* 外枠のラインの色と太さ */
font-size:14px; /* フォントの初期サイズ */
color:#333; /* フォントの初期カラー */
margin:0 auto; /* 画面の中央に表示 */
text-align:left; /* 左寄せ */
}
/* ===================================
設問エリアのレイアウト
=================================== */
/* 設問エリア全体の設定 */
div.wrapper {
max-width:940px; /* 画面の横幅 */
width: 100%;
margin:0 auto; /* 中央に表示 */
background:white;
}
/* 設問の表 */
table.items {
border:Gainsboro 1px solid;
}
/* 設問の行 */
tr.item { } /* 必要であれば行のデザインを設定することができます */
/*設問名のセルのデザイン */
td.label {
width:150px; /* 実際の設問名の文字の長さに合わせて調整してください */
padding:4px 0 4px 5px;
color:#224;
font-size:13px;
font-weight:bold;
vertical-align:middle; /* ラベルの配置 セルの上部に表示したい場合は top */
background:GhostWhite;
}
/* 設問の入力セルおよび表示セルのデザイン */
td.value {
width:400px; /* 入力コントロールの幅に合わせて調整してください */
padding:3px 3px 0 3px;
border-bottom:GhostWhite 1px solid; /* 設問と設問の間の下線 */
background:White;
}
/* 設問の入力例/説明セルのデザイン */
td.comment {
font-size:12px;
padding-left:10px;
color:DarkSlateGray;
border-bottom:GhostWhite 1px solid;
background:White;
}
/* 入力セルの「氏」「名」の文字のデザイン */
span.label_name {
padding-right:5px;
font-size:85%;
font-weight:bold;
color:DarkSlateGray;
}
/* 入力確認画面、完了画面の入力された文字のデザイン */
p.value {
font-size:110%;
}
/* ボタンの表示エリアの設定 */
div.button_area {
max-width:940px;
width: 100%;
margin:10px auto 10px auto; /* 中央に表示、上下に10pxの余白 */
padding:10px 0 10px 0; /* ボタンとの上下の隙間のサイズ */
text-align:center; /* 中央にボタンを表示 */
}
/* 入力エラーメッセージのデザイン */
div.message {
padding:5px 10px 5px 10px; /* メッセージテキストと背景色の隙間のサイズ */
margin:10px 13px 10px 13px; /* 上 右 下 左 の隙間のサイズ */
font-size:14px;
font-weight:bold;
color:OrangeRed;
background:LightYellow;
}
/* 公開終了メッセージのデザイン */
div.finished-message {
padding:5px 10px 5px 10px; /* メッセージテキストと背景色の隙間のサイズ */
margin:10px 13px 10px 13px; /* 上 右 下 左 の隙間のサイズ */
font-size:14px;
font-weight:bold;
color:Crimson;
background:MistyRose;
}
/* ===================================
入力コントロールのデザイン
=================================== */
/* 確認/送信/戻る/登録ボタン */
input[type=button] {
font-size:18px;
background:SteelBlue; /* ボタンの色 */
padding:5px 10px 2px 10px; /* ボタンの文字の 上 右 下 左 の隙間のサイズ */
margin:0px 10px 0px 10px; /* 確認画面に表示される2つのボタンの左右の余白サイズ */
border:none; /* ボタンに枠線をつけたい場合は、ここを設定してください */
color:white; /* 文字の色 */
font-weight:bold;
}
input[type=button]:hover { cursor: pointer; }
/* 入力中のフィールドの背景色 */
/* それぞれの入力フィールドにカーソルが移動したときに背景の色が変わります。不要な場合は削除してください。 */
input[type="text"]:focus { background-color:LightYellow; } /* テキストボックス */
select:focus { background-color:LightYellow; } /* プルダウン */
textarea:focus { background-color:LightYellow; } /* テキストエリア */
/* ===================================
必須項目のマークおよびメッセージなど
=================================== */
/* 必須項目のマーク */
span.required {
float:right;
margin-right:4px;
font-size:60%;
font-weight:bold;
color:#E33E41;
}
span.required:after {
/* ここを編集することで表示されるマークを変更できます */
content:"※必須";
}
/* 必須項目についての説明文 */
p.required_msg {
text-align:left;
margin-right:4px;
font-size:15px;
font-weight:bold;
color:#E33E41;
}
p.required_msg:after {
/* ここを編集することで表示されるマークを変更できます */
content:"下記の必要事項をご入力ください。";
}
/* メールアドレスの再入力メッセージ */
p.label_mail {
margin:5px 0 1px 0;
font-size:85%;
font-weight:bold;
color:DarkSlateGray;
}
p.label_mail:after {
/* ここを編集することで表示されるメッセージを変更できます */
content:"確認のため、もう一度メールアドレスを入力してください";
}
/* ===================================
スマートフォン表示用のレイアウト
=================================== */
/* スマートフォンとして認識する画面の横幅のサイズ */
@media screen and ( max-width:768px ) {
/* フォームエリア全体の設定 */
div.container {
width: 100%;
}
/* 設問エリア全体の設定 */
div.wrapper {
width: 100%;
}
/* 設問の表 */
table.items {
width: 100%;
}
/*設問名のセルのデザイン */
td.label {
float: left;
width: 95%;
height: 25px;
padding-top:10px;
}
/* 必須項目のマーク */
span.required {
float:initial;
}
/* 設問の入力セルおよび表示セルのデザイン */
td.value {
float: left;
width: 95%; /* 入力コントロールの幅に合わせて調整してください */
padding-bottom: 0px;
}
/* 設問の入力例/説明セルのデザイン */
td.comment {
float: left;
width: 95%;
padding: 0px 2px 10px 2px;
}
/* 設問の入力例/テキストボックス */
input[type="text"]{
font-size: 120%;
width: 95% !important;
}
/* 設問の入力例/テキストエリア */
textarea {
width: 95%;
height: 100px;
}
/* ボタンの表示エリアの設定 */
div.button_area {
width: 95%;
}
}
/* ===================================
追加装飾
=================================== */
div.container {
width: 100%;
border: none;
}
#privacy_policy {
display: none;
}
div.message {
color:#E33E41
}
div.message,
div.finished-message {
margin-right: auto;
margin-left: auto;
}
table.items {
width: 100%;
border: none;
}
table.items,
table.items * {
box-sizing: border-box;
}
table.items tr.item {
border-bottom: solid 1px #ccc;
}
table.items input[type="text"],
table.items select,
table.items textarea {
width: 100%;
}
td.label {
position: relative;
width: 300px;
padding: 28px 0 20px 63px;
background: none;
font-size: 15px;
vertical-align: top;
border-bottom: solid 1px #ccc;
}
td.value {
padding: 16px 5px 10px;
border-bottom: none;
border-bottom: solid 1px #ccc;
vertical-align: top;
}
td.comment {
padding: 10px 5px;
border-bottom: solid 1px #ccc;
vertical-align: top;
}
span.required {
position: absolute;
left: 0;
top: 26px;
color: #FFF;
font-size: 11px;
padding: 4px 10px;
float: none;
background: #E33E41;
}
span.required::after {
content: "必須";
}
.indent {
display: block;
padding-left: 1em;
text-indent: -1em;
}
#frm_formconfirm td.label {
padding-left: 20px;
}
#item_6 td.value,
#item_17 td.value {
vertical-align: middle;
}
#item_7 input[type="text"],
#item_9 input[type="text"] {
width: 43%;
}
input[type=button] {
background: #96C03D;
color: #FFF;
border-radius: 3px;
padding: 10px 30px;
font-size: 14px;
border: none;
font-weight: normal;
}
input[type=button]#button_confirm_back {
background: #999;
}
/* #header */
#header {
padding: 30px 0 20px;
border-bottom: solid 1px #e6e6e6;
}
#header .wrapper {
display: table;
table-layout: fixed;
}
#header .logo {
display: table-cell;
vertical-align: bottom;
}
#header .link {
display: table-cell;
vertical-align: bottom;
font-size: 20px;
text-align: right;
vertical-align: bottom;
}
#header .link a {
display: inline-block;
padding-left: 20px;
position: relative;
text-decoration: none;
color:#333;
}
#header .link a::before {
content: '';
display: inline-block;
width: 10px;
height: 10px;
position: absolute;
top: calc(50% + 2px);
left: 0;
border-right: solid 1px;
border-top: solid 1px;
transform-origin: center center;
transform: rotate(45deg) translate(-50%, -50%);
color: #333;
}
.headerArea {
text-align: center;
padding: 60px 0;
}
#frm_formthanks .headerArea {
padding-bottom: 30px;
}
.headerArea .subtitle {
font-weight: bold;
font-size: 15px;
margin-bottom: 5px;
}
.headerArea .title {
font-weight: bold;
font-size: 26px;
margin-bottom: 10px;
}
.finishArea {
text-align: center;
}
.finishArea .title {
font-size: 21px;
margin-bottom: 30px;
font-weight: bold;
color: #E33E41;
}
.finishArea .comment {
text-align: left;
padding: 20px;
margin-bottom: 15px;
}
.finishArea .block {
margin-bottom: 30px;
}
.finishArea .block:last-child {
margin-bottom: 0;
}
.finishArea .ttl {
font-weight: bold;
font-size: 14px;
border-bottom: solid 1px #ccc;
margin-bottom: 10px;
padding-bottom: 5px;
}
/* #footer */
#footer {
text-align: center;
}
#footer .text {
padding: 20px 10px;
}
#footer .text.-left {
text-align: left;
}
#footer .copyright {
border-top: solid 1px #dddddd;
font-size: 11px;
padding: 30px 0 45px;
text-align: center;
}
@media (max-width: 768px) {
#footer .copyright {
padding: 15px;
}
}
#footer .copyright__inner {
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
}
#footer .copyright-nav {
font-size: 12px;
}
@media (max-width: 768px) {
#footer .copyright-nav {
font-size: 10px;
}
}
#footer .copyright-nav__inner {
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
}
@media (max-width: 768px) {
#footer .copyright-nav__inner {
width: 280px;
}
}
#footer .copyright-nav__item {
border-right: 1px solid #333;
padding: 0 15px;
}
#footer .copyright-nav__item:last-child {
border-right: none;
}
@media (max-width: 768px) {
#footer .copyright-nav__item {
border-right: none;
margin-bottom: 8px;
padding: 0 10px;
}
#footer .copyright-nav__item:first-child {
border-right: 1px solid #333;
padding-left: 0;
}
#footer .copyright-nav__item:last-child {
padding-left: 0;
}
}
#footer .copyright-nav__link {
color: #333;
display: block;
line-height: 1;
text-decoration: none;
}
#footer .copyright-nav__link:hover {
text-decoration: underline;
}
@media (max-width: 768px) {
#footer .copyright-text {
font-size: 10px;
padding-top: 12px;
text-align: center;
width: 100%;
}
}
@media screen and ( max-width:991px ) {
td.label {
width: 250px;
}
td.value {
width: 300px;
}
}
@media screen and ( max-width:768px ) {
div.message,
div.finished-message {
margin-right: 10px;
margin-left: 10px;
}
p.required_msg {
padding-right: 10px;
padding-left: 10px;
}
table.items tr.item {
display: block;
}
table.items input[type="text"],
table.items select,
table.items textarea {
width: 100% !important;
font-size: 120%;
}
td.label {
display: block;
width: 100%;
float: none;
height: auto;
padding: 20px 10px 10px 63px;
border-bottom: none;
}
td.value,
td.comment {
display: block;
width: 100%;
float: none;
border-bottom: none;
}
td.value {
padding: 10px;
}
td.comment {
margin-bottom: 5px;
}
td.comment:empty {
display: block;
line-height: 1;
padding: 0;
}
span.required {
top: 19px;
left: 10px;
}
#frm_formconfirm td.label {
padding-left: 10px;
}
.button_area {
display: -webkit-flex;
display: flex;
-webkit-flex-wrap: wrap;
flex-wrap: wrap;
}
.button_area input {
width: 100%;
display: block;
margin:0 0 10px;
}
.button_area input:last-child {
margin-bottom: 0;
}
.button_area #button_confirm_submit {
-webkit-order: 0;
order: 0;
}
.button_area #button_confirm_back {
-webkit-order: 1;
order: 1;
}
#header {
padding: 10px 0;
}
#header .wrapper {
align-items: center;
}
#header .logo {
width: 110px;
vertical-align: middle;
font-size: 0;
padding-left: 15px;
}
#header .logo img {
vertical-align: middle;
max-width: 100%;
height: auto;
}
#header .link {
vertical-align: middle;
padding-top: 3px;
font-size: 10px;
font-size: 1rem;
padding-right: 15px;
}
#header .link a {
vertical-align: middle;
padding-left: 12px;
line-height: 1;
font-size: 11px;
}
#header .link a::before {
top: 50%;
width: 6px;
height: 6px;
}
.headerArea {
padding: 30px 10px;
}
#frm_formthanks .headerArea {
padding-bottom: 15px;
}
.headerArea .title {
font-size: 24px;
}
.headerArea .comment {
text-align: left;
}
.finishArea {
text-align: left;
}
.finishArea .title {
font-size: 18px;
margin-bottom: 20px;
text-align: center;
}
.finishArea .comment {
padding: 20px 10px;
}
.finishArea .block {
margin-bottom: 20px;
}
#footer .text {
text-align: left;
}
}
.modList01 {
font-size: 14px;
text-align: left;
}
@media (max-width: 768px) {
.modList01 {
font-size: 13px;
}
}
.modList01__item {
margin-bottom: 15px;
}
@media (max-width: 768px) {
.modList01__item {
margin-bottom: 10px;
}
}
.modList01__item:last-child {
margin-bottom: 0;
}
.modList01 dt {
font-weight: bold;
margin-bottom: 5px;
}
プライバシーポリシーに同意の上、送信してください。
同意して送信すると、Cookieにより当社のWebサイト上における閲覧履歴と個人情報を紐付けて把握、分析する場合があります。