/*
Theme Name: hft2020
Template: habakiri
*/

/* ==========================================================================
   半角スペース
   &nbsp;
   全角スペース
   &emsp;
   親テーマのアップロードまでのタグ
   <img src="<?php $upload_dir = wp_upload_dir(); echo $upload_dir['baseurl']; ?>/2020/04/hoge.jpg"
   ========================================================================== */



/*media Queries タブレットサイズ（960px以下）
----------------------------------------------------*/
@media only screen and (max-width: 960x) {
}

/*media Queries タブレットサイズ（600px以上）
----------------------------------------------------*/
@media only screen and (min-width: 600px) {
}

/*media Queries PCサイズ（960px以上）
----------------------------------------------------*/
@media print, screen and (min-width: 960px) {
}

/*==================================================
 *スマホでは非表示
 *================================================*/
@media screen and (max-width: 480px){
.spNone { display: none;}
}



/* ==========================================================================
   パソコンで見たときは"pc"のclassがついた画像が表示される
   ========================================================================== */
.pc { display: block !important; }
.sp { display: none !important; }

/* ==========================================================================
   スマートフォンで見たときは"sp"のclassがついた画像が表示される
   ========================================================================== */
@media only screen and (max-width: 640px) {
.pc { display: none !important; }
.sp { display: block !important; }
}
/* ==========================================================================
   スマートフォン、タブレットで非表示
   ========================================================================== */
@media only screen and (min-width: 0px)
and (max-width: 760px){
  .pc-only { display: none !important; }
}

@media screen and (min-width: 980px) {
ここにCSSを指定
}　/* パソコン表示 */
@media screen and (min-width: 768px) and (max-width: 979px) {
ここにCSSを指定
}　/* タブレット端末表示 */
@media screen and (max-width: 479px) {
ここにCSSを指定
}　/* スマホ表示 */


body {
/* 秀英丸ゴシック */
    line-height: 2em;
    font-family: dnp-shuei-mgothic-std, sans-serif;
    font-weight: 400;
    font-style: normal;
}

@media (max-width: 768px) {
  body {
    font-size: 1em; /* 画面幅が768px以下のデバイスではフォントサイズを小さく */
  }
  h2 {
    font-size: 0.5em; /* 画面幅が768px以下のデバイスではフォントサイズを小さく */
  }
}

.sub-page-contents .container {
	padding-top: 50px;
	margin-bottom: 50px;
	border-radius: 20px;
	background-color: rgba(255,255,255,0.8);
}

@media (max-width: 768px) {
h1.entry__title {
	padding-left: 10px;
	padding-right: 10px;
}
.sub-page-contents .container {
	margin-left: 10px;
	margin-right: 10px;
	padding: 25px;
}
}


p {
/* 秀英丸ゴシック */
    font-family: dnp-shuei-mgothic-std, sans-serif;
}

p, ul, ol, dl, table {
    letter-spacing: 0.05em;
}

ul {
	padding-left: 0px;
	margin-left: 0px;
}

li {
	margin-left: 0px;
	padding-left: 0px;
	list-style-type: none;
}

h1, h2, h3, h4 {
/* 秀英丸ゴシック */
    font-family: dnp-shuei-mgothic-std, sans-serif;
    font-weight: 600;
    font-style: normal;
}

h1, .h1 {
    font-size: 24px;
    font-family: dnp-shuei-mgothic-std, sans-serif;
}

h2, .h2 {
    font-size: 22px;
    font-family: dnp-shuei-mgothic-std, sans-serif;
}

h3, .h3 {
    font-size: 20px;
    font-family: dnp-shuei-mgothic-std, sans-serif;
}

h4, .h4 {
    font-size: 18px;
    font-family: dnp-shuei-mgothic-std, sans-serif;
}

.small {
  font-size: xx-small;
}
.larger {
  font-size: larger;
}
.point {
  font-size: 24pt;
}
.percent {
  font-size: 200%;
}

h1.entry__title {
	color: white;
	background-color: #e85f9d;
	font-size: 18px;
	text-align: center;
	padding-bottom: 10px;
	padding-top: 10px;
	font-family: dnp-shuei-mgothic-std, sans-serif;
    font-weight: 600;
    font-style: normal;
    border-radius: 50px;
}

h1.entry__title a {
	color: white;
}

.sidebar h4 {
	padding: 5px;
	background-color: white;
	border-style: none;
	border-width: 0px;
	font-family: dnp-shuei-mgothic-std, sans-serif;
	font-weight: 600;
	font-style: normal;
	border-radius: 5px;
}

h2.footer-widget__title {
	color: #e85f9d;
	padding: 5px;
    background-color: #ffffff;
    font-family: dnp-shuei-mgothic-std, sans-serif;
    border-radius: 30px;
    text-align: center;
    font-weight: 600;
    margin-bottom: 5px;
}

article {
	margin-bottom: 25px;
}

section {
	padding-bottom: 25px;
	padding-top: 25px;
}


.sbg1 {
	background-color: gray;
}

.sbg2 {
	background-color: #ffffd0;
}

.sbg3 {
	background-color: #bcffcf;
}


