@charset "UTF-8";
/*----------------------------------------------------
　Setting
----------------------------------------------------*/
/*----------------------------------------------------
### ブレークポイント
----------------------------------------------------*/
/*----------------------------------------------------
## 画面サイズ
----------------------------------------------------*/
/*----------------------------------------------------
### 色
----------------------------------------------------*/
/*----------------------------------------------------
### 文字サイズ
----------------------------------------------------*/
/*----------------------------------------------------
### マージン
----------------------------------------------------*/
/*----------------------------------------------------
### 角丸
----------------------------------------------------*/
/*----------------------------------------------------
　影幅
----------------------------------------------------*/
/*
---
name: Settingディレクトリ
tag:
  - Setting
category:
  - 2 Setting
---
Settingディレクトリにはサイト定義に関するファイルを格納します。
*/
/*
---
name: Variable.scss
tag:
  - Setting
category:
  - 2 Setting/Variable.scss
---
色やマージンなど、サイトで使用する様々な変数を定義します。
*/
/*
---
name: ブレークポイント
tag:
  - Setting
category:
  - 2 Setting/Variable.scss/1 ブレークポイント
---
ブレークポイント値の定義。

[メディアクエリ](Setting/_variable)で使用します。
```scss
$breakpoint-spmin : '(max-width: 320px)';
$breakpoint-sp    : '(max-width: 768px)';
$breakpoint-pc    : '(min-width: 769px)';
$breakpoint-pcmax : '(min-width: 980px)';

$breakpoints: (
  'spmin'  : $breakpoint-spmin,
  'sp'     : $breakpoint-sp,
  'pc'     : $breakpoint-pc,
  'pcmax'  : $breakpoint-pcmax,
) !default;
```
*凡例*
```scss
//SCSS
@media map-get($breakpoints, 'spmin') {
  //spminサイズ画面用のスタイル
}

//CSSコンパイル後
@media (max-width: 320px) {
  //spminサイズ画面用のスタイル
}
```
*/
/*
---
name: 画面サイズ
tag:
  - Setting
category:
  - 2 Setting/Variable.scss/2 画面サイズ
---
画面サイズの種類を定義。

ブレークポイント値はメディアクエリに使用しますが、画面サイズはコンテンツ幅の決定などに使用します。
```scss
$deviceWidth-spmin : 320px;
$deviceWidth-spmax : 768px;
$deviceWidth-pcmin : 769px;
$deviceWidth-pcmax : 980px;

$deviceWidth: (
  'spmin'  : $deviceWidth-spmin,
  'spmax'  : $deviceWidth-spmax,
  'pcmin'  : $deviceWidth-pcmin,
  'pcmax'  : $deviceWidth-pcmax,
) !default;
```
*凡例*
```scss
//SCSS
.container {
  min-width: $deviceWidth-spmin;
  max-width: $deviceWidth-spmax;
}

//CSSコンパイル後
.container {
  min-width: 320px;
  max-width: 768px;
}
```
*/
/*
---
name: 色
tag:
  - Setting
category:
  - 2 Setting/Variable.scss/3 色
---
サイトで使用する色の変数を定義。

一度しか使用しないような場面を除き、色はここで定義した変数を使用します。

必要に応じて追加します。
```scss
$color-bk: #000000; //完全黒
$color-wh: #FFFFFF; //完全白
$color-pri: #545454; //プライマリカラー
$color-sec: #FCA31B; //セカンダリカラー
$color-line: #F0F0F0; //ライン
$color-bg: #FFFFFF; //背景色

$color-success: #51A30A; //成功
$color-danger: #DE3401; //警告
$color-warning: #CB9400; //注意
$color-info: #F0F0F0; //情報
$color-light: #efefef; //ライト
$color-dark: #333333; //ダーク
$color-muted: #F0F0F0; //非アクティブ
$color-link: #3B8FF2; //リンク
```
*凡例*
```scss
//SCSS
.exsample_color_bk { color: $color-bk; }
.exsample_color_pri { color: $color-pri; }
.exsample_color_sec { color: $color-sec; }

//CSSコンパイル後
.exsample_color_bk { color: #333333; }
.exsample_color_pri { color: #f0831b; }
.exsample_color_sec { color: #DFEFF1; }
```
```html
<p class="exsample_color_bk">ブラック</p>
<p class="exsample_color_pri">プライマリカラー</p>
<p class="exsample_color_sec">セカンダリカラー</p>
```
*/
.exsample_color_bk {
  color: #333333;
}

