@charset "UTF-8";

/* 全体の設定
–––––––––––––––––––––––––––––––––––––––––––––––––– */
html {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    font-size: 62.5%;
}

body {
    color: #000;
    font-family: 'Hiragino Kaku Gothic Pro','ヒラギノ角ゴ Pro W3','メイリオ',Meiryo,'ＭＳ Ｐゴシック',sans-serif;
    background:#fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    margin:0;
	padding:0;
}

/* グリッド
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.container {
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 2.0rem;
    position: relative;
}
/* ブロックを縦に表示 */
.row {
    display: flex;
    flex-direction: column;
    padding: 0;
    width: 100%;
}
.col {
    display: block;
    flex: 1 1 auto;
    margin-left: 0;
    max-width: 100%;
    width: 100%;
}
/* 768px以上の表示 */
@media ( min-width : 768px ) {
.row {
    display: flex;
    flex-direction: row;
    padding: 0;
}
.col {
    margin-left: 4%;
}
	
.col:first-child { 
    margin-left: 0; 
}

.row .col.span-1 {
    flex: 0 0 4.66666666667%;
    max-width: 4.66666666667%;
}
.row .col.span-2 {
    flex: 0 0 13.3333333333%;
    max-width: 13.3333333333%;
}
.row .col.span-3 {
    flex: 0 0 22%;
    max-width: 22%;
}
.row .col.span-4 {
    flex: 0 0 30.6666666667%;
    max-width: 30.6666666667%;
}
.row .col.span-5 {
    flex: 0 0 39.3333333333%;
    max-width: 39.3333333333%;
}
.row .col.span-6 {
    flex: 0 0 48%;
    max-width: 48%;
}
.row .col.span-7 {
    flex: 0 0 56.6666666667%;
    max-width: 56.6666666667%;
}
.row .col.span-8 {
    flex: 0 0 65.3333333333%;
    max-width: 65.3333333333%;
}
.row .col.span-9 {
    flex: 0 0 74.0%;
    max-width: 74.0%;
}
.row .col.span-10 {
    flex: 0 0 82.6666666667%;
    max-width: 82.6666666667%;
}
.row .col.span-11 {
    flex: 0 0 91.3333333333%;
    max-width: 91.3333333333%;
}
.row .col.span-12 {
    flex: 0 0 100%;
    max-width: 100%;
}

/* オフセット */
.row .col.offset-1 {
    margin-left: 8.66666666667%;
}
.row .col.offset-2 {
    margin-left: 17.3333333333%;
}
.row .col.offset-3 {
    margin-left: 26%;
}
.row .col.offset-4 {
    margin-left: 34.6666666667%;
}
.row .col.offset-5 {
    margin-left: 43.333333333%;
}
.row .col.offset-6 {
    margin-left: 52%;
}
.row .col.offset-7 {
    margin-left: 60.6666666667%;
}
.row .col.offset-8 {
    margin-left: 69.3333333333%;
}
.row .col.offset-9 {
    margin-left: 78.0%;
}
.row .col.offset-10 {
    margin-left: 86.6666666667%;
}
.row .col.offset-11 {
    margin-left: 95.3333333333%;
}    
}


/* 見出し
–––––––––––––––––––––––––––––––––––––––––––––––––– */
h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 2rem;
  font-weight: 300;
  letter-spacing: 0.1em;}
h1 { font-size: 3.5rem; line-height: 1.2;  letter-spacing: -.1rem;}
h2 { font-size: 3.2rem; line-height: 1.25; letter-spacing: -.1rem; }
h3 { font-size: 3.0rem; line-height: 1.3;  letter-spacing: -.1rem; }
h4 { font-size: 2.4rem; line-height: 1.35; letter-spacing: -.08rem; }
h5 { font-size: 1.8rem; line-height: 1.5;  letter-spacing: -.05rem; }
h6 { font-size: 1.5rem; line-height: 1.6;  letter-spacing: 0; }

/* モバイル表示 */
@media (min-width: 550px) {
  h1 { font-size: 3.5rem; }
  h2 { font-size: 3.2rem; }
  h3 { font-size: 3.0rem; }
  h4 { font-size: 2.8rem; }
  h5 { font-size: 2.4rem; }
  h6 { font-size: 1.5rem; }
}

#logo a {text-decoration: none;display: block;}