/** * リンク画像のみ半透明に */
a:hover img {
opacity:0.3;
filter:alpha(opacity=30);
-ms-filter: "alpha( opacity=30 )";
-webkit-transition:all 0.25s linear;
-moz-transition:all 0.25s linear;
transition:all 0.25s linear;
}

/** * 固定ボタン */
@media screen and (min-width: 980px) {
.fixed_btn {
	position: fixed;
	top: 160px; 
	left: 10px;
}
}

.box1 {
	background-color: #fffbff;
	border-color: #c8c8c8;
	border-style: solid;
	border-width: 1px;
	padding: 25px;
	border-radius: 5px;
}

/*==================================================
 * 下線
 *================================================*/
.line-yellow {
    background: linear-gradient(transparent 50%, yellow 50%);
}

/*==================================================
 * gridのgutter調整
 *================================================*/
.row-0{
    margin-left:0px;
    margin-right:0px;
 
    > div{
        padding-right:0px;
        padding-left:0px;
    }
}
.row-10{
    margin-left:-5px;
    margin-right:-5px;
 
    > div{
        padding-right:5px;
        padding-left:5px;
    }
}
.row-20{
    margin-left:-10px;
    margin-right:-10px;
 
    > div{
        padding-right:10px;
        padding-left:10px;
    }
}
.row-25{
    margin-left:-12.5px;
    margin-right:-12.5px;
 
    > div{
        padding-right:12.5px;
        padding-left:12.5px;
    }
}
.row-30{
    margin-left:-15px;
    margin-right:-15px;
 
    > div{
        padding-right:15px;
        padding-left:15px;
    }
}
.row-40{
    margin-left:-20px;
    margin-right:-20px;
 
    > div{
        padding-right:20px;
        padding-left:20px;
    }
}

/*==================================================
 * headerとfooterの影を消す
 *================================================*/
#container, #header {
  box-shadow: none;
}

/*==================================================
 * ボタン
 *================================================*/
.btn-red {
	font-size: 0.9em;
	background-color: #e85f9d;
	font-weight: bold;
	color: white;
	text-decoration: none;
	border-radius: 25px;
	font-family: dnp-shuei-mgothic-std, sans-serif;
    font-weight: 600;
    font-style: normal;
}

.btn-yellow {
	font-weight: bold;
	background-color: #ffffc8;
	border-radius: 25px;
}

/*==================================================
 * 
 *================================================*/
.title-box1 {
	background-color: white;
	padding-left: 15px;
	padding-bottom: 6px;
	padding-right: 15px;
	padding-top: 6px;
	font-weight: bold;
	text-align: center;
	border-color: #e85f9d;
	border-style: solid;
	border-width: 3px;
	color: #e85f9d;
	border-radius: 30px;
}

.title-box2 {
	font-weight: bold;
	text-align: center;
	padding: 5px;
	color: white;
	background-color: #e85f9d;
	border-radius: 20px;
}

.event {
	font-size: 1.2em;
}

.event dl {
	font-family: dnp-shuei-mgothic-std, sans-serif;
}

.event dl dt {
	margin-bottom: 15px;
	font-size: 1.1em;
}

.event dl dd {
	margin-bottom: 30px;
}

/*==================================================
 * header
 *================================================*/
#header {
	padding-top: 10px;
}

.header-top-area {
	padding-right: 25px;
	text-align: right;
}





.global-nav {
/* 筑紫 */
    letter-spacing: 0.1em;
    font-family: dnp-shuei-mgothic-std, sans-serif;
    font-weight: 600;
    font-style: normal;
}

.site-branding { padding-top: 0px; padding-left: 0; padding-bottom: 15px; padding-right: 0; }
  .site-branding__heading {
    border-style: none;
    border-width: 0px;
    font-size: 20px;
    line-height: 0.5;
    margin: 0; }
    @media (min-width: 480px) {
      .site-branding__heading {
        font-size: 20px; } }
  .site-branding__logo {
    font-size: 15px;
    line-height: 0.5;
    margin: 0; }
    @media (min-width: 480px) {
      .site-branding__logo {
        font-size: 20px; } }
  .site-branding a {
    text-decoration: none; }

/*==================================================
 * スライドアニメーション
 *================================================*/
.fluffy {
  animation: fluffy1 2s ease infinite;
}

@keyframes fluffy1 {
  0% { transform:translateY(0) }
  5% { transform:translateY(0) }
  10% { transform:translateY(0) }
  20% { transform:translateY(-5px) }
  25% { transform:translateY(0) }
  30% { transform:translateY(-5px) }
  50% { transform:translateY(0) }
  100% { transform:translateY(0) }
}

/*==================================================
 * スライドショー
 *================================================*/
.slick01 {
    width: 100%;
}
.slick01 img{
	height: auto;
	width: 100%;
}

.slick02 {
    width: 75%;
}
.slick02 img{
	height: auto;
	width: 100%;
}


/*==================================================
 * footer
 *================================================*/
.footer {
	background-repeat: repeat-x;
	background-image: url(assets/img/BG-nami-green.png);
}

.footer-widget-area {
    padding-left: 0;
    padding-bottom: 25px;
    padding-right: 0;
    padding-top: 25px;
    font-size: 12px; }

.copyright {
    text-align: center;
    background-color: #afcf89;
    font-size: 80%;
    letter-spacing: 0.1em;
    color: #646464;
}

