@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Kantumruy+Pro:ital,wght@0,100..700;1,100..700&family=Noto+Sans+JP:wght@100..900&display=swap');
@import url(https://fonts.googleapis.com/icon?family=Material+Icons);

/* Material Icons */
.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'liga';
  vertical-align: -3px;
}
.material-icons.md-18 { font-size: 18px; }
.material-icons.md-24 { font-size: 24px; }
.material-icons.md-36 { font-size: 36px; }
.material-icons.md-48 { font-size: 48px; }

/* サイト全体 */
html {
  display: flex;
  flex-direction: column;
  background-color: #FDFDFD;
}
body {
  font-family: 'Kantumruy Pro','Noto Sans JP','Meiryo','Hiragino Kaku Gothic ProN',sans-serif;
}

/* header */
header {
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 240px;
  padding-left: 50px;
  padding-right: 50px;
  background-image: linear-gradient( 102deg,  rgba(68,110,92,1) 17.4%, rgba(107,156,120,1) 49.3%, rgba(154,183,130,1) 83.4%, rgba(247,237,191,1) 110.3% );
}
header .container {
  display: flex;
  flex-direction: column;
}
header h1, header p {
  color: #494544;
  text-align: left;
}
header h1 {
  font-size: 38px;
  margin: 0;
}
header h1, header p {
  color: white;
  text-align: left;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 1.00);
}
header p {
  font-size: 20px;
}

@media screen and (max-width: 768px) {
  header {
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 10px;
  padding-right: 10px;
}
  header p {
  font-size: 16px;
}
  .site-content h1 {
    font-size: 20px !important;
    margin-bottom: 25px;
    text-align: center;
  }
  .site-content h2 {
    font-size: 18px !important;
  }
}