.exsample_color_pri {
  color: #f0831b;
}

.exsample_color_sec {
  color: #DFEFF1;
}

/*
---
name: 文字サイズ
tag:
  - Setting
category:
  - 2 Setting/Variable.scss/4 文字サイズ
---
文字サイズの変数を定義。

単位はrem。

基本的にはここで定義した変数を使用しますが、
```scss
$fs-xs : 1.3rem;
$fs-s  : 1.5rem;
$fs-m  : 1.8rem;
$fs-l  : 2.1rem;
$fs-xl : 4.8rem;
```
*凡例*
```scss
//SCSS
P {
  font-size: $fs-s;
}

//CSSコンパイル後
P {
  font-size: 1.6rem;
}
```
*/
/*
---
name: マージン
tag:
  - Setting
category:
  - 2 Setting/Variable.scss/5 マージン
---
マージンのサイズを定義。単位はrem。
一度しか使用しないような場面を除き、ここで定義したサイズのみを使用します。
```scss
$m-xxxs : 0.2rem;
$m-xxs  : 0.5rem;
$m-xs   : 1rem;
$m-s    : 1.5rem;
$m-m    : 2rem;
$m-l    : 3rem;
$m-xl   : 5rem;
```
*凡例*
```scss
//SCSS
.block {
  margin: 0 auto $m-m;
  padding: $m-s $m-xs;
}

//CSSコンパイル後
.block {
  margin: 0 auto 2rem;
  padding: 1.5rem 1rem;
}
```
*/
/*
---
name: 角丸
tag:
  - Setting
category:
  - 2 Setting/Variable.scss/6 角丸
---
角丸のサイズを定義。単位はrem。
一度しか使用しないような場面を除き、ここで定義したサイズのみを使用します。
```scss
$round-s  : 0.3rem;
$round-m  : 0.6rem;
$round-l  : 1.2rem;
$round-xl : 2rem;
$round-h  : 10rem; //カプセル型
$round-e  : 50%; //正円
```
*凡例*
```scss
//SCSS
button {
  border-radius: $round-m;
}

//CSSコンパイル後
button {
  border-radius: 0.6rem;
}
```
*/
/*
---
name: 影
tag:
  - Setting
category:
  - 2 Setting/Variable.scss/7 影
---
影のサイズを定義。単位はrem。
サイズのみ定義なので、色も指定して使用します。
```scss
$shadow-s  : 0 1px 0 0;
$shadow-m  : 0 2px 1px 0;
$shadow-l  : 0 3px 2px 2px;
$shadow-xl : 0 5px 5px 3px;
```
*凡例*
```scss
//SCSS
button {
  box-shadow: $shadow-s $color-bk;
}

//CSSコンパイル後
button {
  box-shadow: 0 1px 0 0 #333333;
}
```
*/
/*----------------------------------------------------
　Base
----------------------------------------------------*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-family: -apple-system, BlinkMacSystemFont, Roboto, "游ゴシック体", YuGothic, "Yu Gothic Medium", sans-serif;
  font-feature-settings: "pkna" 1;
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block;
}

body {
  margin: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: left;
  background-color: #fff;
}

[tabindex="-1"]:focus {
  outline: 0 !important;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

p {
  margin: 0;
}

abbr[title],
abbr[data-original-title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  cursor: help;
  border-bottom: 0;
  text-decoration-skip-ink: none;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

ol,
ul,
dl {
  margin: 0;
  padding: 0;
  padding-inline-start: 0;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin: 0;
  padding: 0;
  padding-inline-start: 0;
}

li {
  list-style-type: none;
}

dt {
  font-weight: 700;
}

dd {
  margin: 0;
}

blockquote {
  margin: 0;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -.25em;
}

sup {
  top: -.5em;
}

a {
  color: #007bff;
  text-decoration: none;
  background-color: transparent;
}

a:hover {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([tabindex]) {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([tabindex]):hover, a:not([href]):not([tabindex]):focus {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([tabindex]):focus {
  outline: 0;
}

pre,
code,
kbd,
samp {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 1em;
}

pre {
  margin: 0;
  overflow: auto;
}

figure {
  margin: 0;
}

img {
  vertical-align: middle;
  border-style: none;
}

svg {
  overflow: hidden;
  vertical-align: middle;
}

table {
  border-collapse: collapse;
}

caption {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: #6c757d;
  text-align: left;
  caption-side: bottom;
}

th {
  text-align: inherit;
}

label {
  display: inline-block;
  margin-bottom: 0.5rem;
}

button {
  border-radius: 0;
}

button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

input[type="radio"],
input[type="checkbox"] {
  box-sizing: border-box;
  padding: 0;
}

input[type="date"],
input[type="time"],
input[type="datetime-local"],
input[type="month"] {
  -webkit-appearance: listbox;
}

textarea {
  overflow: auto;
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin-bottom: .5rem;
  font-size: 1.5rem;
  line-height: inherit;
  color: inherit;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

[type="search"] {
  outline-offset: -2px;
  -webkit-appearance: none;
}

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

summary {
  display: list-item;
  cursor: pointer;
}

template {
  display: none;
}

[hidden] {
  display: none !important;
}

/*
---
name: Baseディレクトリ
tag:
  - Base
category:
  - 1 Base
---
Baseディレクトリにはreset.cssなど基礎的なスタイルを格納します。
*/
/*
---
name: Reboot.scss
tag:
  - Base
category:
  - 1 Base/1 Reboot.scss
---
reset.cssです。**基本的にこのファイルは編集しません。**
*/
html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
}