/*==================================================
 * sidebar
 *================================================*/
.sidebar {
	padding: 25px;
	background-color: white;
	border-radius: 5px;
}

.sidebar li {
	list-style-type: none;
}

.s-menu {
	width: 100%;
	margin-right: 0px;
	margin-left: 0px;
}

.s-menu-img {
	background-color: white;
	border-color: #e6e6e6;
	border-style: solid;
	border-width: 1px;
	padding: 0px;
	margin: 0px;
}

.s-menu-title {
	padding: 10px;
	text-align: center;
	color: white;
	background-color: #e85f9d;
    font-family: dnp-shuei-mgothic-std, sans-serif;
    font-weight: 600;
    font-style: normal;
}



/*==================================================
 * front-page
 *================================================*/
@media (max-width: 768px) {
.custom-background {
	background-image: url(assets/img/BG2025sp.jpg)!important;
}
  }

.BG0 {
	background-color: white;
}
.BG1 {
	background-color: white;
	background-repeat: repeat-x;
	background-image: url(assets/img/BG-nami-pink1.png);
}
.BG2 {
	background-color: #fbf0f8;
	background-repeat: repeat-x;
	background-image: url(assets/img/BG-nami-pink2.png);
}

.box-red {
	background-color: #e85f9d;
	padding-right: 25px;
	padding-left: 25px;
	border-radius: 5px;
}

.box-red2 {
	padding-top: 5px;
	padding-bottom: 10px;
	background-color: #fff0fa;
	padding-right: 25px;
	padding-left: 25px;
	border-radius: 5px;
}

.box-white {
	background-color: #ffffff;
	padding-bottom: 10px;
	padding-top: 5px;
	padding-right: 25px;
	padding-left: 25px;
	border-radius: 5px;
}

.event2 {
	font-weight: bold;
	font-size: 1.2em;
	text-align: center;
	line-height: 2em;
    font-family: dnp-shuei-mgothic-std, sans-serif;
}

.event {
	font-weight: bold;
	font-size: 1.2em;
}

.event ul li {
	padding-bottom: 15px;
}

.front-page-contents .entry__title {
	display: none;
}

h4.nyuusyouka {
	margin-top: 20px;
	margin-bottom: 25px;
	color: #e85f9d;
	text-align: center;
	padding-bottom: 10px;
	padding-top: 10px;
	border-right-style: none;
	border-left-style: none;
	border-bottom-color: #e85f9d;
	border-top-color: #e85f9d;
	border-right-width: 0px;
	border-bottom-style: solid;
	border-top-style: solid;
	border-left-width: 0px;
	border-bottom-width: 3px;
	border-top-width: 3px;
}

.nyuusyouka {
	margin-top: -50px;
}

h4.ftont-page {
	margin-bottom: 25px;
	color: #e85f9d;
	text-align: center;
	padding-bottom: 10px;
	padding-top: 10px;
	border-right-style: none;
	border-left-style: none;
	border-bottom-color: #e85f9d;
	border-top-color: #e85f9d;
	border-right-width: 0px;
	border-bottom-style: solid;
	border-top-style: solid;
	border-left-width: 0px;
	border-bottom-width: 3px;
	border-top-width: 3px;
}

.text-small-1 {
	font-size: 0.9em;
}

/*==================================================
 *スマホでのみmargin-bottom
 *================================================*/
@media screen and (max-width: 768px){
.other-pc {
	margin-bottom: 25px;
}
}

/*==================================================
 * news
 *================================================*/
.news img {
	margin-bottom: 20px;
}

.news .btn {
	margin-bottom: 20px;
}

.news li {
	padding-bottom: 10px;
	line-height: 1.5em;
}

.news-title {
	text-decoration: none;
	color: #323232;
}

.news-date {
	font-size: 0.8em;
}

.center {
	margin:  0 auto;            /* 中央寄せ */
	text-align: center;
}

/*==================================================
 * 右揃え　 text-align: justify;
 *================================================*/
.top-text {
	line-height: 2em;
	font-weight: bold;
	font-size: 1.3em;
}


/*==================================================
 * Selected Text
 *================================================*/
::selection {
	background:#f0f0f0; /* Safari */
}

::-moz-selection {
	background:#f0f0f0; /* Firefox */
}





/*==================================================
 * margin、padding
 *================================================*/