/* サイト 共通 */
.site {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.site-content {
  flex: 1 1 auto;
  /*padding-top: 50px;*/
  padding-bottom: 50px;
}
.error, .information {
  background-color: #fff;
  border-style: dashed;
  margin-bottom: 20px;
  padding: 1em;
  border-width: 1px;
  border-radius: 3px;
}
.error {
  color: #ff9090;
  border-color: #ff9898;
}
.error:empty, .display_error:empty {
  display: none;
}
.information {
  border-color: #c6c6c6;
}
.information .warning {
  font-weight: bold;
  margin-bottom: 3px;
}
.information .warning:not(:first-child) {
  font-weight: bold;
  margin-top: 8px;
}
.information .warning:before, .policy .warning:before {
  color: #fda400;
  font-family: 'Material Icons';
  content: "\e002";
  font-weight: normal;
  font-style: normal;
  margin-right: 2px;
  position: relative;
  top: 1px;
}
.caution {
  font-size: 16px;
  background-color: #FDFAEA;
  margin-bottom: 20px;
  padding: 1em;
  border-radius: 3px;
  border: 1px solid #F9F0C2;
}

.site-content h1 {
  font-size: 28px;
  margin-bottom: 25px;
  text-align: center;
}
.site-content h2 {
  font-size: 20px;
  margin-bottom: 8px;
}
.site-content h2 span {
  position: relative;
  /*top: 5px;*/
  padding-right: 3px;
}
.header_img {
  text-align: center;
}
span.caution {
  font-size: 85%;
  color: #2C77D0;
  position: relative;
  top: 6px;
  margin-left: 0.5em;
}
.reg-info {
  font-size: 14px;
  margin-bottom: 10px;
  padding-right: 0.5em;
  padding-bottom: 5px;
  padding-left: 0.5em;
  border-bottom: 1px dashed #cfcfcf;
}
[class*="link-"]:after {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  margin-right: 2px;
  margin-left: 2px;
  position: relative;
  top: 2px;
}
a.link-ex:after { content: '\e89e'; }
a.link-pdf:after { content: '\e415'; }
a.link-download:after { content: '\e161'; }
a.link-mail:after { content: '\e0e1'; }

hr {
  height: 6px;
  background: url(images/hr.svg) center center repeat-x;
  margin-top: 20px;
  margin-bottom: 20px;
}
@media all and (-ms-high-contrast: none) {
  hr {
    background: url(images/hr.svg) center center repeat-x;
  }
}
.required { color: #fa6767; }
.is-date { width: 2.5rem }
.is-10pct { width: 10%; }
.is-20pct { width: 20%; }
.is-30pct { width: 30%; }
.is-40pct { width: 40%; }
.is-50pct { width: 50%; }
.is-60pct { width: 60%; }
.is-70pct { width: 70%; }
.is-80pct { width: 80%; }
.is-90pct { width: 90%; }

/* table */
.table thead th {
  text-align: center;
}
th {
  background: #f1f1f1;
}
th:empty, td:empty {
  background: url(images/na.png);
}
.table tbody th {
  width: 20%;
  font-weight: 500;
}
.table tbody td.bg {
  background-color: #f1f1f1;
}
.table th, .table td {
  vertical-align: middle;
}
th .required {
  font-weight: bold;
  color: #fa6767;
  margin-left: 2px;
}
.flex-ai-center {
  display: flex;
  align-items: center;
}

input[type=text], input[type=radio], input[type=checkbox] {
  margin-right: 5px;
}
input[type=text]:not(:first-child), input[type=checkbox]:not(:first-child) {
  margin-left: 5px;
}
input[type="radio"][disabled] + label {
  color: silver;
}
textarea.row {
  height: 5em;
}
textarea.row2 {
  height: 300px;
}
.information input[type=checkbox] {
  transform: scale(1.3);
}
.select:not(:last-child) {
  padding-right: 5px;
}
ul.eg {
  font-size: 14px;
  margin-top: 5px;
  color: #808080;
}
ul.eg li:before, p.star:before {
  color: #e9a944;
  font-family: 'Material Icons';
  margin-right: 3px;
  position: relative;
  top: 2px;
}
ul.eg li:before {
  content: '\e88e';
}
p.star:before {
  content: '\e838';
}
.t-keyword th:nth-child(1), .t-affliation th:nth-child(1) {
  width: 4em;
  text-align: center;
}
.t-author tbody th:nth-child(1), .t-author tbody td:nth-child(2), .t-author tbody td:nth-child(3), .t-author tbody td:nth-child(7) {
  width: 4em;
  text-align: center;
}
.t-author-conf tbody th:nth-child(1), .t-author-conf tbody td:nth-child(5) {
  width: 4em;
  text-align: center;
}
th.no, td.no {
  background-color: #fff3cd;
}
.campaign-info {
  font-size: 14px;
  padding-top: 10px;
  padding-left: 20px;
}
.maru {
  font-family: 'ヒラギノ角ゴシック', YuGothic, 'Yu Gothic', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
}
:placeholder-shown {
  color: #d3d3d3;
}
::-webkit-input-placeholder {
  color: #d3d3d3;
}
:-moz-placeholder {
  color: #d3d3d3;
  opacity: 1;
}
::-moz-placeholder {
  color: #d3d3d3;
  opacity: 1;
}
:-ms-input-placeholder {
  color: #d3d3d3;
}
.field {
  padding-top: 20px;
}
.button_back {
  background-color: #cfcfcf;
  width: 100px;
  height: 36px;
  border-radius: 4px;
  border-color: #fff;
  font-size: 14px;
  margin-right: 10px;
}
.pay {
  padding-top: 0.3em;
  padding-bottom: 0.5em;
  border-radius: 4px;
}
.button {
  width: 185px;
  height: 50px;
  border-radius: 4px;
}
.button, .pay {
  color: white;
  border-style: none;
  padding-right: 1em;
  padding-left: 1em;
  transition: 0.5s;
}
.button[name=back], .pay[name=back] {
  background-color: #cfcfcf;
}
.button[name=next], .pay[name=next] {
  background-color: #287c5d;
}
.button[name=del] {
  background-color: #fa7373;
}
.button[name=payment], .button[name=fup], .button[name=print] {
  background-color: #d1545b;
}
.button[name=payment] {
  width: 250px;
}
.pay .material-icons {
  position: relative;
  top: 3px;
}
.button .material-icons, .pay .material-icons {
  font-size: 18px;
}
.button .material-icons.lt, .pay .material-icons.lt {
  margin-right: 8px;
}
.button .material-icons.rt, .pay .material-icons.rt {
  margin-left: 8px;
}
.input:focus {
  background-color: #e6fefa;
}
.btns {
  border: 1px dashed silver;
  padding: 15px;
  display: flex;
  justify-content: center;
}
.button:hover, .pay:hover {
  color: #fff;
  opacity: 0.5;
}
.button:focus, .pay:focus {
  color: #fff;
}
.mypage-btn {
  display: flex;
  flex-wrap: wrap;
}
.mypage-btn .button {
  font-size: 14px;
  width: 150px;
}
.button[name=payment] br {
  display: none;
}
.is-small {
  height: 35px;
}
/* @end */
/* @group Log in */
.box {
  margin-top: 50px;
  border-radius: 0px;
}
.avatar {
  margin-top: -70px;
  padding-bottom: 20px;
}
.avatar img {
  padding: 5px;
  background: lightgray;
  border-radius: 50%;
  -webkit-box-shadow: 0 2px 3px rgba(10, 10, 10, .1), 0 0 0 1px rgba(10, 10, 10, .1);
  box-shadow: 0 2px 3px rgba(10, 10, 10, .1), 0 0 0 1px rgba(10, 10, 10, .1);
  width: 100px;
  height: 100px;
}
.button.log-in {
  border-radius: 3px;
  transition: 0.3s;
}
/* @end */
/* @group File upload */
.article dt {
  float: left;
}
.uploadButton {
  font-size: 14px;
  display: inline-block;
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  background: #748AD1;
  color: #fff;
  text-align: center;
  line-height: 38px;
  width: 300px;
  cursor: pointer;
  transition: 0.5s;
}
.uploadButton .material-icons {
  font-size: 18px;
  position: relative;
  top: 3px;
  padding-right: 6px;
}
.uploadButton:hover {
  opacity: 0.5;
}
.uploadButton input[type=file] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  opacity: 0;
}
.uploadValue {
  display: none;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
  padding: 3px;
  color: #ffffff;
}
/* @end */

/* Footer */
footer {
  background-color: #EA8D26;
  height: 100px;
  padding-top: 20px;
}
footer p {
  font-size: 13px;
  text-align: center;
  color: white;
}

/* Media Queries - メディアクエリ定義 */
@media screen and (max-width: 1080px) {
  .header > .container, .site-content > .container {
    padding-right: 10px;
    padding-left: 10px;
  }
}
@media screen and (max-width: 768px) {
  div.flex-box {
    display: block;
  }
  .header h1 {
    font-size: 26px;
  }
  .header h2 {
    font-size: 20px;
  }
  .header p {
    display: none;
  }
  .select, .input[class$="pct"] {
    width: 100%;
  }
  #hotel.input {
    width: calc(100% - 2em);
  }
  .input:not(:last-child) {
    margin-bottom: 5px;
  }
  .flex-ai-center .input {
    margin-bottom: 0px;
  }
  span.select, select {
    width: 100%;
  }
}
@media screen and (max-width: 640px) {
  .table {
    border-top: 1px solid #dbdbdb;
  }
  .table thead th, .table tbody th, .table tbody td {
    width: 100%;
    display: block;
  }
  .table tbody th:nth-child(2) {
    width: 100%;
    display: block;
  }
  .t-keyword th:nth-child(1), .t-affliation th:nth-child(1), .t-author tbody th:nth-child(1), .t-author tbody td:nth-child(2), .t-author tbody td:nth-child(3), .t-author tbody td:nth-child(7) {
    width: 100%;
  }
  .table th, .table td {
    border-top-style: none;
  }
  .t-author thead th:not(:nth-child(1)) {
    display: none;
  }
  .t-author tbody td:nth-child(2):before, .t-author tbody td:nth-child(3):before {
    font-family: 'ヒラギノ角ゴシック', YuGothic, 'Yu Gothic', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
    content: attr(data-title);
    margin-right: 5px;
  }
  .fee {
    width: 100%;
  }
}
@media screen and (max-width: 320px) {
  .header {
    height: 200px;
  }
  .header h1 {
    font-size: 20px;
  }
  .header h2 {
    font-size: 18px;
  }
  .flex-ai-center {
    display: block;
  }
  .button[name=payment] {
    height: 60px;
  }
  .button[name=payment] br {
    display: inline;
  }
  div.flex-ai-center div.select {
    padding-right: 0;
  }
  div.flex-ai-center div.select:not(:first-child) {
    margin-top: 5px;
  }
}
/* @end */