/*----------------------------------------------------
　フォント
----------------------------------------------------*/
/* Google Fonts */
/* ここに追加 */
/*----------------------------------------------------
　フルードイメージ
----------------------------------------------------*/
img {
  max-width: 100%;
  height: auto;
}

/*
---
name: Basic.scss
tag:
  - Base
category:
  - 1 Base/2 Basic.scss
---
Reset.cssで設定されていない基礎的なスタイルを定義するscssです。
*/
/*----------------------------------------------------
　Mixin 
----------------------------------------------------*/
/*----------------------------------------------------
　下方向マージン
----------------------------------------------------*/
.mb-a {
  margin: 0 auto auto !important;
}

.mb-xxxs {
  margin: 0 auto 0.2rem !important;
}

.mb-xxs {
  margin: 0 auto 0.5rem !important;
}

.mb-xs {
  margin: 0 auto 1rem !important;
}

.mb-s {
  margin: 0 auto 1.5rem !important;
}

.mb-m {
  margin: 0 auto 2rem !important;
}

.mb-l {
  margin: 0 auto 3rem !important;
}

.mb-xl {
  margin: 0 auto 6rem !important;
}

/*----------------------------------------------------
　文字、背景カラー
----------------------------------------------------*/
.color-bk {
  color: #333333 !important;
}

.bg-bk {
  background: #333333 !important;
}

.color-wh {
  color: #FFFFFF !important;
}

.bg-wh {
  background: #FFFFFF !important;
}

.color-pri {
  color: #f0831b !important;
}

.bg-pri {
  background: #f0831b !important;
}

.color-sec {
  color: #DFEFF1 !important;
}

.bg-sec {
  background: #DFEFF1 !important;
}

.color-line {
  color: #FCCB9E !important;
}

.bg-line {
  background: #FCCB9E !important;
}

.color-bg {
  color: #FEF7D8 !important;
}

.bg-bg {
  background: #FEF7D8 !important;
}

.color-success {
  color: #51A30A !important;
}

.bg-success {
  background: #51A30A !important;
}

.color-danger {
  color: #DE3401 !important;
}

.bg-danger {
  background: #DE3401 !important;
}