/*ロゴ*/
#logo {
	margin: 0;padding: 0;
	font-size: 1.5rem;
}

/*ロゴを画像にする場合
---------------------------------------------------*/
#logo img {
	display: block;
	width: 150px;
}
p {
  margin-top: 0; }


/* リンク
–––––––––––––––––––––––––––––––––––––––––––––––––– */
a {
  color: #007F88; }
a:hover {
  color: #0FA0CE; }


/* ボタン
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.button,
button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
  display: inline-block;
  height: 38px;
  padding: 0 30px;
  margin-right: 5px;
  color: #555;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 38px;
  letter-spacing: .1rem;
  text-transform: none;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border: 1px solid #bbb;
  border-radius: 0;
  cursor: pointer;
  box-sizing: border-box; }
.button:hover,
button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
.button:focus,
button:focus,
input[type="submit"]:focus,
input[type="reset"]:focus,
input[type="button"]:focus {
  color: #333;
  border-color: #888;
  outline: 0; }


/* フォーム
–––––––––––––––––––––––––––––––––––––––––––––––––– */
input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea,
select {
  height: 38px;
  padding: 6px 10px; 
  background-color: #fff;
  border: 1px solid #D1D1D1;
  border-radius: 0;
  box-shadow: none;
  box-sizing: border-box; }

input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none; }
textarea {
  min-height: 100px;
  padding-top: 6px;
  padding-bottom: 6px; }
input[type="email"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
  border: 1px solid #666;
  outline: 0; }
label,
legend {
  display: block;
  margin-bottom: .5rem;
  font-weight: 600; }
fieldset {
  padding: 0;
  border-width: 0; }
input[type="checkbox"],
input[type="radio"] {
  display: inline; }
label > .label-body {
  display: inline-block;
  margin-left: .5rem;
  font-weight: normal; }


/* リスト
–––––––––––––––––––––––––––––––––––––––––––––––––– */
ul {
  list-style: circle inside; }
ol {
  list-style: decimal inside; }
ol, ul {
  padding-left: 0;
  margin-top: 0; }
ul ul,
ul ol,
ol ol,
ol ul {
  margin: 1.5rem 0 1.5rem 3rem;
  font-size: 90%; }
li {
  margin-bottom: 1rem; }


/* コード
–––––––––––––––––––––––––––––––––––––––––––––––––– */
code {
  padding: .2rem .5rem;
  margin: 0 .2rem;
  white-space: nowrap;
  background: #F1F1F1;
}
pre > code {
  display: block;
  padding: 1rem 1.5rem;
  white-space: pre; 
}


/* テーブル
–––––––––––––––––––––––––––––––––––––––––––––––––– */
table {
	border-collapse: collapse; }
th,
td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #E1E1E1; }
th:first-child,
td:first-child {
  padding-left: 0; }
th:last-child,
td:last-child {
  padding-right: 0; }


/* スペース
–––––––––––––––––––––––––––––––––––––––––––––––––– */
button,
.button {
  margin-bottom: 1rem; }
input,
textarea,
select,
fieldset {
  margin-bottom: 1.5rem; }
pre,
blockquote,
dl,
figure,
table,
p,
ul,
ol,
form {
  margin-bottom: 2.5rem; }


/* 全幅
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.full-width {
  width: 100%;
  box-sizing: border-box; }
.max-full-width {
  max-width: 100%;
  box-sizing: border-box; }
.pull-right {
  float: right; }
.pull-left {
  float: left; }


/* 罫線
–––––––––––––––––––––––––––––––––––––––––––––––––– */
hr {
  margin-top: 3rem;
  margin-bottom: 3.5rem;
  border-width: 0;
  border-top: 1px solid #E1E1E1; 
}
/* 色変更する場合は、#以降のカラーコードを変更する IE非対応 */
:root { 
    --base-color: #000;
    --link-color: #666;
    --linkhover-color: #3366FF; ;
    --back-color: #1A4CCC;
    --border-color: #ccc;
    --white-color: #fff;
}

img {
	max-width:100%;
	height: auto;
}
a {
    display: inline-block;
    color: #007F88;
    text-decoration-line: none;
    font-weight: bold; 
}
a:hover { 
    color: var(--linkhover-color);
}
a img {
    margin-bottom: 1rem;
}
a img:hover {
	opacity: 0.8;
}
.blueback {
	background-color: var(--back-color);
	color: var(--white-color);
	padding: 1rem;
}
.underline {
	border-bottom: 3px solid var(--back-color);
	padding-bottom: 0.5rem;
}
.center {
	text-align: center;
}

/*ヘッダー
-------------------------------------*/
.head {
	display: flex;
    flex-direction: row;
    padding: 1rem 0 0 0;
}

.head h1 { 
    padding: 1rem 0;
}
.telbox {
	margin-left: auto;
	font-size: 3.0rem;
	padding: 1rem 0 0 0;
}
.menu {
	background-color: var(--back-color);
}

@media screen and (min-width: 768px){
/* PC時はMENUボタンを非表示 */
#open,#close {
    display: none !important;
}

#navi {
    display: block !important;
}
}