/* marginとか */
.mg_t-1 {
  margin-top: -1rem;
}
.mg_t-05 {
  margin-top: -0.5rem;
}
.mg_t05 {
  margin-top: .5rem;
}
.mg_t1 {
  margin-top: 1rem;
}
.mg_t2 {
  margin-top: 2rem;
}
.mg_b05 {
  margin-bottom: .5rem;
}
.mg_b1 {
  margin-bottom: 1rem;
}
.mg_b2 {
  margin-bottom: 2rem;
}
.mg_b3 {
  margin-bottom: 3rem;
}
.mg_b4 {
  margin-bottom: 4rem;
}
.mg_l05 {
  margin-left: .5rem;
}
.mg_l1 {
  margin-left: 1rem;
}
.mg_l2 {
  margin-left: 2rem;
}
.mg_r1 {
  margin-right: 1rem;
}
.mg_r2 {
  margin-right: 2rem;
}
.ce {
  text-align: center !important;
}
.le {
  text-align: left !important;
}
/* flexbox */
.frame_box {
  display: flex;
  justify-content: space-between;
  border-bottom: #ddd dotted 1px;
}
.frame_box:last-child {
  border-bottom: none;
}
.left_box, .right_box {
  display: inline-block;
  vertical-align: middle;
  line-height: 1.5;
}
.left_box {
  width: 25%;
  padding: .5rem 1rem .5rem .5rem;
  color: #0D053C;
  font-size: .8rem;
  text-align: right;
}
.right_box {
  padding: .6rem 1rem .5rem .5rem;
  width: 75%;
  font-size: .8rem;
}
/* 選択肢によって表示／非表示 */
.pa_fade {
  /*position: absolute;*/
  display: none;
}
.pa_td {
  background: #fafafc;
}
/* 4.Accommodation > stay */
.stay_box {}
/* resendpass 送信ボタン*/
.button-001 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 140px;
  margin: 1rem auto;
  padding: .7em 2em;
  border: none;
  border-radius: 5px;
  box-shadow: 0 2px 3px rgb(0 0 0 / 25%), 0 2px 3px -2px rgb(0 0 0 / 15%);
  background-color: #0096d7;
  color: #fff;
  font-weight: 600;
  font-size: 1em;
}
.button-001:hover {
  background-color: #135e96;
}