.color-warning {
  color: #CB9400 !important;
}

.bg-warning {
  background: #CB9400 !important;
}

.color-info {
  color: #F0F0F0 !important;
}

.bg-info {
  background: #F0F0F0 !important;
}

.color-light {
  color: #efefef !important;
}

.bg-light {
  background: #efefef !important;
}

.color-dark {
  color: #841044 !important;
}

.bg-dark {
  background: #841044 !important;
}

.color-muted {
  color: #F0F0F0 !important;
}

.bg-muted {
  background: #F0F0F0 !important;
}

.color-link {
  color: #3B8FF2 !important;
}

.bg-link {
  background: #3B8FF2 !important;
}

/*----------------------------------------------------
name: 書体
----------------------------------------------------*/
.font-xs {
  font-size: 1.3rem !important;
}

.font-s {
  font-size: 1.6rem !important;
}

.font-m {
  font-size: 1.8rem !important;
}

.font-l {
  font-size: 2.6rem !important;
}

.font-xl {
  font-size: 3.2rem !important;
}

.font-b {
  font-weight: bold;
}

/*----------------------------------------------------
name: 文字揃え
----------------------------------------------------*/
.text-l {
  text-align: left;
}

.text-c {
  text-align: center;
}

.text-r {
  text-align: right;
}

/*----------------------------------------------------
　シャドウ
----------------------------------------------------*/
/*
---
name: Utillity.scss
tag:
  - Mixin
category:
  - 4 Mixin/1 Utillity.scss
---
## ユーティリティ
Variableで指定された変数を、ユーティリティクラスとして利用できるようにするMixin。

※ユーティリティクラスは限られた場面でのみ使用することを推奨。
***
`.mb-m //下方向マージン`

`.color-pri //文字色`

`.bg-pri //背景色`

`.font-m //文字サイズ`

`.font-b //太字`

`.text-c //センタリング`
***

*凡例*
```html
<p class="mb-xs">XSサイズの下方向マージン</p>
<p class="color-pri">文字色をプライマリカラー</p>
<p class="bg-sec">背景色をセカンダリカラー</p>
<p class="font-m">Mサイズの文字</p>
<p class="font-b">太字</p>
<p class="text-r">右寄せ</p>

```
*/
/*----------------------------------------------------
　メディアクエリ
----------------------------------------------------*/
@media (max-width: 768px) {
  .sp-kill {
    display: none !important;
  }
}

@media (min-width: 769px) {
  .pc-kill {
    display: none !important;
  }
}

/*
---
name: MediaQuery.scss
tag:
  - Mixin
category:
  - 4 Mixin/2 MediaQuery.scss
---
## メディアクエリ
メディアクエリを記述するためのmixin。

クラスの中でメディアクエリ用のスタイルを定義することができます。

引数を省略した場合、デフォルトは*pc*になります。
***
`@include mq( ブレークポイント );`
***

*凡例*
```scss
//SCSS
.example_mq_title {
  font-size: 2rem;
  @include mq(){
    font-size: 1.4rem;
  };
}
```
```html
<h1 class="example_mq_title">SPでは2remでオレンジ、PCでは1.4remで黒になります</h1>
```




### SP/PCのみ適用
SP/PCどちらかをdisplay:noneに指定するクラス。
***
`.sp-kill //SPで非表示`


`.pc-kill //PCで非表示`
***

*凡例*
```scss
//SCSS
.example_mq_title {
  font-size: 2rem;
  @include mq(){
    font-size: 1.4rem;
  };
}
```
```html
<h2 class="sp-kill">PCのみ表示されてます</h2>
<h2 class="pc-kill">SPのみ表示されてます</h2>
```
*/
.example_mq_title {
  font-size: 2rem;
  color: #DFEFF1;
}

@media (min-width: 769px) {
  .example_mq_title {
    font-size: 1.4rem;
    color: #333333;
  }
}

