/* template02 */
.form__wrap {
  width: 100%;
  max-width: 900px;/*フォームの最大幅*/
  margin-right: auto;
  margin-left: auto;
}
.wpcf7 .template02 {
  color: #000;
  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 #7e837f;
}
.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: #808080;
  color: #fff;
  font-size: 12px;
  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: #dc143c;
  color: #fff;
  font-size: 12px;
  text-align: center;
}
/* テキストフィールド */
.wpcf7 .template02 input[type=text],
.wpcf7 .template02 input[type=email],
.wpcf7 .template02 input[type=subject],
.wpcf7 .template02 textarea {
  width: 100%;
  margin: 0;
  padding: .5em 1em;
  border: 1px solid #c4bbb8;
  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=email]::placeholder,
.wpcf7 .template01 input[type=subject]::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=email]:-ms-input-placeholder,
.wpcf7 .template01 input[type=subject]:-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=email]::-ms-input-placeholder,
.wpcf7 .template01 input[type=subject]::-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=email]:focus,
.wpcf7 .template01 input[type=subject]:focus,
.wpcf7 .template01 input[type=date]:focus,
.wpcf7 .template01 input[type=number]:focus,
.wpcf7 .template01 textarea:focus {
  outline: 0;
  border: 1px #6c5d2f solid;
  box-shadow: 0 0 2px 2px rgba(133, 112, 92, 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;
  box-sizing: border-box;
  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 #c4bbb8;
  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: #000;
  transition: all .25s ease;
}
.wpcf7 .template02 input[type=checkbox]:checked + span::before {
  opacity: 1;
  border: 1px solid #6c5d2f;
  box-shadow: 0 0 2px 2px rgba(133, 112, 92, 0.5);
  background-color: #6c5d2f;
  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 .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 #6c5d2f solid;
  border-radius: 8px;
  background-color: #f5f5f5;
  color: #000;
  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(133, 112, 92, 0.5);
  background-color: #fff;
  color: #6c5d2f;
  transition: all .25s;
}
.wpcf7 .template02 input[type="submit"]:focus {
  outline: 0;
  border: 1px #6c5d2f solid;
  box-shadow: 0 0 2px 2px rgba(133, 112, 92, 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;
  }
}

/* アコーディオンメニュー */

/* 以下は2024新歓ページ用に山口が作成 */

.my-allwidth-image {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
	margin-bottom: 0px;
}

.page-id-13971 .entry-title {
  display: none;
}

.page-id-13971 .dt-main-menu {
	display: none;
}

.page-id-13971 .dt-breadcrumbs {
	display: none;
}

.dt-header {
	height: 120px;
}

/*ここまで変えない*/

.page-id-13971 .dt-footer {
	display: none;
}

/*.page-id-13971 .dt-main-cont.layout-full_width{
	background-color: #187fc4;
	margin:0px
}

.page-id-13971 .content-area-wrapper.col-lg-12.col-md-12 {
	background-color: #187fc4;
}

/*.page-id-13971 .dt-layout-boxed.dt-layout-wide {
	background-color: #187fc4
}*/

.page-id-13971.dt-header {
	background-color: white;
}

.page-id-13971 h1 {
	border-bottom: 3px solid #fabe00
}

/*下のやつだとヘッダーの色まで変わるけど、全ての色を変えれる

.page-id-13971 .row {
	background-color: #187fc4
}
*/

/*.page-id-13971 .container {
	background-color: #187fc4
}

/*.page-id-13971 .wp-block-columns.is-layout-flex.wp-container-7.wp-block-columns-is-layout-flex {
	background-color: #187fc4
}*/

/*.page-id-13971 .wp-block-column.is-layout-flow.wp-block-column-is-layout-flow {
	background-color: #187fc4
}*/

/*.page-id-13971 .event {
	background-color: #187fc4
}*/

/*.page-id-13971 .su-animate.fadeInDown.animated {
	background-color: #187fc4
}*/



.page-id-13971 .su-animate.fadeInDown.animated {
  background-color: #187fc4; 
	margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
	padding: 0 calc(50vw - 50%);
	padding-top: 20px;
	padding-bottom: 20px;
}

.page-id-13971 .event {
  background-color: #187fc4; 
	margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
	padding: 0 calc(50vw - 50%);
	padding-top: 20px;
	padding-bottom: 20px;
}

/*.page-id-13971 .wp-block-button__link.has-background.wp-element-button:*/

/*以下はボタンのホバーのコード

.page-id-13971 .wp-block-button__link.has-background.wp-element-button{
  display: block;
  width: 300px;
  padding: 20px 0;
  border-radius: 6px;
  background-repeat: no-repeat;
  background-position: 100% 0;
  background-size: 200% auto;
  background-image: linear-gradient(
    to right,
    #fabe00 0%,
    #fabe00 50%,
    #2c68b1 50%,
    #2c68b1 100%
  );
  box-shadow: 0 3px 10px rgb(0 0 0 / 16%);
  transition: background-position ease 0.4s;
  text-align: center;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 20px;
}

.page-id-13971 .wp-block-button__link.has-background.wp-element-button:hover {
  background-position: 0 0;
}

*/

/*段落の上の幅少し広くする*/
.page-id-13971 .wp-block-columns.is-layout-flex.wp-container-7.wp-block-columns-is-layout-flex {
	padding-top: 20px;
}

/*.page-id-13971 .player {
	background-color:#ffffff
	margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
	padding: 0 calc(50vw - 50%);
	padding-top: 20px;
	padding-bottom: 20px;
}*/


.page-id-13971 .wp-block-button__link.has-background.wp-element-button {
	width: 10em;
	height: 3em;
	position: relative;
  span {
	display: grid;
	place-items: center;
	position: absolute;
	inset: 0;
	transform-style: preserve-3d
	taransition: rotate .4s;
	}
	.before {
		rotate: x -90deg;
	}
	&:hover .before {
		rotate: x 0deg;
	}
	&:hover .after {
		rotate: x 90deg;
	}
}

.page-id-13971 .wp-block-button__link.has-background.wp-element-button{
  display: block;
  width: 300px;
  padding: 20px 0;
  border-radius: 6px;
  background-repeat: no-repeat;
  background-position: 100% 0;
  background-size: 200% auto;
  background-image: linear-gradient(
    to right,
    #fabe00 0%,
    #fabe00 50%,
    #2c68b1 50%,
    #2c68b1 100%
  );
  box-shadow: 0 3px 10px rgb(0 0 0 / 16%);
  transition: background-position ease 0.4s;
  text-align: center;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 20px;
}

.page-id-13971 .wp-block-button__link.has-background.wp-element-button:hover {
  background-position: 0 0;
}

/*以下はカレンダー用*/

.page-id-13971　table{
  width:90%;
  margin:20px auto 0;
}
.page-id-13971　td,th{
  text-align:center;
  font-size:18px;
	color: white;
  padding:5px 0;
}
.page-id-13971　td{
  color:#187fc4;
  text-shadow:1px 1px 0 #333;
}

.page-id-13971 tbody {
	background-color: #187fc4;
}

.page-id-13971 tr {
	color: white;
}



/*カレンダー部分の背景を全面青に*/
.page-id-13971 .event {
	background-color: #187fc4; 
	margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
	padding: 0 calc(50vw - 50%);
	padding-top: 20px;
	padding-bottom: 20px;
}


/*.page-id-13971 .su-accordion.su-u-trim {
	color: #003567;
}*/