@media screen and (max-width: 768px){
.head {
	flex-direction: column;
    text-align: left;
    margin-bottom: 20px;
}
.telbox {
	margin-left: 0;
	text-align: center;
}
.head #open,#close  {
    position: absolute;
    top: 20px;
    right: 12px;
    }

nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

nav li {
	padding-top: 0;
	border-bottom: 1px solid var(--border-color);
	margin-bottom: 0;
}
/* スマホ時はMENUボタンを表示 */
#open {
    display: block;
    background: url(../img/button.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 50px;
    height: 50px;
    border: none;
    position: absolute;
    top: 20px;
    right: 12px;
}
#close  {
    display: block;
    background: url(../img/button2.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 50px;
    height: 50px;
    border: none;
    position: absolute;
    top: 20px;
    right: 12px;
}
/* スマホ時はメニューを非表示 */
#navi {
    display: none;
}
}
/*ナビ
---------------------------------------------------------*/
/* PC：縦メニューを左側に固定 */
@media (min-width: 768px) {
  nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
  }
  nav ul li {
    margin: 0;
    padding: 0;
    border-bottom: 1px solid var(--border-color);
  }

  nav ul li a,
  nav ul li .menu-btn {
    display: block;
    width: 100%;
    padding: 1.6rem 1.6rem;
    box-sizing: border-box;
    text-decoration: none;
    color: #333;
    background: none;
    border: none;
    cursor: pointer;
  }

  nav ul li a:hover,
  nav ul li .menu-btn:hover {
    background-color: var(--linkhover-color);
    color: var(--white-color);
  }
}
@media (max-width: 768px) {

  #menu {
    display: none;
  }

  #open {
    display: block;
    background: url(../img/button.png) no-repeat center;
    background-size: contain;
    width: 50px;
    height: 50px;
    position: absolute;
    top: 20px;
    right: 12px;
  }
#close {
    display: none;
    background: url(../img/button2.png) no-repeat center;
    background-size: contain;
    width: 50px;
    height: 50px;
    position: absolute;
    top: 20px;
    right: 12px;
  }

  nav ul {
    flex-direction: column;
  }

  nav ul li {
    border-bottom: 1px solid var(--border-color);
  }
  nav ul li a,
  nav ul li .menu-btn {
    padding: 1.6rem 1.6rem;
    display: block;
  }
}

/*メイン画像
-------------------------------------*/
.mainimg img {
	width: 100vw;
}

/*メインコンテンツ
-------------------------------------*/
/* メインコンテンツのスタイル */
.main {
display: flex; /* Flexboxを使用 */
}

/*title
-------------------------------------*/
:root {
    --icon-size: 100px;      /* アイコンの大きさ */
    --gap-size: 20px;        /* アイコンとテキストの間の隙間 */
}
.post-info {
    position: relative;
    padding-top: 4px;
    margin-bottom: 40px;
    min-height: 100px; 
}
.post-contents {
    background: #AD3169;
    border-radius: 50%;
    color: #fff;
    width: 100px;
    height: 100px; 
    font-size: 1.4rem;
    text-align: center;
    position: absolute;
    top: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    line-height: 1.1;  
}
.post-contents span {
    font-size: 1.15rem;
    border-top: 1px rgba(255,255,255,.5) solid;
    margin-top: 2px;
    padding-top: 2px;
    display: block;
    width: 80%;
    text-align: center;
}
.post-title {
    font-family: "ヒラギノ角ゴ Pro W3", sans-serif;
    font-size:  1.5rem;
    font-weight: normal;
}
.post-title,
.post-cat {
    margin-left: calc(var(--icon-size) + var(--gap-size)); 
}

