@charset "UTF-8";

/*-----------------------------------------------------	*/
/*	基本設定					                         */
/*-----------------------------------------------------	*/

html {
  -webkit-overflow-scrolling: touch; /* iosバグ回避　スマホスクロールスムーズにする */
}

body {
  font-family: "游ゴシック体", "游ゴシック", "YuGothic", "Yu Gothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  color: #464646;
  background: #faf7f2;
  margin: 0px;
  font-size: 1.3em;
  line-height: 1.8em;
  letter-spacing: 0.1em;
}

ul {
    list-style-type: none;
    padding: 0px;
    margin: 0px;
	letter-spacing: -.40em; /* inline-block隙間除去 文字間を詰めて隙間を削除する */
}

ul li {
	list-style-type: none;
	letter-spacing: normal; /* inline-block隙間除去 文字間を通常に戻す */
}

h1,h2,h3,h4,h5,p {
  margin: 0px; /* 初期化 */
}

img {
	width:100%;
	max-width: 100%;
	height: auto;
	vertical-align:bottom; /* img隙間をなくす */
	border: 0px; /* IE10以下で画像周りの青い線を非表示 */
}

*, *:before, *:after {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
         -o-box-sizing: border-box;
        -ms-box-sizing: border-box;
        box-sizing: border-box;
}

/* リンク設定
a:link		{ color:#333333; text-decoration: none; }
a:visited	{ color:#333333; }
a:hover		{ color:#5a5758; }
a:active	{ color:#333333; }

 */

/* フォーカスした際に線が入るのを消す処理 */
*:focus {
  outline: none;
}

/* float 解除 Clearfix */
.clearfix:after {
	content: "";
	display: block;
	clear: both;
}

/* 中央揃え */
.text-center {
    text-align: center;
}

/* 赤文字 */
.color-red {
    color: #da3735;
}

@media screen and (max-width: 1199px) {
    /* 全体フォント */
    body {
          font-size: 1.1em;
    }
}

@media screen and (max-width: 767px) {
    /* 全体フォント */
    body {
          font-size: 1em;
    }
}

/*-----------------------------------------------------	*/
/*	共通					                               */
/*-----------------------------------------------------	*/

.inner-width {
    max-width: 1100px;
    margin: 0px auto;
}

.inline-block {
    display: inline-block;
}

#main-contents {
    margin-top: 60px;
}

.basic-titile01 {
    text-align: center;
    color: #464646;
    line-height: 2.5em;
}

.basic-titile01 h2,.basic-titile01 h3,.basic-titile01 h4 {
    font-size: 2em;
    font-weight: 500;
}

/*** ヘッダー ***/
#header-out {
    display: table;
    width: 100%;
    background: url("../images/illust-back01.png") no-repeat center bottom #da3735;
    background-size: 94% auto;
    padding: 15px 20px 55px 20px;
}

#header-logo {
    display: table-cell;
    padding-right: 30px;
    vertical-align: middle;
}

#header-logo img {
    max-width: 280px;
    vertical-align: middle;
}

#header-logo a {
    text-decoration: none;
}

#header-catch-text {
    font-size: 38%;
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    color: white;
    margin-bottom: 3px;
    line-height: 1.2em;
    letter-spacing: 0.3em;
}

/*
#header-catch {
    font-size: 80%;
    padding-top: 10px;
    color: white;
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    display: table-cell;
    vertical-align: middle;
}
*/


/*** フッター ***/
#footer-out {
    margin-top: 60px;
    text-align: center;
}

#copyright {
    font-size: 65%;
    line-height: 1.3em;
    padding-bottom: 10px;
}

/*** 大見出し ***/
#main-title {
    text-align: center;
    margin-bottom: 30px;
    padding-left: 10px;
    padding-right: 10px;
}

#main-title img {
    max-width: 460px;
}

/*** 見出し ***/
#basic-title01 {
    text-align: center;
    margin-bottom: 20px;
    padding: 15px 20px;
    border-bottom: 1px solid #cccac9;
}

#basic-title01 h2 {
    font-size: 130%;
    display: inline-block;
    text-align: left;
}

/* テキストカラー */
.text-lglay {
    color: #656464 !important;
}

/* 非表示用クラス */
.display-none {
    display: none;
}