.margin-bottom-0 {margin-bottom: 0px;}
.margin-bottom-5 {margin-bottom: 5px;}
.margin-bottom-10 {margin-bottom: 10px;}
.margin-bottom-15 {margin-bottom: 15px;}
.margin-bottom-20 {margin-bottom: 20px;}
.margin-bottom-30 {margin-bottom: 30px;}
.margin-bottom-25 {margin-bottom: 25px;}
.margin-bottom-50 {margin-bottom: 50px;}
.margin-bottom-100 {margin-bottom: 100px;}
.margin-top-0 {margin-top: 0px;}
.margin-top-5 {margin-top: 5px;}
.margin-top-10 {margin-top: 10px;}
.margin-top-15 {margin-top: 15px;}
.margin-top-20 {margin-top: 20px;}
.margin-top-25 {margin-top: 25px;}
.margin-top-50 {margin-top: 50px;}
.margin-top-100 {margin-top: 100px;}
.padding-bottom-0 {padding-bottom: 0px;}
.padding-bottom-5 {padding-bottom: 5px;}
.padding-bottom-10 {padding-bottom: 10px;}
.padding-bottom-15 {padding-bottom: 15px;}
.padding-bottom-20 {padding-bottom: 20px;}
.padding-bottom-25 {padding-bottom: 25px;}
.padding-bottom-30 {padding-bottom: 30px;}
.padding-bottom-50 {padding-bottom: 50px;}
.padding-bottom-100 {padding-bottom: 100px;}
.padding-top-0 {padding-top: 0px;}
.padding-top-5 {padding-top: 5px;}
.padding-top-10 {padding-top: 10px;}
.padding-top-15 {padding-top: 15px;}
.padding-top-20 {padding-top: 20px;}
.padding-top-25 {padding-top: 25px;}
.padding-top-50 {padding-top: 50px;}
.padding-top-100 {padding-top: 100px;}


/*==================================================
 * 強調・色
 *================================================*/
.s1 {
	color: #e85f9d;
	font-family: dnp-shuei-mgothic-std, sans-serif;
	font-weight: 600;
	font-style: normal;
}

.red {
	color: #e85f9d;
}

.white {
	color: #ffffff;
}



/*==================================================
 * 画像がウインドウ幅よりはみ出して表示される件
 *================================================*/
img { 
  max-width:100%;
  height:auto;
}

/* 例：br.sp_brはタブレット以上のサイズでは非表示にする */
@media screen and (min-width: 650px){	
  .br-pc { display:block; }
  .br-sp { display:none; }
}
@media screen and (max-width: 650px){	
  .br-pc { display:none; }
  .br-sp { display:block; }
}


/*==================================================
 * ページ内リンクの位置ずれ
 *================================================*/
a.anchor{
	display: block;
	padding-top: 70px;
	margin-top: -70px;
}

/* ==========================================================================
   アンダーラインアニメーション（PC表示のみ）
   ========================================================================== */

@media screen and (min-width: 980px) {
	
.global-nav a::after {
position: absolute;
left: 0;
content: '';
width: 100%;
height: 2.5px;
background: #e85f9d;
bottom: 3px;
transform: scale(0, 1);
transform-origin: center top; /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の右端*/
transition: transform 0.3s;   /*変形の時間*/
}

.global-nav a:hover::after {
transform: scale(1, 1); /*ホバー後、x軸方向に1（相対値）伸長*/
}

}





/*==================================================
 * contact form
 *================================================*/