.space-right {
  margin-right: 20px; 
}

.space-bottom {
  margin-bottom: 20px;
}
.image-map img {
  width: 100%; 
  max-width: 100%;
  height: auto;
}

@media (min-width: 768px) {
  .image-map img {
    width: 50%; 
  }
}

.image-container {
  display: flex;
  flex-direction: column; 
  align-items: flex-start; 
  gap: 15px; 
}

.image-container img {
  width: 100%; 
  max-width: 100%;
  height: auto !important; 
  object-fit: contain; 
}


@media (min-width: 768px) {
  .image-container {
    flex-direction: row; 
    justify-content: flex-start; 
    align-items: flex-start; 
    gap: 30px; 
  }

  .image-container img {
    width: 25%; 
  }
}

/*開催までのスケジュール
-------------------------------------*/
.schedule h3 {
    background-color: var(--back-color);
	color: var(--white-color);
	padding: 1rem;
}
.schedule dd {
    list-style-type: none;
	border-bottom: 1px solid var(--back-color);
	padding: 20px 15px 30px;
}
.schedule dd:last-of-type {
    border-bottom: none;
    padding-bottom: 5px;
}
.schedule dl {
    border-bottom: 3px solid var(--back-color); 
    padding-bottom: 20px;
}
/* 開催までのスケジュール内のリスト表示 */
.info-grid {
  display: grid;
  grid-template-columns: auto auto 1fr; 
  gap: 12px 8px; 
  align-items: start; 
  max-width: 600px; 
  margin: 20px 0;
}

.info-label {
  text-align: justify; 
  text-justify: inter-ideograph;
  min-width: 4.5em; 
}

.info-colon {
  font-weight: bold;
  padding: 0 4px;
}

.info-value {
  line-height: 1.5;
}

.sub-text {
  font-size: 0.9em;
  color: #555;
}


/*新着情報
-------------------------------------*/
.news h2 {
    background-color: var(--back-color);
	color: var(--white-color);
	padding: 1rem;
}
.news li {
    list-style-type: none;
	border-bottom: 1px solid var(--border-color);
	padding: 0.5rem 0;
}
/*開催趣旨
-------------------------------------*/
.scope {
  margin-top: 2rem;
  margin-bottom: 2.5rem; 
}

.scope p {
  text-align: justify;   
  margin-bottom: 1.5rem;
}

/* 3つのテーマを囲むボックス */
.scope-themes {
  background-color: #f4f7fa;           
  border-left: 5px solid var(--back-color); 
  padding: 2.5rem 2rem;
  margin-bottom: 2.5rem;
  border-radius: 0 6px 6px 0;
}

.scope-themes h3 {
  font-size: 1.8rem !important;
  color: var(--back-color);
  font-weight: bold;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}

.theme-ordered-list {
  list-style: none; 
  counter-reset: theme-counter;
  padding-left: 0;
}
.theme-ordered-list li {
  counter-increment: theme-counter;
  position: relative;
  padding-left: 3.5rem; 
  margin-bottom: 1.5rem;
}
.theme-ordered-list li:last-child {
  margin-bottom: 0;
}

.theme-ordered-list li::before {
  content: counter(theme-counter);
  position: absolute;
  left: 0;
  top: 0.2rem;
  background-color: var(--back-color); 
  color: var(--white-color);          
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  text-align: center;
  line-height: 2.4rem;
  font-size: 1.3rem;
  font-weight: bold;
}

.theme-headline {
  display: block;
  font-size: 1.6rem;
  color: #111111;
  margin-bottom: 0.2rem;
}

.theme-body {
  display: block;
  font-size: 1.5rem;
  color: #555555;
}