/* ボタン */
.basic-btn01 {
    display: inline-block;
    background: #efb33e;
    border: 1px solid #efb33e;
    color: white;
    font-weight: bold;
    padding: 10px 20px;
    text-decoration: none;
    /* 角丸 */
    border-radius:60px;
    -webkit-border-radius:60px;
    -moz-border-radius:60px;
}

.basic-btn01:hover {
    opacity: 0.8;
}

.basic-btn02 {
    display: inline-block;
    background: white;
    color: #efb33e;
    font-weight: bold;
    border: 1px solid #efb33e;
    padding: 10px 20px;
    text-decoration: none;
    /* 角丸 */
    border-radius:60px;
    -webkit-border-radius:60px;
    -moz-border-radius:60px;
}

.basic-btn02:hover {
    opacity: 0.8;
}

@media screen and (max-width: 1300px) {
#header-out {
    background: url("../images/illust-back01tb.png") no-repeat center bottom #da3735;
    background-size: 85% auto;
    padding-bottom: 55px !important;
}
}

@media screen and (max-width: 1199px) {
    #header-catch-text {
        letter-spacing: 0.55em;
    }
}

@media screen and (max-width: 1140px) {
    /* 共通 */
    .inner-width {
        margin-left: 20px;
        margin-right: 20px;
    }    
}

@media screen and (max-width: 900px) {
    #header-out {
        padding: 20px 0px 30px;
    }    
}

@media screen and (max-width: 800px) {
    #header-out {
        display: block;
        padding: 3px 0px 11vw !important;
        background: url("../images/illust-back01sp.png") no-repeat center bottom #da3735;
        background-size: 100vw auto;
    }

    #header-logo {
        display: block;
        padding-top: 10px;
        padding-right: 0px;
        padding-left: 0px;
        text-align: center;
    }

    #header-logo img {
        max-width: 220px;
    }
    
    #header-catch-text {
        letter-spacing: 0.31em;
        padding-left: 5px;
    }   
}

@media screen and (max-width: 767px) {    
    .basic-titile01 h2,.basic-titile01 h3,.basic-titile01 h4 {
        font-size: 1.5em;
    }

    /*
    #header-catch {
        display: block;
        text-align: center;
        margin-top: 5px;
        padding-top: 0px;
    }
    */
}

/*-----------------------------------------------------	*/
/*	ページ全体設定					                               */
/*-----------------------------------------------------	*/

#page-wrapper {
    margin-top: 60px;
}

#page-back {
    background: white;
    padding: 0px 0px 60px;
    border-top: solid 3px #da3735;
}

#contents-wrapper {
    padding: 20px 30px;
}

#top-entry-text {
    margin-top: 10px;
}

#form-entry-btn-out {
    text-align: center;
    margin-top: 20px;
}

#form-entry-btn-out .basic-btn01,#form-entry-btn-out .basic-btn02 {
    min-width: 240px;
}

#entry-btn {
    margin-bottom: 10px;
}

@media screen and (max-width: 767px) {
    #contents-wrapper {
        padding: 20px;
    }
    
    #page-wrapper {
        margin-top: 40px;
    }
}

/*-----------------------------------------------------	*/
/*	フォーム				                              */
/*-----------------------------------------------------	*/

.form-title {
    position: relative;
    margin-bottom: 0px !important;
}

.form-contents-wrapper {
    padding: 0px !important;
}

#required-text {
    position: absolute;
    right: 10px;
    bottom: -5px;
    display: block;
    text-align: right;
    font-weight: bold;
    font-size: 70%;
    letter-spacing: 0.1em;
}

.form-dl {
    margin: 0px;
}

.form-section {
    display: table;
    width: 100%;
    border-bottom: 1px solid #dad9d9;
    padding: 20px 35px;
}

.form-section dt {
    display: table-cell;
    width: 26%;
    vertical-align: middle;
    padding-right: 5px;
}

.form-cation-icon {
    color: #da3735;
    font-size: 90%;
}

.form-section dd {
    display: table-cell;
    width: 85%;
    vertical-align: middle;
}

input[type="text"] {
    width: 82%;
    padding: 12px;
    font-size: 16px;
    border: 1px solid #bab9b9;
    /* 角丸 */
    border-radius:6px;
    -webkit-border-radius:6px;
    -moz-border-radius:6px;
}