button[type="submit"][disabled] {
  color: #ccc;
  border-color: #ccc;
  cursor: not-allowed;
}
button[type="submit"][disabled]:hover {
  opacity: 1;
}


/* PCのみ,SPのみ 非表示 */
@media(min-width:769px){
  .sp {
    display: none !important;
    }
  }
@media(max-width:768px){
  .pc {
    display: none !important;
    }
  }

#back-to-top {
	position: fixed;
	right: 25px;
	bottom: 15px;
}
#back-to-top a {
	color: #fff;
	background-color: rgba(42, 43, 54);
	width: 50px;
	height: 50px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 6px;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: 0.3s;
}
#back-to-top a:hover {
	background-color: rgba(42, 43, 54, 0.4);
}

/* 右上MyPageボタン */
input.space_tb1 {
  height: 40px;
  padding: .5rem 1rem;
  vertical-align: middle;
  background-color: #CDE4EB;
  border: none;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.3);
  transition: .3s;
}
input.space_tb2 {
  height: 40px;
  padding: .5rem 1rem;
  vertical-align: middle;
  background-color: #eee;
  border: none;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.3);
  transition: .3s;
}
input.space_tb1:hover, input.space_tb2:hover {
  box-shadow: 0 0 2px rgba(0,0,0,0.2);
}

/* 20240306追加 見出し */
.h3_style {
	position: relative;
	border-bottom: 5px solid #ddd;
	padding: 10px 0;
  font-size: 1.2rem;
  font-weight: 600;
	}
.h3_style:before {
	position: absolute;
	left: 0;
	bottom: -5px;
	width: 20%;
	height: 5px;
	content: '';
	background: #27acd9;
	}
@media screen and (max-width: 768px) {
  .h3_style {
    font-size: 1.0rem;
  }
}

/* 20240306追加 数字リスト インデント */
.regtxt_box2 ol {
	/*margin-left: 3.5em;*/
}
.regtxt_box2 ol li {
	list-style-type: none;
	counter-increment: cnt;
	position: relative;
  margin-bottom: .4rem;
}
.regtxt_box2 ol li:before {
	content: counter(cnt) ")";
	display: inline-block;
	margin-left: -3.5em;
	width: 3em;
	text-align: right;
	position: absolute;
	/*top: 0;*/
	left: 0;
}

/* 2024030追加 general,invited テキスト周り */
.regtxt_box {
  line-height: 1.5;
  letter-spacing: 1px;
  padding: 1rem 1rem 1rem 2rem;
  margin-bottom: 1rem;
}
.regtxt_box p {
    margin: 0; 
    padding: 0;
}

.regtxt_box ul {
  counter-reset:list;
  list-style-type:none;
  font: 14px/1.6 'arial narrow', sans-serif;
  padding:0;
}
.regtxt_box ul li{
  position:relative;
  color: #333;
  padding: 0 0 0 20px;
  margin: 7px 0px;
  line-height: 30px;
  border-bottom: dashed 1px #ccc;
  letter-spacing: 1px;
}
.regtxt_box ul li:before{
  counter-increment: list;
  content: counter(list) ".";
  display: block;
  position: absolute;
  left: 0px;
  font-weight: bold;
  top: 50%;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.regtxt_box .tit {
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 1.5rem;
}
/* 文頭揃え */
.regtxt_box .tt {
  padding-left: 14em;
  text-indent: -14em;
  margin-top: .5rem;
  line-height: 1.8;
}




@media screen and (max-width: 768px) {
  .regtxt_box .tt {
    padding-left: 0;
    text-indent: 0;
  }
}

.red {
  color:#C22047;
}


/*2024730追加*/


div.ul-disk p{
	text-indent: -1em;
	padding-left: 1em;
}

.photo-wrap{
	display: flex;
	justify-content: flex-start;
}

.photo-wrap img{
	margin-right: 1em;
}