.highlight-marker {
  background: linear-gradient(transparent 70%, #fff099 70%);
  padding: 0 2px;
  font-weight: bold;
}

/* 石田先生の表記調整 */
.text-right-box {
  text-align: right;   
  margin-top: 3rem;    
  margin-bottom: 2.5rem;
}
.text-right-box img {
  display: inline-block; 
  max-width: 150px; 
  height: auto;
  margin-bottom: 1rem;
  border-radius: 4px; 
}
.author-name {
  font-size: 1.6rem;
  font-weight: bold;
  color: #111111;
  margin-bottom: 0.5rem; 
}
.author-sub {
  font-size: 1.4rem;  
  color: #555555;        
}

/*開催概要
-------------------------------------*/
.about h2 {
    background-color: var(--back-color);
	color: var(--white-color);
	padding: 1rem;
}
.about dd {
    list-style-type: none;
	border-bottom: 1px solid var(--border-color);
	padding: 30px 15px 50px;
}

/* 全体のレイアウト設定 */
.info-grid {
  display: grid;
  /* デフォルト（スマホ）は1列の縦並びにする */
  grid-template-columns: 1fr;
  gap: 12px 0;
  align-items: center;
  margin: 20px 0;
}

/* パソコンやタブレットなどの広い画面では横並び（3列）にする */
@media (min-width: 768px) {
  .info-grid {
    grid-template-columns: max-content max-content max-content; 
  }
}

/* 左側のラベル（受付、講演会場など） */
.info-label {
  text-align: left;
  white-space: nowrap; /* 1行で表示 */
}

/* コロン */
.info-colon {
  font-weight: bold;
  padding: 0 8px; /* コロンの左右に少し余白を作る */
  white-space: nowrap; /* 1行で表示 */
}

/* 右側の詳細内容 */
.info-value {
  /* スマホでは文字数に応じて自然に改行させる */
  white-space: normal; 
}

@media (min-width: 768px) {
  .info-value {
    white-space: nowrap; /* パソコン画面では絶対に改行させない */
  }
}
/* 補足テキスト */
.sub-text {
  font-size: 0.9em;
  color: #555;
}
/* スマホ表示（画面幅767px以下）の時の個別調整 */
@media (max-width: 767px) {
  /* 縦並びの時はコロン（：）行を非表示にする */
  .info-colon {
    display: none; 
  }
  /* ラベルの下に少しだけ余白を作って見やすくする */
  .info-label {
    margin-bottom: -4px;
    font-weight: bold;
  }
  /* 詳細内容の下に余白を作り、次の項目と区切る */
  .info-value {
    margin-bottom: 12px;
    padding-left: 4px; /* わずかにインデントを下げて見やすく */
  }
}

/*FAQ
---------------------------------------------------------------------------*/
.openclose {cursor: pointer;}

/*FAQ全体を囲むボックス*/
.faq {
	line-height: 2;	/*行間を少しせまくする*/
}

/*質問*/
.faq dt {
	position: relative;
	padding-left: 3rem; 	/*下の「回答」と数字部分を合わせる*/
	border: 1px solid var(--primary-color);	/*枠線の幅、線種、varは色の事でcss冒頭で指定しているprimary-colorを読み込みます*/
	padding-right: 1rem;	/*ボックス内の右側の余白*/
	margin-bottom: 1rem;	/*ボックスの外（下）に空けるスペース*/
	border-radius: 5px;		/*角を少しだけ丸くする*/
}

/*「Q」のテキスト*/
.faq dt::before {
	content: "Q.";			/*このテキストを表示させます*/
	position: absolute;
	left: 0;
	top: 0;
	padding-left: 1rem;		/*テキストの左側に空ける余白*/
}

/*回答*/
.faq dd {
	margin-left: 3rem;		/*上の「質問」と数字部分を合わせる*/
	margin-bottom: 1rem;	/*下に空けるスペース*/
}

/*フッター
-------------------------------------*/
footer {
    background-color: var(--back-color);
    padding: 5rem 0;
	color: var(--white-color);
}
footer h5 {
    border-bottom: 2px solid var(--white-color);
}

/*コピーライト
-------------------------------------*/
.copyright {
    text-align: center;
    padding: 1rem 0;
    background-color: #97cdf3;
}
.copyright a {
    color: var(--base-color);
    text-decoration: none;
	display: inline-block;
}

/*ページトップへ戻るボタン
-------------------------------------*/
#pagetop {
    position: fixed;
    bottom: 15px;
    right: 15px;
}
#pagetop a {
    display: block;
    background: var(--back-color);
    color: var(--white-color);
    width: 50px;
    padding: 10px 5px;
    text-align: center;
}
#pagetop a:hover {
    background: var(--back-color);
}
/*パンくずリスト
-----------------------------------*/
.breadcrumb {
    margin: 0 0 1em 0;
    padding: 0;	
}
.breadcrumb li {
    list-style-type: none;
}
.breadcrumb li a {
    display: inline-block;
    color: var(--link-color);
}