/*----------------------------------------------------
  ボタン
----------------------------------------------------*/
.button {
  display: block;
  color: #DFEFF1;
  background: #FFFFFF;
  border: solid 0.4rem #f0831b;
  margin: 0 auto;
  padding: 0;
  width: 100%;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  border-radius: 0.6rem;
  cursor: pointer;
  transition: 0.2s;
  transform: translate(0, 0);
  margin-bottom: 1.5rem;
  box-shadow: 0px 8px 0px #80450C;
}

@media (min-width: 769px) {
  .button {
    padding: 0;
    font-size: 2.6rem;
  }
}

.button:hover {
  color: #FFFFFF;
  box-shadow: none;
  transform: translate(0, 14px);
}

/*
---
name: Mixinディレクトリ
tag:
  - Mixin
category:
  - 4 Mixin
---
Mixinディレクトリにはmixinを定義したscssを格納します。
ここでは特に汎用的に使用するmixinを格納し、使用範囲が限定されるようなmixinは格納しなくても構いません。
*/
/*
---
name: Button.scss
tag:
  - Mixin
category:
  - 4 Mixin/3 Button.scss
---
## ボタンスタイル
汎用的なボタンスタイルのmixin。

引数を省略した場合、デフォルトではプライマリカラーの角丸ボタンになります
***
`@include buttonstyle( 文字色, 背景色, ボーダー色, 文字サイズ );`
***

*凡例*
```scss
//SCSS
.example_button {
  @include buttonstyle( $color-wh, $color-pri );
}
```
```html
<button class="example_button">ボタン</button>
```
*/
.example_button {
  display: block;
  color: #FFFFFF;
  background: #f0831b;
  border: solid 0.4rem #f0831b;
  margin: 0 auto;
  padding: 0;
  width: 100%;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  border-radius: 0.6rem;
  cursor: pointer;
  transition: 0.2s;
  transform: translate(0, 0);
}

/*----------------------------------------------------
　Layout
----------------------------------------------------*/
/*----------------------------------------------------
name: レイアウト
----------------------------------------------------*/
.wrap {
  margin: 0;
  width: 100%;
  min-width: 320px;
  max-width: 768px;
}

@media (min-width: 769px) {
  .wrap {
    min-width: 769px;
    max-width: 100%;
  }
}

/*
---
name: Layoutディレクトリ
tag:
  - Layout
category:
  - 3 Layout
---
Layoutディレクトリにはページの構造やレイアウトに関するファイルを格納します。
*/
/*
---
name: Container.scss
tag:
  - Layout
category:
  - 3 Layout/1 Container.scss
---
### Wrapクラス
コンテンツ幅を設定したWrapクラスです。
```scss
.wrap {
  margin: 0;
  width: 100%;
  min-width: $deviceWidth-spmin;
  max-width: $deviceWidth-spmax;
  @include mq() {
    min-width: $deviceWidth-pcmin;
    max-width: 100%;
  }
}
```
*凡例*
```scss
//HTML
<body>
  <div class="wrap">
    //コンテンツ
  <div>
</body>
```

*/
/*----------------------------------------------------
　Page
----------------------------------------------------*/
/*----------------------------------------------------
  1. common
  2. mainVisual
  3. seminar_contents
  4. formlink
  5. speaker
  6. program
  7. contact
  8. attention
----------------------------------------------------*/
/*----------------------------------------------------
  1. common
----------------------------------------------------*/
.mainVisual {
  line-height: 1.8;
}

.inner {
  max-width: 79rem;
  margin: 0 5%;
}

@media (min-width: 769px) {
  .inner {
    margin: 0% auto;
  }
}

.ttl {
  color: #f0831b;
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2rem;
  line-height: 1.4;
}

@media (min-width: 769px) {
  .ttl {
    font-size: 3.2rem;
  }
}

.asterisk {
  display: flex;
}

@media (min-width: 769px) {
  .asterisk {
    justify-content: center;
  }
}

.asterisk::before {
  display: block;
  content: "※";
  margin-right: 0.2rem;
}

.contents_frame {
  position: relative;
  background: #EBF5F6;
  padding: 4rem 0 4rem 0;
}