/* template02 */
.form__wrap {
  width: 100%;
  max-width: 900px;/*フォームの最大幅*/
  margin-right: auto;
  margin-left: auto;
}
.wpcf7 .template02 {
  color: #666;
  font-size: 16px;
}
.wpcf7 .template02 a {
  margin: 0;
  padding: 0;
  text-decoration: underline;
  color: inherit;
  transition: opacity .25s;
}
.wpcf7 .template02 a:hover {
  opacity: .5;
  transition: opacity .25s;
}
.wpcf7 .template02 div.form__row {
  display: flex;
  margin: 0;
  padding: 0;
  border-top: 1px solid #c8c8c8;
}
.wpcf7 .template02 div.form__row.row-privacy,
.wpcf7 .template02 div.form__row.row-submit {
  display: block;
  border-top: 0;
  margin-top: 1em;
  text-align: center;
}
.wpcf7 .template02 p.form__label,
.wpcf7 .template02 p.form__body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.wpcf7 .template02 p.form__label {
  width: 36%;
  padding: 1.5em 1em;
}
.wpcf7 .template02 p.form__body {
  width: 64%;
  padding: 1.5em 1em;
}
.wpcf7 .template02 div.form__row.row-privacy .form__body,
.wpcf7 .template02 div.form__row.row-submit .form__body {
  width: 100%;
}
.wpcf7 .template02 p.form__label label {
  position: relative;
  margin: 0;
  padding: 0;
  padding-left: 44px; 
  box-sizing: border-box;
}
.wpcf7 .template02 p.form__label label::after {
  content: "任意";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 36px;
  margin: 0;
  padding: 0 5px;
  border-radius: 2px;
  background-color: #f1f1f1;
  color: #929292;
  font-size: 11px;
  text-align: center;
  box-sizing: border-box;
}
.wpcf7 .template02 p.form__label.is-required label {
  position: relative;
}
.wpcf7 .template02 p.form__label.is-required label::after {
  content: "必須";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 36px;
  padding: 0 5px;
  background-color: #e85f9d;
  color: #fff;
  font-size: 11px;
  text-align: center;
}
/* テキストフィールド */
.wpcf7 .template02 input[type=text],
.wpcf7 .template02 input[type=tel],
.wpcf7 .template02 input[type=email],
.wpcf7 .template02 textarea {
  width: 100%;
  margin: 0;
  padding: .5em 1em;
  border: 1px solid #dcdcdc;
  border-radius: 4px;
  box-shadow: none;
  background-color: #fefefe;
  color: inherit;
  font-family: inherit;
  font-weight: inherit;
  font-size: 16px;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
/* テキストフィールド placeholder */
.wpcf7 .template01 input[type=text]::placeholder,
.wpcf7 .template01 input[type=tel]::placeholder,
.wpcf7 .template01 input[type=email]::placeholder,
.wpcf7 .template01 input[type=url]::placeholder,
.wpcf7 .template01 input[type=date]::placeholder,
.wpcf7 .template01 input[type=number]::placeholder,
.wpcf7 .template01 textarea::placeholder {
  color: #ccc;
}
.wpcf7 .template01 input[type=text]:-ms-input-placeholder,
.wpcf7 .template01 input[type=tel]:-ms-input-placeholder,
.wpcf7 .template01 input[type=email]:-ms-input-placeholder,
.wpcf7 .template01 input[type=url]:-ms-input-placeholder,
.wpcf7 .template01 input[type=date]:-ms-input-placeholder,
.wpcf7 .template01 input[type=number]:-ms-input-placeholder,
.wpcf7 .template01 textarea:-ms-input-placeholder {
  color: #ccc;
}
.wpcf7 .template01 input[type=text]::-ms-input-placeholder,
.wpcf7 .template01 input[type=tel]::-ms-input-placeholder,
.wpcf7 .template01 input[type=email]::-ms-input-placeholder,
.wpcf7 .template01 input[type=url]::-ms-input-placeholder,
.wpcf7 .template01 input[type=date]::-ms-input-placeholder,
.wpcf7 .template01 input[type=number]::-ms-input-placeholder,
.wpcf7 .template01 textarea::-ms-input-placeholder {
  color: #ccc;
}
/* テキストフィールド フォーカス時 */
.wpcf7 .template01 input[type=text]:focus,
.wpcf7 .template01 input[type=tel]:focus,
.wpcf7 .template01 input[type=email]:focus,
.wpcf7 .template01 input[type=url]:focus,
.wpcf7 .template01 input[type=date]:focus,
.wpcf7 .template01 input[type=number]:focus,
.wpcf7 .template01 textarea:focus {
  outline: 0;
  border: 1px #e85f9d solid;
  box-shadow: 0 0 2px 2px rgba(255, 229, 249, 0.5);
}
/* チェックボックス */
.wpcf7 .template02 input[type=checkbox] {
  display: none;
}
.wpcf7 .template02 input[type=checkbox] + span {
  cursor: pointer;
  position: relative;
  margin: 0;
  padding: 0 1em 0 1.8em;
  font-size: inherit;     transition: opacity .25s ease;
}
.wpcf7 .template02 input[type=checkbox] + span::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 1.24em;
  height: 1.24em;
  border: 1px solid #dcdcdc;
  border-radius: 4px;
  background-color: #fefefe;
  box-sizing: border-box;
}
.wpcf7 .template02 input[type=checkbox] + span::after {
  content: "";
  opacity: 0;
  display: block;
  position: absolute;
  top: 0.15em;
  left: 0.44em;
  width: 0.4em;
  height: .8em;
  border-bottom: 3px solid #000;
  border-right: 3px solid #000;
  box-sizing: border-box;
  transform: rotate(40deg);
  transition: opacity .25s ease;
}
.wpcf7 .template02 input[type=checkbox]:checked + span {
  color: #e85f9d;
  transition: all .25s ease;
}
.wpcf7 .template02 input[type=checkbox]:checked + span::before {
  opacity: 1;
  border: 1px solid #e85f9d;
  box-shadow: 0 0 2px 2px rgba(255, 229, 249, 0.5);
  background-color: #e85f9d;
  transition: opacity .25s ease;
}
.wpcf7 .template02 input[type=checkbox]:checked + span::after {
  opacity: 1;
  border-bottom: 3px solid #fff;
  border-right: 3px solid #fff;
  transition: opacity .25s ease;
}
/* ラジオボタン */
.wpcf7 .template02 input[type=radio] {
  display: none;
}
.wpcf7 .template02 input[type=radio] + span {
  cursor: pointer;
  position: relative;
  margin: 0;
  padding: 0 1em 0 1.8em;
  font-size: inherit;
  box-sizing: border-box;
  transition: opacity .25s ease;
}
.wpcf7 .template02 input[type=radio] + span::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 1em;
  height: 1em;
  border: 1px solid #dcdcdc;
  border-radius: 50%;
  background-color: #fefefe;
  box-sizing: border-box;
  transition: opacity .25s ease;
}
.wpcf7 .template02 input[type=radio] + span::after {
  content: "";
  display: block;
  opacity: 0;
  position: absolute;
  box-sizing: border-box;
  transition: opacity .25s ease;
}
.wpcf7 .template02 input[type=radio]:checked + span {
  color: #e85f9d;
}
.wpcf7 .template02 input[type=radio]:checked + span::before {
  box-shadow: 0 0 2px 2px rgba(255, 229, 249, 0.5);
}
.wpcf7 .template02 input[type=radio]:checked + span::after {
  opacity: 1;
  top: 0;
  left: 0;
  width: 1em;
  height: 1em;
  background-color: #e85f9d;
  border-radius: 50%;
  box-sizing: border-box;
  transition: opacity .25s ease;
}
/* セレクト */
.wpcf7 .template02 span.select-wrap {
  position: relative;
  width: 250px;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.wpcf7 .template02 select {
  cursor: pointer;
  width: 250px;
  max-width: 100%;
  margin: 0;
  padding: .5em 3.5em .5em 1em;
  border: 1px solid #dcdcdc;
  border-radius: 4px;
  box-shadow: none;
  background-color: #fefefe;
  background-image: linear-gradient(90deg, #dcebb4, #dcebb4);
  background-position: 100% 0;
  background-size: 2em 3.5em;
  background-repeat: no-repeat;
  color: inherit;
  font-size: inherit;
  line-height: 1;
  box-sizing: border-box;
  transition: border-color 0.2s ease, outline 0.2s ease;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.wpcf7 .template02 select::-ms-expand {
  display: none;
}
.wpcf7 .template02 span.select-wrap::after {
  content: "";
  pointer-events: none;
  position: absolute;
  display: block;
  width: .6em;
  height: .6em;
  top: 50%;
  right: .8em;
  margin-top: -3px;
  border-bottom: 1px solid #e85f9d;
  border-right: 1px solid #e85f9d;
  transform: rotate(45deg) translateY(-50%);
  transform-origin: 50% 0;
  box-sizing: border-box;
}
.wpcf7 .template02 select:focus {
  outline: 0;
  border: 1px #e85f9d solid;
  box-shadow: 0 0 2px 2px rgba(255, 229, 249, 0.5);
}
.wpcf7 .template02 span.select-wrap:focus-within::after {
  border-bottom: 1px solid #e85f9d;
  border-right: 1px solid #e85f9d;
}
/* 送信ボタン */
.wpcf7 .template02 .submit-btn {
  position: relative;
  width: 320px;
  height: 65px;
  max-width: 100%;
  margin: 0;
  padding: 0;
  margin-left: auto;
  margin-right: auto;
}
.wpcf7 .template02 input[type="submit"] {
  cursor: pointer;
  width: 320px;
  max-width: 100%;
  padding: 18px;
  box-shadow: none;
  border: 1px #e85f9d solid;
  border-radius: 8px;
  background-color: #e85f9d;
  color: #fff;
  font-size: 18px;
  text-align: center;
  box-sizing: border-box;
  transition: all .25s;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.wpcf7 .template02 input[type="submit"]:disabled {
  cursor: not-allowed;
  box-shadow: none!important;
  border: 1px solid #f8f8f8!important;
  background-color: #f8f8f8!important;
  color: #929292!important;
}
.wpcf7 .template02 input[type="submit"]:hover {
  box-shadow: 0 0 2px 2px rgba(255, 229, 249, 0.5);
  background-color: #fff;
  color: #e85f9d;
  transition: all .25s;
}
.wpcf7 .template02 input[type="submit"]:focus {
  outline: 0;
  border: 1px #e85f9d solid;
  box-shadow: 0 0 2px 2px rgba(255, 229, 249, 0.5);
}
@media only screen and (max-width: 768px) {
  .wpcf7 .template02 div.form__row {
    display: block;
  }
  .wpcf7 .template02 p.form__label {
    width: 100%;
    padding: 1.5em 1em 0;
  }
  .wpcf7 .template02 p.form__body {
    width: 100%;
    padding: 1em 1em 1.5em;
  }
}

/*==================================================
 * contact form-template03
 *================================================*/

.form__wrap {
  width: 100%;
  max-width: 900px;/*フォームの最大幅*/
  margin-right: auto;
  margin-left: auto;
}
.wpcf7 .template03 {
  color: #666;
  font-size: 16px;
}
.wpcf7 .template03 a {
  margin: 0;
  padding: 0;
  text-decoration: underline;
  color: inherit;
  transition: opacity .25s;
}
.wpcf7 .template03 a:hover {
  opacity: .5;
  transition: opacity .25s;
}
.wpcf7 .template03 div.form__row {
  display: flex;
  margin: 0;
  padding: 0;
  border-top: 1px solid #c8c8c8;
}
.wpcf7 .template03 div.form__row.row-privacy,
.wpcf7 .template03 div.form__row.row-submit {
  display: block;
  border-top: 0;
  margin-top: 1em;
  text-align: center;
}
.wpcf7 .template03 p.form__label,
.wpcf7 .template03 p.form__body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.wpcf7 .template03 p.form__label {
  padding-left: 1em;
  padding-top: 1em;
  width: 35%;
}
.wpcf7 .template03 p.form__body {
  padding-left: 0em;
  padding-bottom: 0em;
  padding-right: 0em;
  padding-top: 0.5em;
  width: 65%;
}
.wpcf7 .template03 div.form__row.row-privacy .form__body,
.wpcf7 .template03 div.form__row.row-submit .form__body {
  width: 100%;
}

/* テキストフィールド */
.wpcf7 .template03 input[type=text],
.wpcf7 .template03 input[type=tel],
.wpcf7 .template03 input[type=email],
.wpcf7 .template03 textarea {
  width: 100%;
  margin: 10px 20px 10px 0px;
  padding: .5em 1em;
  border: 1px solid #dcdcdc;
  border-radius: 4px;
  box-shadow: none;
  background-color: #fefefe;
  color: inherit;
  font-family: inherit;
  font-weight: inherit;
  font-size: 16px;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
/* テキストフィールド placeholder */
.wpcf7 .template01 input[type=text]::placeholder,
.wpcf7 .template01 input[type=tel]::placeholder,
.wpcf7 .template01 input[type=email]::placeholder,
.wpcf7 .template01 input[type=url]::placeholder,
.wpcf7 .template01 input[type=date]::placeholder,
.wpcf7 .template01 input[type=number]::placeholder,
.wpcf7 .template01 textarea::placeholder {
  color: #ccc;
}
.wpcf7 .template01 input[type=text]:-ms-input-placeholder,
.wpcf7 .template01 input[type=tel]:-ms-input-placeholder,
.wpcf7 .template01 input[type=email]:-ms-input-placeholder,
.wpcf7 .template01 input[type=url]:-ms-input-placeholder,
.wpcf7 .template01 input[type=date]:-ms-input-placeholder,
.wpcf7 .template01 input[type=number]:-ms-input-placeholder,
.wpcf7 .template01 textarea:-ms-input-placeholder {
  color: #ccc;
}
.wpcf7 .template01 input[type=text]::-ms-input-placeholder,
.wpcf7 .template01 input[type=tel]::-ms-input-placeholder,
.wpcf7 .template01 input[type=email]::-ms-input-placeholder,
.wpcf7 .template01 input[type=url]::-ms-input-placeholder,
.wpcf7 .template01 input[type=date]::-ms-input-placeholder,
.wpcf7 .template01 input[type=number]::-ms-input-placeholder,
.wpcf7 .template01 textarea::-ms-input-placeholder {
  color: #ccc;
}
/* テキストフィールド フォーカス時 */
.wpcf7 .template01 input[type=text]:focus,
.wpcf7 .template01 input[type=tel]:focus,
.wpcf7 .template01 input[type=email]:focus,
.wpcf7 .template01 input[type=url]:focus,
.wpcf7 .template01 input[type=date]:focus,
.wpcf7 .template01 input[type=number]:focus,
.wpcf7 .template01 textarea:focus {
  outline: 0;
  border: 1px #e85f9d solid;
  box-shadow: 0 0 2px 2px rgba(255, 229, 249, 0.5);
}
/* チェックボックス */
.wpcf7 .template03 input[type=checkbox] {
  display: none;
}
.wpcf7 .template03 input[type=checkbox] + span {
  cursor: pointer;
  position: relative;
  margin: 0;
  padding: 0 1em 0 1.8em;
  font-size: inherit;     transition: opacity .25s ease;
}
.wpcf7 .template03 input[type=checkbox] + span::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 1.24em;
  height: 1.24em;
  border: 1px solid #dcdcdc;
  border-radius: 4px;
  background-color: #fefefe;
  box-sizing: border-box;
}
.wpcf7 .template03 input[type=checkbox] + span::after {
  content: "";
  opacity: 0;
  display: block;
  position: absolute;
  top: 0.15em;
  left: 0.44em;
  width: 0.4em;
  height: .8em;
  border-bottom: 3px solid #000;
  border-right: 3px solid #000;
  box-sizing: border-box;
  transform: rotate(40deg);
  transition: opacity .25s ease;
}
.wpcf7 .template03 input[type=checkbox]:checked + span {
  color: #e85f9d;
  transition: all .25s ease;
}
.wpcf7 .template03 input[type=checkbox]:checked + span::before {
  opacity: 1;
  border: 1px solid #e85f9d;
  box-shadow: 0 0 2px 2px rgba(255, 229, 249, 0.5);
  background-color: #e85f9d;
  transition: opacity .25s ease;
}
.wpcf7 .template03 input[type=checkbox]:checked + span::after {
  opacity: 1;
  border-bottom: 3px solid #fff;
  border-right: 3px solid #fff;
  transition: opacity .25s ease;
}
/* ラジオボタン */
.wpcf7 .template03 input[type=radio] {
  display: none;
}
.wpcf7 .template03 input[type=radio] + span {
  cursor: pointer;
  position: relative;
  margin: 0;
  padding: 0 1em 0 1.8em;
  font-size: inherit;
  box-sizing: border-box;
  transition: opacity .25s ease;
}
.wpcf7 .template03 input[type=radio] + span::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 1em;
  height: 1em;
  border: 1px solid #dcdcdc;
  border-radius: 50%;
  background-color: #fefefe;
  box-sizing: border-box;
  transition: opacity .25s ease;
}
.wpcf7 .template03 input[type=radio] + span::after {
  content: "";
  display: block;
  opacity: 0;
  position: absolute;
  box-sizing: border-box;
  transition: opacity .25s ease;
}
.wpcf7 .template03 input[type=radio]:checked + span {
  color: #e85f9d;
}
.wpcf7 .template03 input[type=radio]:checked + span::before {
  box-shadow: 0 0 2px 2px rgba(255, 229, 249, 0.5);
}
.wpcf7 .template03 input[type=radio]:checked + span::after {
  opacity: 1;
  top: 0;
  left: 0;
  width: 1em;
  height: 1em;
  background-color: #e85f9d;
  border-radius: 50%;
  box-sizing: border-box;
  transition: opacity .25s ease;
}
/* セレクト */
.wpcf7 .template03 span.select-wrap {
  position: relative;
  width: 250px;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.wpcf7 .template03 select {
  cursor: pointer;
  width: 250px;
  max-width: 100%;
  margin: 0;
  padding: .5em 3.5em .5em 1em;
  border: 1px solid #dcdcdc;
  border-radius: 4px;
  box-shadow: none;
  background-color: #fefefe;
  background-image: linear-gradient(90deg, #dcebb4, #dcebb4);
  background-position: 100% 0;
  background-size: 2em 3.5em;
  background-repeat: no-repeat;
  color: inherit;
  font-size: inherit;
  line-height: 1;
  box-sizing: border-box;
  transition: border-color 0.2s ease, outline 0.2s ease;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.wpcf7 .template03 select::-ms-expand {
  display: none;
}
.wpcf7 .template03 span.select-wrap::after {
  content: "";
  pointer-events: none;
  position: absolute;
  display: block;
  width: .6em;
  height: .6em;
  top: 50%;
  right: .8em;
  margin-top: -3px;
  border-bottom: 1px solid #e85f9d;
  border-right: 1px solid #e85f9d;
  transform: rotate(45deg) translateY(-50%);
  transform-origin: 50% 0;
  box-sizing: border-box;
}
.wpcf7 .template03 select:focus {
  outline: 0;
  border: 1px #e85f9d solid;
  box-shadow: 0 0 2px 2px rgba(255, 229, 249, 0.5);
}
.wpcf7 .template03 span.select-wrap:focus-within::after {
  border-bottom: 1px solid #e85f9d;
  border-right: 1px solid #e85f9d;
}
/* 送信ボタン */
.wpcf7 .template03 .submit-btn {
  position: relative;
  width: 320px;
  height: 65px;
  max-width: 100%;
  margin: 0;
  padding: 0;
  margin-left: auto;
  margin-right: auto;
}
.wpcf7 .template03 input[type="submit"] {
  cursor: pointer;
  width: 320px;
  max-width: 100%;
  padding: 18px;
  box-shadow: none;
  border: 1px #e85f9d solid;
  border-radius: 8px;
  background-color: #e85f9d;
  color: #fff;
  font-size: 18px;
  text-align: center;
  box-sizing: border-box;
  transition: all .25s;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.wpcf7 .template03 input[type="submit"]:disabled {
  cursor: not-allowed;
  box-shadow: none!important;
  border: 1px solid #f8f8f8!important;
  background-color: #f8f8f8!important;
  color: #929292!important;
}
.wpcf7 .template03 input[type="submit"]:hover {
  box-shadow: 0 0 2px 2px rgba(255, 229, 249, 0.5);
  background-color: #fff;
  color: #e85f9d;
  transition: all .25s;
}
.wpcf7 .template03 input[type="submit"]:focus {
  outline: 0;
  border: 1px #e85f9d solid;
  box-shadow: 0 0 2px 2px rgba(255, 229, 249, 0.5);
}
@media only screen and (max-width: 768px) {
  .wpcf7 .template03 div.form__row {
    display: block;
  }
  .wpcf7 .template03 p.form__label {
    width: 100%;
    padding: 1.5em 1em 0;
  }
  .wpcf7 .template03 p.form__body {
    width: 100%;
    padding: 1em 1em 1.5em;
  }
}

.number {
	padding-left: 5px;
	padding-bottom: 2px;
	padding-right: 5px;
	padding-top: 2px;
	margin-right: 10px;
	text-align: center;
	color: white;
	background-color: #e85f9d;
	border-radius: 10px;
}

/* ==========================================================================
   取り消し線（https://www.sejuku.net/blog/51448）
   ========================================================================== */
.torikeshi {
  color: #e85f9d;
  text-decoration: line-through;
}

/*==================================================
 * Table-開催概要
 *================================================*/
#tablepress-1, #tablepress-3, #tablepress-5-no-8, #tablepress-4, #tablepress-12  {
	border-color: #c8c8c8;
	border-style: solid;
	border-width: 1px;
	background-color: white;
}

#tablepress-1 .column-1, #tablepress-3 .column-1, #tablepress-5-no-8 .column-1, #tablepress-4 .column-1, #tablepress-12 .column-1 {
    text-align: center;
    background-image: url(assets/img/BG3.gif);
    font-family: dnp-shuei-mgothic-std, sans-serif;
    font-weight: 600;
    font-style: normal;
    vertical-align: middle;
    width: 10%;
}

#tablepress-1 .column-2, #tablepress-3 .column-2, #tablepress-5-no-8 .column-2, #tablepress-4 .column-2, #tablepress-12 .column-2 {
    vertical-align: middle;
    padding-left: 25px;
	width: 90%;
}

#tablepress-1 .column-3, #tablepress-3 .column-3, #tablepress-5-no-8 .column-3, #tablepress-4 .column-3, #tablepress-12 .column-3 {
    border-left-color: #dcdcdc;
    border-left-style: solid;
    border-left-width: 1px;
    vertical-align: middle;
    padding-left: 25px;
}

/*==================================================
 * /表の横スクロール/
 *================================================*/
div.myScrollBox { overflow: scroll; white-space: nowrap; }
.tablepress { width: 768px; }

/*==================================================
 * Table-昨年の入賞花
 *================================================*/
#tablepress-9 .row-1  {
	font-size: 1.5em;
	font-weight: bold;
}