input[type="email"] {
    width: 82%;
    padding: 12px;
    font-size: 16px;
    border: 1px solid #bab9b9;
    /* 角丸 */
    border-radius:6px;
    -webkit-border-radius:6px;
    -moz-border-radius:6px;    
}

select {
    padding: 12px 40px 12px 12px;
    font-size: 16px;
    border: 1px solid #bab9b9;
    cursor: pointer;
    /* 　デフォルトのプルダウンを解除 */
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    /* プルダウン矢印 */
    background: url("../images/select-arrow.png") no-repeat right 10px center;
    background-size: 9px auto;
    /* 角丸 */
    border-radius:6px;
    -webkit-border-radius:6px;
    -moz-border-radius:6px;
}

/* フォームボタン */
#form-btn-out {
    text-align: center;
    margin: 20px 10px;
}

#form-btn-out button:hover {
    opacity: 0.8;
}

.mw_wp_form [type=submit] {
    line-height: 2em;
    font-size: 20px;
    font-weight: 500;
    padding: 5px 60px;
    margin-bottom: 10px;
    color: white;
    border: none;
    letter-spacing: 0.1em;
    cursor: pointer;
    border: 1px solid #efb33e;
    background: #efb33e;
    background-size: 7px 12px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    /* 角丸 */
    border-radius:60px;
    -webkit-border-radius:60px;
    -moz-border-radius:60px;
}

#form-btn-out button[name="submitBack"] {
    line-height: 2em;
    font-size: 20px;
    font-weight: 500;
    padding: 5px 60px;
    margin-bottom: 10px;
    color: #efb33e;
    border: 1px solid #efb33e;
    letter-spacing: 0.1em;
    cursor: pointer;
    background: white;
    /* 角丸 */
    border-radius:60px;
    -webkit-border-radius:60px;
    -moz-border-radius:60px;
}

/* 注意書き */
.form-cation01 {
    color: red;
    text-decoration: underline;
    font-size: 75%;
    font-weight:bold;
    text-indent: -1em;
    padding-left: 1em;
    line-height: 1.5em;
    margin-top: 8px;
}

/*** エラーページ ***/
#error-text {
    margin-top: 20px;
    color: #B70000;
}

/*** 確認ページ ***/
.mw_wp_form_confirm .form-section dd {
    font-weight: bold;   
}

.mw_wp_form_confirm .form-cation01 {
    display: none;
}

/*** 完了ページ ***/
#thanks-text {
    margin-top: 40px;
    padding: 20px 20px 0px;
}

.thanks-home-back {
    margin-bottom: 60px;
}

@media screen and (max-width: 950px) {
    .form-section dt {
        display: table-cell;
        width: 20%;
    }

    .form-section dd {
        width: 80%;
    }
    
    input[type="text"] {
        width: 100%;
    }
    
    input[type="email"] {
        width: 100%;
    }
}

@media screen and (max-width: 767px) {
    .form-title {
        padding-bottom: 12px !important;
    }
    
    #required-text {
        position: static;
        text-align: center;
    }
    
     .form-section {
        display: block;
        padding: 10px 20px 15px;
    }

    .form-section dt,.form-section dd {
        display: block;
        width: 100%;
    }
    
    .form-section dt {
        font-size: 110%;
        margin-bottom: 5px;
    }
    
    .form-section dd {
        margin: 0px;
    }
    
    select {
        width: 100%;
    }
    
    input[type="text"] {
        padding: 10px;
    }
    
    input[type="email"] {
        padding: 10px;
    }
    
    input [type=submit] {
        font-size: 17px;
        padding: 5px 30px;
    }
    
    /* 確認ページ */
    .mw_wp_form_confirm .form-section dt {
        text-align: center;
    } 
    
    .mw_wp_form_confirm .form-section dd {
        text-align: center;
        font-size: 110%;   
    }
}

@media screen and (max-width: 480px) {
    .form-section dt {
        margin-bottom: 2px;
    }
    
     .form-section {
        padding: 10px 15px 15px;
    }    
}

/*-----------------------------------------------------	*/
/*	その他 				                              */
/*-----------------------------------------------------	*/

/*** 不参加ページ ***/
#home-back-text {
    margin-top: 40px;
}

#home-back-text a:hover {
    text-decoration: none;
}

@media screen and (max-width: 480px) {
.nothanks-page-text {
    padding-left: 10px !important;
    padding-right: 10px !important;
}
}