.contents_frame::before {
  content: "";
  position: absolute;
  display: block;
  right: 0;
  bottom: -32px;
  left: 0;
  width: 0px;
  height: 0px;
  margin: auto;
  border-style: solid;
  border-color: #EBF5F6 transparent transparent transparent;
  border-width: 32px 72px 0 72px;
}

/*----------------------------------------------------
 2. mainVisual
----------------------------------------------------*/
.mainVisualCont_frame {
  position: relative;
  background: #EBF5F6;
  padding: 2rem 0 4rem 0;
  background: #EBF5F6 url("../img/sp_mv.png") no-repeat 160% 0;
  background-size: contain;
  margin: 0 auto;
  display: block;
}

@media (min-width: 769px) {
  .mainVisualCont_frame {
    background: #EBF5F6 url("../img/pc_mv.png") no-repeat 64% 0;
    background-size: contain;
    margin: 0 auto;
    display: block;
    padding: 4rem 0 4rem 0;
  }
}

.mainVisualCont_frame::before {
  content: "";
  position: absolute;
  display: block;
  right: 0;
  bottom: -32px;
  left: 0;
  width: 0px;
  height: 0px;
  margin: auto;
  border-style: solid;
  border-color: #EBF5F6 transparent transparent transparent;
  border-width: 32px 72px 0 72px;
}

.mainVisual_innerbox {
  width: 100%;
  margin: 0 auto;
  max-width: 522px;
}

@media (max-width: 768px) {
  .mainVisual_innerbox {
    padding: 0 5%;
  }
}

.mainVisual_head {
  text-align: center;
}

@media (min-width: 769px) {
  .mainVisual_head {
    text-align: left;
    margin-bottom: 2rem;
  }
}

.mainVisual_head img {
  margin-bottom: 1rem;
}

@media (min-width: 769px) {
  .mainVisual_head img {
    margin-bottom: 1rem;
  }
}

.mainVisual_ttl {
  text-align: center;
  margin-bottom: 1.5rem;
}

@media (min-width: 769px) {
  .mainVisual_ttl {
    text-align: left;
  }
}

.mainVisual_date {
  text-align: center;
  margin-bottom: 1.5rem;
}

@media (min-width: 769px) {
  .mainVisual_date {
    text-align: left;
  }
}

.mainVisual_date img {
  width: 33.7rem;
  height: auto;
}

@media (min-width: 769px) {
  .mainVisual_date img {
    width: 52.3rem;
    height: 10.3rem;
  }
}

.main_speaker {
  text-align: center;
}

@media (min-width: 769px) {
  .main_speaker {
    text-align: initial;
    max-width: 64%;
  }
}

/*----------------------------------------------------
  3. seminar_contents
----------------------------------------------------*/
.seminar_contents .seminar_contents_txt {
  margin-bottom: 6rem;
}

.seminar_contents .seminar_contents_txt p {
  margin-bottom: 2rem;
}

/*----------------------------------------------------
  4. formlink
----------------------------------------------------*/
.reservation_info {
  text-align: center;
}

.formLink {
  background-color: #FFFFFF;
  padding: 4rem 2rem 2rem;
}

@media (min-width: 769px) {
  .formLink {
    padding: 6rem 2rem 6rem;
  }
}

.formLink .formlink_atttxt {
  background-color: #FFFFFF;
  padding: 1rem;
  margin: 0 auto 2rem auto;
  border-radius: 1.2rem;
  text-align: center;
  max-width: 60rem;
}

.formLink .formlink_attlist {
  font-weight: bold;
  margin: 0 1rem;
}

@media (min-width: 769px) {
  .formLink .formlink_attlist {
    margin: 0 auto;
  }
}

@media (min-width: 769px) {
  .formLink .button {
    width: 60rem;
    border: 4px solid #f0831b;
    background-color: #FFFFFF;
    color: #f0831b;
  }
}

.formLink .formLink_text {
  display: block;
  position: relative;
  color: #333333;
  padding: 1rem 0;
}

.formLink .formLink_text::before {
  position: absolute;
  width: 1.8rem;
  height: 1.8rem;
  left: 3.2rem;
  top: 0;
  bottom: 0;
  margin: auto 0;
  content: "\e91e";
  font-family: 'icomoon';
  font-size: 1.8rem;
  line-height: 1;
  color: #f0831b;
}

@media (min-width: 769px) {
  .formLink .formLink_text::before {
    width: 2.6rem;
    height: 2.6rem;
    left: 10rem;
    font-size: 2.6rem;
  }
}

.formLink .formLink_text .btInside_color {
  color: #f0831b;
}

.formLink .formLink_date {
  background-color: #f0831b;
  color: #FFFFFF;
  display: block;
}

.formLink .formLink_date > em {
  font-style: normal;
  font-weight: normal;
  font-size: 1.3rem;
}

@media (min-width: 769px) {
  .formLink .formLink_date > em {
    font-size: 1.8rem;
  }
}

.formLink .formlink_attlist li {
  font-weight: bold;
}

@media (min-width: 769px) {
  .formLink .formlink_attlist li {
    text-align: center;
  }
}

/*----------------------------------------------------
  5. speaker
----------------------------------------------------*/
.speakers .speakers_ttl {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #f0831b;
  border-bottom: 3px dotted #FCCB9E;
}

@media (min-width: 769px) {
  .speakers .speakers_ttl {
    font-size: 2.6rem;
    margin-bottom: 3rem;
  }
}

@media (min-width: 769px) {
  .speakers .speakers_block {
    display: flex;
  }
}

@media (min-width: 769px) {
  .speakers .speakers_block .speakers_info {
    width: 50%;
  }
}

.speakers .speakers_block .speakers_info dt {
  margin-bottom: 2rem;
}

@media (min-width: 769px) {
  .speakers .speakers_block .speakers_info dd {
    display: flex;
    width: 100%;
    margin-bottom: 1.5rem;
  }
}

.speakers .speakers_block .speakers_info dd img {
  width: 10rem;
  height: 10rem;
  margin-right: 1.5rem;
}

.speakers .speakers_block .speakers_info dd .speakers_name {
  font-weight: bold;
  line-height: 1.4;
}

.speakers .speakers_block .speakers_info dd em {
  font-style: normal;
  font-weight: normal;
  font-size: 1.3rem;
}

/*----------------------------------------------------
  6. program
----------------------------------------------------*/
.program {
  background-color: #EBF5F6;
}

.program .program_ttl {
  position: relative;
  font-size: 2rem;
  color: #fff;
  background-color: #004B94;
  border-radius: 10rem;
  padding: 1rem;
  text-align: center;
  display: block;
}

.program .program_ttl::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: -20px;
  left: 0;
  width: 0px;
  height: 0px;
  margin: auto;
  border-style: solid;
  border-color: #004B94 transparent transparent transparent;
  border-width: 2rem 1.5rem 0 1.5rem;
}

@media (min-width: 769px) {
  .program .program_ttl::before {
    font-size: 1.8rem;
    margin: 0 auto 1.5rem auto;
    font-size: 2rem;
    bottom: -35px;
  }
}

@media (min-width: 769px) {
  .program .thema_box {
    padding: 0 2rem;
  }
}

.program .thema_title {
  font-size: 2rem;
  margin-top: 4rem;
  color: #004B94;
  border-bottom: 3px solid #004B94;
}

@media (min-width: 769px) {
  .program .thema_title {
    font-size: 2.6rem;
  }
}

.program .menu_list li:nth-child(1) {
  margin: 1rem 0;
}

.program .menu_list li:nth-child(2) {
  font-size: 2.4rem;
  font-weight: bold;
  color: #004B94;
}

@media (min-width: 769px) {
  .program .menu_list li:nth-child(2) {
    font-size: 2.6rem;
  }
}

.program .menu_list li:nth-child(3) {
  font-size: 1.6rem;
  margin-top: 1rem;
}

.program .menu_list li:nth-child(4) {
  font-size: 1.5rem;
  color: #004B94;
  border: solid 0.1rem #004B94;
  text-align: center;
  max-width: 16rem;
  padding: 0.4rem;
  margin: 2rem 0;
  border-radius: 0.8rem;
}

@media (min-width: 769px) {
  .program .menu_list li:nth-child(4) {
    max-width: 25rem;
  }
}

.program .program_info {
  margin-bottom: 2rem;
}

@media (min-width: 769px) {
  .program .program_info {
    display: flex;
  }
  .program .program_info > h3 {
    min-width: 15rem;
    margin-bottom: 1rem;
  }
}

.program .program_info > p {
  margin-bottom: 1.5rem;
  font-weight: bold;
}

/*----------------------------------------------------
  7. contact
----------------------------------------------------*/
.contact_head {
  margin-bottom: 1.5rem;
}

.contact_contents {
  text-align: center;
  font-size: 1.8rem;
  padding: 2rem 0 4rem 0;
}

.contact_contents .contact_contents_ttl {
  font-size: 1.6rem;
  margin: 0 1rem 1rem 1rem;
}

@media (min-width: 769px) {
  .contact_contents .contact_contents_ttl {
    font-size: 1.8rem;
    margin: 0 auto 1.5rem auto;
    max-width: 55rem;
    font-size: 2.6rem;
  }
}

.contact_contents .contact_contents_email {
  font-size: 1.6rem;
  margin: 0 1rem 1rem 1rem;
}

.contact_contents .contact_contents_email a {
  color: #212529;
}

@media (min-width: 769px) {
  .contact_contents .contact_contents_email {
    font-size: 1.8rem;
    margin: 0 auto 2.5rem auto;
    max-width: 55rem;
    font-size: 3.2rem;
  }
}

.contact_contents .contact_contents_txt dd {
  color: #f0831b;
  font-weight: bold;
  margin-bottom: 2rem;
}

.contact_contents .contact_contents_txt dd:last-child {
  margin-bottom: 0;
}

.contact_contents .contact_contents_txt dd.tel {
  font-size: 3.2rem;
}

@media (min-width: 769px) {
  .contact_contents .contact_contents_txt dd.tel {
    font-size: 5rem;
    line-height: 1;
  }
}

.contact_contents .contact_contents_txt dd.url {
  font-size: 1.8rem;
}

@media (min-width: 769px) {
  .contact_contents .contact_contents_txt dd.url {
    font-size: 3rem;
    line-height: 1.5;
  }
}

.contact_contents .contact_contents_txt dd a {
  color: #f0831b;
}

.contact_contents .contact_contents_txt dd a:hover {
  border-bottom: 4px solid #f0831b;
}

.contact_contents .contact_contents_info {
  font-size: 1.5rem;
}

/*----------------------------------------------------
  8. attention
----------------------------------------------------*/
.attention {
  background-color: #EBF5F6;
  padding-top: 4rem;
}

.attention .attention_title {
  font-size: 2rem;
  color: #fff;
  margin: 0 0 4rem 0;
  background-color: #E15B3F;
  border-radius: 10rem;
  padding: 1rem;
  text-align: center;
  position: relative;
}

.attention .attention_title::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: -20px;
  left: 0;
  width: 0px;
  height: 0px;
  margin: auto;
  border-style: solid;
  border-color: #E15B3F transparent transparent transparent;
  border-width: 2rem 1.5rem 0 1.5rem;
}

@media (min-width: 769px) {
  .attention .attention_title::before {
    font-size: 1.8rem;
    margin: 0 auto 1.5rem auto;
    font-size: 2.6rem;
    bottom: -35px;
  }
}

.attention .attention_list {
  padding: 1rem;
  text-align: justify;
}

@media (min-width: 769px) {
  .attention .attention_list {
    padding: 2rem;
  }
}

.attention .attention_list li {
  display: flex;
  margin-bottom: 1rem;
}

.attention .attention_list li::before {
  display: block;
  content: "●";
  color: #E15B3F;
  font-size: 1.6rem;
  margin-right: 1.5rem;
}

/*----------------------------------------------------
  9. footer
----------------------------------------------------*/
.box_colour {
  background-color: #EBF5F6;
  font-size: 1.3rem;
  text-align: center;
  padding: 2rem;
}

/*----------------------------------------------------
　State 
----------------------------------------------------*/
