@import url(https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap);
@charset "UTF-8";
/*aigis--*/
/*
---
name: Color
category:
  - color
compile: true
---
```ejs
<% var colorFunc = function(data){ -%>
<ul class="aigis-color">
<%   data.forEach(function (data, key) { -%>
	<li>
		<div class="aigis-color__box" style="background: <%- data.code -%>"></div>
		<div class="aigis-color__var"><%- data.var -%></div>
		<div class="aigis-color__code"><%- data.code -%></div>
	</li>
<% }); -%>
</ul>
<% } -%>

<% colorFunc([//作った変数に合わせて増やしてく
  { 'var': `$colorRed`,'code': `#f00` },
]); -%>
```
*/
/*--aigis*/
/* CSS Document */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, acronym, address, big, cite, code,
del, dfn, em, font, ins, kbd, q, s, samp,
small, strike, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
article, aside, dialog, figure, figcaption, footer, header,
hgroup, menu, nav, section,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: inherit;
  font-family: inherit;
  font-style: inherit;
  font-weight: inherit;
  vertical-align: baseline;
  max-height: 999999px;
}

body {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #393E4C;
  min-width: 414px;
  -webkit-print-color-adjust: exact;
  font-family: "Noto Sans JP", "メイリオ", Meiryo, sans-serif;
  background: #fff;
  word-wrap: break-word;
  -webkit-text-size-adjust: none;
  /*202009 100%はiPadでサイズが変わってしまうのでnoneを使う*/
}
@media only screen and (max-width: 768px) {
  body {
    font-size: 1rem;
    line-height: 1.7;
  }
}
body.page-top {
  background: #fff;
}

a {
  margin: 0;
  padding: 0;
  font-size: inherit;
  font-family: inherit;
  font-style: inherit;
  font-weight: inherit;
  vertical-align: baseline;
  color: #1571DA;
  text-decoration: none;
  max-height: 999999px;
}

a, button {
  outline: 5px solid transparent;
  outline-offset: 10px;
  -webkit-transition: outline-offset 0.5s;
  transition: outline-offset 0.5s;
}
a::-moz-focus-inner, button::-moz-focus-inner {
  border: 0;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a img {
  border: 0;
  transition: opacity 0.5s;
}

a {
  transition: all 0.5s;
}

a:hover {
  /*	color:#0000FF;*/
  text-decoration: underline;
  transition: all 0.5s;
}

a:hover img,
a:active img {
  opacity: 0.6;
}

a:focus,
button:focus {
  outline-offset: 0;
}

[data-whatinput=mouse] :focus,
[data-whatinput=touch] :focus,
[data-whatinput=touch] :hover {
  text-decoration: none !important;
}

[data-whatinput=touch] a:hover img {
  opacity: 1 !important;
}

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

li {
  list-style-type: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

table, caption, tbody, tfoot, thead, tr, th, td {
  font-size: inherit;
  font-family: inherit;
  font-style: inherit;
  font-weight: inherit;
  margin: 0;
  outline: 0;
  vertical-align: baseline;
  max-height: 999999px;
}

caption, th, td {
  text-align: inherit;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

blockquote, q {
  quotes: none;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted #000;
  cursor: help;
}

ins {
  text-decoration: none;
}

mark {
  /*	font-style:italic;*/
  /*	font-weight:bold;*/
}

input[type=text],
input[type=tel],
input[type=email],
input[type=url],
textarea,
select,
.js-formCheckSelect {
  background: #fff;
  font-family: "Noto Sans JP", "メイリオ", Meiryo, sans-serif;
  font-size: 16px;
  padding: 8px 10px 10px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 5px;
  border: 1px solid #DDDDDD;
  width: 100%;
  box-sizing: border-box;
}

::placeholder {
  color: #cccccc;
}

/* 旧Edge対応 */
::-ms-input-placeholder {
  color: #cccccc;
}

/* IE対応 */
:-ms-input-placeholder {
  color: #cccccc;
}

input[type=submit] {
  cursor: pointer;
  background: #02B7B0;
  border: 1px solid #02B7B0;
  color: #fff;
  font-family: "Noto Sans JP", "メイリオ", Meiryo, sans-serif;
  font-size: 16px;
  padding: 15px;
  font-weight: bold;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 5px;
  border: 1px solid #DDDDDD;
  width: 100%;
  box-sizing: border-box;
  max-width: 240px;
  transition: all 0.5s;
}
input[type=submit]:hover {
  background: #fff;
  color: #02B7B0;
  border: 1px solid #02B7B0;
}
input[type=submit]:disabled {
  color: #B4B4B4;
  background: #CCCCCC;
  border: 1px solid #CCCCCC;
  cursor: default;
}

/*aigis--*/
/*
---
name: Color
category:
  - color
compile: true
---
```ejs
<% var colorFunc = function(data){ -%>
<ul class="aigis-color">
<%   data.forEach(function (data, key) { -%>
	<li>
		<div class="aigis-color__box" style="background: <%- data.code -%>"></div>
		<div class="aigis-color__var"><%- data.var -%></div>
		<div class="aigis-color__code"><%- data.code -%></div>
	</li>
<% }); -%>
</ul>
<% } -%>

<% colorFunc([//作った変数に合わせて増やしてく
  { 'var': `$colorRed`,'code': `#f00` },
]); -%>
```
*/
/*--aigis*/
/* CSS Document */
hr {
  clear: both;
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #666;
  margin: 1em 0;
  padding-bottom: 30px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}

input, select, .js-formCheckSelect {
  vertical-align: middle;
}

.clearf:after {
  content: " ";
  clear: both;
  visibility: hidden;
  display: block;
  line-height: 0;
  font-size: 0;
}

.clearf {
  clear: both !important;
}

.clb {
  clear: both !important;
}

.bn {
  border: none !important;
}

/*========== 共有 ==================================================*/
.alignleft {
  float: left;
}

.alignright {
  float: right;
}

.textleft {
  text-align: left !important;
}

.textright {
  text-align: right !important;
}

.textcenter {
  text-align: center !important;
}

.u-txl {
  text-align: left !important;
}

.u-txr {
  text-align: right !important;
}

.u-txc {
  text-align: center !important;
}

.u-def {
  color: #6b0000 !important;
}

.u-red {
  color: #E33 !important;
}

.u-wred {
  color: #900 !important;
}

.u-green {
  color: #451 !important;
}

.u-blue {
  color: #33E !important;
}

.u-brown {
  color: #642 !important;
}

.u-pink {
  color: #ffa1a9 !important;
}

.u-white {
  color: #fff !important;
}

/*.link_b		{color:#f00;	text-decoration:underline;}*/
/*.cli		{color:inherit !important;}*/
.mt0 {
  margin-top: 0 !important;
}

.mt5 {
  margin-top: 5px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mt15 {
  margin-top: 15px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mt25 {
  margin-top: 25px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mt33 {
  margin-top: 33px !important;
}

.mt34 {
  margin-top: 34px !important;
}

.mt35 {
  margin-top: 35px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mt45 {
  margin-top: 45px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.mt55 {
  margin-top: 55px !important;
}

.mt60 {
  margin-top: 60px !important;
}

.mt65 {
  margin-top: 65px !important;
}

.mt70 {
  margin-top: 70px !important;
}

.mt75 {
  margin-top: 75px !important;
}

.mt80 {
  margin-top: 80px !important;
}

.mb0 {
  margin-bottom: 0 !important;
}

.mb5 {
  margin-bottom: 5px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb25 {
  margin-bottom: 25px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mb35 {
  margin-bottom: 35px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mb45 {
  margin-bottom: 45px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.mb55 {
  margin-bottom: 55px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}

.mb65 {
  margin-bottom: 65px !important;
}

.mb70 {
  margin-bottom: 70px !important;
}

.mb75 {
  margin-bottom: 75px !important;
}

.mb80 {
  margin-bottom: 80px !important;
}

.ml0 {
  margin-left: 0 !important;
}

.ml5 {
  margin-left: 5px !important;
}

.ml10 {
  margin-left: 10px !important;
}

.ml15 {
  margin-left: 15px !important;
}

.ml20 {
  margin-left: 20px !important;
}

.ml25 {
  margin-left: 25px !important;
}

.ml30 {
  margin-left: 30px !important;
}

.ml35 {
  margin-left: 35px !important;
}

.ml40 {
  margin-left: 40px !important;
}

.ml45 {
  margin-left: 45px !important;
}

.ml50 {
  margin-left: 50px !important;
}

.ml55 {
  margin-left: 55px !important;
}

.ml60 {
  margin-left: 60px !important;
}

.ml65 {
  margin-left: 65px !important;
}

.ml70 {
  margin-left: 70px !important;
}

.ml75 {
  margin-left: 75px !important;
}

.ml80 {
  margin-left: 80px !important;
}

.mr0 {
  margin-right: 0 !important;
}

.mr5 {
  margin-right: 5px !important;
}

.mr10 {
  margin-right: 10px !important;
}

.mr13 {
  margin-right: 13px !important;
}

.mr15 {
  margin-right: 15px !important;
}

.mr20 {
  margin-right: 20px !important;
}

.mr25 {
  margin-right: 25px !important;
}

.mr30 {
  margin-right: 30px !important;
}

.mr33 {
  margin-right: 33px !important;
}

.mr34 {
  margin-right: 34px !important;
}

.mr35 {
  margin-right: 35px !important;
}

.mr40 {
  margin-right: 40px !important;
}

.mr45 {
  margin-right: 45px !important;
}

.mr50 {
  margin-right: 50px !important;
}

.mr55 {
  margin-right: 55px !important;
}

.mr60 {
  margin-right: 60px !important;
}

.mr65 {
  margin-right: 65px !important;
}

.mr70 {
  margin-right: 70px !important;
}

.mr75 {
  margin-right: 75px !important;
}

.mr80 {
  margin-right: 80px !important;
}

.u-mt0 {
  margin-top: 0 !important;
}

.u-mt5 {
  margin-top: 5px !important;
}

.u-mt10 {
  margin-top: 10px !important;
}

.u-mt15 {
  margin-top: 15px !important;
}

.u-mt20 {
  margin-top: 20px !important;
}

.u-mt25 {
  margin-top: 25px !important;
}

.u-mt30 {
  margin-top: 30px !important;
}

.u-mt33 {
  margin-top: 33px !important;
}

.u-mt34 {
  margin-top: 34px !important;
}

.u-mt35 {
  margin-top: 35px !important;
}

.u-mt40 {
  margin-top: 40px !important;
}

.u-mt45 {
  margin-top: 45px !important;
}

.u-mt50 {
  margin-top: 50px !important;
}

.u-mt55 {
  margin-top: 55px !important;
}

.u-mt60 {
  margin-top: 60px !important;
}

.u-mt65 {
  margin-top: 65px !important;
}

.u-mt70 {
  margin-top: 70px !important;
}

.u-mt75 {
  margin-top: 75px !important;
}

.u-mt80 {
  margin-top: 80px !important;
}

.u-mb0 {
  margin-bottom: 0 !important;
}

.u-mb5 {
  margin-bottom: 5px !important;
}

.u-mb10 {
  margin-bottom: 10px !important;
}

.u-mb15 {
  margin-bottom: 15px !important;
}

.u-mb20 {
  margin-bottom: 20px !important;
}

.u-mb25 {
  margin-bottom: 25px !important;
}

.u-mb30 {
  margin-bottom: 30px !important;
}

.u-mb35 {
  margin-bottom: 35px !important;
}

.u-mb40 {
  margin-bottom: 40px !important;
}

.u-mb45 {
  margin-bottom: 45px !important;
}

.u-mb50 {
  margin-bottom: 50px !important;
}

.u-mb55 {
  margin-bottom: 55px !important;
}

.u-mb60 {
  margin-bottom: 60px !important;
}

.u-mb65 {
  margin-bottom: 65px !important;
}

.u-mb70 {
  margin-bottom: 70px !important;
}

.u-mb75 {
  margin-bottom: 75px !important;
}

.u-mb80 {
  margin-bottom: 80px !important;
}

.u-ml0 {
  margin-left: 0 !important;
}

.u-ml5 {
  margin-left: 5px !important;
}

.u-ml10 {
  margin-left: 10px !important;
}

.u-ml15 {
  margin-left: 15px !important;
}

.u-ml20 {
  margin-left: 20px !important;
}

.u-ml25 {
  margin-left: 25px !important;
}

.u-ml30 {
  margin-left: 30px !important;
}

.u-ml35 {
  margin-left: 35px !important;
}

.u-ml40 {
  margin-left: 40px !important;
}

.u-ml45 {
  margin-left: 45px !important;
}

.u-ml50 {
  margin-left: 50px !important;
}

.u-ml55 {
  margin-left: 55px !important;
}

.u-ml60 {
  margin-left: 60px !important;
}

.u-ml65 {
  margin-left: 65px !important;
}

.u-ml70 {
  margin-left: 70px !important;
}

.u-ml75 {
  margin-left: 75px !important;
}

.u-ml80 {
  margin-left: 80px !important;
}

.u-mr0 {
  margin-right: 0 !important;
}

.u-mr5 {
  margin-right: 5px !important;
}

.u-mr10 {
  margin-right: 10px !important;
}

.u-mr13 {
  margin-right: 13px !important;
}

.u-mr15 {
  margin-right: 15px !important;
}

.u-mr20 {
  margin-right: 20px !important;
}

.u-mr25 {
  margin-right: 25px !important;
}

.u-mr30 {
  margin-right: 30px !important;
}

.u-mr33 {
  margin-right: 33px !important;
}

.u-mr34 {
  margin-right: 34px !important;
}

.u-mr35 {
  margin-right: 35px !important;
}

.u-mr40 {
  margin-right: 40px !important;
}

.u-mr45 {
  margin-right: 45px !important;
}

.u-mr50 {
  margin-right: 50px !important;
}

.u-mr55 {
  margin-right: 55px !important;
}

.u-mr60 {
  margin-right: 60px !important;
}

.u-mr65 {
  margin-right: 65px !important;
}

.u-mr70 {
  margin-right: 70px !important;
}

.u-mr75 {
  margin-right: 75px !important;
}

.u-mr80 {
  margin-right: 80px !important;
}

.pt0 {
  padding-top: 0 !important;
}

.pt5 {
  padding-top: 5px !important;
}

.pt10 {
  padding-top: 10px !important;
}

.pt15 {
  padding-top: 15px !important;
}

.pt20 {
  padding-top: 20px !important;
}

.pt25 {
  padding-top: 25px !important;
}

.pt30 {
  padding-top: 30px !important;
}

.pt35 {
  padding-top: 35px !important;
}

.pt40 {
  padding-top: 40px !important;
}

.pt45 {
  padding-top: 45px !important;
}

.pt50 {
  padding-top: 50px !important;
}

.pt55 {
  padding-top: 55px !important;
}

.pt60 {
  padding-top: 60px !important;
}

.pt65 {
  padding-top: 65px !important;
}

.pt70 {
  padding-top: 70px !important;
}

.pt75 {
  padding-top: 75px !important;
}

.pt80 {
  padding-top: 80px !important;
}

.pb0 {
  padding-bottom: 0 !important;
}

.pb5 {
  padding-bottom: 5px !important;
}

.pb10 {
  padding-bottom: 10px !important;
}

.pb15 {
  padding-bottom: 15px !important;
}

.pb20 {
  padding-bottom: 20px !important;
}

.pb25 {
  padding-bottom: 25px !important;
}

.pb30 {
  padding-bottom: 30px !important;
}

.pb35 {
  padding-bottom: 35px !important;
}

.pb40 {
  padding-bottom: 40px !important;
}

.pb45 {
  padding-bottom: 45px !important;
}

.pb50 {
  padding-bottom: 50px !important;
}

.pb55 {
  padding-bottom: 55px !important;
}

.pb60 {
  padding-bottom: 60px !important;
}

.pb70 {
  padding-bottom: 70px !important;
}

.pb80 {
  padding-bottom: 80px !important;
}

.pl0 {
  padding-left: 0 !important;
}

.pl5 {
  padding-left: 5px !important;
}

.pl10 {
  padding-left: 10px !important;
}

.pl15 {
  padding-left: 15px !important;
}

.pl20 {
  padding-left: 20px !important;
}

.pl25 {
  padding-left: 25px !important;
}

.pl30 {
  padding-left: 30px !important;
}

.pl35 {
  padding-left: 35px !important;
}

.pl40 {
  padding-left: 40px !important;
}

.pl50 {
  padding-left: 50px !important;
}

.pl60 {
  padding-left: 60px !important;
}

.pr0 {
  padding-right: 0px !important;
}

.pr5 {
  padding-right: 5px !important;
}

.pr10 {
  padding-right: 10px !important;
}

.pr15 {
  padding-right: 15px !important;
}

.pr20 {
  padding-right: 20px !important;
}

.pr25 {
  padding-right: 25px !important;
}

.pr30 {
  padding-right: 30px !important;
}

.pr35 {
  padding-right: 35px !important;
}

.pr40 {
  padding-right: 40px !important;
}

.pr45 {
  padding-right: 45px !important;
}

.pr50 {
  padding-right: 50px !important;
}

.pr55 {
  padding-right: 55px !important;
}

.pr60 {
  padding-right: 60px !important;
}

.pr70 {
  padding-right: 70px !important;
}

.pr80 {
  padding-right: 80px !important;
}

.u-pt0 {
  padding-top: 0 !important;
}

.u-pt5 {
  padding-top: 5px !important;
}

.u-pt10 {
  padding-top: 10px !important;
}

.u-pt15 {
  padding-top: 15px !important;
}

.u-pt20 {
  padding-top: 20px !important;
}

.u-pt25 {
  padding-top: 25px !important;
}

.u-pt30 {
  padding-top: 30px !important;
}

.u-pt35 {
  padding-top: 35px !important;
}

.u-pt40 {
  padding-top: 40px !important;
}

.u-pt45 {
  padding-top: 45px !important;
}

.u-pt50 {
  padding-top: 50px !important;
}

.u-pt55 {
  padding-top: 55px !important;
}

.u-pt60 {
  padding-top: 60px !important;
}

.u-pt65 {
  padding-top: 65px !important;
}

.u-pt70 {
  padding-top: 70px !important;
}

.u-pt75 {
  padding-top: 75px !important;
}

.u-pt80 {
  padding-top: 80px !important;
}

.u-pb0 {
  padding-bottom: 0 !important;
}

.u-pb5 {
  padding-bottom: 5px !important;
}

.u-pb10 {
  padding-bottom: 10px !important;
}

.u-pb15 {
  padding-bottom: 15px !important;
}

.u-pb20 {
  padding-bottom: 20px !important;
}

.u-pb25 {
  padding-bottom: 25px !important;
}

.u-pb30 {
  padding-bottom: 30px !important;
}

.u-pb35 {
  padding-bottom: 35px !important;
}

.u-pb40 {
  padding-bottom: 40px !important;
}

.u-pb45 {
  padding-bottom: 45px !important;
}

.u-pb50 {
  padding-bottom: 50px !important;
}

.u-pb55 {
  padding-bottom: 55px !important;
}

.u-pb60 {
  padding-bottom: 60px !important;
}

.u-pb70 {
  padding-bottom: 70px !important;
}

.u-pb80 {
  padding-bottom: 80px !important;
}

.u-pl0 {
  padding-left: 0 !important;
}

.u-pl5 {
  padding-left: 5px !important;
}

.u-pl10 {
  padding-left: 10px !important;
}

.u-pl15 {
  padding-left: 15px !important;
}

.u-pl20 {
  padding-left: 20px !important;
}

.u-pl25 {
  padding-left: 25px !important;
}

.u-pl30 {
  padding-left: 30px !important;
}

.u-pl35 {
  padding-left: 35px !important;
}

.u-pl40 {
  padding-left: 40px !important;
}

.u-pl50 {
  padding-left: 50px !important;
}

.u-pl60 {
  padding-left: 60px !important;
}

.u-pr0 {
  padding-right: 0px !important;
}

.u-pr5 {
  padding-right: 5px !important;
}

.u-pr10 {
  padding-right: 10px !important;
}

.u-pr15 {
  padding-right: 15px !important;
}

.u-pr20 {
  padding-right: 20px !important;
}

.u-pr25 {
  padding-right: 25px !important;
}

.u-pr30 {
  padding-right: 30px !important;
}

.u-pr35 {
  padding-right: 35px !important;
}

.u-pr40 {
  padding-right: 40px !important;
}

.u-pr45 {
  padding-right: 45px !important;
}

.u-pr50 {
  padding-right: 50px !important;
}

.u-pr55 {
  padding-right: 55px !important;
}

.u-pr60 {
  padding-right: 60px !important;
}

.u-pr70 {
  padding-right: 70px !important;
}

.u-pr80 {
  padding-right: 80px !important;
}

.u-lh10 {
  line-height: 1 !important;
}

.u-lh11 {
  line-height: 1.1 !important;
}

.u-lh12 {
  line-height: 1.2 !important;
}

.u-lh13 {
  line-height: 1.3 !important;
}

.u-lh14 {
  line-height: 1.4 !important;
}

.u-lh15 {
  line-height: 1.5 !important;
}

.u-lh16 {
  line-height: 1.6 !important;
}

.u-lh17 {
  line-height: 1.7 !important;
}

.u-lh18 {
  line-height: 1.8 !important;
}

.u-lh19 {
  line-height: 1.9 !important;
}

.u-lh20 {
  line-height: 2 !important;
}

.u-lsn {
  letter-spacing: normal !important;
}

.u-fmin {
  font-family: "ＭＳ 明朝", "MS Mincho", serif;
}

.u-hgse {
  font-family: "HGS明朝E", "ヒラギノ明朝 Pro W3", "ＭＳ 明朝", serif;
}

.u-mryo {
  font-family: "メイリオ", Meiryo, sans-serif;
}

.u-fl {
  float: left !important;
}

.u-fr {
  float: right !important;
}

.u-indent {
  text-indent: -9999px !important;
}

.u-hide {
  visibility: hidden !important;
}

.u-oh {
  overflow: hidden !important;
}

.u-bold {
  font-weight: bolder !important;
}

.u-vat {
  vertical-align: top !important;
}

.u-vam {
  vertical-align: middle !important;
}

.u-bsb {
  box-sizing: border-box !important;
}

.u-mauto {
  margin-left: auto !important;
  margin-right: auto !important;
}

/*.ruby{ display: ruby; }

.ruby:after {
  content: attr(title);
  display: ruby-text;
  font-size: 0.6em;
}*/
/*
.tdur{ text-align: right; }
.tdur a{ text-decoration: underline; color: inherit; }
.tdur a:hover{ text-decoration: none; }
*/
.u-nb {
  display: inline-block;
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: inherit;
  text-decoration: inherit;
  text-indent: 0;
}

.u-bbr,
.u-abr {
  display: inline;
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: inherit;
  text-decoration: inherit;
}

.u-bbr:before,
.u-abr:after {
  content: "\a";
  white-space: pre;
}

.u-db {
  display: block !important;
}

.u-dn {
  display: none !important;
}

.u-di {
  display: inline !important;
}

.u-dib {
  display: inline-block !important;
}

.u-idt1 {
  text-indent: -1em;
  padding-left: 1em !important;
}

.u-idt2 {
  text-indent: -2em;
  padding-left: 2em !important;
}

.u-idt3 {
  text-indent: -3em;
  padding-left: 3em !important;
}

.u-wbn {
  word-break: normal !important;
}

.u-wba {
  word-break: break-all !important;
}

.u-wsn {
  white-space: nowrap !important;
}

.u-wsp {
  white-space: pre !important;
}

.u-wspw {
  white-space: pre-wrap !important;
}

.u-wspl {
  white-space: pre-line !important;
}

.u-upper {
  text-transform: uppercase;
}

@media not all and (max-width: 768px) {
  .u-sp {
    display: none !important;
  }

  .u-retina {
    width: auto !important;
  }
}
@media only screen and (max-width: 768px) {
  .u-pc {
    display: none !important;
  }
}
.wpcf7-not-valid-tip {
  color: #D90A0A !important;
  margin-top: 0.6em;
}

/*aigis--*/
/*
---
name: Color
category:
  - color
compile: true
---
```ejs
<% var colorFunc = function(data){ -%>
<ul class="aigis-color">
<%   data.forEach(function (data, key) { -%>
	<li>
		<div class="aigis-color__box" style="background: <%- data.code -%>"></div>
		<div class="aigis-color__var"><%- data.var -%></div>
		<div class="aigis-color__code"><%- data.code -%></div>
	</li>
<% }); -%>
</ul>
<% } -%>

<% colorFunc([//作った変数に合わせて増やしてく
  { 'var': `$colorRed`,'code': `#f00` },
]); -%>
```
*/
/*--aigis*/
.c-btn2, .c-datalist1__item_box .c-datalist1__btn_link, .c-btn {
  display: inline-block;
  font-weight: bold;
  border-radius: 25px;
  text-align: center;
  box-sizing: border-box;
}
.c-btn2:hover, .c-datalist1__item_box .c-datalist1__btn_link:hover, .c-btn:hover {
  text-decoration: none;
}

.c-btn2._b_red, .c-datalist1__item_box ._b_red.c-datalist1__btn_link, .c-btn._b_red {
  color: #E84715;
  border: 1px solid #E84715;
  background: #fff;
  width: 100%;
  max-width: 220px;
}
.c-btn2._b_red:hover, .c-datalist1__item_box ._b_red.c-datalist1__btn_link:hover, .c-btn._b_red:hover {
  background: #E84715;
  color: #fff;
}

.c-btn2._red, .c-datalist1__item_box ._red.c-datalist1__btn_link, .c-btn._red {
  border: 1px solid #E84715;
  background: #E84715;
  color: #fff;
}
.c-btn2._red:hover, .c-datalist1__item_box ._red.c-datalist1__btn_link:hover, .c-btn._red:hover {
  background: #fff;
  color: #E84715;
}
._white.c-btn2._red, .c-datalist1__item_box ._white._red.c-datalist1__btn_link, ._white.c-btn._red {
  background: #fff;
  color: #E84715;
  border: 1px solid #fff;
}
._white.c-btn2._red:hover, .c-datalist1__item_box ._white._red.c-datalist1__btn_link:hover, ._white.c-btn._red:hover {
  background: #E84715;
  color: #fff;
}

.c-btn2._orange, .c-datalist1__item_box ._orange.c-datalist1__btn_link, .c-btn._orange, .c-btn2._orange2, .c-datalist1__item_box ._orange2.c-datalist1__btn_link, .c-btn._orange2 {
  border: 1px solid #F29600;
  background: #F29600;
  color: #fff;
}
.c-btn2._orange:hover, .c-datalist1__item_box ._orange.c-datalist1__btn_link:hover, .c-btn._orange:hover, .c-btn2._orange2:hover, .c-datalist1__item_box ._orange2.c-datalist1__btn_link:hover, .c-btn._orange2:hover {
  background: #fff;
  color: #F29600;
}
._white.c-btn2._orange, .c-datalist1__item_box ._white._orange.c-datalist1__btn_link, ._white.c-btn._orange, ._white.c-btn2._orange2, .c-datalist1__item_box ._white._orange2.c-datalist1__btn_link, ._white.c-btn._orange2 {
  background: #fff;
  color: #F29600;
  border: 1px solid #fff;
}
._white.c-btn2._orange:hover, .c-datalist1__item_box ._white._orange.c-datalist1__btn_link:hover, ._white.c-btn._orange:hover, ._white.c-btn2._orange2:hover, .c-datalist1__item_box ._white._orange2.c-datalist1__btn_link:hover, ._white.c-btn._orange2:hover {
  background: #F29600;
  color: #fff;
}

.c-btn2._orange2, .c-datalist1__item_box ._orange2.c-datalist1__btn_link, .c-btn._orange2 {
  border-color: #DA6115;
  background-color: #DA6115;
}
.c-btn2._orange2:hover, .c-datalist1__item_box ._orange2.c-datalist1__btn_link:hover, .c-btn._orange2:hover {
  background-color: #fff;
  color: #DA6115;
}
._white.c-btn2._orange2, .c-datalist1__item_box ._white._orange2.c-datalist1__btn_link, ._white.c-btn._orange2 {
  background-color: #fff;
  color: #DA6115;
  border-color: #fff;
}
._white.c-btn2._orange2:hover, .c-datalist1__item_box ._white._orange2.c-datalist1__btn_link:hover, ._white.c-btn._orange2:hover {
  background-color: #DA6115;
  color: #fff;
}

.c-btn2._green, .c-datalist1__item_box ._green.c-datalist1__btn_link, .c-btn._green {
  border: 1px solid #02B7B0;
  background: #02B7B0;
  color: #fff;
}
.c-btn2._green:hover, .c-datalist1__item_box ._green.c-datalist1__btn_link:hover, .c-btn._green:hover {
  background: #fff;
  color: #02B7B0;
}

.c-datalist1__data_item, .c-datalist1__item_box, .c-datalist1__item_title, .c-datalist1__item_title--hidden {
  background: #FFFFFF;
  padding: 16px;
  border-top: solid 1px #E4E4E4;
  border-right: solid 1px #E4E4E4;
}

.c-needsSlider1__link_inner, .c-detaillist2__link, .c-detaillist1__link, .c-figlist2__link, .c-btnlink1__inner {
  display: block;
  color: #02B7B0;
  font-weight: bold;
  line-height: 1.6;
  text-align: center;
  margin-top: auto;
  padding-top: 1em;
}
.c-needsSlider1__link_inner:hover >, .c-detaillist2__link:hover >, .c-detaillist1__link:hover >, .c-figlist2__link:hover >, .c-btnlink1__inner:hover > {
  text-decoration: underline;
}

.c-needsSlider1__link_text, .c-detaillist2__link_text, .c-detaillist1__link_text, .c-figlist2__link_text, .c-btnlink1__text {
  display: inline-block;
  padding-right: 1.6em;
  position: relative;
}
.c-needsSlider1__link_text:after, .c-detaillist2__link_text:after, .c-detaillist1__link_text:after, .c-figlist2__link_text:after, .c-btnlink1__text:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin: auto;
  border-top: solid 0.4em transparent;
  border-bottom: solid 0.4em transparent;
  border-left: solid 0.4em;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
}

[cover-link].c-needsSlider1__link_inner:after, [cover-link].c-detaillist2__link:after, [cover-link].c-detaillist1__link:after, [cover-link].c-figlist2__link:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

[data-slider-style].slick-slider, .slick-slider, .c-needsSlider1, .c-logoslider1__inner {
  height: 0;
  overflow: hidden;
  opacity: 0;
}

[data-slider-style].slick-slider.slick-initialized, .slick-slider.slick-initialized, .c-needsSlider1.slick-initialized, .c-logoslider1__inner.slick-initialized {
  height: auto !important;
  overflow: visible !important;
  opacity: 1 !important;
}

[data-slider-style] .slick-slide, .c-needsSlider1 .slick-slide {
  height: auto !important;
}
[data-slider-style] .slick-slide > div, .c-needsSlider1 .slick-slide > div {
  display: flex;
  flex: 1 1 100%;
}
[data-slider-style] .slick-slide > div > *, .c-needsSlider1 .slick-slide > div > * {
  flex: 1 1 100%;
}

[data-slider-style] .slick-dots {
  display: flex;
  justify-content: center;
}
[data-slider-style] .slick-dots * {
  font-size: 0;
  line-height: 0;
}
[data-slider-style] .slick-dots li, [data-slider-style] .slick-dots button {
  display: flex;
}
[data-slider-style] .slick-dots li {
  flex: 0 1 12px;
  background: #D9D9D9;
  height: 12px;
  margin: 0 8px;
  border-radius: 100%;
}
[data-slider-style] .slick-dots li.slick-active {
  background: #F29600;
}
[data-slider-style] .slick-dots button {
  flex: 1 1 100%;
  padding: 0;
  opacity: 0;
}

#bottom-form .p-cta2 .p-form_wrap .your_firstname input[type=text],
#bottom-form .p-cta2 .p-form_wrap .your_firstname input[type=tel],
#bottom-form .p-cta2 .p-form_wrap .your_firstname input[type=email],
#bottom-form .p-cta2 .p-form_wrap .your_firstname textarea,
#bottom-form .p-cta2 .p-form_wrap .your_firstname select,
#bottom-form .p-cta2 .p-form_wrap .your_firstname .js-formCheckSelect,
#bottom-form .p-cta2 .p-form_wrap .your_department input[type=text],
#bottom-form .p-cta2 .p-form_wrap .employees select,
#bottom-form .p-cta2 .p-form_wrap .employees .js-formCheckSelect,
#bottom-form .p-cta2 .p-form_wrap .employees0727 select,
#bottom-form .p-cta2 .p-form_wrap .employees0727 .js-formCheckSelect {
  background: #f2f2f2 !important;
}

.page-template-lp-conference-0727 #g-footer span {
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
}

.thanks_0511_title {
  color: #fff;
  font-weight: bold;
  font-size: 30px;
  text-align: center;
  padding: 32px 0;
  background-color: #0E0E0E;
}

@media only screen and (max-width: 1000px) {
  .thanks_0511_title {
    font-size: 24px;
  }
}
@media only screen and (max-width: 768px) {
  .thanks_0511_title {
    font-size: 20px;
    padding: 20px 0;
  }
}
.thanks_0511_point {
  font-size: 23px;
  border: solid 1px #fff;
  padding: 5px;
  margin-right: 16px;
}

@media only screen and (max-width: 768px) {
  .thanks_0511_point {
    font-size: 20px;
    margin-right: 0;
  }
}
.p-contact_wrap_0511 {
  box-shadow: 0 15px 20px rgba(0, 0, 0, 0.15);
  width: 540px;
  padding: 56px 130px;
  margin: 80px auto;
  border: none;
}

@media only screen and (max-width: 860px) {
  .p-contact_wrap_0511 {
    width: 65%;
    padding: 50px 60px;
    margin: 50px auto;
  }
}
@media only screen and (max-width: 768px) {
  .p-contact_wrap_0511 {
    padding: 40px;
    margin: 30px auto;
  }
}
.p-contact_fv_0511 {
  font-size: 28px;
  font-weight: bold;
  padding-bottom: 30px;
  border-bottom: solid 1px #000;
  text-align: center;
}

@media only screen and (max-width: 860px) {
  .p-contact_fv_0511 {
    font-size: 24px;
  }
}
@media only screen and (max-width: 768px) {
  .p-contact_fv_0511 {
    font-size: 18px;
  }
}
.p-thanks_text1_0511 {
  font-size: 16px;
  padding: 32px 0 40px;
}

@media only screen and (max-width: 860px) {
  .p-thanks_text1_0511 {
    font-size: 14px;
  }
}
.thanks_btn_0511 {
  text-align: center;
  font-size: 18px;
}

.thanks_btn_0511 a {
  color: #fff;
  padding: 15px 70px;
  background-color: #0E0E0E;
  border-radius: 100px;
}

.thanks_btn_0511 :hover {
  opacity: 0.8;
}

@media only screen and (min-width: 769px) {
  .sp_0511 {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .sp_0511 {
    display: block;
  }
}
/*----------------------------------------

webinar 0727

-----------------------------------------*/
.page-template-lp-conference-0727 .g-wrapper {
  min-width: 0;
}

.page-template-lp-conference-0727 #g-header {
  display: none;
}

.page-template-lp-conference-0727 .webinar {
  color: #0E0E0E;
}

.page-template-lp-conference-0727 .webinar .pc {
  display: block;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0727 .webinar .pc {
    display: none;
  }
}
.page-template-lp-conference-0727 .webinar .sp {
  display: noone;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0727 .webinar .sp {
    display: block;
  }
}
.page-template-lp-conference-0727 .webinar .bg_g {
  background-color: #F8F8F8;
}

.page-template-lp-conference-0727 .webinar .mv {
  height: 447px;
  overflow: hidden;
  background: #e9e9e9 url(../img/webinar/0727/bg_01.jpg) no-repeat center/cover;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0727 .webinar .mv {
    height: 517px;
    background: #e9e9e9 url(../img/webinar/0727/bg_01_sp.jpg) no-repeat page-chiraceo/cover;
  }
}
.page-template-lp-conference-0727 .webinar .mv .title_wrapper {
  position: relative;
  width: 1184px;
  margin: 0 auto;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0727 .webinar .mv .title_wrapper {
    width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0727 .webinar .mv .fv_img {
    text-align: center;
    height: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0727 .webinar .mv .fv_img img {
    height: 101%;
  }
}
.page-template-lp-conference-0727 .webinar .mv .title_wrapper .copy {
  display: flex;
  align-items: center;
  position: absolute;
  top: 20px;
  left: 70px;
  transform: rotate(-14deg);
}

@media only screen and (max-width: 1200px) {
  .page-template-lp-conference-0727 .webinar .mv .title_wrapper .copy {
    top: 30px;
    left: 40px;
  }
}
@media only screen and (max-width: 960px) {
  .page-template-lp-conference-0727 .webinar .mv .title_wrapper .copy {
    top: 20px;
  }
}
@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0727 .webinar .mv .title_wrapper .copy {
    top: 10px;
    width: 400px;
    margin: 0 auto;
    left: 10px;
  }
}
.page-template-lp-conference-0727 .webinar .mv .title_wrapper .copy .circle {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 118px;
  height: 118px;
  text-align: center;
  font-weight: bold;
  font-size: 19.6px;
  line-height: 24.63px;
  letter-spacing: 0.02em;
  border-radius: 50%;
  border: 3px solid #0E0E0E;
  box-sizing: border-box;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0727 .webinar .mv .title_wrapper .copy .circle {
    width: 96px;
    height: 96px;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: -0.05em;
  }
}
.page-template-lp-conference-0727 .webinar .mv .title_wrapper .copy .circle span {
  font-size: 34.1px;
  line-height: 25.09px;
  font-family: "Roboto", sans-serif;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0727 .webinar .mv .title_wrapper .copy .circle span {
    padding: 0 4px 0 0;
    font-size: 28px;
    line-height: 20px;
  }
}
.page-template-lp-conference-0727 .webinar .mv .title_wrapper .copy .copy_test {
  position: relative;
  margin: 0 0 0 10px;
  font-family: "Roboto";
  font-weight: 700;
  font-size: 28px;
  line-height: 33px;
  letter-spacing: 0.02em;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0727 .webinar .mv .title_wrapper .copy .copy_test {
    font-size: 22px;
    line-height: 26px;
  }
}
.page-template-lp-conference-0727 .webinar .mv .title_wrapper .copy .copy_test::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 119px;
  width: 29px;
  height: 30px;
  background-image: url(../img/webinar/0727/copy_test.png);
  background-size: cover;
  transform: rotate(16deg);
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0727 .webinar .mv .title_wrapper .copy .copy_test::before {
    top: 26px;
    left: 22px;
  }
}
.page-template-lp-conference-0727 .webinar .mv .title_wrapper .title {
  position: absolute;
  top: 90px;
  left: 120px;
  width: 1030px;
  font-weight: 700;
  font-size: 52px;
  letter-spacing: 0.03em;
  color: #FFFFFF;
}

@media only screen and (max-width: 880px) {
  .page-template-lp-conference-0727 .webinar .mv .title_wrapper .title {
    left: 90px;
  }
}
@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0727 .webinar .mv .title_wrapper .title {
    width: 120%;
    font-size: 32px;
    top: 130px;
    left: 56%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }
}
.page-template-lp-conference-0727 .webinar .mv .title_wrapper .title h1 {
  position: relative;
}

.page-template-lp-conference-0727 .webinar .mv .title_wrapper .title h1 span {
  display: inline-block;
  padding: 12px 34px;
  background: #0E0E0E;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.25);
  transform: rotate(-8deg);
  font-size: 48px;
}

@media only screen and (max-width: 1090px) {
  .page-template-lp-conference-0727 .webinar .mv .title_wrapper .title h1 span {
    font-size: 42px;
  }
}
@media only screen and (max-width: 1000px) {
  .page-template-lp-conference-0727 .webinar .mv .title_wrapper .title h1 span {
    font-size: 36px;
  }
}
@media only screen and (max-width: 880px) {
  .page-template-lp-conference-0727 .webinar .mv .title_wrapper .title h1 span {
    font-size: 34px;
  }
}
@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0727 .webinar .mv .title_wrapper .title h1 span {
    padding: 8px 30px 8px 20px;
    font-size: 32px;
  }
}
.page-template-lp-conference-0727 .webinar .mv .title_wrapper .title h1 .subtitle {
  font-size: 14px;
  padding: 10px 30px;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0727 .webinar .mv .title_wrapper .title h1 .subtitle {
    font-size: 12px;
  }
}
@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0727 .webinar .mv .title_wrapper .title h1 span:nth-child(1) {
    padding: 5px 20px 5px 30px;
    font-size: 20px;
  }
}
.page-template-lp-conference-0727 .webinar .mv .title_wrapper .title h1 span:nth-child(2) {
  position: absolute;
  top: 120px;
  left: -30px;
}

@media only screen and (max-width: 1000px) {
  .page-template-lp-conference-0727 .webinar .mv .title_wrapper .title h1 span:nth-child(2) {
    top: 115px;
  }
}
@media only screen and (max-width: 880px) {
  .page-template-lp-conference-0727 .webinar .mv .title_wrapper .title h1 span:nth-child(2) {
    top: 110px;
  }
}
@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0727 .webinar .mv .title_wrapper .title h1 span:nth-child(2) {
    position: absolute;
    top: 60px;
    left: 50px;
  }
}
.page-template-lp-conference-0727 .webinar .mv .title_wrapper .title h1 span:nth-child(3) {
  position: absolute;
  top: 230px;
  left: 180px;
  font-weight: normal;
}

@media only screen and (max-width: 1090px) {
  .page-template-lp-conference-0727 .webinar .mv .title_wrapper .title h1 span:nth-child(3) {
    left: 100px;
  }
}
@media only screen and (max-width: 1000px) {
  .page-template-lp-conference-0727 .webinar .mv .title_wrapper .title h1 span:nth-child(3) {
    top: 220px;
    left: -30px;
  }
}
@media only screen and (max-width: 880px) {
  .page-template-lp-conference-0727 .webinar .mv .title_wrapper .title h1 span:nth-child(3) {
    top: 210px;
    left: -80px;
  }
}
@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0727 .webinar .mv .title_wrapper .title h1 span:nth-child(3) {
    top: 135px;
    left: 60px;
  }
}
@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0727 .webinar .mv .title_wrapper .title h1 span:nth-child(4) {
    position: absolute;
    top: 220px;
    left: 5px;
  }
}
.page-template-lp-conference-0727 .webinar .mv .title_wrapper .time {
  position: absolute;
  top: 350px;
  left: 760px;
  display: inline-block;
  padding: 8px 18px;
  font-family: "Roboto";
  font-size: 24px;
  line-height: 28px;
  text-align: center;
  letter-spacing: 0.03em;
  background-color: #FFFFFF;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.15);
  transform: rotate(-8deg);
}

@media only screen and (max-width: 1090px) {
  .page-template-lp-conference-0727 .webinar .mv .title_wrapper .time {
    left: 640px;
    top: 360px;
  }
}
@media only screen and (max-width: 1000px) {
  .page-template-lp-conference-0727 .webinar .mv .title_wrapper .time {
    left: 540px;
    top: 340px;
  }
}
@media only screen and (max-width: 890px) {
  .page-template-lp-conference-0727 .webinar .mv .title_wrapper .time {
    left: 480px;
    font-size: 22px;
  }
}
@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0727 .webinar .mv .title_wrapper .time {
    width: 310px;
    top: 430px;
    left: 40%;
    transform: translateX(-50%) rotate(-8deg);
    -webkit-transform: translateX(-50%) rotate(-8deg);
    -ms-transform: translateX(-50%) rotate(-8deg);
    padding: 8px 18px;
    line-height: 26px;
  }
}
.page-template-lp-conference-0727 .webinar .mv .title_wrapper .time span {
  font-size: 19px;
  line-height: 22.27px;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0727 .webinar .mv .title_wrapper .time span {
    font-size: 17px;
    line-height: 20px;
  }
}
.page-template-lp-conference-0727 .webinar .mv .section_wrapper {
  position: relative;
  width: 1184px;
  height: 100%;
  margin: 0 auto;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0727 .webinar .mv .section_wrapper {
    width: 370px;
  }
}
.page-template-lp-conference-0727 .webinar .mv .section_wrapper .section {
  position: absolute;
  display: flex;
  justify-content: space-between;
  width: 906px;
  right: 0;
  bottom: 48px;
}

@media only screen and (max-width: 1200px) {
  .page-template-lp-conference-0727 .webinar .mv .section_wrapper .section {
    width: 780px;
    right: 80px;
  }
}
@media only screen and (max-width: 1130px) {
  .page-template-lp-conference-0727 .webinar .mv .section_wrapper .section {
    width: 710px;
    right: 140px;
  }
}
@media only screen and (max-width: 1060px) {
  .page-template-lp-conference-0727 .webinar .mv .section_wrapper .section {
    right: 200px;
  }
}
@media only screen and (max-width: 1000px) {
  .page-template-lp-conference-0727 .webinar .mv .section_wrapper .section {
    width: 710px;
    right: 250px;
  }
}
@media only screen and (max-width: 960px) {
  .page-template-lp-conference-0727 .webinar .mv .section_wrapper .section {
    width: 620px;
    right: 300px;
  }
}
@media only screen and (max-width: 900px) {
  .page-template-lp-conference-0727 .webinar .mv .section_wrapper .section {
    width: 560px;
    right: 360px;
  }
}
@media only screen and (max-width: 834px) {
  .page-template-lp-conference-0727 .webinar .mv .section_wrapper .section {
    width: 560px;
    right: 410px;
  }
}
@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0727 .webinar .mv .section_wrapper .section {
    display: block;
    width: 100%;
    left: 0;
  }
}
.page-template-lp-conference-0727 .webinar .mv .section_wrapper .section figure {
  width: 286px;
  filter: drop-shadow(10px 10px 20px rgba(0, 0, 0, 0.15));
}

@media only screen and (max-width: 1200px) {
  .page-template-lp-conference-0727 .webinar .mv .section_wrapper .section figure {
    width: 250px;
  }
}
@media only screen and (max-width: 1130px) {
  .page-template-lp-conference-0727 .webinar .mv .section_wrapper .section figure {
    width: 230px;
  }
}
@media only screen and (max-width: 960px) {
  .page-template-lp-conference-0727 .webinar .mv .section_wrapper .section figure {
    width: 200px;
  }
}
@media only screen and (max-width: 900px) {
  .page-template-lp-conference-0727 .webinar .mv .section_wrapper .section figure {
    width: 180px;
  }
}
@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0727 .webinar .mv .section_wrapper .section figure {
    width: 208px;
  }
}
.page-template-lp-conference-0727 .webinar .mv .section_wrapper .section figure + .sec_img_02 {
  margin: 0 auto;
}

.page-template-lp-conference-0727 .webinar .mv .section_wrapper .section figure + .sec_img_03 {
  float: right;
}

.page-template-lp-conference-0727 .webinar .cont {
  position: relative;
  background-image: url(../img/webinar/bg_02.png);
  background-position: left bottom;
  background-repeat: no-repeat;
  background-size: 749px;
}

.page-template-lp-conference-0727 .webinar .cont {
  position: relative;
  background-image: url(../img/webinar/bg_02.png);
  background-position: left bottom;
  background-repeat: no-repeat;
  background-size: 749px;
}

.page-template-lp-conference-0727 .webinar .moderator_bg {
  background-image: none;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0727 .webinar .cont {
    background-size: contain;
  }
}
.page-template-lp-conference-0727 .webinar .top_text {
  border: #D4D5D8 solid 1px;
  max-width: 900px;
  margin: auto;
  margin-top: 80px;
  text-align: center;
}

@media only screen and (max-width: 900px) {
  .page-template-lp-conference-0727 .webinar .top_text {
    max-width: 90%;
  }
}
.page-template-lp-conference-0727 .webinar .top_text p {
  padding: 40px;
  font-size: 16px;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0727 .webinar .top_text {
    margin: 48px 20px 0;
  }

  .page-template-lp-conference-0727 .webinar .top_text p {
    padding: 20px;
    font-size: 14px;
  }
}
.page-template-lp-conference-0727 .webinar .top_text span {
  font-size: 24px;
  font-weight: bold;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0727 .webinar .top_text span {
    font-size: 18px;
  }
}
.page-template-lp-conference-0727 .webinar .cont_inner {
  display: flex;
  justify-content: space-between;
  width: 1080px;
  margin: 0 auto;
  padding: 80px 0;
}

@media only screen and (max-width: 1200px) {
  .page-template-lp-conference-0727 .webinar .cont .cont_inner {
    width: 90%;
  }
}
@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0727 .webinar .cont .cont_inner {
    width: 100%;
    padding: 48px 30px 43px;
    flex-wrap: wrap;
    box-sizing: border-box;
  }
}
.page-template-lp-conference-0727 .webinar .cont .moderator {
  justify-content: center;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0727 .webinar .cont .cont_inner > section {
    width: 100%;
  }
}
.page-template-lp-conference-0727 .webinar .cont .cont_inner > section h2 {
  margin: 0 0 30px;
  font-weight: bold;
  font-size: 26px;
  line-height: 39px;
  text-align: center;
}

@media only screen and (max-width: 1030px) {
  .page-template-lp-conference-0727 .webinar .cont .cont_inner > section h2 {
    font-size: 26px;
    line-height: 33px;
  }
}
@media only screen and (max-width: 1000px) {
  .page-template-lp-conference-0727 .webinar .cont .cont_inner > section h2 {
    font-size: 20x;
    line-height: 30px;
  }
}
@media only screen and (max-width: 834px) {
  .page-template-lp-conference-0727 .webinar .cont .cont_inner > section h2 {
    font-size: 20px;
    line-height: 30px;
  }
}
@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0727 .webinar .cont .cont_inner > section h2 {
    margin: 0 auto 20px;
    line-height: 39px;
  }
}
.page-template-lp-conference-0727 .webinar .cont .cont_inner > section p {
  margin: 0 0 30px;
  font-weight: bold;
  font-size: 18px;
  text-align: center;
}

@media only screen and (max-width: 1030px) {
  .page-template-lp-conference-0727 .webinar .cont .cont_inner > section p {
    font-size: 18px;
  }
}
@media only screen and (max-width: 1030px) {
  .page-template-lp-conference-0727 .webinar .cont .cont_inner > section p {
    font-size: 14px;
  }
}
@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0727 .webinar .cont .cont_inner > section p {
    margin: 0 auto 20px;
  }
}
.page-template-lp-conference-0727 .webinar .cont .cont_inner > section .figure_wrapper {
  width: 180px;
  margin: 0 auto 0;
  text-align: center;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0727 .webinar .cont .cont_inner > section .figure_wrapper {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 330px;
    margin: 0 auto 24px;
    gap: 5px;
  }
}
.page-template-lp-conference-0727 .webinar .cont .cont_inner > section .figure_wrapper .sec_logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background-color: #fff;
  filter: drop-shadow(0px 5px 15px rgba(0, 0, 0, 0.1));
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0727 .webinar .cont .cont_inner > section .figure_wrapper .sec_logo {
    width: 140px;
    height: 90px;
  }
}
.page-template-lp-conference-0727 .webinar .cont .cont_inner > section .figure_wrapper .sec_logo .l_01 {
  width: 114px;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0727 .webinar .cont .cont_inner > section .figure_wrapper .sec_logo .l_01 {
    width: 60px;
  }
}
.page-template-lp-conference-0727 .webinar .cont .cont_inner > section .figure_wrapper .sec_logo .l_02 {
  width: 127px;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0727 .webinar .cont .cont_inner > section .figure_wrapper .sec_logo .l_02 {
    width: 70px;
  }
}
.page-template-lp-conference-0727 .webinar .cont .cont_inner > section .figure_wrapper .sec_logo .l_03 {
  width: 138px;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0727 .webinar .cont .cont_inner > section .figure_wrapper .sec_logo .l_03 {
    width: 70px;
  }
}
.page-template-lp-conference-0727 .webinar .cont .cont_inner > section .figure_wrapper .sec_logo .l_04 {
  width: 165px;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0727 .webinar .cont .cont_inner > section .figure_wrapper .sec_logo .l_04 {
    width: 126px;
  }
}
.page-template-lp-conference-0727 .webinar .cont .cont_inner > section .figure_wrapper .sec_logo .l_05 {
  width: 169px;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0727 .webinar .cont .cont_inner > section .figure_wrapper .sec_logo .l_05 {
    width: 131px;
  }
}
.page-template-lp-conference-0727 .webinar .cont .cont_inner > section .figure_wrapper .sec_logo .l_06 {
  width: 143px;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0727 .webinar .cont .cont_inner > section .figure_wrapper .sec_logo .l_06 {
    width: 111px;
  }
}
.page-template-lp-conference-0727 .webinar .cont .cont_inner > section .figure_wrapper .x_icon {
  width: 30px;
  margin: 16px auto;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0727 .webinar .cont .cont_inner > section .figure_wrapper .x_icon {
    width: 21px;
  }
}
.page-template-lp-conference-0727 .webinar .cont .cont_inner .text_box {
  width: 652px;
}

@media only screen and (max-width: 990px) {
  .page-template-lp-conference-0727 .webinar .cont .cont_inner .text_box {
    width: 600px;
  }
}
@media only screen and (max-width: 910px) {
  .page-template-lp-conference-0727 .webinar .cont .cont_inner .text_box {
    width: 550px;
  }
}
@media only screen and (max-width: 834px) {
  .page-template-lp-conference-0727 .webinar .cont .cont_inner .text_box {
    width: 500px;
  }
}
@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0727 .webinar .cont .cont_inner .text_box {
    width: 100%;
  }
}
.page-template-lp-conference-0727 .webinar .cont .cont_inner .text_box > p {
  padding: 0 0 64px;
  font-size: 16px;
  line-height: 30px;
}

@media only screen and (max-width: 1030px) {
  .page-template-lp-conference-0727 .webinar .cont .cont_inner .text_box > p {
    font-size: 14px;
  }
}
@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0727 .webinar .cont .cont_inner .text_box > p {
    padding: 0 0 48px;
  }
}
.page-template-lp-conference-0727 .webinar .cont .cont_inner .text_box h3 {
  position: relative;
  font-weight: 700;
  font-size: 24px;
  line-height: 36px;
  letter-spacing: 0.05em;
  text-align: center;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0727 .webinar .cont .cont_inner .text_box h3 {
    max-width: 372px;
    margin: 0 auto;
    font-size: 22px;
    line-height: 33px;
  }
}
.page-template-lp-conference-0727 .webinar .cont .cont_inner .text_box h3::before, .page-template-lp-conference-0727 .webinar .cont .cont_inner .text_box h3::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 250px;
  height: 1px;
  background-color: rgba(82, 88, 99, 0.25);
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0727 .webinar .cont .cont_inner .text_box h3::before, .page-template-lp-conference-0727 .webinar .cont .cont_inner .text_box h3::after {
    width: 132px;
  }
}
.page-template-lp-conference-0727 .webinar .cont .cont_inner .text_box h3::before {
  left: 0;
}

.page-template-lp-conference-0727 .webinar .cont .cont_inner .text_box h3::after {
  right: 0;
}

.page-template-lp-conference-0727 .webinar .cont .cont_inner .text_box .speaker_wrapper {
  display: flex;
  margin: 64px 0 0;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0727 .webinar .cont .cont_inner .text_box .speaker_wrapper {
    display: block;
    margin: 32px 0 0;
  }
}
.page-template-lp-conference-0727 .webinar .cont .cont_inner .text_box .speaker_wrapper figure {
  min-width: 220px;
  width: 220px;
  margin: 0 32px 0 0;
}

@media only screen and (max-width: 980px) {
  .page-template-lp-conference-0727 .webinar .cont .cont_inner .text_box .speaker_wrapper figure {
    min-width: 180px;
  }
}
@media only screen and (max-width: 834px) {
  .page-template-lp-conference-0727 .webinar .cont .cont_inner .text_box .speaker_wrapper figure {
    min-width: 160px;
  }
}
@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0727 .webinar .cont .cont_inner .text_box .speaker_wrapper figure {
    min-width: 140px;
    width: 140px;
    margin: 0 auto 16px;
  }
}
.page-template-lp-conference-0727 .webinar .cont .cont_inner .text_box .speaker_wrapper .speaker_box h4 {
  padding: 0 0 16px;
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0727 .webinar .cont .cont_inner .text_box .speaker_wrapper .speaker_box h4 {
    font-size: 20px;
    line-height: 26px;
    text-align: center;
  }
}
.page-template-lp-conference-0727 .webinar .cont .cont_inner .text_box .speaker_wrapper .speaker_box h4 .company_name {
  display: block;
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
}

.page-template-lp-conference-0727 .webinar .cont .cont_inner .text_box .speaker_wrapper .speaker_box h4 .name {
  display: block;
  font-weight: 500;
  font-size: 12px;
  line-height: 21px;
}

.page-template-lp-conference-0727 .webinar .cont .cont_inner .text_box .speaker_wrapper .speaker_box p {
  font-size: 14px;
  line-height: 26px;
}

.page-template-lp-conference-0727 .webinar .time_table {
  padding: 80px 0;
  text-align: center;
  background-image: url(../img/webinar/bg_03.png);
  background-position: top left;
  background-repeat: repeat;
  background-size: 37px;
  color: #fff;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0727 .webinar .time_table {
    padding: 56px 0;
  }
}
.page-template-lp-conference-0727 .webinar .time_table h2 {
  padding: 0 0 16px;
  font-weight: 700;
  font-size: 38px;
  line-height: 57px;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0727 .webinar .time_table h2 {
    font-size: 26px;
    line-height: 39px;
  }
}
.page-template-lp-conference-0727 .webinar .time_table > span {
  display: inline-block;
  padding: 8px 20px;
  font-family: "Roboto";
  font-size: 18px;
  line-height: 27px;
  letter-spacing: 0.03em;
  border: 1px solid #fff;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0727 .webinar .time_table > span {
    padding: 6px 14px;
    font-size: 16px;
    line-height: 24px;
  }
}
.page-template-lp-conference-0727 .webinar .time_table .schedule {
  margin: 64px 0 0;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0727 .webinar .time_table .schedule {
    margin: 48px 0 0;
  }
}
.page-template-lp-conference-0727 .webinar .time_table .schedule h3 {
  padding: 0 0 12px;
  font-weight: 700;
  font-size: 24px;
  line-height: 26px;
  letter-spacing: 0.03em;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0727 .webinar .time_table .schedule h3 {
    font-size: 18px;
    line-height: 26px;
  }
}
.page-template-lp-conference-0727 .webinar .time_table .schedule h3 span {
  font-weight: 500;
  font-size: 14px;
  line-height: 27px;
  color: rgba(255, 255, 255, 0.6);
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0727 .webinar .time_table .schedule h3 span {
    font-size: 12px;
    line-height: 23px;
  }
}
.page-template-lp-conference-0727 .webinar .time_table .schedule p {
  position: relative;
  padding: 0 0 74px;
  font-size: 22px;
  line-height: 22px;
  letter-spacing: 0.03em;
  font-family: "Roboto";
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0727 .webinar .time_table .schedule p {
    font-size: 20px;
    line-height: 22px;
  }
}
.page-template-lp-conference-0727 .webinar .time_table .schedule p::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 34px;
  background-color: #fff;
  right: 50%;
  bottom: 20px;
  transform: translateX(-50%);
}

.page-template-lp-conference-0727 .webinar .time_table .schedule p:last-child {
  padding: 0;
}

.page-template-lp-conference-0727 .webinar .time_table .schedule p:last-child::after {
  display: none;
}

.page-template-lp-conference-0727 .webinar #bottom-form::before {
  display: none;
}

.page-template-lp-conference-0727 .webinar #bottom-form,
.page-template-lp-conference-0727 .webinar .l-section {
  padding: 80px 0;
  background: #F8F8F8;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0727 .webinar #bottom-form,
.page-template-lp-conference-0727 .webinar .l-section {
    padding: 0;
  }
}
.page-template-lp-conference-0727 .webinar #bottom-form .p-cta2,
.page-template-lp-conference-0727 .webinar .l-section .p-cta2 {
  width: 800px;
  padding: 56px 0;
  background-color: #fff;
  filter: drop-shadow(0px 5px 20px rgba(0, 0, 0, 0.15));
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0727 .webinar #bottom-form .p-cta2,
.page-template-lp-conference-0727 .webinar .l-section .p-cta2 {
    width: 100%;
    padding: 32px 15px;
    box-sizing: border-box;
    background: #F8F8F8;
    filter: drop-shadow(0px 5px 20px rgba(0, 0, 0, 0));
  }
}
.page-template-lp-conference-0727 .webinar #bottom-form .p-cta2 .c-h2,
.page-template-lp-conference-0727 .webinar .l-section .p-cta2 .c-h2 {
  width: 540px;
  margin: 0 auto 32px !important;
  padding: 0 0 28px !important;
  font-size: 28px !important;
  line-height: 42px;
  border-bottom: 1px solid #0E0E0E;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0727 .webinar #bottom-form .p-cta2 .c-h2,
.page-template-lp-conference-0727 .webinar .l-section .p-cta2 .c-h2 {
    width: 100%;
    max-width: 400px;
    margin: 0 auto 26px !important;
    padding: 0 0 24px !important;
    font-size: 22px !important;
    line-height: 24px !important;
  }
}
.page-template-lp-conference-0727 .webinar #bottom-form .p-cta2 .p-form_wrap,
.page-template-lp-conference-0727 .webinar .l-section .p-cta2 .p-form_wrap {
  margin: 0 auto !important;
  padding: 0 !important;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0727 .webinar #bottom-form .p-cta2 .p-form_wrap,
.page-template-lp-conference-0727 .webinar .l-section .p-cta2 .p-form_wrap {
    width: 100%;
  }
}
.page-template-lp-conference-0727 .webinar #bottom-form .p-cta2 .p-form_wrap .box,
.page-template-lp-conference-0727 .webinar .l-section .p-cta2 .p-form_wrap .box {
  margin: 0 0 16px !important;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0727 .webinar #bottom-form .p-cta2 .p-form_wrap .box,
.page-template-lp-conference-0727 .webinar .l-section .p-cta2 .p-form_wrap .box {
    margin: 0 0 10px !important;
  }
}
.page-template-lp-conference-0727 .webinar #bottom-form .p-cta2 .p-form_wrap .box .f-title,
.page-template-lp-conference-0727 .webinar .l-section .p-cta2 .p-form_wrap .box .f-title {
  margin: 0 0 4px !important;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0727 .webinar #bottom-form .p-cta2 .p-form_wrap .box .f-title,
.page-template-lp-conference-0727 .webinar .l-section .p-cta2 .p-form_wrap .box .f-title {
    font-weight: 700;
    font-size: 14px;
    line-height: 21px;
  }
}
.page-template-lp-conference-0727 .webinar #bottom-form .p-cta2 .p-form_wrap .box .f-title .his,
.page-template-lp-conference-0727 .webinar .l-section .p-cta2 .p-form_wrap .box .f-title .his {
  margin-left: 0 !important;
  padding: 1px 5px !important;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0727 .webinar #bottom-form .p-cta2 .p-form_wrap .box .f-title .his,
.page-template-lp-conference-0727 .webinar .l-section .p-cta2 .p-form_wrap .box .f-title .his {
    padding: 1px 8px !important;
  }
}
@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0727 .webinar #bottom-form .p-cta2 .p-form_wrap .box > p input[type=text], .page-template-lp-conference-0727 .webinar #bottom-form .p-cta2 .p-form_wrap .box > p input[type=tel], .page-template-lp-conference-0727 .webinar #bottom-form .p-cta2 .p-form_wrap .box > p input[type=email], .page-template-lp-conference-0727 .webinar #bottom-form .p-cta2 .p-form_wrap .box > p textarea, .page-template-lp-conference-0727 .webinar #bottom-form .p-cta2 .p-form_wrap .box > p select, .page-template-lp-conference-0727 .webinar #bottom-form .p-cta2 .p-form_wrap .box > p .js-formCheckSelect,
.page-template-lp-conference-0727 .webinar .l-section .p-cta2 .p-form_wrap .box > p input[type=text],
.page-template-lp-conference-0727 .webinar .l-section .p-cta2 .p-form_wrap .box > p input[type=tel],
.page-template-lp-conference-0727 .webinar .l-section .p-cta2 .p-form_wrap .box > p input[type=email],
.page-template-lp-conference-0727 .webinar .l-section .p-cta2 .p-form_wrap .box > p textarea,
.page-template-lp-conference-0727 .webinar .l-section .p-cta2 .p-form_wrap .box > p select,
.page-template-lp-conference-0727 .webinar .l-section .p-cta2 .p-form_wrap .box > p .js-formCheckSelect {
    background: #FFFFFF;
    border: 1px solid rgba(14, 14, 14, 0.1);
  }
}
.page-template-lp-conference-0727 .webinar #bottom-form .p-cta2 .p-form_wrap .policy,
.page-template-lp-conference-0727 .webinar #bottom-form .p-cta2 .p-form_wrap .policy_link,
.page-template-lp-conference-0727 .webinar .l-section .p-cta2 .p-form_wrap .policy,
.page-template-lp-conference-0727 .webinar .l-section .p-cta2 .p-form_wrap .policy_link {
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
  color: #303544;
  margin: 0 0 8px;
}

.page-template-lp-conference-0727 .webinar #bottom-form .p-cta2 .p-form_wrap .policy_link,
.page-template-lp-conference-0727 .webinar .l-section .p-cta2 .p-form_wrap .policy_link {
  margin: 0 0 32px;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0727 .webinar #bottom-form .p-cta2 .p-form_wrap .policy_link,
.page-template-lp-conference-0727 .webinar .l-section .p-cta2 .p-form_wrap .policy_link {
    margin: 0 0 24px;
    line-height: 2;
  }
}
.page-template-lp-conference-0727 .webinar #bottom-form .p-cta2 .p-form_wrap .policy_link a,
.page-template-lp-conference-0727 .webinar .l-section .p-cta2 .p-form_wrap .policy_link a {
  text-decoration-line: underline;
  color: #303544;
}

.page-template-lp-conference-0727 .webinar #bottom-form .p-cta2 .p-form_wrap .policy_link a::after,
.page-template-lp-conference-0727 .webinar .l-section .p-cta2 .p-form_wrap .policy_link a::after {
  display: none;
}

.page-template-lp-conference-0727 .webinar #bottom-form .p-cta2 .p-form_wrap .wpcf7-list-item,
.page-template-lp-conference-0727 .webinar .l-section .p-cta2 .p-form_wrap .wpcf7-list-item {
  text-align: center;
  color: #303544;
}

.page-template-lp-conference-0727 .webinar #bottom-form .p-cta2 .p-form_wrap .wpcf7-list-item input,
.page-template-lp-conference-0727 .webinar .l-section .p-cta2 .p-form_wrap .wpcf7-list-item input {
  width: 22px;
  height: 22px;
}

.page-template-lp-conference-0727 .webinar #bottom-form .p-cta2 .p-form_wrap .wpcf7-list-item a,
.page-template-lp-conference-0727 .webinar .l-section .p-cta2 .p-form_wrap .wpcf7-list-item a {
  color: #303544;
  text-decoration-line: underline;
}

.page-template-lp-conference-0727 .webinar #bottom-form .p-cta2 .p-form_wrap .wpcf7-list-item a::after,
.page-template-lp-conference-0727 .webinar .l-section .p-cta2 .p-form_wrap .wpcf7-list-item a::after {
  display: none;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0727 .webinar #bottom-form .p-cta2 .p-form_wrap .acceptance,
.page-template-lp-conference-0727 .webinar .l-section .p-cta2 .p-form_wrap .acceptance {
    margin: 0 0 24px !important;
  }
}
.page-template-lp-conference-0727 .webinar #bottom-form .p-cta2 .p-form_wrap .p-form_submit p,
.page-template-lp-conference-0727 .webinar .l-section .p-cta2 .p-form_wrap .p-form_submit p {
  margin: 0 !important;
}

.page-template-lp-conference-0727 .webinar #bottom-form .p-cta2 .p-form_wrap .p-form_submit p input[type=submit]:disabled,
.page-template-lp-conference-0727 .webinar .l-section .p-cta2 .p-form_wrap .p-form_submit p input[type=submit]:disabled {
  color: #fff;
  background: #DDDDDD;
  border: 4px solid #fff;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0727 .webinar #bottom-form .p-cta2 .p-form_wrap .p-form_submit p input[type=submit]:disabled,
.page-template-lp-conference-0727 .webinar .l-section .p-cta2 .p-form_wrap .p-form_submit p input[type=submit]:disabled {
    width: 299px;
    font-size: 20px;
    padding: 16px 15px;
    border: none;
    background: #DDDDDD;
  }
}
.page-template-lp-conference-0727 .webinar #bottom-form .p-cta2 .p-form_wrap .p-form_submit p input[type=submit],
.page-template-lp-conference-0727 .webinar .l-section .p-cta2 .p-form_wrap .p-form_submit p input[type=submit] {
  color: #0E0E0E;
  background: #FFDC36;
  border: 4px solid #fff;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0727 .webinar #bottom-form .p-cta2 .p-form_wrap .p-form_submit p input[type=submit],
.page-template-lp-conference-0727 .webinar .l-section .p-cta2 .p-form_wrap .p-form_submit p input[type=submit] {
    width: 299px;
    font-size: 20px;
    padding: 16px 15px;
    border: none;
    background: #FFDC36;
  }
}
.page-template-lp-conference-0727 .webinar #bottom-form .p-cta2 .p-form_wrap .p-form_submit p:hover input[type=submit],
.page-template-lp-conference-0727 .webinar .l-section .p-cta2 .p-form_wrap .p-form_submit p:hover input[type=submit] {
  transition: all 0.3s;
  opacity: 0.7;
  box-shadow: none;
}

.page-template-lp-conference-0727 .webinar #bottom-form .overflow,
.page-template-lp-conference-0727 .webinar .l-section .overflow {
  width: 610px;
  margin: 24px auto 0;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0727 .webinar #bottom-form .overflow,
.page-template-lp-conference-0727 .webinar .l-section .overflow {
    display: block;
    width: calc(100% - 30px);
    margin: 0 auto;
    padding: 32px 0 40px;
    border-top: 1px solid #0E0E0E;
  }
}
.page-template-lp-conference-0727 .webinar #bottom-form .overflow > figure,
.page-template-lp-conference-0727 .webinar .l-section .overflow > figure {
  display: block;
  width: 122px;
  margin: 0 auto 18px;
  text-align: center;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0727 .webinar #bottom-form .overflow > figure,
.page-template-lp-conference-0727 .webinar .l-section .overflow > figure {
    margin: 0 auto 26px;
  }
}
.page-template-lp-conference-0727 .webinar #bottom-form .overflow > figure figcaption,
.page-template-lp-conference-0727 .webinar .l-section .overflow > figure figcaption {
  margin: 0 0 5px;
  font-size: 12px;
  line-height: 18px;
  text-align: center;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0727 .webinar #bottom-form .overflow .cta_tel dt,
.page-template-lp-conference-0727 .webinar .l-section .overflow .cta_tel dt {
    display: block;
    width: 250px;
    margin: 0 auto;
  }
}
.page-template-lp-conference-0727 .webinar #bottom-form .overflow .cta_tel dt .c-tell,
.page-template-lp-conference-0727 .webinar .l-section .overflow .cta_tel dt .c-tell {
  padding: 4px 14px;
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  color: #fff;
  background: #4D4D4D;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0727 .webinar #bottom-form .overflow .cta_tel dt .c-tell,
.page-template-lp-conference-0727 .webinar .l-section .overflow .cta_tel dt .c-tell {
    display: block;
    margin: 0 0 12px;
    text-align: center;
    font-weight: 700;
    font-size: 14px;
    line-height: 21px;
    color: #0E0E0E;
    background: transparent;
    border: 1px solid #0E0E0E;
  }
}
.page-template-lp-conference-0727 .webinar #bottom-form .overflow .cta_tel dt .c-tell:after,
.page-template-lp-conference-0727 .webinar .l-section .overflow .cta_tel dt .c-tell:after {
  height: 32px;
  right: -16px;
  border-left: 16px solid #4D4D4D;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  box-sizing: border-box;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0727 .webinar #bottom-form .overflow .cta_tel dt .c-tell:after,
.page-template-lp-conference-0727 .webinar .l-section .overflow .cta_tel dt .c-tell:after {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0727 .webinar #bottom-form .overflow .cta_tel dt figure,
.page-template-lp-conference-0727 .webinar .l-section .overflow .cta_tel dt figure {
    width: 17px;
    margin: 0 4px 0 0;
  }
}
@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0727 .webinar #bottom-form .overflow .cta_tel dt figure img,
.page-template-lp-conference-0727 .webinar .l-section .overflow .cta_tel dt figure img {
    vertical-align: baseline;
  }
}
.page-template-lp-conference-0727 .webinar #bottom-form .overflow .cta_tel dt .c-num,
.page-template-lp-conference-0727 .webinar .l-section .overflow .cta_tel dt .c-num {
  font-weight: 700;
  font-size: 30px;
  line-height: 38px;
  letter-spacing: 0.01em;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0727 .webinar #bottom-form .overflow .cta_tel dt .c-num,
.page-template-lp-conference-0727 .webinar .l-section .overflow .cta_tel dt .c-num {
    width: 100%;
    font-size: 30px;
    line-height: 38px;
  }
}
.page-template-lp-conference-0727 .webinar #bottom-form .overflow .cta_tel dt [data-js-tel] a,
.page-template-lp-conference-0727 .webinar .l-section .overflow .cta_tel dt [data-js-tel] a {
  text-decoration: none;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0727 .webinar #bottom-form .overflow .cta_tel dt .day,
.page-template-lp-conference-0727 .webinar .l-section .overflow .cta_tel dt .day {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 14px;
    line-height: 21px;
  }
}
.page-template-lp-conference-0727 #g-footer,
#g-footer_0727 {
  padding: 40px 0;
  text-align: center;
  background: #0E0E0E;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0727 #g-footer,
#g-footer_0727 {
    padding: 29px;
  }
}
.page-template-lp-conference-0727 #g-footer ul,
#g-footer_0727 ul {
  display: flex;
  justify-content: center;
  margin: 0 0 56px;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0727 #g-footer ul,
#g-footer_0727 ul {
    flex-wrap: wrap;
    margin: 0 0 41px;
  }
}
.page-template-lp-conference-0727 #g-footer ul li,
#g-footer_0727 ul li {
  padding: 0 20px;
}

@media only screen and (max-width: 592px) {
  .page-template-lp-conference-0727 #g-footer ul li:last-child,
#g-footer_0727 ul li:last-child {
    padding: 14px 20px 0;
  }
}
.page-template-lp-conference-0727 #g-footer ul li a,
#g-footer_0727 ul li a {
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
  color: #fff;
}

.page-template-lp-conference-0727 #g-footer span,
#g-footer_0727 span {
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
}

.thanks_0727_title {
  color: #fff;
  font-weight: bold;
  font-size: 30px;
  text-align: center;
  padding: 32px 0;
  background-color: #0E0E0E;
}

@media only screen and (max-width: 1000px) {
  .thanks_0727_title {
    font-size: 24px;
  }
}
@media only screen and (max-width: 768px) {
  .thanks_0727_title {
    font-size: 20px;
    padding: 20px 0;
  }
}
.thanks_0727_point {
  font-size: 23px;
  border: solid 1px #fff;
  padding: 5px;
  margin-right: 16px;
}

@media only screen and (max-width: 768px) {
  .thanks_0727_point {
    font-size: 20px;
    margin-right: 0;
  }
}
.p-contact_wrap_0727 {
  box-shadow: 0 15px 20px rgba(0, 0, 0, 0.15);
  width: 540px;
  padding: 56px 130px;
  margin: 80px auto;
  border: none;
}

@media only screen and (max-width: 860px) {
  .p-contact_wrap_0727 {
    width: 65%;
    padding: 50px 60px;
    margin: 50px auto;
  }
}
@media only screen and (max-width: 768px) {
  .p-contact_wrap_0727 {
    padding: 40px;
    margin: 30px auto;
  }
}
.p-contact_fv_0727 {
  font-size: 28px;
  font-weight: bold;
  padding-bottom: 30px;
  border-bottom: solid 1px #000;
  text-align: center;
}

@media only screen and (max-width: 860px) {
  .p-contact_fv_0727 {
    font-size: 24px;
  }
}
@media only screen and (max-width: 768px) {
  .p-contact_fv_0727 {
    font-size: 18px;
  }
}
.p-thanks_text1_0727 {
  font-size: 16px;
  padding: 32px 0 40px;
}

@media only screen and (max-width: 860px) {
  .p-thanks_text1_0727 {
    font-size: 14px;
  }
}
.thanks_btn_0727 {
  text-align: center;
  font-size: 18px;
}

.thanks_btn_0727 a {
  color: #fff;
  padding: 15px 70px;
  background-color: #0E0E0E;
  border-radius: 100px;
}

.thanks_btn_0727 :hover {
  opacity: 0.8;
}

@media only screen and (min-width: 769px) {
  .sp_0727 {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .sp_0727 {
    display: block;
  }
}
/*----------------------------------------

webinar 0801

-----------------------------------------*/
.page-template-lp-conference-0801 .g-wrapper {
  min-width: 0;
}

.page-template-lp-conference-0801 #g-header {
  display: none;
}

.page-template-lp-conference-0801 .webinar {
  color: #0E0E0E;
}

.page-template-lp-conference-0801 .webinar .pc {
  display: block;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0801 .webinar .pc {
    display: none;
  }
}
.page-template-lp-conference-0801 .webinar .sp {
  display: noone;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0801 .webinar .sp {
    display: block;
  }
}
.page-template-lp-conference-0801 .webinar .bg_g {
  background-color: #F8F8F8;
}

.page-template-lp-conference-0801 .webinar .mv {
  height: 100%;
  overflow: hidden;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0801 .webinar .mv {
    width: 100vw;
  }
}
.page-template-lp-conference-0801 .webinar .mv .title_wrapper {
  position: relative;
  width: 1184px;
  margin: 0 auto;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0801 .webinar .mv .title_wrapper {
    width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0801 .webinar .mv .fv_img {
    text-align: center;
    width: 100vw;
  }
}
@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0801 .webinar .mv .fv_img img {
    width: 100vw;
  }
}
.page-template-lp-conference-0801 .webinar .mv .title_wrapper .copy {
  display: flex;
  align-items: center;
  position: absolute;
  top: 20px;
  left: 70px;
  transform: rotate(-14deg);
}

@media only screen and (max-width: 1200px) {
  .page-template-lp-conference-0801 .webinar .mv .title_wrapper .copy {
    top: 30px;
    left: 40px;
  }
}
@media only screen and (max-width: 960px) {
  .page-template-lp-conference-0801 .webinar .mv .title_wrapper .copy {
    top: 20px;
  }
}
@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0801 .webinar .mv .title_wrapper .copy {
    top: 10px;
    width: 400px;
    margin: 0 auto;
    left: 10px;
  }
}
.page-template-lp-conference-0801 .webinar .mv .title_wrapper .copy .circle {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 118px;
  height: 118px;
  text-align: center;
  font-weight: bold;
  font-size: 19.6px;
  line-height: 24.63px;
  letter-spacing: 0.02em;
  border-radius: 50%;
  border: 3px solid #0E0E0E;
  box-sizing: border-box;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0801 .webinar .mv .title_wrapper .copy .circle {
    width: 96px;
    height: 96px;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: -0.05em;
  }
}
.page-template-lp-conference-0801 .webinar .mv .title_wrapper .copy .circle span {
  font-size: 34.1px;
  line-height: 25.09px;
  font-family: "Roboto", sans-serif;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0801 .webinar .mv .title_wrapper .copy .circle span {
    padding: 0 4px 0 0;
    font-size: 28px;
    line-height: 20px;
  }
}
.page-template-lp-conference-0801 .webinar .mv .title_wrapper .copy .copy_test {
  position: relative;
  margin: 0 0 0 10px;
  font-family: "Roboto";
  font-weight: 700;
  font-size: 28px;
  line-height: 33px;
  letter-spacing: 0.02em;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0801 .webinar .mv .title_wrapper .copy .copy_test {
    font-size: 22px;
    line-height: 26px;
  }
}
.page-template-lp-conference-0801 .webinar .mv .title_wrapper .copy .copy_test::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 119px;
  width: 29px;
  height: 30px;
  background-image: url(../img/webinar/0801/copy_test.png);
  background-size: cover;
  transform: rotate(16deg);
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0801 .webinar .mv .title_wrapper .copy .copy_test::before {
    top: 26px;
    left: 22px;
  }
}
.page-template-lp-conference-0801 .webinar .mv .title_wrapper .title {
  position: absolute;
  top: 90px;
  left: 120px;
  width: 1030px;
  font-weight: 700;
  font-size: 52px;
  letter-spacing: 0.03em;
  color: #FFFFFF;
}

@media only screen and (max-width: 880px) {
  .page-template-lp-conference-0801 .webinar .mv .title_wrapper .title {
    left: 90px;
  }
}
@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0801 .webinar .mv .title_wrapper .title {
    width: 120%;
    font-size: 32px;
    top: 130px;
    left: 56%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }
}
.page-template-lp-conference-0801 .webinar .mv .title_wrapper .title h1 {
  position: relative;
}

.page-template-lp-conference-0801 .webinar .mv .title_wrapper .title h1 span {
  display: inline-block;
  padding: 12px 34px;
  background: #0E0E0E;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.25);
  transform: rotate(-8deg);
  font-size: 48px;
}

@media only screen and (max-width: 1090px) {
  .page-template-lp-conference-0801 .webinar .mv .title_wrapper .title h1 span {
    font-size: 42px;
  }
}
@media only screen and (max-width: 1000px) {
  .page-template-lp-conference-0801 .webinar .mv .title_wrapper .title h1 span {
    font-size: 36px;
  }
}
@media only screen and (max-width: 880px) {
  .page-template-lp-conference-0801 .webinar .mv .title_wrapper .title h1 span {
    font-size: 34px;
  }
}
@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0801 .webinar .mv .title_wrapper .title h1 span {
    padding: 8px 30px 8px 20px;
    font-size: 32px;
  }
}
.page-template-lp-conference-0801 .webinar .mv .title_wrapper .title h1 .subtitle {
  font-size: 14px;
  padding: 10px 30px;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0801 .webinar .mv .title_wrapper .title h1 .subtitle {
    font-size: 12px;
  }
}
@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0801 .webinar .mv .title_wrapper .title h1 span:nth-child(1) {
    padding: 5px 20px 5px 30px;
    font-size: 20px;
  }
}
.page-template-lp-conference-0801 .webinar .mv .title_wrapper .title h1 span:nth-child(2) {
  position: absolute;
  top: 120px;
  left: -30px;
}

@media only screen and (max-width: 1000px) {
  .page-template-lp-conference-0801 .webinar .mv .title_wrapper .title h1 span:nth-child(2) {
    top: 115px;
  }
}
@media only screen and (max-width: 880px) {
  .page-template-lp-conference-0801 .webinar .mv .title_wrapper .title h1 span:nth-child(2) {
    top: 110px;
  }
}
@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0801 .webinar .mv .title_wrapper .title h1 span:nth-child(2) {
    position: absolute;
    top: 60px;
    left: 50px;
  }
}
.page-template-lp-conference-0801 .webinar .mv .title_wrapper .title h1 span:nth-child(3) {
  position: absolute;
  top: 230px;
  left: 180px;
  font-weight: normal;
}

@media only screen and (max-width: 1090px) {
  .page-template-lp-conference-0801 .webinar .mv .title_wrapper .title h1 span:nth-child(3) {
    left: 100px;
  }
}
@media only screen and (max-width: 1000px) {
  .page-template-lp-conference-0801 .webinar .mv .title_wrapper .title h1 span:nth-child(3) {
    top: 220px;
    left: -30px;
  }
}
@media only screen and (max-width: 880px) {
  .page-template-lp-conference-0801 .webinar .mv .title_wrapper .title h1 span:nth-child(3) {
    top: 210px;
    left: -80px;
  }
}
@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0801 .webinar .mv .title_wrapper .title h1 span:nth-child(3) {
    top: 135px;
    left: 60px;
  }
}
@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0801 .webinar .mv .title_wrapper .title h1 span:nth-child(4) {
    position: absolute;
    top: 220px;
    left: 5px;
  }
}
.page-template-lp-conference-0801 .webinar .mv .title_wrapper .time {
  position: absolute;
  top: 350px;
  left: 760px;
  display: inline-block;
  padding: 8px 18px;
  font-family: "Roboto";
  font-size: 24px;
  line-height: 28px;
  text-align: center;
  letter-spacing: 0.03em;
  background-color: #FFFFFF;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.15);
  transform: rotate(-8deg);
}

@media only screen and (max-width: 1090px) {
  .page-template-lp-conference-0801 .webinar .mv .title_wrapper .time {
    left: 640px;
    top: 360px;
  }
}
@media only screen and (max-width: 1000px) {
  .page-template-lp-conference-0801 .webinar .mv .title_wrapper .time {
    left: 540px;
    top: 340px;
  }
}
@media only screen and (max-width: 890px) {
  .page-template-lp-conference-0801 .webinar .mv .title_wrapper .time {
    left: 480px;
    font-size: 22px;
  }
}
@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0801 .webinar .mv .title_wrapper .time {
    width: 310px;
    top: 430px;
    left: 40%;
    transform: translateX(-50%) rotate(-8deg);
    -webkit-transform: translateX(-50%) rotate(-8deg);
    -ms-transform: translateX(-50%) rotate(-8deg);
    padding: 8px 18px;
    line-height: 26px;
  }
}
.page-template-lp-conference-0801 .webinar .mv .title_wrapper .time span {
  font-size: 19px;
  line-height: 22.27px;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0801 .webinar .mv .title_wrapper .time span {
    font-size: 17px;
    line-height: 20px;
  }
}
.page-template-lp-conference-0801 .webinar .mv .section_wrapper {
  position: relative;
  width: 1184px;
  height: 100%;
  margin: 0 auto;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0801 .webinar .mv .section_wrapper {
    width: 370px;
  }
}
.page-template-lp-conference-0801 .webinar .mv .section_wrapper .section {
  position: absolute;
  display: flex;
  justify-content: space-between;
  width: 906px;
  right: 0;
  bottom: 48px;
}

@media only screen and (max-width: 1200px) {
  .page-template-lp-conference-0801 .webinar .mv .section_wrapper .section {
    width: 780px;
    right: 80px;
  }
}
@media only screen and (max-width: 1130px) {
  .page-template-lp-conference-0801 .webinar .mv .section_wrapper .section {
    width: 710px;
    right: 140px;
  }
}
@media only screen and (max-width: 1060px) {
  .page-template-lp-conference-0801 .webinar .mv .section_wrapper .section {
    right: 200px;
  }
}
@media only screen and (max-width: 1000px) {
  .page-template-lp-conference-0801 .webinar .mv .section_wrapper .section {
    width: 710px;
    right: 250px;
  }
}
@media only screen and (max-width: 960px) {
  .page-template-lp-conference-0801 .webinar .mv .section_wrapper .section {
    width: 620px;
    right: 300px;
  }
}
@media only screen and (max-width: 900px) {
  .page-template-lp-conference-0801 .webinar .mv .section_wrapper .section {
    width: 560px;
    right: 360px;
  }
}
@media only screen and (max-width: 834px) {
  .page-template-lp-conference-0801 .webinar .mv .section_wrapper .section {
    width: 560px;
    right: 410px;
  }
}
@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0801 .webinar .mv .section_wrapper .section {
    display: block;
    width: 100%;
    left: 0;
  }
}
.page-template-lp-conference-0801 .webinar .mv .section_wrapper .section figure {
  width: 286px;
  filter: drop-shadow(10px 10px 20px rgba(0, 0, 0, 0.15));
}

@media only screen and (max-width: 1200px) {
  .page-template-lp-conference-0801 .webinar .mv .section_wrapper .section figure {
    width: 250px;
  }
}
@media only screen and (max-width: 1130px) {
  .page-template-lp-conference-0801 .webinar .mv .section_wrapper .section figure {
    width: 230px;
  }
}
@media only screen and (max-width: 960px) {
  .page-template-lp-conference-0801 .webinar .mv .section_wrapper .section figure {
    width: 200px;
  }
}
@media only screen and (max-width: 900px) {
  .page-template-lp-conference-0801 .webinar .mv .section_wrapper .section figure {
    width: 180px;
  }
}
@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0801 .webinar .mv .section_wrapper .section figure {
    width: 208px;
  }
}
.page-template-lp-conference-0801 .webinar .mv .section_wrapper .section figure + .sec_img_02 {
  margin: 0 auto;
}

.page-template-lp-conference-0801 .webinar .mv .section_wrapper .section figure + .sec_img_03 {
  float: right;
}

.page-template-lp-conference-0801 .webinar .cont {
  position: relative;
  background-image: url(../img/webinar/bg_02.png);
  background-position: left bottom;
  background-repeat: no-repeat;
  background-size: 749px;
}

.page-template-lp-conference-0801 .webinar .cont {
  position: relative;
  background-image: url(../img/webinar/bg_02.png);
  background-position: left bottom;
  background-repeat: no-repeat;
  background-size: 749px;
}

.page-template-lp-conference-0801 .webinar .moderator_bg {
  background-image: none;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0801 .webinar .cont {
    background-size: contain;
  }
}
.page-template-lp-conference-0801 .webinar .top_text {
  border: #D4D5D8 solid 1px;
  max-width: 900px;
  margin: auto;
  margin-top: 80px;
  text-align: center;
}

@media only screen and (max-width: 900px) {
  .page-template-lp-conference-0801 .webinar .top_text {
    max-width: 90%;
  }
}
.page-template-lp-conference-0801 .webinar .top_text p {
  padding: 40px;
  font-size: 16px;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0801 .webinar .top_text {
    margin: 48px 20px 0;
  }

  .page-template-lp-conference-0801 .webinar .top_text p {
    padding: 20px;
    font-size: 14px;
  }
}
.page-template-lp-conference-0801 .webinar .top_text span {
  font-size: 24px;
  font-weight: bold;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0801 .webinar .top_text span {
    font-size: 18px;
  }
}
.page-template-lp-conference-0801 .webinar .cont_inner {
  display: flex;
  justify-content: space-around;
  width: 1080px;
  margin: 0 auto;
  padding: 80px 0;
}

@media only screen and (max-width: 1200px) {
  .page-template-lp-conference-0801 .webinar .cont .cont_inner {
    width: 90%;
  }
}
@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0801 .webinar .cont .cont_inner {
    width: 100%;
    padding: 48px 30px 43px;
    flex-wrap: wrap;
    box-sizing: border-box;
  }
}
.page-template-lp-conference-0801 .webinar .cont .moderator {
  justify-content: center;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0801 .webinar .cont .cont_inner > section {
    width: 100%;
  }
}
.page-template-lp-conference-0801 .webinar .cont .cont_inner > section h2 {
  margin: 0 0 30px;
  font-weight: bold;
  font-size: 26px;
  line-height: 39px;
  text-align: center;
}

@media only screen and (max-width: 1030px) {
  .page-template-lp-conference-0801 .webinar .cont .cont_inner > section h2 {
    font-size: 26px;
    line-height: 33px;
  }
}
@media only screen and (max-width: 1000px) {
  .page-template-lp-conference-0801 .webinar .cont .cont_inner > section h2 {
    font-size: 20x;
    line-height: 30px;
  }
}
@media only screen and (max-width: 834px) {
  .page-template-lp-conference-0801 .webinar .cont .cont_inner > section h2 {
    font-size: 20px;
    line-height: 30px;
  }
}
@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0801 .webinar .cont .cont_inner > section h2 {
    margin: 0 auto 20px;
    line-height: 39px;
  }
}
.page-template-lp-conference-0801 .webinar .cont .cont_inner > section p {
  margin: 0 0 30px;
  font-weight: bold;
  font-size: 18px;
  text-align: center;
}

@media only screen and (max-width: 1030px) {
  .page-template-lp-conference-0801 .webinar .cont .cont_inner > section p {
    font-size: 18px;
  }
}
@media only screen and (max-width: 1030px) {
  .page-template-lp-conference-0801 .webinar .cont .cont_inner > section p {
    font-size: 14px;
  }
}
@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0801 .webinar .cont .cont_inner > section p {
    margin: 0 auto 20px;
  }
}
.page-template-lp-conference-0801 .webinar .cont .cont_inner > section .figure_wrapper {
  width: 180px;
  margin: 0 auto 0;
  text-align: center;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0801 .webinar .cont .cont_inner > section .figure_wrapper {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 330px;
    margin: 0 auto 24px;
    gap: 5px;
  }
}
.page-template-lp-conference-0801 .webinar .cont .cont_inner > section .figure_wrapper .sec_logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background-color: #fff;
  filter: drop-shadow(0px 5px 15px rgba(0, 0, 0, 0.1));
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0801 .webinar .cont .cont_inner > section .figure_wrapper .sec_logo {
    width: 140px;
    height: 90px;
  }
}
.page-template-lp-conference-0801 .webinar .cont .cont_inner > section .figure_wrapper .sec_logo .l_03,
.page-template-lp-conference-0801 .webinar .cont .cont_inner > section .figure_wrapper .sec_logo .l_05,
.page-template-lp-conference-0801 .webinar .cont .cont_inner > section .figure_wrapper .sec_logo .l_06 {
  width: 140px;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0801 .webinar .cont .cont_inner > section .figure_wrapper .sec_logo .l_03,
.page-template-lp-conference-0801 .webinar .cont .cont_inner > section .figure_wrapper .sec_logo .l_05,
.page-template-lp-conference-0801 .webinar .cont .cont_inner > section .figure_wrapper .sec_logo .l_06 {
    width: 70px;
  }
}
.page-template-lp-conference-0801 .webinar .cont .cont_inner > section .figure_wrapper .x_icon {
  width: 30px;
  margin: 16px auto;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0801 .webinar .cont .cont_inner > section .figure_wrapper .x_icon {
    width: 21px;
  }
}
.page-template-lp-conference-0801 .webinar .cont .cont_inner .text_box {
  width: 652px;
}

@media only screen and (max-width: 990px) {
  .page-template-lp-conference-0801 .webinar .cont .cont_inner .text_box {
    width: 600px;
  }
}
@media only screen and (max-width: 910px) {
  .page-template-lp-conference-0801 .webinar .cont .cont_inner .text_box {
    width: 550px;
  }
}
@media only screen and (max-width: 834px) {
  .page-template-lp-conference-0801 .webinar .cont .cont_inner .text_box {
    width: 500px;
  }
}
@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0801 .webinar .cont .cont_inner .text_box {
    width: 100%;
  }
}
.page-template-lp-conference-0801 .webinar .cont .cont_inner .text_box > p {
  padding: 0 0 64px;
  font-size: 16px;
  line-height: 30px;
}

@media only screen and (max-width: 1030px) {
  .page-template-lp-conference-0801 .webinar .cont .cont_inner .text_box > p {
    font-size: 14px;
  }
}
@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0801 .webinar .cont .cont_inner .text_box > p {
    padding: 0 0 48px;
  }
}
.page-template-lp-conference-0801 .webinar .cont .cont_inner .text_box h3 {
  position: relative;
  font-weight: 700;
  font-size: 24px;
  line-height: 36px;
  letter-spacing: 0.05em;
  text-align: center;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0801 .webinar .cont .cont_inner .text_box h3 {
    max-width: 372px;
    margin: 0 auto;
    font-size: 22px;
    line-height: 33px;
  }
}
.page-template-lp-conference-0801 .webinar .cont .cont_inner .text_box h3::before, .page-template-lp-conference-0801 .webinar .cont .cont_inner .text_box h3::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 240px;
  height: 1px;
  background-color: rgba(82, 88, 99, 0.25);
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0801 .webinar .cont .cont_inner .text_box h3::before, .page-template-lp-conference-0801 .webinar .cont .cont_inner .text_box h3::after {
    width: 100px;
  }
}
.page-template-lp-conference-0801 .webinar .cont .cont_inner .text_box h3::before {
  left: 0;
}

.page-template-lp-conference-0801 .webinar .cont .cont_inner .text_box h3::after {
  right: 0;
}

.page-template-lp-conference-0801 .webinar .cont .cont_inner .text_box .speaker_wrapper {
  display: flex;
  margin: 64px 0 0;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0801 .webinar .cont .cont_inner .text_box .speaker_wrapper {
    display: block;
    margin: 32px 0 0;
  }
}
.page-template-lp-conference-0801 .webinar .cont .cont_inner .text_box .speaker_wrapper figure {
  min-width: 220px;
  width: 220px;
  margin: 0 32px 0 0;
}

@media only screen and (max-width: 980px) {
  .page-template-lp-conference-0801 .webinar .cont .cont_inner .text_box .speaker_wrapper figure {
    min-width: 180px;
  }
}
@media only screen and (max-width: 834px) {
  .page-template-lp-conference-0801 .webinar .cont .cont_inner .text_box .speaker_wrapper figure {
    min-width: 160px;
  }
}
@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0801 .webinar .cont .cont_inner .text_box .speaker_wrapper figure {
    min-width: 140px;
    width: 140px;
    margin: 0 auto 16px;
  }
}
.page-template-lp-conference-0801 .webinar .cont .cont_inner .text_box .speaker_wrapper .speaker_box h4 {
  padding: 0 0 16px;
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0801 .webinar .cont .cont_inner .text_box .speaker_wrapper .speaker_box h4 {
    font-size: 20px;
    line-height: 26px;
    text-align: center;
  }
}
.page-template-lp-conference-0801 .webinar .cont .cont_inner .text_box .speaker_wrapper .speaker_box h4 .company_name {
  display: block;
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
}

.page-template-lp-conference-0801 .webinar .cont .cont_inner .text_box .speaker_wrapper .speaker_box h4 .name {
  display: block;
  font-weight: 500;
  font-size: 12px;
  line-height: 21px;
}

.page-template-lp-conference-0801 .webinar .cont .cont_inner .text_box .speaker_wrapper .speaker_box p {
  font-size: 14px;
  line-height: 26px;
}

.page-template-lp-conference-0801 .webinar .time_table {
  padding: 80px 0;
  text-align: center;
  background-image: url(../img/webinar/bg_03.png);
  background-position: top left;
  background-repeat: repeat;
  background-size: 37px;
  color: #fff;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0801 .webinar .time_table {
    padding: 56px 0;
  }
}
.page-template-lp-conference-0801 .webinar .time_table h2 {
  padding: 0 0 16px;
  font-weight: 700;
  font-size: 38px;
  line-height: 57px;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0801 .webinar .time_table h2 {
    font-size: 26px;
    line-height: 39px;
  }
}
.page-template-lp-conference-0801 .webinar .time_table > span {
  display: inline-block;
  padding: 8px 20px;
  font-family: "Roboto";
  font-size: 18px;
  line-height: 27px;
  letter-spacing: 0.03em;
  border: 1px solid #fff;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0801 .webinar .time_table > span {
    padding: 6px 14px;
    font-size: 16px;
    line-height: 24px;
  }
}
.page-template-lp-conference-0801 .webinar .time_table .schedule {
  margin: 64px 0 0;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0801 .webinar .time_table .schedule {
    margin: 48px 0 0;
  }
}
.page-template-lp-conference-0801 .webinar .time_table .schedule h3 {
  padding: 0 0 12px;
  font-weight: 700;
  font-size: 20px;
  line-height: 26px;
  letter-spacing: 0.03em;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0801 .webinar .time_table .schedule h3 {
    font-size: 18px;
    line-height: 26px;
  }
}
.page-template-lp-conference-0801 .webinar .time_table .schedule h3 span {
  font-weight: 500;
  font-size: 14px;
  line-height: 27px;
  color: rgba(255, 255, 255, 0.6);
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0801 .webinar .time_table .schedule h3 span {
    font-size: 12px;
    line-height: 23px;
  }
}
.page-template-lp-conference-0801 .webinar .time_table .schedule p {
  position: relative;
  padding: 0 0 74px;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.03em;
  font-family: "Roboto";
}

.page-template-lp-conference-0801 .webinar .time_table .schedule p::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 34px;
  background-color: #fff;
  right: 50%;
  bottom: 20px;
  transform: translateX(-50%);
}

.page-template-lp-conference-0801 .webinar .time_table .schedule p:last-child {
  padding: 0;
}

.page-template-lp-conference-0801 .webinar .time_table .schedule p:last-child::after {
  display: none;
}

.page-template-lp-conference-0801 .webinar #bottom-form::before {
  display: none;
}

.page-template-lp-conference-0801 .webinar #bottom-form,
.page-template-lp-conference-0801 .webinar .l-section {
  padding: 80px 0;
  background: #F8F8F8;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0801 .webinar #bottom-form,
.page-template-lp-conference-0801 .webinar .l-section {
    padding: 0;
  }
}
.page-template-lp-conference-0801 .webinar #bottom-form .p-cta2,
.page-template-lp-conference-0801 .webinar .l-section .p-cta2 {
  width: 800px;
  padding: 56px 0;
  background-color: #fff;
  filter: drop-shadow(0px 5px 20px rgba(0, 0, 0, 0.15));
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0801 .webinar #bottom-form .p-cta2,
.page-template-lp-conference-0801 .webinar .l-section .p-cta2 {
    width: 100%;
    padding: 32px 15px;
    box-sizing: border-box;
    background: #F8F8F8;
    filter: drop-shadow(0px 5px 20px rgba(0, 0, 0, 0));
  }
}
.page-template-lp-conference-0801 .webinar #bottom-form .p-cta2 .c-h2,
.page-template-lp-conference-0801 .webinar .l-section .p-cta2 .c-h2 {
  width: 540px;
  margin: 0 auto 32px !important;
  padding: 0 0 28px !important;
  font-size: 28px !important;
  line-height: 42px;
  border-bottom: 1px solid #0E0E0E;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0801 .webinar #bottom-form .p-cta2 .c-h2,
.page-template-lp-conference-0801 .webinar .l-section .p-cta2 .c-h2 {
    width: 100%;
    max-width: 400px;
    margin: 0 auto 26px !important;
    padding: 0 0 24px !important;
    font-size: 22px !important;
    line-height: 24px !important;
  }
}
.page-template-lp-conference-0801 .webinar #bottom-form .p-cta2 .p-form_wrap,
.page-template-lp-conference-0801 .webinar .l-section .p-cta2 .p-form_wrap {
  margin: 0 auto !important;
  padding: 0 !important;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0801 .webinar #bottom-form .p-cta2 .p-form_wrap,
.page-template-lp-conference-0801 .webinar .l-section .p-cta2 .p-form_wrap {
    width: 100%;
  }
}
.page-template-lp-conference-0801 .webinar #bottom-form .p-cta2 .p-form_wrap .box,
.page-template-lp-conference-0801 .webinar .l-section .p-cta2 .p-form_wrap .box {
  margin: 0 0 16px !important;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0801 .webinar #bottom-form .p-cta2 .p-form_wrap .box,
.page-template-lp-conference-0801 .webinar .l-section .p-cta2 .p-form_wrap .box {
    margin: 0 0 10px !important;
  }
}
.page-template-lp-conference-0801 .webinar #bottom-form .p-cta2 .p-form_wrap .box .f-title,
.page-template-lp-conference-0801 .webinar .l-section .p-cta2 .p-form_wrap .box .f-title {
  margin: 0 0 4px !important;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0801 .webinar #bottom-form .p-cta2 .p-form_wrap .box .f-title,
.page-template-lp-conference-0801 .webinar .l-section .p-cta2 .p-form_wrap .box .f-title {
    font-weight: 700;
    font-size: 14px;
    line-height: 21px;
  }
}
.page-template-lp-conference-0801 .webinar #bottom-form .p-cta2 .p-form_wrap .box .f-title .his,
.page-template-lp-conference-0801 .webinar .l-section .p-cta2 .p-form_wrap .box .f-title .his {
  margin-left: 0 !important;
  padding: 1px 5px !important;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0801 .webinar #bottom-form .p-cta2 .p-form_wrap .box .f-title .his,
.page-template-lp-conference-0801 .webinar .l-section .p-cta2 .p-form_wrap .box .f-title .his {
    padding: 1px 8px !important;
  }
}
@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0801 .webinar #bottom-form .p-cta2 .p-form_wrap .box > p input[type=text], .page-template-lp-conference-0801 .webinar #bottom-form .p-cta2 .p-form_wrap .box > p input[type=tel], .page-template-lp-conference-0801 .webinar #bottom-form .p-cta2 .p-form_wrap .box > p input[type=email], .page-template-lp-conference-0801 .webinar #bottom-form .p-cta2 .p-form_wrap .box > p textarea, .page-template-lp-conference-0801 .webinar #bottom-form .p-cta2 .p-form_wrap .box > p select, .page-template-lp-conference-0801 .webinar #bottom-form .p-cta2 .p-form_wrap .box > p .js-formCheckSelect,
.page-template-lp-conference-0801 .webinar .l-section .p-cta2 .p-form_wrap .box > p input[type=text],
.page-template-lp-conference-0801 .webinar .l-section .p-cta2 .p-form_wrap .box > p input[type=tel],
.page-template-lp-conference-0801 .webinar .l-section .p-cta2 .p-form_wrap .box > p input[type=email],
.page-template-lp-conference-0801 .webinar .l-section .p-cta2 .p-form_wrap .box > p textarea,
.page-template-lp-conference-0801 .webinar .l-section .p-cta2 .p-form_wrap .box > p select,
.page-template-lp-conference-0801 .webinar .l-section .p-cta2 .p-form_wrap .box > p .js-formCheckSelect {
    background: #FFFFFF;
    border: 1px solid rgba(14, 14, 14, 0.1);
  }
}
.page-template-lp-conference-0801 .webinar #bottom-form .p-cta2 .p-form_wrap .policy,
.page-template-lp-conference-0801 .webinar #bottom-form .p-cta2 .p-form_wrap .policy_link,
.page-template-lp-conference-0801 .webinar .l-section .p-cta2 .p-form_wrap .policy,
.page-template-lp-conference-0801 .webinar .l-section .p-cta2 .p-form_wrap .policy_link {
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
  color: #303544;
  margin: 0 0 8px;
}

.page-template-lp-conference-0801 .webinar #bottom-form .p-cta2 .p-form_wrap .policy_link,
.page-template-lp-conference-0801 .webinar .l-section .p-cta2 .p-form_wrap .policy_link {
  margin: 0 0 32px;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0801 .webinar #bottom-form .p-cta2 .p-form_wrap .policy_link,
.page-template-lp-conference-0801 .webinar .l-section .p-cta2 .p-form_wrap .policy_link {
    margin: 0 0 24px;
    line-height: 2;
  }
}
.page-template-lp-conference-0801 .webinar #bottom-form .p-cta2 .p-form_wrap .policy_link a,
.page-template-lp-conference-0801 .webinar .l-section .p-cta2 .p-form_wrap .policy_link a {
  text-decoration-line: underline;
  color: #303544;
}

.page-template-lp-conference-0801 .webinar #bottom-form .p-cta2 .p-form_wrap .policy_link a::after,
.page-template-lp-conference-0801 .webinar .l-section .p-cta2 .p-form_wrap .policy_link a::after {
  display: none;
}

.page-template-lp-conference-0801 .webinar #bottom-form .p-cta2 .p-form_wrap .wpcf7-list-item,
.page-template-lp-conference-0801 .webinar .l-section .p-cta2 .p-form_wrap .wpcf7-list-item {
  text-align: center;
  color: #303544;
}

.page-template-lp-conference-0801 .webinar #bottom-form .p-cta2 .p-form_wrap .wpcf7-list-item input,
.page-template-lp-conference-0801 .webinar .l-section .p-cta2 .p-form_wrap .wpcf7-list-item input {
  width: 22px;
  height: 22px;
}

.page-template-lp-conference-0801 .webinar #bottom-form .p-cta2 .p-form_wrap .wpcf7-list-item a,
.page-template-lp-conference-0801 .webinar .l-section .p-cta2 .p-form_wrap .wpcf7-list-item a {
  color: #303544;
  text-decoration-line: underline;
}

.page-template-lp-conference-0801 .webinar #bottom-form .p-cta2 .p-form_wrap .wpcf7-list-item a::after,
.page-template-lp-conference-0801 .webinar .l-section .p-cta2 .p-form_wrap .wpcf7-list-item a::after {
  display: none;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0801 .webinar #bottom-form .p-cta2 .p-form_wrap .acceptance,
.page-template-lp-conference-0801 .webinar .l-section .p-cta2 .p-form_wrap .acceptance {
    margin: 0 0 24px !important;
  }
}
.page-template-lp-conference-0801 .webinar #bottom-form .p-cta2 .p-form_wrap .p-form_submit p,
.page-template-lp-conference-0801 .webinar .l-section .p-cta2 .p-form_wrap .p-form_submit p {
  margin: 0 !important;
}

.page-template-lp-conference-0801 .webinar #bottom-form .p-cta2 .p-form_wrap .p-form_submit p input[type=submit]:disabled,
.page-template-lp-conference-0801 .webinar .l-section .p-cta2 .p-form_wrap .p-form_submit p input[type=submit]:disabled {
  color: #fff;
  background: #DDDDDD;
  border: 4px solid #fff;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0801 .webinar #bottom-form .p-cta2 .p-form_wrap .p-form_submit p input[type=submit]:disabled,
.page-template-lp-conference-0801 .webinar .l-section .p-cta2 .p-form_wrap .p-form_submit p input[type=submit]:disabled {
    width: 299px;
    font-size: 20px;
    padding: 16px 15px;
    border: none;
    background: #DDDDDD;
  }
}
.page-template-lp-conference-0801 .webinar #bottom-form .p-cta2 .p-form_wrap .p-form_submit p input[type=submit],
.page-template-lp-conference-0801 .webinar .l-section .p-cta2 .p-form_wrap .p-form_submit p input[type=submit] {
  color: #0E0E0E;
  background: #FFDC36;
  border: 4px solid #fff;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0801 .webinar #bottom-form .p-cta2 .p-form_wrap .p-form_submit p input[type=submit],
.page-template-lp-conference-0801 .webinar .l-section .p-cta2 .p-form_wrap .p-form_submit p input[type=submit] {
    width: 299px;
    font-size: 20px;
    padding: 16px 15px;
    border: none;
    background: #FFDC36;
  }
}
.page-template-lp-conference-0801 .webinar #bottom-form .p-cta2 .p-form_wrap .p-form_submit p:hover input[type=submit],
.page-template-lp-conference-0801 .webinar .l-section .p-cta2 .p-form_wrap .p-form_submit p:hover input[type=submit] {
  transition: all 0.3s;
  opacity: 0.7;
  box-shadow: none;
}

.page-template-lp-conference-0801 .webinar #bottom-form .overflow,
.page-template-lp-conference-0801 .webinar .l-section .overflow {
  width: 610px;
  margin: 24px auto 0;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0801 .webinar #bottom-form .overflow,
.page-template-lp-conference-0801 .webinar .l-section .overflow {
    display: block;
    width: calc(100% - 30px);
    margin: 0 auto;
    padding: 32px 0 40px;
    border-top: 1px solid #0E0E0E;
  }
}
.page-template-lp-conference-0801 .webinar #bottom-form .overflow > figure,
.page-template-lp-conference-0801 .webinar .l-section .overflow > figure {
  display: block;
  width: 122px;
  margin: 0 auto 18px;
  text-align: center;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0801 .webinar #bottom-form .overflow > figure,
.page-template-lp-conference-0801 .webinar .l-section .overflow > figure {
    margin: 0 auto 26px;
  }
}
.page-template-lp-conference-0801 .webinar #bottom-form .overflow > figure figcaption,
.page-template-lp-conference-0801 .webinar .l-section .overflow > figure figcaption {
  margin: 0 0 5px;
  font-size: 12px;
  line-height: 18px;
  text-align: center;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0801 .webinar #bottom-form .overflow .cta_tel dt,
.page-template-lp-conference-0801 .webinar .l-section .overflow .cta_tel dt {
    display: block;
    width: 250px;
    margin: 0 auto;
  }
}
.page-template-lp-conference-0801 .webinar #bottom-form .overflow .cta_tel dt .c-tell,
.page-template-lp-conference-0801 .webinar .l-section .overflow .cta_tel dt .c-tell {
  padding: 4px 14px;
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  color: #fff;
  background: #4D4D4D;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0801 .webinar #bottom-form .overflow .cta_tel dt .c-tell,
.page-template-lp-conference-0801 .webinar .l-section .overflow .cta_tel dt .c-tell {
    display: block;
    margin: 0 0 12px;
    text-align: center;
    font-weight: 700;
    font-size: 14px;
    line-height: 21px;
    color: #0E0E0E;
    background: transparent;
    border: 1px solid #0E0E0E;
  }
}
.page-template-lp-conference-0801 .webinar #bottom-form .overflow .cta_tel dt .c-tell:after,
.page-template-lp-conference-0801 .webinar .l-section .overflow .cta_tel dt .c-tell:after {
  height: 32px;
  right: -16px;
  border-left: 16px solid #4D4D4D;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  box-sizing: border-box;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0801 .webinar #bottom-form .overflow .cta_tel dt .c-tell:after,
.page-template-lp-conference-0801 .webinar .l-section .overflow .cta_tel dt .c-tell:after {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0801 .webinar #bottom-form .overflow .cta_tel dt figure,
.page-template-lp-conference-0801 .webinar .l-section .overflow .cta_tel dt figure {
    width: 17px;
    margin: 0 4px 0 0;
  }
}
@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0801 .webinar #bottom-form .overflow .cta_tel dt figure img,
.page-template-lp-conference-0801 .webinar .l-section .overflow .cta_tel dt figure img {
    vertical-align: baseline;
  }
}
.page-template-lp-conference-0801 .webinar #bottom-form .overflow .cta_tel dt .c-num,
.page-template-lp-conference-0801 .webinar .l-section .overflow .cta_tel dt .c-num {
  font-weight: 700;
  font-size: 30px;
  line-height: 38px;
  letter-spacing: 0.01em;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0801 .webinar #bottom-form .overflow .cta_tel dt .c-num,
.page-template-lp-conference-0801 .webinar .l-section .overflow .cta_tel dt .c-num {
    width: 100%;
    font-size: 30px;
    line-height: 38px;
  }
}
.page-template-lp-conference-0801 .webinar #bottom-form .overflow .cta_tel dt [data-js-tel] a,
.page-template-lp-conference-0801 .webinar .l-section .overflow .cta_tel dt [data-js-tel] a {
  text-decoration: none;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0801 .webinar #bottom-form .overflow .cta_tel dt .day,
.page-template-lp-conference-0801 .webinar .l-section .overflow .cta_tel dt .day {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 14px;
    line-height: 21px;
  }
}
.page-template-lp-conference-0801 #g-footer,
#g-footer_0801 {
  padding: 40px 0;
  text-align: center;
  background: #0E0E0E;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0801 #g-footer,
#g-footer_0801 {
    padding: 29px;
  }
}
.page-template-lp-conference-0801 #g-footer ul,
#g-footer_0801 ul {
  display: flex;
  justify-content: center;
  margin: 0 0 56px;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0801 #g-footer ul,
#g-footer_0801 ul {
    flex-wrap: wrap;
    margin: 0 0 41px;
  }
}
.page-template-lp-conference-0801 #g-footer ul li,
#g-footer_0801 ul li {
  padding: 0 20px;
}

@media only screen and (max-width: 592px) {
  .page-template-lp-conference-0801 #g-footer ul li:last-child,
#g-footer_0801 ul li:last-child {
    padding: 14px 20px 0;
  }
}
.page-template-lp-conference-0801 #g-footer ul li a,
#g-footer_0801 ul li a {
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
  color: #fff;
}

.page-template-lp-conference-0801 #g-footer span,
#g-footer_0801 span {
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
}

.thanks_0801_title {
  color: #fff;
  font-weight: bold;
  font-size: 30px;
  text-align: center;
  padding: 32px 0;
  background-color: #0E0E0E;
}

@media only screen and (max-width: 1000px) {
  .thanks_0801_title {
    font-size: 24px;
  }
}
@media only screen and (max-width: 768px) {
  .thanks_0801_title {
    font-size: 20px;
    padding: 20px 0;
  }
}
.thanks_0801_point {
  font-size: 23px;
  border: solid 1px #fff;
  padding: 5px;
  margin-right: 16px;
}

@media only screen and (max-width: 768px) {
  .thanks_0801_point {
    font-size: 20px;
    margin-right: 0;
  }
}
.p-contact_wrap_0801 {
  box-shadow: 0 15px 20px rgba(0, 0, 0, 0.15);
  width: 540px;
  padding: 56px 130px;
  margin: 80px auto;
  border: none;
}

@media only screen and (max-width: 860px) {
  .p-contact_wrap_0801 {
    width: 65%;
    padding: 50px 60px;
    margin: 50px auto;
  }
}
@media only screen and (max-width: 768px) {
  .p-contact_wrap_0801 {
    padding: 40px;
    margin: 30px auto;
  }
}
.p-contact_fv_0801 {
  font-size: 28px;
  font-weight: bold;
  padding-bottom: 30px;
  border-bottom: solid 1px #000;
  text-align: center;
}

@media only screen and (max-width: 860px) {
  .p-contact_fv_0801 {
    font-size: 24px;
  }
}
@media only screen and (max-width: 768px) {
  .p-contact_fv_0801 {
    font-size: 18px;
  }
}
.p-thanks_text1_0801 {
  font-size: 16px;
  padding: 32px 0 40px;
}

@media only screen and (max-width: 860px) {
  .p-thanks_text1_0801 {
    font-size: 14px;
  }
}
.thanks_btn_0801 {
  text-align: center;
  font-size: 18px;
}

.thanks_btn_0801 a {
  color: #fff;
  padding: 15px 70px;
  background-color: #0E0E0E;
  border-radius: 100px;
}

.thanks_btn_0801 :hover {
  opacity: 0.8;
}

@media only screen and (min-width: 769px) {
  .sp_0801 {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .sp_0801 {
    display: block;
  }
}
/* form */
.page-template-lp-conference-0801 .pb100 {
  padding-bottom: 0px !important;
}

.page-template-lp-conference-0801 .form-group {
  margin-bottom: 16px;
  text-align: center;
}

.page-template-lp-conference-0801 .form-group .f-title {
  margin-bottom: 5px;
}

.page-template-lp-conference-0801 #bottom-form .p-cta2 .p-form_wrap p {
  font-size: 16px;
}

.page-template-lp-conference-0801 #bottom-form .p-cta2 .p-form_wrap .small {
  font-size: 12px;
  font-weight: normal;
  line-height: 1.5;
}

.page-template-lp-conference-0801 .form-group .f-title span {
  font-size: 12px;
  color: #e8760e;
  display: inline-block;
  margin-left: 5px;
}

.page-template-lp-conference-0801 .form-group .wpcf7-form-control-wrap {
  width: 100%;
}

.page-template-lp-conference-0801 .privacy_link,
.page-template-lp-conference-0801 .note {
  display: none;
}

.page-template-lp-conference-0801 .p-cta2 p {
  margin: 20px 0;
}

/*----------------------------------------

webinar 0831

-----------------------------------------*/
.page-template-lp-conference-0831 .g-wrapper {
  min-width: 0;
}

.page-template-lp-conference-0831 #g-header {
  display: none;
}

.page-template-lp-conference-0831 .webinar {
  color: #0E0E0E;
}

.page-template-lp-conference-0831 .webinar .pc {
  display: block;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0831 .webinar .pc {
    display: none;
  }
}
.page-template-lp-conference-0831 .webinar .sp {
  display: noone;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0831 .webinar .sp {
    display: block;
  }
}
.page-template-lp-conference-0831 .webinar .bg_g {
  background-color: #F8F8F8;
}

.page-template-lp-conference-0831 .webinar .mv {
  height: 100%;
  overflow: hidden;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0831 .webinar .mv {
    width: 100vw;
  }
}
.page-template-lp-conference-0831 .webinar .mv .title_wrapper {
  position: relative;
  width: 1184px;
  margin: 0 auto;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0831 .webinar .mv .title_wrapper {
    width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0831 .webinar .mv .fv_img {
    text-align: center;
    width: 100vw;
  }
}
@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0831 .webinar .mv .fv_img img {
    width: 100vw;
  }
}
.page-template-lp-conference-0831 .webinar .mv .title_wrapper .copy {
  display: flex;
  align-items: center;
  position: absolute;
  top: 20px;
  left: 70px;
  transform: rotate(-14deg);
}

@media only screen and (max-width: 1200px) {
  .page-template-lp-conference-0831 .webinar .mv .title_wrapper .copy {
    top: 30px;
    left: 40px;
  }
}
@media only screen and (max-width: 960px) {
  .page-template-lp-conference-0831 .webinar .mv .title_wrapper .copy {
    top: 20px;
  }
}
@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0831 .webinar .mv .title_wrapper .copy {
    top: 10px;
    width: 400px;
    margin: 0 auto;
    left: 10px;
  }
}
.page-template-lp-conference-0831 .webinar .mv .title_wrapper .copy .circle {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 118px;
  height: 118px;
  text-align: center;
  font-weight: bold;
  font-size: 19.6px;
  line-height: 24.63px;
  letter-spacing: 0.02em;
  border-radius: 50%;
  border: 3px solid #0E0E0E;
  box-sizing: border-box;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0831 .webinar .mv .title_wrapper .copy .circle {
    width: 96px;
    height: 96px;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: -0.05em;
  }
}
.page-template-lp-conference-0831 .webinar .mv .title_wrapper .copy .circle span {
  font-size: 34.1px;
  line-height: 25.09px;
  font-family: "Roboto", sans-serif;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0831 .webinar .mv .title_wrapper .copy .circle span {
    padding: 0 4px 0 0;
    font-size: 28px;
    line-height: 20px;
  }
}
.page-template-lp-conference-0831 .webinar .mv .title_wrapper .copy .copy_test {
  position: relative;
  margin: 0 0 0 10px;
  font-family: "Roboto";
  font-weight: 700;
  font-size: 28px;
  line-height: 33px;
  letter-spacing: 0.02em;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0831 .webinar .mv .title_wrapper .copy .copy_test {
    font-size: 22px;
    line-height: 26px;
  }
}
.page-template-lp-conference-0831 .webinar .mv .title_wrapper .copy .copy_test::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 119px;
  width: 29px;
  height: 30px;
  background-image: url(../img/webinar/0831/copy_test.png);
  background-size: cover;
  transform: rotate(16deg);
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0831 .webinar .mv .title_wrapper .copy .copy_test::before {
    top: 26px;
    left: 22px;
  }
}
.page-template-lp-conference-0831 .webinar .mv .title_wrapper .title {
  position: absolute;
  top: 90px;
  left: 120px;
  width: 1030px;
  font-weight: 700;
  font-size: 52px;
  letter-spacing: 0.03em;
  color: #FFFFFF;
}

@media only screen and (max-width: 880px) {
  .page-template-lp-conference-0831 .webinar .mv .title_wrapper .title {
    left: 90px;
  }
}
@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0831 .webinar .mv .title_wrapper .title {
    width: 120%;
    font-size: 32px;
    top: 130px;
    left: 56%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }
}
.page-template-lp-conference-0831 .webinar .mv .title_wrapper .title h1 {
  position: relative;
}

.page-template-lp-conference-0831 .webinar .mv .title_wrapper .title h1 span {
  display: inline-block;
  padding: 12px 34px;
  background: #0E0E0E;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.25);
  transform: rotate(-8deg);
  font-size: 48px;
}

@media only screen and (max-width: 1090px) {
  .page-template-lp-conference-0831 .webinar .mv .title_wrapper .title h1 span {
    font-size: 42px;
  }
}
@media only screen and (max-width: 1000px) {
  .page-template-lp-conference-0831 .webinar .mv .title_wrapper .title h1 span {
    font-size: 36px;
  }
}
@media only screen and (max-width: 880px) {
  .page-template-lp-conference-0831 .webinar .mv .title_wrapper .title h1 span {
    font-size: 34px;
  }
}
@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0831 .webinar .mv .title_wrapper .title h1 span {
    padding: 8px 30px 8px 20px;
    font-size: 32px;
  }
}
.page-template-lp-conference-0831 .webinar .mv .title_wrapper .title h1 .subtitle {
  font-size: 14px;
  padding: 10px 30px;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0831 .webinar .mv .title_wrapper .title h1 .subtitle {
    font-size: 12px;
  }
}
@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0831 .webinar .mv .title_wrapper .title h1 span:nth-child(1) {
    padding: 5px 20px 5px 30px;
    font-size: 20px;
  }
}
.page-template-lp-conference-0831 .webinar .mv .title_wrapper .title h1 span:nth-child(2) {
  position: absolute;
  top: 120px;
  left: -30px;
}

@media only screen and (max-width: 1000px) {
  .page-template-lp-conference-0831 .webinar .mv .title_wrapper .title h1 span:nth-child(2) {
    top: 115px;
  }
}
@media only screen and (max-width: 880px) {
  .page-template-lp-conference-0831 .webinar .mv .title_wrapper .title h1 span:nth-child(2) {
    top: 110px;
  }
}
@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0831 .webinar .mv .title_wrapper .title h1 span:nth-child(2) {
    position: absolute;
    top: 60px;
    left: 50px;
  }
}
.page-template-lp-conference-0831 .webinar .mv .title_wrapper .title h1 span:nth-child(3) {
  position: absolute;
  top: 230px;
  left: 180px;
  font-weight: normal;
}

@media only screen and (max-width: 1090px) {
  .page-template-lp-conference-0831 .webinar .mv .title_wrapper .title h1 span:nth-child(3) {
    left: 100px;
  }
}
@media only screen and (max-width: 1000px) {
  .page-template-lp-conference-0831 .webinar .mv .title_wrapper .title h1 span:nth-child(3) {
    top: 220px;
    left: -30px;
  }
}
@media only screen and (max-width: 880px) {
  .page-template-lp-conference-0831 .webinar .mv .title_wrapper .title h1 span:nth-child(3) {
    top: 210px;
    left: -80px;
  }
}
@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0831 .webinar .mv .title_wrapper .title h1 span:nth-child(3) {
    top: 135px;
    left: 60px;
  }
}
@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0831 .webinar .mv .title_wrapper .title h1 span:nth-child(4) {
    position: absolute;
    top: 220px;
    left: 5px;
  }
}
.page-template-lp-conference-0831 .webinar .mv .title_wrapper .time {
  position: absolute;
  top: 350px;
  left: 760px;
  display: inline-block;
  padding: 8px 18px;
  font-family: "Roboto";
  font-size: 24px;
  line-height: 28px;
  text-align: center;
  letter-spacing: 0.03em;
  background-color: #FFFFFF;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.15);
  transform: rotate(-8deg);
}

@media only screen and (max-width: 1090px) {
  .page-template-lp-conference-0831 .webinar .mv .title_wrapper .time {
    left: 640px;
    top: 360px;
  }
}
@media only screen and (max-width: 1000px) {
  .page-template-lp-conference-0831 .webinar .mv .title_wrapper .time {
    left: 540px;
    top: 340px;
  }
}
@media only screen and (max-width: 890px) {
  .page-template-lp-conference-0831 .webinar .mv .title_wrapper .time {
    left: 480px;
    font-size: 22px;
  }
}
@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0831 .webinar .mv .title_wrapper .time {
    width: 310px;
    top: 430px;
    left: 40%;
    transform: translateX(-50%) rotate(-8deg);
    -webkit-transform: translateX(-50%) rotate(-8deg);
    -ms-transform: translateX(-50%) rotate(-8deg);
    padding: 8px 18px;
    line-height: 26px;
  }
}
.page-template-lp-conference-0831 .webinar .mv .title_wrapper .time span {
  font-size: 19px;
  line-height: 22.27px;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0831 .webinar .mv .title_wrapper .time span {
    font-size: 17px;
    line-height: 20px;
  }
}
.page-template-lp-conference-0831 .webinar .mv .section_wrapper {
  position: relative;
  width: 1184px;
  height: 100%;
  margin: 0 auto;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0831 .webinar .mv .section_wrapper {
    width: 370px;
  }
}
.page-template-lp-conference-0831 .webinar .mv .section_wrapper .section {
  position: absolute;
  display: flex;
  justify-content: space-between;
  width: 906px;
  right: 0;
  bottom: 48px;
}

@media only screen and (max-width: 1200px) {
  .page-template-lp-conference-0831 .webinar .mv .section_wrapper .section {
    width: 780px;
    right: 80px;
  }
}
@media only screen and (max-width: 1130px) {
  .page-template-lp-conference-0831 .webinar .mv .section_wrapper .section {
    width: 710px;
    right: 140px;
  }
}
@media only screen and (max-width: 1060px) {
  .page-template-lp-conference-0831 .webinar .mv .section_wrapper .section {
    right: 200px;
  }
}
@media only screen and (max-width: 1000px) {
  .page-template-lp-conference-0831 .webinar .mv .section_wrapper .section {
    width: 710px;
    right: 250px;
  }
}
@media only screen and (max-width: 960px) {
  .page-template-lp-conference-0831 .webinar .mv .section_wrapper .section {
    width: 620px;
    right: 300px;
  }
}
@media only screen and (max-width: 900px) {
  .page-template-lp-conference-0831 .webinar .mv .section_wrapper .section {
    width: 560px;
    right: 360px;
  }
}
@media only screen and (max-width: 834px) {
  .page-template-lp-conference-0831 .webinar .mv .section_wrapper .section {
    width: 560px;
    right: 410px;
  }
}
@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0831 .webinar .mv .section_wrapper .section {
    display: block;
    width: 100%;
    left: 0;
  }
}
.page-template-lp-conference-0831 .webinar .mv .section_wrapper .section figure {
  width: 286px;
  filter: drop-shadow(10px 10px 20px rgba(0, 0, 0, 0.15));
}

@media only screen and (max-width: 1200px) {
  .page-template-lp-conference-0831 .webinar .mv .section_wrapper .section figure {
    width: 250px;
  }
}
@media only screen and (max-width: 1130px) {
  .page-template-lp-conference-0831 .webinar .mv .section_wrapper .section figure {
    width: 230px;
  }
}
@media only screen and (max-width: 960px) {
  .page-template-lp-conference-0831 .webinar .mv .section_wrapper .section figure {
    width: 200px;
  }
}
@media only screen and (max-width: 900px) {
  .page-template-lp-conference-0831 .webinar .mv .section_wrapper .section figure {
    width: 180px;
  }
}
@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0831 .webinar .mv .section_wrapper .section figure {
    width: 208px;
  }
}
.page-template-lp-conference-0831 .webinar .mv .section_wrapper .section figure + .sec_img_02 {
  margin: 0 auto;
}

.page-template-lp-conference-0831 .webinar .mv .section_wrapper .section figure + .sec_img_03 {
  float: right;
}

.page-template-lp-conference-0831 .webinar .cont {
  position: relative;
  background-image: url(../img/webinar/bg_02.png);
  background-position: left bottom;
  background-repeat: no-repeat;
  background-size: 749px;
}

.page-template-lp-conference-0831 .webinar .cont {
  position: relative;
  background-image: url(../img/webinar/bg_02.png);
  background-position: left bottom;
  background-repeat: no-repeat;
  background-size: 749px;
}

.page-template-lp-conference-0831 .webinar .moderator_bg {
  background-image: none;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0831 .webinar .cont {
    background-size: contain;
  }
}
.page-template-lp-conference-0831 .webinar .top_text {
  border: #D4D5D8 solid 1px;
  max-width: 900px;
  margin: auto;
  margin-top: 80px;
  text-align: center;
}

@media only screen and (max-width: 900px) {
  .page-template-lp-conference-0831 .webinar .top_text {
    max-width: 90%;
  }
}
.page-template-lp-conference-0831 .webinar .top_text p {
  padding: 40px;
  font-size: 16px;
  text-align: left;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0831 .webinar .top_text {
    margin: 48px 20px 0;
  }

  .page-template-lp-conference-0831 .webinar .top_text p {
    padding: 20px;
    font-size: 14px;
  }
}
.page-template-lp-conference-0831 .webinar .top_text span {
  font-size: 24px;
  font-weight: bold;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0831 .webinar .top_text span {
    font-size: 18px;
  }
}
.page-template-lp-conference-0831 .webinar .cont_inner {
  display: flex;
  justify-content: space-around;
  width: 1080px;
  margin: 0 auto;
  padding: 80px 0;
}

@media only screen and (max-width: 1200px) {
  .page-template-lp-conference-0831 .webinar .cont .cont_inner {
    width: 90%;
  }
}
@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0831 .webinar .cont .cont_inner {
    width: 100%;
    padding: 48px 30px 43px;
    flex-wrap: wrap;
    box-sizing: border-box;
  }
}
.page-template-lp-conference-0831 .webinar .cont .moderator {
  justify-content: center;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0831 .webinar .cont .cont_inner > section {
    width: 100%;
  }
}
.page-template-lp-conference-0831 .webinar .cont .cont_inner > section h2 {
  margin: 0 0 30px;
  font-weight: bold;
  font-size: 26px;
  line-height: 39px;
  text-align: center;
}

@media only screen and (max-width: 1030px) {
  .page-template-lp-conference-0831 .webinar .cont .cont_inner > section h2 {
    font-size: 26px;
    line-height: 33px;
  }
}
@media only screen and (max-width: 1000px) {
  .page-template-lp-conference-0831 .webinar .cont .cont_inner > section h2 {
    font-size: 20x;
    line-height: 30px;
  }
}
@media only screen and (max-width: 834px) {
  .page-template-lp-conference-0831 .webinar .cont .cont_inner > section h2 {
    font-size: 20px;
    line-height: 30px;
  }
}
@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0831 .webinar .cont .cont_inner > section h2 {
    margin: 0 auto 20px;
    line-height: 39px;
  }
}
.page-template-lp-conference-0831 .webinar .cont .cont_inner > section p {
  margin: 0 0 30px;
  font-weight: bold;
  font-size: 18px;
  text-align: center;
}

@media only screen and (max-width: 1030px) {
  .page-template-lp-conference-0831 .webinar .cont .cont_inner > section p {
    font-size: 18px;
  }
}
@media only screen and (max-width: 1030px) {
  .page-template-lp-conference-0831 .webinar .cont .cont_inner > section p {
    font-size: 14px;
  }
}
@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0831 .webinar .cont .cont_inner > section p {
    margin: 0 auto 20px;
  }
}
.page-template-lp-conference-0831 .webinar .cont .cont_inner > section .figure_wrapper {
  width: 180px;
  margin: 0 auto 0;
  text-align: center;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0831 .webinar .cont .cont_inner > section .figure_wrapper {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 330px;
    margin: 0 auto 24px;
    gap: 5px;
  }
}
.page-template-lp-conference-0831 .webinar .cont .cont_inner > section .figure_wrapper .sec_logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background-color: #fff;
  filter: drop-shadow(0px 5px 15px rgba(0, 0, 0, 0.1));
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0831 .webinar .cont .cont_inner > section .figure_wrapper .sec_logo {
    width: 140px;
    height: 140px;
  }
}
.page-template-lp-conference-0831 .webinar .cont .cont_inner > section .figure_wrapper .sec_logo .l_05,
.page-template-lp-conference-0831 .webinar .cont .cont_inner > section .figure_wrapper .sec_logo .l_06 {
  width: 140px;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0831 .webinar .cont .cont_inner > section .figure_wrapper .sec_logo .l_05,
.page-template-lp-conference-0831 .webinar .cont .cont_inner > section .figure_wrapper .sec_logo .l_06 {
    width: 100px;
  }
}
.page-template-lp-conference-0831 .webinar .cont .cont_inner > section .figure_wrapper .x_icon {
  width: 30px;
  margin: 16px auto;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0831 .webinar .cont .cont_inner > section .figure_wrapper .x_icon {
    width: 21px;
  }
}
.page-template-lp-conference-0831 .webinar .cont .cont_inner .text_box {
  width: 652px;
}

@media only screen and (max-width: 990px) {
  .page-template-lp-conference-0831 .webinar .cont .cont_inner .text_box {
    width: 600px;
  }
}
@media only screen and (max-width: 910px) {
  .page-template-lp-conference-0831 .webinar .cont .cont_inner .text_box {
    width: 550px;
  }
}
@media only screen and (max-width: 834px) {
  .page-template-lp-conference-0831 .webinar .cont .cont_inner .text_box {
    width: 500px;
  }
}
@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0831 .webinar .cont .cont_inner .text_box {
    width: 100%;
  }
}
.page-template-lp-conference-0831 .webinar .cont .cont_inner .text_box > p {
  padding: 0 0 64px;
  font-size: 16px;
  line-height: 30px;
}

@media only screen and (max-width: 1030px) {
  .page-template-lp-conference-0831 .webinar .cont .cont_inner .text_box > p {
    font-size: 14px;
  }
}
@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0831 .webinar .cont .cont_inner .text_box > p {
    padding: 0 0 48px;
  }
}
.page-template-lp-conference-0831 .webinar .cont .cont_inner .text_box h3 {
  position: relative;
  font-weight: 700;
  font-size: 24px;
  line-height: 36px;
  letter-spacing: 0.05em;
  text-align: center;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0831 .webinar .cont .cont_inner .text_box h3 {
    max-width: 372px;
    margin: 0 auto;
    font-size: 22px;
    line-height: 33px;
  }
}
.page-template-lp-conference-0831 .webinar .cont .cont_inner .text_box h3::before, .page-template-lp-conference-0831 .webinar .cont .cont_inner .text_box h3::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 240px;
  height: 1px;
  background-color: rgba(82, 88, 99, 0.25);
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0831 .webinar .cont .cont_inner .text_box h3::before, .page-template-lp-conference-0831 .webinar .cont .cont_inner .text_box h3::after {
    width: 100px;
  }
}
.page-template-lp-conference-0831 .webinar .cont .cont_inner .text_box h3::before {
  left: 0;
}

.page-template-lp-conference-0831 .webinar .cont .cont_inner .text_box h3::after {
  right: 0;
}

.page-template-lp-conference-0831 .webinar .cont .cont_inner .text_box .speaker_wrapper {
  display: flex;
  margin: 64px 0 0;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0831 .webinar .cont .cont_inner .text_box .speaker_wrapper {
    display: block;
    margin: 32px 0 0;
  }
}
.page-template-lp-conference-0831 .webinar .cont .cont_inner .text_box .speaker_wrapper figure {
  min-width: 220px;
  width: 220px;
  margin: 0 32px 0 0;
}

@media only screen and (max-width: 980px) {
  .page-template-lp-conference-0831 .webinar .cont .cont_inner .text_box .speaker_wrapper figure {
    min-width: 180px;
  }
}
@media only screen and (max-width: 834px) {
  .page-template-lp-conference-0831 .webinar .cont .cont_inner .text_box .speaker_wrapper figure {
    min-width: 160px;
  }
}
@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0831 .webinar .cont .cont_inner .text_box .speaker_wrapper figure {
    min-width: 140px;
    width: 140px;
    margin: 0 auto 16px;
  }
}
.page-template-lp-conference-0831 .webinar .cont .cont_inner .text_box .speaker_wrapper .speaker_box h4 {
  padding: 0 0 16px;
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0831 .webinar .cont .cont_inner .text_box .speaker_wrapper .speaker_box h4 {
    font-size: 20px;
    line-height: 26px;
    text-align: center;
  }
}
.page-template-lp-conference-0831 .webinar .cont .cont_inner .text_box .speaker_wrapper .speaker_box h4 .company_name {
  display: block;
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
}

.page-template-lp-conference-0831 .webinar .cont .cont_inner .text_box .speaker_wrapper .speaker_box h4 .name {
  display: block;
  font-weight: 500;
  font-size: 12px;
  line-height: 21px;
}

.page-template-lp-conference-0831 .webinar .cont .cont_inner .text_box .speaker_wrapper .speaker_box p {
  font-size: 14px;
  line-height: 26px;
}

.page-template-lp-conference-0831 .webinar .time_table {
  padding: 80px 0;
  text-align: center;
  background-image: url(../img/webinar/bg_03.png);
  background-position: top left;
  background-repeat: repeat;
  background-size: 37px;
  color: #fff;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0831 .webinar .time_table {
    padding: 56px 0;
  }
}
.page-template-lp-conference-0831 .webinar .time_table h2 {
  padding: 0 0 16px;
  font-weight: 700;
  font-size: 38px;
  line-height: 57px;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0831 .webinar .time_table h2 {
    font-size: 26px;
    line-height: 39px;
  }
}
.page-template-lp-conference-0831 .webinar .time_table > span {
  display: inline-block;
  padding: 8px 20px;
  font-family: "Roboto";
  font-size: 18px;
  line-height: 27px;
  letter-spacing: 0.03em;
  border: 1px solid #fff;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0831 .webinar .time_table > span {
    padding: 6px 14px;
    font-size: 16px;
    line-height: 24px;
  }
}
.page-template-lp-conference-0831 .webinar .time_table .schedule {
  margin: 64px 0 0;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0831 .webinar .time_table .schedule {
    margin: 48px 0 0;
  }
}
.page-template-lp-conference-0831 .webinar .time_table .schedule h3 {
  padding: 0 0 12px;
  font-weight: 700;
  font-size: 20px;
  line-height: 26px;
  letter-spacing: 0.03em;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0831 .webinar .time_table .schedule h3 {
    font-size: 18px;
    line-height: 26px;
  }
}
.page-template-lp-conference-0831 .webinar .time_table .schedule h3 span {
  font-weight: 500;
  font-size: 14px;
  line-height: 27px;
  color: rgba(255, 255, 255, 0.6);
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0831 .webinar .time_table .schedule h3 span {
    font-size: 12px;
    line-height: 23px;
  }
}
.page-template-lp-conference-0831 .webinar .time_table .schedule p {
  position: relative;
  padding: 0 0 74px;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.03em;
  font-family: "Roboto";
}

.page-template-lp-conference-0831 .webinar .time_table .schedule p::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 34px;
  background-color: #fff;
  right: 50%;
  bottom: 20px;
  transform: translateX(-50%);
}

.page-template-lp-conference-0831 .webinar .time_table .schedule p:last-child {
  padding: 0;
}

.page-template-lp-conference-0831 .webinar .time_table .schedule p:last-child::after {
  display: none;
}

.page-template-lp-conference-0831 .webinar #bottom-form::before {
  display: none;
}

.page-template-lp-conference-0831 .webinar #bottom-form,
.page-template-lp-conference-0831 .webinar .l-section {
  padding: 80px 0;
  background: #F8F8F8;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0831 .webinar #bottom-form,
.page-template-lp-conference-0831 .webinar .l-section {
    padding: 0;
  }
}
.page-template-lp-conference-0831 .webinar #bottom-form .p-cta2,
.page-template-lp-conference-0831 .webinar .l-section .p-cta2 {
  width: 800px;
  padding: 56px 0;
  background-color: #fff;
  filter: drop-shadow(0px 5px 20px rgba(0, 0, 0, 0.15));
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0831 .webinar #bottom-form .p-cta2,
.page-template-lp-conference-0831 .webinar .l-section .p-cta2 {
    width: 100%;
    padding: 32px 15px;
    box-sizing: border-box;
    background: #F8F8F8;
    filter: drop-shadow(0px 5px 20px rgba(0, 0, 0, 0));
  }
}
.page-template-lp-conference-0831 .webinar #bottom-form .p-cta2 .c-h2,
.page-template-lp-conference-0831 .webinar .l-section .p-cta2 .c-h2 {
  width: 540px;
  margin: 0 auto 32px !important;
  padding: 0 0 28px !important;
  font-size: 28px !important;
  line-height: 42px;
  border-bottom: 1px solid #0E0E0E;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0831 .webinar #bottom-form .p-cta2 .c-h2,
.page-template-lp-conference-0831 .webinar .l-section .p-cta2 .c-h2 {
    width: 100%;
    max-width: 400px;
    margin: 0 auto 26px !important;
    padding: 0 0 24px !important;
    font-size: 22px !important;
    line-height: 24px !important;
  }
}
.page-template-lp-conference-0831 .webinar #bottom-form .p-cta2 .p-form_wrap,
.page-template-lp-conference-0831 .webinar .l-section .p-cta2 .p-form_wrap {
  margin: 0 auto !important;
  padding: 0 !important;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0831 .webinar #bottom-form .p-cta2 .p-form_wrap,
.page-template-lp-conference-0831 .webinar .l-section .p-cta2 .p-form_wrap {
    width: 100%;
  }
}
.page-template-lp-conference-0831 .webinar #bottom-form .p-cta2 .p-form_wrap .box,
.page-template-lp-conference-0831 .webinar .l-section .p-cta2 .p-form_wrap .box {
  margin: 0 0 16px !important;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0831 .webinar #bottom-form .p-cta2 .p-form_wrap .box,
.page-template-lp-conference-0831 .webinar .l-section .p-cta2 .p-form_wrap .box {
    margin: 0 0 10px !important;
  }
}
.page-template-lp-conference-0831 .webinar #bottom-form .p-cta2 .p-form_wrap .box .f-title,
.page-template-lp-conference-0831 .webinar .l-section .p-cta2 .p-form_wrap .box .f-title {
  margin: 0 0 4px !important;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0831 .webinar #bottom-form .p-cta2 .p-form_wrap .box .f-title,
.page-template-lp-conference-0831 .webinar .l-section .p-cta2 .p-form_wrap .box .f-title {
    font-weight: 700;
    font-size: 14px;
    line-height: 21px;
  }
}
.page-template-lp-conference-0831 .webinar #bottom-form .p-cta2 .p-form_wrap .box .f-title .his,
.page-template-lp-conference-0831 .webinar .l-section .p-cta2 .p-form_wrap .box .f-title .his {
  margin-left: 0 !important;
  padding: 1px 5px !important;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0831 .webinar #bottom-form .p-cta2 .p-form_wrap .box .f-title .his,
.page-template-lp-conference-0831 .webinar .l-section .p-cta2 .p-form_wrap .box .f-title .his {
    padding: 1px 8px !important;
  }
}
@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0831 .webinar #bottom-form .p-cta2 .p-form_wrap .box > p input[type=text], .page-template-lp-conference-0831 .webinar #bottom-form .p-cta2 .p-form_wrap .box > p input[type=tel], .page-template-lp-conference-0831 .webinar #bottom-form .p-cta2 .p-form_wrap .box > p input[type=email], .page-template-lp-conference-0831 .webinar #bottom-form .p-cta2 .p-form_wrap .box > p textarea, .page-template-lp-conference-0831 .webinar #bottom-form .p-cta2 .p-form_wrap .box > p select, .page-template-lp-conference-0831 .webinar #bottom-form .p-cta2 .p-form_wrap .box > p .js-formCheckSelect,
.page-template-lp-conference-0831 .webinar .l-section .p-cta2 .p-form_wrap .box > p input[type=text],
.page-template-lp-conference-0831 .webinar .l-section .p-cta2 .p-form_wrap .box > p input[type=tel],
.page-template-lp-conference-0831 .webinar .l-section .p-cta2 .p-form_wrap .box > p input[type=email],
.page-template-lp-conference-0831 .webinar .l-section .p-cta2 .p-form_wrap .box > p textarea,
.page-template-lp-conference-0831 .webinar .l-section .p-cta2 .p-form_wrap .box > p select,
.page-template-lp-conference-0831 .webinar .l-section .p-cta2 .p-form_wrap .box > p .js-formCheckSelect {
    background: #FFFFFF;
    border: 1px solid rgba(14, 14, 14, 0.1);
  }
}
.page-template-lp-conference-0831 .webinar #bottom-form .p-cta2 .p-form_wrap .policy,
.page-template-lp-conference-0831 .webinar #bottom-form .p-cta2 .p-form_wrap .policy_link,
.page-template-lp-conference-0831 .webinar .l-section .p-cta2 .p-form_wrap .policy,
.page-template-lp-conference-0831 .webinar .l-section .p-cta2 .p-form_wrap .policy_link {
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
  color: #303544;
  margin: 0 0 8px;
}

.page-template-lp-conference-0831 .webinar #bottom-form .p-cta2 .p-form_wrap .policy_link,
.page-template-lp-conference-0831 .webinar .l-section .p-cta2 .p-form_wrap .policy_link {
  margin: 0 0 32px;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0831 .webinar #bottom-form .p-cta2 .p-form_wrap .policy_link,
.page-template-lp-conference-0831 .webinar .l-section .p-cta2 .p-form_wrap .policy_link {
    margin: 0 0 24px;
    line-height: 2;
  }
}
.page-template-lp-conference-0831 .webinar #bottom-form .p-cta2 .p-form_wrap .policy_link a,
.page-template-lp-conference-0831 .webinar .l-section .p-cta2 .p-form_wrap .policy_link a {
  text-decoration-line: underline;
  color: #303544;
}

.page-template-lp-conference-0831 .webinar #bottom-form .p-cta2 .p-form_wrap .policy_link a::after,
.page-template-lp-conference-0831 .webinar .l-section .p-cta2 .p-form_wrap .policy_link a::after {
  display: none;
}

.page-template-lp-conference-0831 .webinar #bottom-form .p-cta2 .p-form_wrap .wpcf7-list-item,
.page-template-lp-conference-0831 .webinar .l-section .p-cta2 .p-form_wrap .wpcf7-list-item {
  text-align: center;
  color: #303544;
}

.page-template-lp-conference-0831 .webinar #bottom-form .p-cta2 .p-form_wrap .wpcf7-list-item input,
.page-template-lp-conference-0831 .webinar .l-section .p-cta2 .p-form_wrap .wpcf7-list-item input {
  width: 22px;
  height: 22px;
}

.page-template-lp-conference-0831 .webinar #bottom-form .p-cta2 .p-form_wrap .wpcf7-list-item a,
.page-template-lp-conference-0831 .webinar .l-section .p-cta2 .p-form_wrap .wpcf7-list-item a {
  color: #303544;
  text-decoration-line: underline;
}

.page-template-lp-conference-0831 .webinar #bottom-form .p-cta2 .p-form_wrap .wpcf7-list-item a::after,
.page-template-lp-conference-0831 .webinar .l-section .p-cta2 .p-form_wrap .wpcf7-list-item a::after {
  display: none;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0831 .webinar #bottom-form .p-cta2 .p-form_wrap .acceptance,
.page-template-lp-conference-0831 .webinar .l-section .p-cta2 .p-form_wrap .acceptance {
    margin: 0 0 24px !important;
  }
}
.page-template-lp-conference-0831 .webinar #bottom-form .p-cta2 .p-form_wrap .p-form_submit p,
.page-template-lp-conference-0831 .webinar .l-section .p-cta2 .p-form_wrap .p-form_submit p {
  margin: 0 !important;
}

.page-template-lp-conference-0831 .webinar #bottom-form .p-cta2 .p-form_wrap .p-form_submit p input[type=submit]:disabled,
.page-template-lp-conference-0831 .webinar .l-section .p-cta2 .p-form_wrap .p-form_submit p input[type=submit]:disabled {
  color: #fff;
  background: #DDDDDD;
  border: 4px solid #fff;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0831 .webinar #bottom-form .p-cta2 .p-form_wrap .p-form_submit p input[type=submit]:disabled,
.page-template-lp-conference-0831 .webinar .l-section .p-cta2 .p-form_wrap .p-form_submit p input[type=submit]:disabled {
    width: 299px;
    font-size: 20px;
    padding: 16px 15px;
    border: none;
    background: #DDDDDD;
  }
}
.page-template-lp-conference-0831 .webinar #bottom-form .p-cta2 .p-form_wrap .p-form_submit p input[type=submit],
.page-template-lp-conference-0831 .webinar .l-section .p-cta2 .p-form_wrap .p-form_submit p input[type=submit] {
  color: #0E0E0E;
  background: #FFDC36;
  border: 4px solid #fff;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0831 .webinar #bottom-form .p-cta2 .p-form_wrap .p-form_submit p input[type=submit],
.page-template-lp-conference-0831 .webinar .l-section .p-cta2 .p-form_wrap .p-form_submit p input[type=submit] {
    width: 299px;
    font-size: 20px;
    padding: 16px 15px;
    border: none;
    background: #FFDC36;
  }
}
.page-template-lp-conference-0831 .webinar #bottom-form .p-cta2 .p-form_wrap .p-form_submit p:hover input[type=submit],
.page-template-lp-conference-0831 .webinar .l-section .p-cta2 .p-form_wrap .p-form_submit p:hover input[type=submit] {
  transition: all 0.3s;
  opacity: 0.7;
  box-shadow: none;
}

.page-template-lp-conference-0831 .webinar #bottom-form .overflow,
.page-template-lp-conference-0831 .webinar .l-section .overflow {
  width: 610px;
  margin: 24px auto 0;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0831 .webinar #bottom-form .overflow,
.page-template-lp-conference-0831 .webinar .l-section .overflow {
    display: block;
    width: calc(100% - 30px);
    margin: 0 auto;
    padding: 32px 0 40px;
    border-top: 1px solid #0E0E0E;
  }
}
.page-template-lp-conference-0831 .webinar #bottom-form .overflow > figure,
.page-template-lp-conference-0831 .webinar .l-section .overflow > figure {
  display: block;
  width: 122px;
  margin: 0 auto 18px;
  text-align: center;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0831 .webinar #bottom-form .overflow > figure,
.page-template-lp-conference-0831 .webinar .l-section .overflow > figure {
    margin: 0 auto 26px;
  }
}
.page-template-lp-conference-0831 .webinar #bottom-form .overflow > figure figcaption,
.page-template-lp-conference-0831 .webinar .l-section .overflow > figure figcaption {
  margin: 0 0 5px;
  font-size: 12px;
  line-height: 18px;
  text-align: center;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0831 .webinar #bottom-form .overflow .cta_tel dt,
.page-template-lp-conference-0831 .webinar .l-section .overflow .cta_tel dt {
    display: block;
    width: 250px;
    margin: 0 auto;
  }
}
.page-template-lp-conference-0831 .webinar #bottom-form .overflow .cta_tel dt .c-tell,
.page-template-lp-conference-0831 .webinar .l-section .overflow .cta_tel dt .c-tell {
  padding: 4px 14px;
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  color: #fff;
  background: #4D4D4D;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0831 .webinar #bottom-form .overflow .cta_tel dt .c-tell,
.page-template-lp-conference-0831 .webinar .l-section .overflow .cta_tel dt .c-tell {
    display: block;
    margin: 0 0 12px;
    text-align: center;
    font-weight: 700;
    font-size: 14px;
    line-height: 21px;
    color: #0E0E0E;
    background: transparent;
    border: 1px solid #0E0E0E;
  }
}
.page-template-lp-conference-0831 .webinar #bottom-form .overflow .cta_tel dt .c-tell:after,
.page-template-lp-conference-0831 .webinar .l-section .overflow .cta_tel dt .c-tell:after {
  height: 32px;
  right: -16px;
  border-left: 16px solid #4D4D4D;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  box-sizing: border-box;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0831 .webinar #bottom-form .overflow .cta_tel dt .c-tell:after,
.page-template-lp-conference-0831 .webinar .l-section .overflow .cta_tel dt .c-tell:after {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0831 .webinar #bottom-form .overflow .cta_tel dt figure,
.page-template-lp-conference-0831 .webinar .l-section .overflow .cta_tel dt figure {
    width: 17px;
    margin: 0 4px 0 0;
  }
}
@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0831 .webinar #bottom-form .overflow .cta_tel dt figure img,
.page-template-lp-conference-0831 .webinar .l-section .overflow .cta_tel dt figure img {
    vertical-align: baseline;
  }
}
.page-template-lp-conference-0831 .webinar #bottom-form .overflow .cta_tel dt .c-num,
.page-template-lp-conference-0831 .webinar .l-section .overflow .cta_tel dt .c-num {
  font-weight: 700;
  font-size: 30px;
  line-height: 38px;
  letter-spacing: 0.01em;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0831 .webinar #bottom-form .overflow .cta_tel dt .c-num,
.page-template-lp-conference-0831 .webinar .l-section .overflow .cta_tel dt .c-num {
    width: 100%;
    font-size: 30px;
    line-height: 38px;
  }
}
.page-template-lp-conference-0831 .webinar #bottom-form .overflow .cta_tel dt [data-js-tel] a,
.page-template-lp-conference-0831 .webinar .l-section .overflow .cta_tel dt [data-js-tel] a {
  text-decoration: none;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0831 .webinar #bottom-form .overflow .cta_tel dt .day,
.page-template-lp-conference-0831 .webinar .l-section .overflow .cta_tel dt .day {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 14px;
    line-height: 21px;
  }
}
.page-template-lp-conference-0831 #g-footer,
#g-footer_0831 {
  padding: 40px 0;
  text-align: center;
  background: #0E0E0E;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0831 #g-footer,
#g-footer_0831 {
    padding: 29px;
  }
}
.page-template-lp-conference-0831 #g-footer ul,
#g-footer_0831 ul {
  display: flex;
  justify-content: center;
  margin: 0 0 56px;
}

@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0831 #g-footer ul,
#g-footer_0831 ul {
    flex-wrap: wrap;
    margin: 0 0 41px;
  }
}
.page-template-lp-conference-0831 #g-footer ul li,
#g-footer_0831 ul li {
  padding: 0 20px;
}

@media only screen and (max-width: 592px) {
  .page-template-lp-conference-0831 #g-footer ul li:last-child,
#g-footer_0831 ul li:last-child {
    padding: 14px 20px 0;
  }
}
.page-template-lp-conference-0831 #g-footer ul li a,
#g-footer_0831 ul li a {
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
  color: #fff;
}

.page-template-lp-conference-0831 #g-footer span,
#g-footer_0831 span {
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
}

.thanks_0831_title {
  color: #fff;
  font-weight: bold;
  font-size: 30px;
  text-align: center;
  padding: 32px 0;
  background-color: #0E0E0E;
}

@media only screen and (max-width: 1000px) {
  .thanks_0831_title {
    font-size: 24px;
  }
}
@media only screen and (max-width: 768px) {
  .thanks_0831_title {
    font-size: 20px;
    padding: 20px 0;
  }
}
.thanks_0831_point {
  font-size: 23px;
  border: solid 1px #fff;
  padding: 5px;
  margin-right: 16px;
}

@media only screen and (max-width: 768px) {
  .thanks_0831_point {
    font-size: 20px;
    margin-right: 0;
  }
}
.p-contact_wrap_0831 {
  box-shadow: 0 15px 20px rgba(0, 0, 0, 0.15);
  width: 540px;
  padding: 56px 130px;
  margin: 80px auto;
  border: none;
}

@media only screen and (max-width: 860px) {
  .p-contact_wrap_0831 {
    width: 65%;
    padding: 50px 60px;
    margin: 50px auto;
  }
}
@media only screen and (max-width: 768px) {
  .p-contact_wrap_0831 {
    padding: 40px;
    margin: 30px auto;
  }
}
.p-contact_fv_0831 {
  font-size: 28px;
  font-weight: bold;
  padding-bottom: 30px;
  border-bottom: solid 1px #000;
  text-align: center;
}

@media only screen and (max-width: 860px) {
  .p-contact_fv_0831 {
    font-size: 24px;
  }
}
@media only screen and (max-width: 768px) {
  .p-contact_fv_0831 {
    font-size: 18px;
  }
}
.p-thanks_text1_0831 {
  font-size: 16px;
  padding: 32px 0 40px;
}

@media only screen and (max-width: 860px) {
  .p-thanks_text1_0831 {
    font-size: 14px;
  }
}
.thanks_btn_0831 {
  text-align: center;
  font-size: 18px;
}

.thanks_btn_0831 a {
  color: #fff;
  padding: 15px 70px;
  background-color: #0E0E0E;
  border-radius: 100px;
}

.thanks_btn_0831 :hover {
  opacity: 0.8;
}

@media only screen and (min-width: 769px) {
  .sp_0831 {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .sp_0831 {
    display: block;
  }
}
/* form */
.page-template-lp-conference-0831 .pb100 {
  padding-bottom: 0px !important;
}

.page-template-lp-conference-0831 .form-group {
  margin-bottom: 16px;
  text-align: center;
}

.page-template-lp-conference-0831 .form-group .f-title {
  margin-bottom: 5px;
}

.page-template-lp-conference-0831 #bottom-form .p-cta2 .p-form_wrap p {
  font-size: 16px;
}

.page-template-lp-conference-0831 #bottom-form .p-cta2 .p-form_wrap .small {
  font-size: 12px;
  font-weight: normal;
  line-height: 1.5;
}

.page-template-lp-conference-0831 .form-group .f-title span {
  font-size: 12px;
  color: #e8760e;
  display: inline-block;
  margin-left: 5px;
}

.page-template-lp-conference-0831 .form-group .wpcf7-form-control-wrap {
  width: 100%;
}

.page-template-lp-conference-0831 .privacy_link,
.page-template-lp-conference-0831 .note {
  display: none;
}

.page-template-lp-conference-0831 .p-cta2 p {
  margin: 20px 0;
}

.l-container {
  min-width: 414px;
}

.l-inner, .l-inner4, .l-localFooter2__inner, .l-localFooter1__inner, .l-inner3, .l-inner2 {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.l-inner2 {
  max-width: 1040px;
}
.l-inner3 {
  max-width: 930px;
}
.l-inner4, .l-localFooter2__inner, .l-localFooter1__inner {
  box-sizing: border-box;
  max-width: calc(1064px + (20px * 2));
}

.l-section {
  padding-top: 60px;
  padding-bottom: 60px;
  background: #fff;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .l-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.l-section._nopt {
  padding-top: 0px;
}
.l-section._bg {
  background: #FAFAFA;
}
.l-section._bg2 {
  background: #FDF4F0;
}
.l-section._bg3 {
  background: #FEF6E9;
}
.l-section._shadow_top {
  box-shadow: 0px 10px 10px -5px rgba(0, 0, 0, 0.16) inset;
}
.l-section p + p {
  margin-top: 15px;
}

.l-localHeader1 {
  box-sizing: border-box;
  font-size: 1rem;
}
@media not all and (max-width: 768px) {
  .l-localHeader1[data-header-style="2"] .l-localHeader1__inner {
    justify-content: space-evenly;
  }
}
@media not all and (max-width: 768px) {
  .l-localHeader1[data-header-style="2"] .l-localHeader1__nav .navitem, .l-localHeader1[data-header-style="2"] .l-localHeader1__nav .navitem--last, .l-localHeader1[data-header-style="2"] .l-localHeader1__nav .navitem--bottom {
    padding: 0 1em;
    margin-left: 0;
  }
}
.l-localHeader1[data-header-style="2"] .l-localHeader1__fallback {
  height: 70px;
}
.l-localHeader1 * {
  box-sizing: border-box;
}
.l-localHeader1__inner {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}
@media not all and (max-width: 768px) {
  .l-localHeader1__inner {
    background: #FFFFFF;
    display: flex;
    justify-content: space-between;
    padding: 16px 20px;
  }
}
.l-localHeader1__logo {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .l-localHeader1__logo {
    background: #FFFFFF;
    padding: 16px 20px;
  }
}
.l-localHeader1__logo .logolink {
  display: block;
  width: 134px;
}
.l-localHeader1__toggle {
  display: none;
}
@media only screen and (max-width: 768px) {
  .l-localHeader1__toggle {
    display: block;
    padding: 16px 20px;
    position: absolute;
    top: 0;
    right: 0;
  }
}
.l-localHeader1__nav {
  display: flex;
}
@media only screen and (max-width: 768px) {
  .l-localHeader1__nav {
    flex-direction: column;
    background: #FFFFFF;
    height: 0;
    opacity: 0;
    transition: opacity 0.3s 0s, height 0s 0.3s;
    overflow: hidden;
  }
}
@media only screen and (max-width: 768px) {
  .l-localHeader1__nav.is-open {
    height: calc(100vh - 70px);
    opacity: 1;
    transition: height 0s 0s, opacity 0.3s 0s;
  }
}
.l-localHeader1__nav .navlist {
  display: flex;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .l-localHeader1__nav .navlist {
    flex-direction: column;
    flex: 1 1 100%;
    padding: 20px;
    overflow: auto;
  }
}
.l-localHeader1__nav .navitem, .l-localHeader1__nav .navitem--last, .l-localHeader1__nav .navitem--bottom {
  display: flex;
}
@media not all and (max-width: 768px) {
  .l-localHeader1__nav .navitem, .l-localHeader1__nav .navitem--last, .l-localHeader1__nav .navitem--bottom {
    margin-left: 1em;
  }
}
@media only screen and (max-width: 768px) {
  .l-localHeader1__nav .navitem, .l-localHeader1__nav .navitem--last, .l-localHeader1__nav .navitem--bottom {
    margin: 0 -20px;
  }
}
@media only screen and (max-width: 768px) {
  .l-localHeader1__nav .navitem--bottom {
    margin-top: auto;
  }
}
@media only screen and (max-width: 768px) {
  .l-localHeader1__nav .navitem--last {
    margin-bottom: auto;
  }
}
@media only screen and (max-width: 768px) {
  .l-localHeader1__nav .navitem:first-child, .l-localHeader1__nav .navitem--bottom:first-child, .l-localHeader1__nav .navitem--last:first-child {
    margin-top: auto;
  }
}
.l-localHeader1__nav .navitem > *, .l-localHeader1__nav .navitem--bottom > *, .l-localHeader1__nav .navitem--last > * {
  flex: 0 1 auto;
}
.l-localHeader1__nav .navlink {
  display: flex;
  align-items: center;
  color: inherit;
}
@media only screen and (max-width: 768px) {
  .l-localHeader1__nav .navlink {
    padding: 0.5em 20px;
  }
}
.l-localHeader1__nav .navlink:hover, .l-localHeader1__nav .navlink.is-current {
  color: #F29600;
  text-decoration: underline;
}
.l-localHeader1__nav .navtext {
  display: inline-block;
}
@media only screen and (max-width: 768px) {
  .l-localHeader1__nav .navbtn {
    margin-left: auto;
    margin-right: auto;
  }
}
.l-localHeader1__nav .navbtn_text {
  display: inline-block;
}
@media only screen and (max-width: 768px) {
  .l-localHeader1__nav .navbtn_text {
    min-width: calc(250px - (2em * 2));
  }
}
.l-localHeader1__box1 {
  display: none;
}
@media only screen and (max-width: 768px) {
  .l-localHeader1__box1 {
    display: block;
    flex: 1 0 auto;
    background: #F29600;
    color: #FFFFFF;
    text-align: center;
    padding: 20px;
  }
}
.l-localHeader1__box1 .box1__text {
  font-size: 0.75rem;
  margin-bottom: 0.6em;
}
.l-localHeader1__box1 .box1__text_inner1 {
  font-weight: bold;
}
.l-localHeader1__box1 .box1__btn {
  display: block;
  font-size: 1.25rem;
  font-weight: bold;
  color: inherit;
  text-decoration: underline;
  line-height: 1;
}
.l-localHeader1__box1 .box1__btn_text {
  display: inline-block;
  text-decoration: inherit;
  padding: 0.8em 1.6em;
  border: solid 1px;
  border-radius: 100vw;
}
.l-localHeader1__box1 .box1__btn svg {
  color: #FFFFFF;
  margin-right: 0.3em;
  vertical-align: -0.1em;
}
.l-localHeader1__fallback {
  height: 86px;
}
@media only screen and (max-width: 768px) {
  .l-localHeader1__fallback {
    height: 70px;
  }
}
.l-localFooter1 {
  background: #393E4C;
  color: #FFFFFF;
  padding: 40px 0 50px;
}
.l-localFooter1__logo {
  text-align: center;
}
.l-localFooter1__logo img {
  width: 188px;
}
.l-localFooter1__nav1 .navlist, .l-localFooter1__nav2 .navlist {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: -0.3em;
}
.l-localFooter1__nav1 .navlist > *, .l-localFooter1__nav2 .navlist > * {
  flex: 0 1 auto;
}
.l-localFooter1__nav1 .navitem, .l-localFooter1__nav1 .l-localHeader1__nav .navitem--bottom, .l-localHeader1__nav .l-localFooter1__nav1 .navitem--bottom, .l-localFooter1__nav1 .l-localHeader1__nav .navitem--last, .l-localHeader1__nav .l-localFooter1__nav1 .navitem--last, .l-localFooter1__nav2 .navitem, .l-localFooter1__nav2 .l-localHeader1__nav .navitem--bottom, .l-localHeader1__nav .l-localFooter1__nav2 .navitem--bottom, .l-localFooter1__nav2 .l-localHeader1__nav .navitem--last, .l-localHeader1__nav .l-localFooter1__nav2 .navitem--last {
  padding-top: 0.3em;
  overflow: hidden;
}
.l-localFooter1__nav1 .navitem:last-child .navlink:after, .l-localFooter1__nav1 .l-localHeader1__nav .navitem--bottom:last-child .navlink:after, .l-localHeader1__nav .l-localFooter1__nav1 .navitem--bottom:last-child .navlink:after, .l-localFooter1__nav1 .l-localHeader1__nav .navitem--last:last-child .navlink:after, .l-localHeader1__nav .l-localFooter1__nav1 .navitem--last:last-child .navlink:after, .l-localFooter1__nav2 .navitem:last-child .navlink:after, .l-localFooter1__nav2 .l-localHeader1__nav .navitem--bottom:last-child .navlink:after, .l-localHeader1__nav .l-localFooter1__nav2 .navitem--bottom:last-child .navlink:after, .l-localFooter1__nav2 .l-localHeader1__nav .navitem--last:last-child .navlink:after, .l-localHeader1__nav .l-localFooter1__nav2 .navitem--last:last-child .navlink:after {
  right: -1px;
}
.l-localFooter1__nav1 .navlink, .l-localFooter1__nav2 .navlink {
  display: block;
  color: inherit;
  padding: 0 1.4em;
  position: relative;
}
.l-localFooter1__nav1 .navlink:after, .l-localFooter1__nav2 .navlink:after {
  content: "";
  display: block;
  background: #808080;
  width: 1px;
  height: 1em;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
}
.l-localFooter1__nav1 {
  font-size: 0.875rem;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .l-localFooter1__nav1 {
    font-size: 0.75rem;
  }
}
.l-localFooter1__nav1 .navlist {
  padding-top: 1.8em;
}
.l-localFooter1__nav2 {
  font-size: 0.6875rem;
}
.l-localFooter1__nav2 .navlist {
  padding-top: 1.2em;
}
.l-localFooter1__nav2 .navlink {
  padding: 0 0.6em;
}
.l-localFooter1__nav2 .navlink:after {
  content: none;
}
.l-localFooter1__copy {
  font-size: 0.6875rem;
  text-align: center;
  margin-top: 2em;
}
.l-localFooter2 {
  background: #02B7B0;
  padding: 32px 0;
}
.l-localFooter2__btn {
  background: #53C0BC;
  display: block;
  font-size: 3rem;
  text-align: center;
  font-weight: bold;
  color: #FFFFFF;
  max-width: 448px;
  margin: auto;
  padding: 0.6em;
  border: solid 1px;
  border-radius: 8px;
  position: relative;
  box-shadow: 4px 4px 16px rgba(0, 0, 0, 0.15);
}
.l-localFooter2__btn:hover {
  text-decoration: none;
  opacity: 0.7;
}
.l-localFooter2__btn_large {
  display: block;
  color: #53C0BC;
  opacity: 0.5;
  text-shadow: 0 1px 0px #FFFFFF, 0 -1px 0px #FFFFFF, 1px 0 0px #FFFFFF, -1px 0 0px #FFFFFF;
}
.l-localFooter2__btn_small {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.4583333333em;
  width: 100%;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.c-bread {
  font-size: 12px;
}
.c-bread a {
  color: #393E4C;
}
.c-bread__list {
  word-break: break-all;
  font-weight: 500;
  max-width: 300px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: inline-block;
}
.c-bread__list > li {
  display: inline;
  margin-right: 0.2em;
}
.c-bread__list > li:nth-child(1) a {
  color: #1571DA;
}
.c-bread__list > li + li:before {
  content: "＞";
  /*	content: ">";*/
  color: #2C2C2C;
}

.c-arrow {
  height: 90px;
  position: relative;
  margin: 0 0 50px;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .c-arrow {
    height: 80px;
    margin: 0 0 30px;
  }
}
.c-arrow:before {
  content: "";
  display: block;
  width: 1px;
  height: 90px;
  background: #E84715;
  position: absolute;
  left: 50%;
  bottom: 0;
}
.c-arrow:after {
  content: "";
  display: block;
  width: 1px;
  height: 40px;
  background: #E84715;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: rotate(30deg);
  margin-left: 10px;
  margin-bottom: -3px;
}
.c-arrow .white_line {
  position: absolute;
  top: -100px;
  left: 50%;
  z-index: 10;
  height: 100px;
  width: 30px;
  background-color: #ffffff;
  -webkit-animation: anim_line 2s infinite;
  animation: anim_line 2s infinite;
}

.c-h2 {
  font-size: 28px;
  text-align: center;
  margin-bottom: 50px;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .c-h2 {
    font-size: 24px;
    margin-bottom: 35px;
  }
}

.c-orange {
  color: #F29600;
  font-weight: bold;
}

.c-orange_line {
  background: linear-gradient(transparent 60%, #F29600 60%);
  font-weight: bold;
}

.c-num {
  font-family: "Roboto", sans-serif;
}

.c-grey {
  color: #938E8E;
}

.c-link {
  padding: 55px 0 0;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .c-link {
    padding-top: 20px;
  }
  .c-link .c-btn._b_red {
    max-width: 286px;
  }
}

.c-btn {
  font-size: 16px;
  line-height: 50px;
  width: 60%;
  max-width: 255px;
  margin: 0 6px 10px;
}
@media only screen and (max-width: 768px) {
  .c-btn {
    line-height: 42px;
    margin: 0 auto 10px;
    width: 100%;
    max-width: 240px;
  }
}
.c-btn._min {
  font-size: 12px;
}
@media not all and (max-width: 768px) {
  .c-btn._larg {
    max-width: 380px;
  }
}
.c-btn2, .c-datalist1__item_box .c-datalist1__btn_link {
  max-width: 100%;
  padding: 0.8em 2em;
  border-radius: 100vw;
}
.c-btn2[data-size=m], .c-datalist1__item_box [data-size=m].c-datalist1__btn_link {
  width: 255px;
}
.c-btn_wrap {
  text-align: center;
  padding: 50px 0 0;
}
@media only screen and (max-width: 768px) {
  .c-btn_wrap {
    padding: 30px 0 0;
  }
}

.c-side_h2 {
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .c-side_h2 {
    font-size: 24px;
  }
}

.c-ico {
  position: absolute;
  left: -65px;
  top: 0;
}
@media only screen and (max-width: 1360px) {
  .c-ico {
    left: 0;
  }
}
@media only screen and (max-width: 768px) {
  .c-ico {
    position: static;
    margin-bottom: 40px;
  }
}
.c-ico a {
  display: block;
  line-height: 0;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .c-ico a {
    display: inline-block;
    margin-right: 15px;
  }
}
.c-ico a + a {
  margin-top: 30px;
}
@media only screen and (max-width: 768px) {
  .c-ico a + a {
    margin-top: 0;
  }
}

.c-link_blank:after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background: url(../img/cmn/link_blank_blue.svg) center center no-repeat;
  margin: 0 5px;
  vertical-align: middle;
}

.slider {
  display: flex;
}
.slider._top {
  padding: 15px 0 0 100px;
}
@media only screen and (max-width: 768px) {
  .slider._top {
    padding-top: 10px;
  }
}
.slider._btm {
  padding: 0 0 15px;
}
@media only screen and (max-width: 768px) {
  .slider._btm {
    padding-bottom: 10px;
  }
}
.slider__inner {
  display: flex;
}
.slider__inner:first-child {
  animation: loop 90s linear infinite;
}
.slider__inner:nth-child(2) {
  animation: loop2 90s -60s linear infinite;
}
.slider__inner:last-child {
  animation: loop3 90s -30s linear infinite;
}
.slider__item {
  padding: 10px 25px;
  width: 160px;
}
@media only screen and (max-width: 768px) {
  .slider__item {
    width: 80px;
    padding: 3px 25px;
  }
}

.js-toggleElm {
  display: block;
  font-weight: bold;
  color: inherit;
  text-align: center;
  cursor: pointer;
}
@media not all and (max-width: 768px) {
  .js-toggleElm [data-break-point=sp] {
    display: none;
  }
}
.js-toggleElm[data-toggle=close] .js-toggleElm_text:before {
  transform: translateY(-80%) rotate(135deg);
}
.js-toggleElm[data-toggle=close] [display-open] {
  display: none;
}
.js-toggleElm[data-toggle=open] [display-close] {
  display: none;
}
.js-toggleElm_text {
  display: inline-block;
  padding-right: 1.4em;
  position: relative;
}
.js-toggleElm_text:before {
  content: "";
  width: 0.3em;
  height: 0.3em;
  border-top: solid 2px;
  border-right: solid 2px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-40%) rotate(-45deg);
}
.js-toggleTarget {
  transition: max-height 0.3s;
}
@media not all and (max-width: 768px) {
  .js-toggleTarget[data-break-point=sp] {
    max-height: initial !important;
    max-height: none !important;
  }
}
@media only screen and (max-width: 768px) {
  .js-toggleTarget[data-break-point=sp]:not(.is-open) {
    max-height: 0;
    overflow: hidden;
    margin: 0 !important;
    padding: 0 !important;
  }
}
.js-slideNav1 {
  display: flex;
  align-items: center;
  line-height: 1;
}
@media only screen and (max-width: 768px) {
  .js-slideNav1[display-pc] {
    display: none;
  }
}
.js-slideNav1 > * {
  flex: 0 0 auto;
}
.js-slideNav1__number {
  display: flex;
  font-weight: bold;
  text-align: center;
  white-space: nowrap;
  width: 3.6em;
  margin-right: 1.4em;
  position: relative;
}
.js-slideNav1__number:after {
  content: "";
  display: block;
  width: 0;
  height: 100%;
  border-left: solid 1px;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transform: rotate(15deg);
}
.js-slideNav1__number > * {
  display: block;
  flex: 1 1 100%;
}
.js-slideNav1__number_current {
  padding-right: 0.2em;
}
.js-slideNav1__number_total {
  padding-left: 0.2em;
}
.js-slideNav1__prev, .js-slideNav1__next {
  display: block;
  color: #F29600;
  border-radius: 100%;
  overflow: hidden;
}
.js-slideNav1__prev:hover, .js-slideNav1__next:hover {
  background: #F29600;
  color: #FFFFFF;
}
.js-slideNav1__next {
  margin-left: 1em;
}

.c-title1, .c-title1--left {
  font-size: 2.25rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
  margin-bottom: 1.4em;
}
@media only screen and (max-width: 768px) {
  .c-title1, .c-title1--left {
    font-size: 1.5rem;
  }
}
.c-title1--left {
  text-align: left;
}
.c-title2 {
  font-size: 1.25rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1.4em;
}
.c-title2__inner {
  display: inline-block;
  padding-bottom: 0.2em;
  border-bottom: solid 4px #F29600;
}
.c-title3, .c-title3--orange {
  font-size: 3.4375rem;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.05em;
  margin-bottom: 0.6em;
}
@media only screen and (max-width: 768px) {
  .c-title3, .c-title3--orange {
    font-size: 2rem;
  }
}
.c-title3--orange {
  color: #FFEADA;
  text-shadow: 0 1px 0px #F29600, 0 -1px 0px #F29600, 1px 0 0px #F29600, -1px 0 0px #F29600;
}
.c-title3--orange .c-title3__small {
  color: #FFFFFF;
}
.c-title3__small {
  font-size: 0.6545454545em;
}
@media only screen and (max-width: 768px) {
  .c-title3__small {
    font-size: 0.625em;
  }
}
.c-title4, .c-title4--orange {
  font-weight: bold;
  margin-bottom: 80px;
}
.c-title4--orange .c-title4__large {
  color: #FFC700;
}
.c-title4--orange .c-title4__small {
  color: #F29600;
}
.c-title4 > *, .c-title4--orange > * {
  display: block;
}
.c-title4__large {
  font-size: 5rem;
  line-height: 1.2;
}
@media only screen and (max-width: 768px) {
  .c-title4__large {
    font-size: 3rem;
  }
}
.c-title4__small {
  padding-left: 1.6em;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .c-title4__small {
    font-size: 0.75rem;
  }
}
.c-title4__small:before {
  content: "";
  width: 1.2em;
  height: 0;
  border-top: solid 2px;
  position: absolute;
  top: 0.8em;
  left: 0;
}
.c-title5 {
  display: flex;
  align-items: center;
  font-weight: bold;
  padding-bottom: 6px;
  margin-bottom: 1em;
  border-bottom: solid 1px #F29600;
}
.c-title5__number, .c-title5__number--orange {
  flex: 0 0 auto;
  font-size: 3rem;
  line-height: 1;
  padding-right: 0.4em;
}
.c-title5__number--orange {
  color: #FFEADA;
  text-shadow: 0 1px 0px #F29600, 0 -1px 0px #F29600, 1px 0 0px #F29600, -1px 0 0px #F29600;
}
.c-title5__text > * {
  display: block;
}
.c-title5__text_small {
  font-size: 0.75rem;
}
.c-title5__text_large {
  font-size: 1.25rem;
}
.c-title6 {
  font-size: 1.625rem;
  font-weight: bold;
  line-height: 1.4;
  padding-left: 1.4em;
  position: relative;
}
.c-title6:before {
  content: "";
  width: 0.9em;
  height: 0;
  border-top: solid 4px #F29600;
  position: absolute;
  top: 0.8em;
  left: 0;
}
@media only screen and (max-width: 768px) {
  .c-title6 {
    font-size: 1.25rem;
  }
}
.c-title7 {
  font-size: 2rem;
  font-weight: bold;
  color: #808080;
  line-height: 1.4;
  margin-bottom: 1.2em;
}
@media only screen and (max-width: 768px) {
  .c-title7 {
    font-size: 1.375rem;
  }
}
.c-title7__small {
  display: block;
  font-size: 0.75em;
  color: #FFC700;
  line-height: 1.2;
  margin-bottom: 0.4em;
}
.c-btnlink1 {
  font-size: 1rem;
  text-align: center;
}
.c-btnlink1__inner {
  display: inline-block;
  background: #FFFFFF;
  font-size: inherit;
  max-width: 100%;
  width: 320px;
  padding: 1em 1.6em;
  border: solid 1px;
  border-radius: 4px;
  transition: background 0.3s, color 0.3s;
}
.c-btnlink1__inner:hover {
  text-decoration: none;
  background: #02B7B0;
  color: #FFFFFF;
  transition: background 0.3s, color 0.3s;
}
.c-btnlink1__inner[size-auto] {
  width: auto;
}
.c-btnlink1__text {
  display: block;
  padding-right: 1em;
}
.c-logoslider1 {
  background: #FFFFFF;
}
.c-logoslider1__inner:nth-child(even) > * {
  margin-left: -100px;
}
@media only screen and (max-width: 768px) {
  .c-logoslider1__inner:nth-child(even) > * {
    margin-left: -60px;
  }
}
.c-logoslider1__item {
  text-align: center;
  width: 200px !important;
  padding: 10px 25px;
}
@media only screen and (max-width: 768px) {
  .c-logoslider1__item {
    width: 120px !important;
    padding: 5px 15px;
  }
}
.c-description1 {
  box-sizing: border-box;
  background: #F6F6F6;
  font-weight: bold;
  max-width: 934px;
  padding: 24px;
  border-radius: 16px;
  margin: 0 auto 40px;
}
.c-description1 * {
  box-sizing: border-box;
}
.c-description1__title {
  margin-bottom: 1em;
}
.c-description1__text {
  font-size: 0.875rem;
  transition: max-height 0.3s;
}
@media not all and (max-width: 768px) {
  .c-description1__text {
    max-height: initial !important;
    max-height: none !important;
  }
}
@media only screen and (max-width: 768px) {
  .c-description1__text {
    max-height: 0;
    overflow: hidden;
  }
}
.c-description1__toggle {
  display: block;
  color: #02B7B0;
  text-align: center;
  padding-top: 1em;
  cursor: pointer;
}
@media not all and (max-width: 768px) {
  .c-description1__toggle {
    display: none;
  }
}
.c-description1__toggle[data-toggle=close] {
  padding-top: 0;
}
.c-description1__toggle[data-toggle=close] .c-description1__toggle_text:before {
  transform: translateY(-80%) rotate(135deg);
}
.c-description1__toggle_text {
  display: inline-block;
  padding-right: 1.4em;
  position: relative;
}
.c-description1__toggle_text:before {
  content: "";
  width: 0.3em;
  height: 0.3em;
  border-top: solid 2px;
  border-right: solid 2px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-40%) rotate(-45deg);
}
.c-itemlist1, .c-itemlist1--decimal {
  margin-left: 1.3em;
}
.c-itemlist1 li, .c-itemlist1--decimal li {
  list-style: disc;
}
.c-itemlist1--decimal li {
  list-style: decimal;
}
.c-checklist1 {
  display: flex;
  flex-wrap: wrap;
  margin: -40px -20px 0;
}
.c-checklist1 > * {
  flex: 1 1 50%;
  max-width: 50%;
}
@media only screen and (max-width: 768px) {
  .c-checklist1 > * {
    flex: 1 1 100%;
    max-width: 100%;
  }
}
.c-checklist1__item {
  padding: 40px 20px 0;
}
.c-checklist1__title, .c-checklist1__text {
  padding-left: 40px;
}
.c-checklist1__title {
  display: flex;
  font-size: 1.25rem;
  font-weight: bold;
}
.c-checklist1__title_icon {
  flex: 0 0 1.5em;
  color: #02B7B0;
  margin: 0.1em 0 0 -40px;
}
.c-checklist1__title_text {
  padding-left: 40px;
  margin-left: -1.5em;
}
.c-datalist1 {
  line-height: 1.5;
  white-space: nowrap;
  position: relative;
}
.c-datalist1__inner {
  position: static !important;
}
.c-datalist1__list {
  display: flex;
  margin-left: calc(200px - 1px);
}
@media only screen and (max-width: 768px) {
  .c-datalist1__list {
    margin-left: 0;
  }
}
.c-datalist1__item {
  border-bottom: solid 1px #E4E4E4;
  flex: 1 1 100%;
}
@media only screen and (max-width: 768px) {
  .c-datalist1__item {
    min-width: calc(100vw - (20px * 2));
  }
}
.c-datalist1__item--head {
  flex: 0 1 auto;
  border-bottom: solid 1px #E4E4E4;
  position: absolute;
  top: 0;
  left: 0;
}
.c-datalist1__item--head + .c-datalist1__item {
  border-left: solid 1px #E4E4E4;
}
.c-datalist1__item_title, .c-datalist1__item_title--hidden {
  font-weight: bold;
  width: 200px;
  border-left: solid 1px #E4E4E4;
}
@media only screen and (max-width: 768px) {
  .c-datalist1__item_title, .c-datalist1__item_title--hidden {
    font-size: 0.75rem;
    width: 150px;
  }
}
.c-datalist1__item_title--hidden {
  visibility: hidden;
}
.c-datalist1__item_title .c-datalist1__small, .c-datalist1__item_title--hidden .c-datalist1__small {
  font-size: 0.6875rem;
  color: #B2B3B6;
}
.c-datalist1__item_box {
  font-weight: bold;
  text-align: center;
  border-top: solid 8px #B2B3B6;
}
.c-datalist1__item_box.orange {
  border-top-color: #F29600;
}
.c-datalist1__item_box.green {
  border-top-color: #02B7B0;
}
.c-datalist1__item_box .c-datalist1__name {
  font-size: 1.5rem;
}
.c-datalist1__item_box .c-datalist1__caption {
  font-size: 0.75rem;
  margin-top: 0.6em;
}
.c-datalist1__item_box .c-datalist1__btn {
  font-size: 0.875rem;
  margin-top: 1.4em;
}
.c-datalist1__item_box .c-datalist1__btn_link {
  border-radius: 5px;
}
.c-datalist1__data {
  text-align: center;
}
.c-datalist1__data_item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}
@media only screen and (max-width: 600px) {
  .c-datalist1__data_item {
    padding-left: calc(150px + 16px);
  }
}
.c-datalist1__data_marker.line {
  color: #B2B3B6;
}
.c-datalist1__data_caption {
  font-size: 0.6875rem;
  font-weight: bold;
  color: #808080;
  margin-top: 0.4em;
}
.c-datalist1__price {
  font-weight: bold;
}
.c-datalist1__price_text1 {
  font-size: 2.25rem;
  letter-spacing: -0.06em;
}
.c-datalist1__price_text1.orange {
  color: #F29600;
}
.c-datalist1__price_text1.green {
  color: #02B7B0;
}
.c-datalist1__price_text2 {
  font-size: 1.4375rem;
}
.c-datalist1__price_text3 {
  font-size: 0.875rem;
  font-weight: normal;
}
.c-figlist1 {
  display: flex;
  flex-wrap: wrap;
}
@media not all and (max-width: 768px) {
  .c-figlist1 {
    margin: -80px -20px 0;
  }
}
.c-figlist1 > * {
  flex: 1 1 50%;
  max-width: 50%;
}
@media only screen and (max-width: 768px) {
  .c-figlist1 > * {
    flex: 1 1 100%;
    max-width: 100%;
  }
}
.c-figlist1__item {
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media not all and (max-width: 768px) {
  .c-figlist1__item {
    padding: 80px 20px 0;
  }
}
@media only screen and (max-width: 768px) {
  .c-figlist1__item:nth-child(n+2) {
    margin-top: 40px;
  }
}
.c-figlist1__head {
  display: flex;
  align-items: center;
  font-weight: bold;
}
.c-figlist1__head > * {
  flex: 1 1 100%;
  max-width: 100%;
}
.c-figlist1__number {
  flex: 0 0 auto;
  font-size: 4rem;
  line-height: 1;
  color: #F29600;
  padding-right: 0.2em;
}
@media only screen and (max-width: 768px) {
  .c-figlist1__number {
    font-size: 3rem;
  }
}
.c-figlist1__title > * {
  display: block;
}
.c-figlist1__title_small {
  font-size: 0.875rem;
}
@media only screen and (max-width: 768px) {
  .c-figlist1__title_small {
    font-size: 0.75rem;
  }
}
.c-figlist1__title_large {
  font-size: 1.5rem;
}
@media only screen and (max-width: 768px) {
  .c-figlist1__title_large {
    font-size: 1.25rem;
  }
}
.c-figlist1__caption {
  font-size: 0.875rem;
  margin-top: 1.4em;
}
.c-figlist1__image {
  margin-top: auto;
  padding-top: 20px;
}
.c-figlist1__image img {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
}
.c-figlist2, .c-figlist2--type2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 1.125rem;
  margin: -24px -12px 0;
}
@media only screen and (max-width: 768px) {
  .c-figlist2, .c-figlist2--type2 {
    font-size: 0.75rem;
    margin: -16px -8px 0;
  }
}
.c-figlist2--type2 {
  font-size: 0.875rem !important;
  margin: -24px -12px 0;
}
.c-figlist2 > *, .c-figlist2--type2 > * {
  flex: 1 1 25%;
  max-width: 25%;
}
@media only screen and (max-width: 768px) {
  .c-figlist2 > *, .c-figlist2--type2 > * {
    flex: 1 1 50%;
    max-width: 50%;
  }
}
.c-figlist2__item {
  display: flex;
  justify-content: center;
  padding: 24px 12px 0;
}
@media only screen and (max-width: 768px) {
  .c-figlist2__item {
    padding: 16px 8px 0;
  }
}
@media only screen and (max-width: 768px) {
  .c-figlist2__item.type2 {
    flex: 1 1 100%;
    max-width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .c-figlist2__item.type2 .c-figlist2__figure {
    flex: 1 1 50%;
    max-width: 50%;
  }
}
.c-figlist2__item.type3 {
  flex: 1 1 33.33%;
  max-width: 33.33%;
  padding: 24px 12px 0;
}
@media only screen and (max-width: 768px) {
  .c-figlist2__item.type3 {
    flex: 1 1 100%;
    max-width: 100%;
  }
}
.c-figlist2__item > * {
  flex: 1 1 100%;
}
.c-figlist2__figure {
  display: flex;
  flex-direction: column;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  position: relative;
}
.c-figlist2__figure:hover .c-figlist2__title {
  text-decoration: underline;
}
.c-figlist2__image {
  text-align: center;
}
.c-figlist2__title {
  font-size: 1.375rem;
  font-weight: bold;
  line-height: 1.4;
  margin-top: 0.8em;
}
.c-figlist2__caption, .c-figlist2__caption--type2 {
  font-weight: bold;
  text-align: center;
  margin-top: 0.8em;
}
.c-figlist2__caption--type2 {
  font-weight: normal;
  text-align: left;
}
.c-detaillist1 {
  display: flex;
  flex-wrap: wrap;
}
@media not all and (max-width: 768px) {
  .c-detaillist1 {
    margin: -64px -32px 0;
  }
}
.c-detaillist1 > * {
  flex: 1 1 50%;
  max-width: 50%;
}
@media only screen and (max-width: 768px) {
  .c-detaillist1 > * {
    flex: 1 1 100%;
    max-width: 100%;
  }
}
.c-detaillist1__item {
  display: flex;
  position: relative;
}
@media not all and (max-width: 768px) {
  .c-detaillist1__item {
    padding: 40px 20px 0;
  }
}
@media only screen and (max-width: 768px) {
  .c-detaillist1__item {
    display: block;
  }
}
@media only screen and (max-width: 768px) {
  .c-detaillist1__item:nth-child(n+2) {
    margin-top: 32px;
  }
}
@media only screen and (max-width: 768px) {
  .c-detaillist1__item[has-ribbon] {
    padding-top: 60px;
  }
}
.c-detaillist1__ribbon {
  text-align: center;
  position: absolute;
  z-index: 2;
}
@media not all and (max-width: 768px) {
  .c-detaillist1__ribbon {
    transform: translate(-20%, 0);
  }
}
@media only screen and (max-width: 768px) {
  .c-detaillist1__ribbon {
    width: 100%;
    transform: translateY(-60px);
  }
}
.c-detaillist1__box {
  display: flex;
  flex-direction: column;
  background: #FFFFFF;
  width: 100%;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.16);
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .c-detaillist1__box {
    padding: 24px;
  }
}
.c-detaillist1__box:hover .c-detaillist1__title {
  text-decoration: underline;
}
@media not all and (max-width: 768px) {
  .c-detaillist1__box[cover-image] {
    padding-left: calc(28.2258064516% + 30px);
  }
}
.c-detaillist1__box[cover-image] .c-detaillist1__title {
  font-size: 1.25rem;
}
.c-detaillist1__image {
  overflow: hidden;
}
@media not all and (max-width: 768px) {
  .c-detaillist1__image {
    width: 28.2258064516%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
}
@media only screen and (max-width: 768px) {
  .c-detaillist1__image {
    padding-bottom: 33.6vw;
    margin: -24px -24px 1em;
    position: relative;
  }
}
.c-detaillist1__image img {
  display: block;
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
@media only screen and (max-width: 768px) {
  .c-detaillist1__image img {
    top: auto;
    bottom: 0;
  }
}
.c-detaillist1__image:after {
  content: "";
  display: block;
  background: #FFFFFF;
  position: absolute;
}
@media not all and (max-width: 768px) {
  .c-detaillist1__image:after {
    width: 100%;
    height: 120%;
    right: -100%;
    bottom: 0;
    transform-origin: left bottom;
    transform: rotate(-3deg);
  }
}
@media only screen and (max-width: 768px) {
  .c-detaillist1__image:after {
    width: 120%;
    height: 20%;
    left: 0;
    bottom: -20%;
    transform-origin: left top;
    transform: rotate(-3deg);
  }
}
.c-detaillist1__inner1 {
  padding-bottom: 24px;
  border-bottom: solid 1px #E4E4E4;
}
.c-detaillist1__inner1 .c-detaillist1__caption {
  color: #808080;
  font-size: 0.9375rem;
}
.c-detaillist1__inner1 .c-detaillist1__title {
  font-size: 1.625rem;
  font-weight: bold;
  line-height: 1.4;
  margin: 0.4em 0;
}
@media only screen and (max-width: 768px) {
  .c-detaillist1__inner1 .c-detaillist1__title {
    font-size: 1.25rem;
  }
}
.c-detaillist1__inner1 .c-detaillist1__category {
  display: flex;
  flex-wrap: wrap;
  font-size: 0.75rem;
  font-weight: bold;
  line-height: 1.1;
  margin: -16px -8px 0;
}
.c-detaillist1__inner1 .c-detaillist1__category_item {
  padding: 16px 8px 0;
}
.c-detaillist1__inner1 .c-detaillist1__category_text {
  display: block;
  padding: 0.6em 1em;
  border-radius: 100vw;
}
.c-detaillist1__inner1 .c-detaillist1__category_text[data-style=orange] {
  color: #F29600;
  background: #FFEADA;
}
.c-detaillist1__inner1 .c-detaillist1__category_text[data-style=green] {
  color: #02B7B0;
  background: #E4F3EF;
}
.c-detaillist1__inner2 {
  padding-top: 24px;
}
.c-detaillist1__inner2 .c-detaillist1__description {
  font-size: 0.875rem;
  margin-left: 1.3em;
}
.c-detaillist1__inner2 .c-detaillist1__description_text {
  display: list-item;
  list-style: disc;
}
.c-detaillist1__inner2 .c-detaillist1__description_text:nth-child(n+2) {
  margin-top: 0.6em;
}
.c-detaillist1__inner2 .c-detaillist1__annotation {
  border-radius: 10px;
  padding: 8px 16px;
  background-color: #FFEADA;
  text-align: center;
  font-size: 0.875rem;
}
.c-detaillist1__link_array {
  display: flex;
  flex-direction: column;
  row-gap: 0.5em;
  margin-top: 1.2em;
}
.c-detaillist2 {
  display: flex;
  flex-wrap: wrap;
}
@media not all and (max-width: 768px) {
  .c-detaillist2 {
    margin: -64px -28px 0;
  }
}
.c-detaillist2 > * {
  flex: 1 1 50%;
  max-width: 50%;
}
@media only screen and (max-width: 768px) {
  .c-detaillist2 > * {
    flex: 1 1 100%;
    max-width: 100%;
  }
}
.c-detaillist2__item {
  display: flex;
}
@media not all and (max-width: 768px) {
  .c-detaillist2__item {
    padding: 64px 36px 0;
  }
}
@media only screen and (max-width: 768px) {
  .c-detaillist2__item {
    display: block;
  }
}
@media only screen and (max-width: 768px) {
  .c-detaillist2__item:nth-child(n+2) {
    margin-top: 32px;
  }
}
.c-detaillist2__box {
  display: flex;
  flex-direction: column;
  background: #FFFFFF;
  color: inherit;
  width: 100%;
  padding: 32px;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .c-detaillist2__box {
    padding: 24px;
  }
}
.c-detaillist2__box:hover {
  text-decoration: none;
}
.c-detaillist2__box:hover img {
  opacity: 1 !important;
}
.c-detaillist2__box:hover .c-detaillist2__title {
  text-decoration: underline;
}
.c-detaillist2__box:before, .c-detaillist2__box:after {
  content: "";
  display: block;
  width: 70px;
  height: 70px;
  position: absolute;
}
.c-detaillist2__box:before {
  border-top: solid 1px #F29600;
  border-right: solid 1px #F29600;
  top: 8px;
  right: 8px;
}
.c-detaillist2__box:after {
  border-left: solid 1px #F29600;
  border-bottom: solid 1px #F29600;
  bottom: 8px;
  left: 8px;
}
.c-detaillist2__icon {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-20%, -40%);
}
@media only screen and (max-width: 768px) {
  .c-detaillist2__icon {
    width: 60px;
  }
}
.c-detaillist2__inner1 .c-detaillist2__data {
  color: #F29600;
  font-size: 0.75rem;
  font-weight: bold;
  text-align: right;
}
@media not all and (max-width: 768px) {
  .c-detaillist2__inner1 .c-detaillist2__data {
    transform: translate(1em, -1em);
  }
}
.c-detaillist2__inner1 .c-detaillist2__data_inner {
  display: inline-block;
  text-align: left;
}
.c-detaillist2__inner1 .c-detaillist2__title {
  font-size: 1.625rem;
  font-weight: bold;
  line-height: 1.4;
  margin-top: 0.4em;
}
@media only screen and (max-width: 768px) {
  .c-detaillist2__inner1 .c-detaillist2__title {
    font-size: 1.25rem;
  }
}
.c-detaillist2__inner2 {
  padding-top: 24px;
}
.c-detaillist2__inner2 .c-detaillist2__description {
  font-size: 0.875rem;
  margin-left: 1.3em;
}
.c-detaillist2__inner2 .c-detaillist2__description_text {
  display: list-item;
  list-style: disc;
  margin-bottom: 0.6em;
}
.c-needsText1 {
  font-weight: bold;
  text-align: center;
  letter-spacing: -0.05em;
  font-size: 1.5rem;
  margin-bottom: 1.5em;
}
@media only screen and (max-width: 768px) {
  .c-needsText1 {
    font-size: 1rem;
  }
}
.c-needsText2 {
  text-align: center;
  font-weight: bold;
  font-size: 0.9375rem;
}
@media only screen and (max-width: 768px) {
  .c-needsText2 {
    font-size: 0.875rem;
  }
}
.c-needsSlider1 .slick-list {
  padding: 0 18.0555555556% !important;
}
@media only screen and (max-width: 768px) {
  .c-needsSlider1 .slick-list {
    padding: 0 8.5333333333% !important;
  }
}
.c-needsSlider1 .slick-track {
  display: flex !important;
  padding-bottom: 30px;
}
.c-needsSlider1 .slick-slide {
  display: flex !important;
}
.c-needsSlider1__item {
  display: flex !important;
  flex-wrap: wrap;
  padding: 0 12px;
  padding-top: 46px !important;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .c-needsSlider1__item {
    padding: 0 8px;
  }
}
.c-needsSlider1__item:hover .c-needsSlider1__title {
  text-decoration: underline;
}
.c-needsSlider1__item > * {
  flex: 1 1 100%;
  max-width: 100%;
}
.c-needsSlider1__icon {
  text-align: center;
  margin: auto;
  position: absolute;
  left: 0;
  right: 0;
  z-index: 2;
  transform: translateY(-46px);
}
.c-needsSlider1__box {
  display: flex;
  flex-direction: column;
  background: #FFFFFF;
  padding: 24px;
  padding-top: 34px;
  border-radius: 8px;
  box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.13);
}
.c-needsSlider1__title {
  font-weight: bold;
  margin-bottom: 1em;
}
.c-needsSlider1__info {
  display: flex;
  align-items: flex-start;
  font-size: 0.875rem;
  margin-bottom: auto;
  padding-bottom: 1em;
}
.c-needsSlider1__info > * {
  flex: 1 1 auto;
}
.c-needsSlider1__time {
  padding-right: 1em;
}
.c-needsSlider1__tag {
  flex: 0 0 auto;
  font-weight: bold;
  color: #FFFFFF;
  white-space: nowrap;
  background: #02B7B0;
  padding: 0 0.6em;
  border-radius: 8px;
}
.c-needsSlider1__link {
  font-size: 0.875rem;
  border-top: solid 1px #E4E4E4;
}
.c-pageBnrBlock {
  text-align: center;
}
@media not all and (max-width: 768px) {
  .c-pageBnrBlock {
    padding: 40px;
  }
}
.c-pageBnrBlock__link {
  display: inline-block;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .c-pageBnrBlock__link {
    padding-top: 50px;
    width: 100%;
  }
}
.c-pageBnrBlock__ribbon {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
}
@media not all and (max-width: 768px) {
  .c-pageBnrBlock__ribbon {
    transform: translate3d(15%, 6%, 2px);
  }
}
@media only screen and (max-width: 768px) {
  .c-pageBnrBlock__ribbon {
    width: 100%;
  }
}
.c-pageBnrBlock__ribbon img {
  opacity: 1 !important;
}
@media only screen and (max-width: 768px) {
  .c-pageBnrBlock__ribbon img {
    max-width: 214px;
  }
}

[data-slider-style] .slick-track, [data-slider-style] .slick-slide {
  display: flex !important;
}
[data-slider-style="1"] .slick-list {
  padding-left: 11.7333333333vw !important;
  padding-right: 11.7333333333vw !important;
}
[data-slider-style="1"] .slick-slide {
  padding: 0 12px;
}

[data-slider-style="2"] .slick-list {
  padding-left: 14.0977443609vw !important;
  padding-right: 14.0977443609vw !important;
}
@media only screen and (max-width: 768px) {
  [data-slider-style="2"] .slick-list {
    padding-left: 11.7333333333vw !important;
    padding-right: 11.7333333333vw !important;
  }
}
[data-slider-style="2"] .slick-slide {
  padding: 0 20px;
}

.p-content1 {
  max-width: 974px;
  box-sizing: border-box;
  margin: 0 auto;
  box-shadow: 7px 4px 6px 0 rgba(0, 0, 0, 0.16);
  border-radius: 29px;
  background-color: #fff;
  padding: 55px 100px;
}
@media only screen and (max-width: 768px) {
  .p-content1 {
    padding: 35px 20px;
    margin: 0 20px;
  }
}
.p-content1._w720 {
  max-width: 720px;
}
.p-content1._w1200 {
  max-width: 1200px;
}
.p-content1._w1250 {
  max-width: 1250px;
}

.p-content1 {
  padding: 50px 30px 20px 50px;
}
.p-content1 .text-graph {
  display: flex;
  gap: 0 20px;
  font-size: 20px;
}
.p-content1 .text-graph .c-orange {
  font-size: 26px;
}
.p-content1 .text-graph .graph {
  flex: 0 0 400px;
}
.p-content1 .text-graph .small {
  margin-top: 2em;
  font-size: 16px;
  color: #808080;
}
@media only screen and (max-width: 768px) {
  .p-content1 .text-graph {
    flex-direction: column;
    align-items: center;
  }
}

.p-article {
  overflow: hidden;
}

@media only screen and (max-width: 768px) {
  .p-scroll_wrap {
    overflow-x: scroll;
    margin-left: 20px;
  }
  .p-scroll_wrap::-webkit-scrollbar {
    width: 4px;
    height: 4px;
  }
  .p-scroll_wrap::-webkit-scrollbar-thumb {
    background: #707070;
    border-radius: 5px;
  }
  .p-scroll_wrap::-webkit-scrollbar-track {
    background: #cccccc;
    border-radius: 5px;
  }
}

.p-slide {
  display: flex;
  max-width: 1040px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
@media only screen and (max-width: 768px) {
  .p-slide {
    padding: 0 20px;
    margin-top: -20px;
  }
  .p-slide .slick-slide {
    padding: 20px;
  }
}
.p-slide._device {
  flex-wrap: wrap;
  max-width: 980px;
}
.p-slide._device .slick-slide {
  padding: 20px 0;
}
.p-slide._device .device {
  width: 50%;
  position: relative;
  padding-bottom: 60px;
  box-sizing: border-box;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .p-slide._device .device {
    padding-bottom: 0;
    max-width: 305px;
    margin: 0 auto;
    display: block !important;
  }
}
@media not all and (max-width: 768px) {
  .p-slide._device .device:nth-child(1) {
    border-bottom: 5px solid #fff;
  }
  .p-slide._device .device:nth-child(2) {
    border-left: 5px solid #fff;
    border-bottom: 5px solid #fff;
  }
  .p-slide._device .device:nth-child(4) {
    border-left: 5px solid #fff;
  }
  .p-slide._device .device:nth-child(2n) {
    padding-left: 60px;
  }
  .p-slide._device .device:nth-child(2n):before {
    right: 0;
  }
  .p-slide._device .device:nth-child(2n+1) {
    padding-right: 60px;
  }
  .p-slide._device .device:nth-child(n+3) {
    padding-top: 60px;
  }
  .p-slide._device .device:nth-child(n+3):before {
    top: 90px;
  }
}
.p-slide._device .device:before {
  content: "";
  position: absolute;
  display: block;
  width: calc(100% - 60px);
  top: 30px;
  background: #F29600;
  border-radius: 56px;
  height: 112px;
}
@media only screen and (max-width: 768px) {
  .p-slide._device .device:before {
    height: 60px;
    top: 15px;
    width: 100%;
  }
}
.p-slide._device .device p {
  position: relative;
  z-index: 2;
  overflow: hidden;
  font-size: 14px;
}
@media only screen and (max-width: 768px) {
  .p-slide._device .device p {
    font-size: 12px;
    padding-right: 15px;
  }
}
.p-slide._device .device h3 {
  color: #fff;
  font-weight: bold;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  height: 112px;
  overflow: hidden;
  margin: 30px 0 20px;
}
@media only screen and (max-width: 768px) {
  .p-slide._device .device h3 {
    height: 60px;
    margin-top: 15px;
    margin-bottom: 15px;
    font-size: 13px;
  }
}
.p-slide._device .device img {
  position: relative;
  z-index: 2;
  float: left;
  margin-right: 20px;
}
@media only screen and (max-width: 768px) {
  .p-slide._device .device img {
    width: 128px;
    margin-right: 10px;
  }
}
.p-slide .slick-arrow {
  width: 52px;
  height: 52px;
  outline: none !important;
  border: none;
  cursor: pointer;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  /* Safari用 */
  transform: translate(0, -50%);
  z-index: 98;
  box-shadow: 0px 3px 4px 0 rgba(0, 0, 0, 0.16);
  border-radius: 50%;
  text-indent: -9999px;
}
.p-slide .slick-arrow.slick-next {
  background: url(../img/cmn/white_next.svg) no-repeat center center/52px auto;
  right: 15px;
}
.p-slide .slick-arrow.slick-prev {
  background: url(../img/cmn/white_prev.svg) no-repeat center center/52px auto;
  left: 15px;
}
.p-slide._col3 .post {
  width: 31%;
  padding: 40px 25px 110px;
  box-shadow: 0px 10px 30px 0 rgba(0, 0, 0, 0.16);
}
@media only screen and (max-width: 768px) {
  .p-slide._col3 .post {
    box-shadow: 0px 0px 20px 0 rgba(0, 0, 0, 0.16);
  }
}
.p-slide._col3 .post:nth-child(n+2) {
  margin-left: 3.5%;
}
.p-slide._col3 .post h3 {
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  display: block;
  padding: 30px 0 25px;
  line-height: 1.4;
}
.p-slide._col3 .post h3.seminar_title {
  font-size: 20px;
}
@media only screen and (max-width: 768px) {
  .p-slide._col3 .post h3.seminar_title {
    font-size: 18px;
  }
}
.p-slide._col4 .post {
  width: 24%;
  padding: 0;
  position: relative;
  color: #393E4C;
  padding: 0 0 20px;
}
.p-slide._col4 .post:nth-child(n+2) {
  margin-left: 1.33%;
}
.p-slide._col4 .post .day {
  font-size: 12px;
  display: block;
  padding: 20px 15px 0;
}
.p-slide._col4 .post h3 {
  font-size: 16px;
  padding: 0 15px 20px;
}
.p-slide._col4 .post p {
  display: block;
  padding: 0 15px;
}
.p-slide._col4 .post:hover {
  text-decoration: none;
}
.p-slide._col4 .post:hover h3 {
  text-decoration: underline;
}
.p-slide._col4 .post .cg {
  position: absolute;
  top: 0;
  left: 0;
  background: #E84715;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  padding: 2px 15px;
  z-index: 2;
}
.p-slide .post {
  box-sizing: border-box;
  background: #fff;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .p-slide .post {
    max-width: 320px;
    margin: 0 auto;
    display: block !important;
  }
}
.p-slide .post h3 {
  font-weight: bold;
  display: block;
  line-height: 1.4;
}
.p-slide .post .c-btn {
  position: absolute;
  bottom: 30px;
  left: 50%;
  margin: 0;
  -webkit-transform: translate(-50%, 0);
  /* Safari用 */
  transform: translate(-50%, 0);
}
.p-slide .post img {
  width: 100%;
  height: auto;
}
.p-slide .post p {
  font-size: 14px;
}
.p-slide .apri {
  width: 33%;
  text-align: center;
}
.p-slide .apri img {
  display: block;
  margin: 0 auto;
}
.p-slide .apri h3 {
  font-size: 16px;
  font-weight: bold;
  margin: 0 0 20px;
}
.p-slide .apri p {
  font-size: 14px;
  margin: 20px 0 0;
}

.l-section.p-cta2-wrap {
  background-color: #fafafa;
}

.p-cta2 {
  padding-top: 40px;
  padding-bottom: 40px;
  max-width: 820px;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .p-cta2 {
    padding: 0 20px;
  }
}
.p-cta2 .overflow {
  display: flex;
  align-items: center;
  overflow: hidden;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .p-cta2 .overflow {
    max-width: 400px;
  }
}
.p-cta2 p {
  text-align: center;
  margin: 0 0 30px;
  font-size: 28px;
  font-weight: bold;
}
.p-cta2 p small {
  font-size: 16px;
  display: block;
}
@media only screen and (max-width: 768px) {
  .p-cta2 p {
    font-size: 18px;
    margin: 0 0 20px;
  }
  .p-cta2 p small {
    font-size: 14px;
  }
}
.p-cta2 .cta_link {
  text-align: center;
  margin: 0 0 30px;
}
@media only screen and (max-width: 768px) {
  .p-cta2 .cta_link {
    margin: 0 0 5px;
  }
}
.p-cta2 .cta_link .c-btn {
  line-height: 80px;
  max-width: 380px;
  border-radius: 40px;
  font-size: 22px;
}
@media only screen and (max-width: 768px) {
  .p-cta2 .cta_link .c-btn {
    font-size: 16px;
    line-height: 42px;
    max-width: 240px;
  }
}
.p-cta2 .qa_link {
  float: right;
  color: #E84715;
  font-weight: bold;
  width: 20%;
  border-left: 1px solid #cccccc;
  display: inline-block;
  text-align: center;
  font-size: 16px;
}
@media only screen and (max-width: 768px) {
  .p-cta2 .qa_link {
    font-size: 14px;
    width: 30%;
    margin: 5px auto 0;
    display: block;
    line-height: 2.8;
    padding: 0 0 4px;
  }
}
.p-cta2 .cta_tel {
  float: left;
  font-weight: bold;
  width: 80%;
  font-size: 16px;
}
@media only screen and (max-width: 768px) {
  .p-cta2 .cta_tel {
    width: 69%;
  }
}
.p-cta2 .cta_tel dl {
  overflow: hidden;
}
.p-cta2 .cta_tel dl dt {
  float: left;
  font-size: 18px;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .p-cta2 .cta_tel dl dt {
    font-size: 10px;
    line-height: 50px;
  }
}
.p-cta2 .cta_tel dl dd {
  float: right;
  vertical-align: top;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .p-cta2 .cta_tel dl dd {
    float: left;
    margin-left: 10px;
  }
}
.p-cta2 .cta_tel dl dd .day {
  font-size: 14px;
  line-height: 34px;
  display: inline-block;
  float: right;
}
@media only screen and (max-width: 768px) {
  .p-cta2 .cta_tel dl dd .day {
    float: none;
    display: block;
    font-size: 10px;
    text-align: center;
    line-height: 1.4;
  }
}
.p-cta2 .cta_tel dl dd .c-num {
  font-size: 34px;
  line-height: 34px;
  display: inline-block;
  padding: 0 0 0 20px;
  background: url(../img/cmn/phone.svg) no-repeat center left/16px auto;
}
@media only screen and (max-width: 768px) {
  .p-cta2 .cta_tel dl dd .c-num {
    font-size: 16px;
    line-height: 1.4;
    padding: 0 0 0 10px;
    background: url(../img/cmn/phone.svg) no-repeat center left/8px auto;
  }
}

.p-step {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  .p-step {
    flex-wrap: wrap;
  }
}
.p-step li {
  font-size: 16px;
  background: #fff;
  text-align: center;
  width: 23%;
  padding: 40px 0 30px;
  box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.16);
}
@media only screen and (max-width: 768px) {
  .p-step li {
    width: 48%;
    font-size: 14px;
    padding: 30px 0;
  }
  .p-step li:nth-child(n+3) {
    margin-top: 20px;
  }
}
.p-step li img {
  display: block;
  margin: 0 auto 5px;
}

.p-content_col2 {
  overflow: hidden;
  display: flex;
}
@media only screen and (max-width: 768px) {
  .p-content_col2 {
    display: block;
  }
}
.p-content_col2 + .p-content_col2 {
  margin-top: 30px;
}
@media not all and (max-width: 768px) {
  .p-content_col2 > div:nth-child(2n).img {
    box-sizing: border-box;
    padding-left: 30px;
    padding-right: 0;
  }
  .p-content_col2 > div:nth-child(2n+1).img {
    box-sizing: border-box;
    padding-right: 30px;
    padding-left: 0;
  }
}
.p-content_col2._rev {
  flex-direction: row-reverse;
}
@media not all and (max-width: 768px) {
  .p-content_col2._rev > div:nth-child(2n).img {
    box-sizing: border-box;
    padding-right: 30px;
  }
  .p-content_col2._rev > div:nth-child(2n+1).img {
    box-sizing: border-box;
    padding-left: 30px;
  }
}
.p-content_col2 .img {
  width: 50%;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .p-content_col2 .img {
    width: 100%;
    padding: 15px 0 0;
  }
}
.p-content_col2 .txt {
  width: 50%;
  font-size: 14px;
}
@media only screen and (max-width: 768px) {
  .p-content_col2 .txt {
    width: 100%;
  }
}
.p-content_col2 h3 {
  font-size: 24px;
  margin: 0 0 20px;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .p-content_col2 h3 {
    font-size: 22px;
    margin: 0 0 10px;
  }
}

.p-category {
  overflow: hidden;
  text-align: center;
  margin: 0 0 45px;
}
@media only screen and (max-width: 768px) {
  .p-category {
    margin: 0 0 30px;
  }
}
.p-category > a {
  border: 1px solid #E84715;
  color: #E84715;
  padding: 6px 20px;
  min-width: 120px;
  margin: 0 15px 15px;
  display: inline-block;
  border-radius: 30px;
  font-size: 16px;
  font-weight: bold;
  box-sizing: border-box;
}
@media only screen and (max-width: 768px) {
  .p-category > a {
    margin: 0 3px 10px;
    min-width: 116px;
    padding: 6px 15px;
  }
}
.p-category > a:hover, .p-category > a.active {
  text-decoration: none;
  background: #E84715;
  color: #fff;
}

.p-post_list {
  overflow: hidden;
}

.p-card {
  color: #393E4C;
  background: #fff;
  padding: 0 0 15px;
  display: block;
}
.p-card:hover {
  text-decoration: none;
}
@media only screen and (max-width: 768px) {
  .p-card {
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
  }
  .p-card + .p-card {
    margin-top: 20px;
  }
}
@media not all and (max-width: 768px) {
  .p-card {
    width: 32%;
    float: left;
  }
  .p-card:nth-child(n+4) {
    margin-top: 20px;
  }
  .p-card:nth-child(3n) {
    float: right;
  }
  .p-card:nth-child(3n+1) {
    margin-right: 2%;
    clear: both;
  }
}
.p-card._case .more1 {
  width: 100%;
  margin: 20px 0 0;
  max-width: 100%;
}
.p-card._case h2 {
  color: #E84715;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.4;
  padding: 10px 0;
}
.p-card._case h2 a {
  color: #E84715;
}
.p-card._case .name {
  font-size: 16px;
  font-weight: bold;
  margin: 0 0 15px;
}
.p-card._case dl {
  font-size: 12px;
  overflow: hidden;
}
.p-card._case dl dt {
  width: 60px;
  float: left;
  clear: both;
}
.p-card._case dl dd {
  overflow: hidden;
}
.p-card._post1 {
  margin-bottom: 41px;
}
@media only screen and (max-width: 768px) {
  .p-card._post1 {
    margin-bottom: 25px;
  }
}
.p-card._post1 img {
  width: 100%;
}
.p-card._post1 .title1 {
  color: #E84715;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.4;
  padding: 30px 0 0;
}
.p-card._post1 .title1 a {
  color: #E84715;
}
.p-card._post1 .text1 {
  padding: 10px 0 0;
  font-size: 12px;
}
.p-card._post1 .text1._big1 {
  font-size: 14px;
}
.p-card._post1 .more1 {
  width: 100%;
  margin: 20px 0 0;
  max-width: 100%;
}

.p-main:after {
  content: " ";
  display: block;
  clear: both;
}
.p-main_content1 {
  box-sizing: border-box;
  position: relative;
  width: 58.33%;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 1360px) {
  .p-main_content1 {
    padding-left: 40px;
  }
}
@media only screen and (max-width: 768px) {
  .p-main_content1 {
    float: none;
    width: auto;
    padding-left: 0;
    padding-bottom: 40px;
  }
}
.p-main_side1 {
  float: right;
  width: 36.66%;
}
@media only screen and (max-width: 768px) {
  .p-main_side1 {
    float: none;
    width: auto;
    position: relative;
    padding-top: 35px;
  }
  .p-main_side1:before {
    content: "";
    display: block;
    width: 214px;
    height: 1px;
    background: #e2dfdf;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
}

.p-side + .p-side {
  margin-top: 56px;
}
@media only screen and (max-width: 768px) {
  .p-side + .p-side {
    margin-top: 30px;
  }
}
.p-side .c-side_h2 {
  margin-bottom: 5px;
}
.p-side .child1 {
  display: table;
  width: 100%;
  border-bottom: 1px solid #e2dfdf;
  color: #e84715;
  padding: 15px 0;
}
.p-side .child1:after {
  content: " ";
  display: block;
  clear: both;
}
.p-side .title1 {
  font-size: 14px;
  font-weight: bold;
}
.p-side .day {
  color: #393E4C;
  font-size: 14px;
  margin: 0;
  line-height: 1.4;
}
.p-side .desc1,
.p-side .image1 {
  display: table-cell;
  vertical-align: top;
}
@media only screen and (max-width: 768px) {
  .p-side .desc1,
.p-side .image1 {
    vertical-align: middle;
  }
}
.p-side .desc1 {
  padding-right: 10px;
}
@media only screen and (max-width: 768px) {
  .p-side .desc1 {
    padding-right: 47px;
  }
}
.p-side .image1 {
  width: 100px;
}
@media only screen and (max-width: 768px) {
  .p-side .image1 {
    width: 117px;
  }
}
.p-side .image1 img {
  width: 100%;
}
.p-side .c-btn {
  display: block;
  margin: 30px auto 0;
  max-width: 220px;
}
@media only screen and (max-width: 768px) {
  .p-side .c-btn {
    margin: 20px auto 0;
  }
}
.p-side._post3 .title1 {
  padding: 0 0 5px;
}
.p-side._post3 .cg {
  color: #393E4C;
  background: #f2f2f2;
  line-height: 1.4;
  min-width: 120px;
  display: inline-block;
  padding: 3px 10px 4px;
  font-size: 12px;
  text-align: center;
}
.p-side._post3 .image1 {
  padding: 10px;
}
.p-side._post2 .title1 {
  padding: 0 0 15px;
}
.p-side._post2 .company {
  color: #393E4C;
  font-size: 14px;
  line-height: 1.4;
}
.p-side._category1 li {
  border-bottom: 1px solid #e2dfdf;
  font-size: 16px;
  font-weight: bold;
}
.p-side._category1 li a {
  display: block;
  padding: 13px 0;
  color: #393e4c;
}

.p-form_wrap .f-title {
  font-weight: bold;
  margin: 0 0 10px;
}
.p-form_wrap .f-title .his {
  background: #e8760e;
  color: #fff;
  font-size: 10px;
  display: inline-block;
  padding: 1px 10px;
  margin-left: 10px;
}
.p-form_wrap .box {
  margin-bottom: 30px;
}
.p-form_wrap textarea {
  height: 90px;
}
@media only screen and (max-width: 768px) {
  .p-form_wrap textarea {
    height: 60px;
  }
}
.p-form_wrap select, .p-form_wrap .js-formCheckSelect {
  background: url(../img/cmn/select_arrow.svg) right center no-repeat #fff;
}
.p-form_wrap .datepicker1 {
  background: url(../img/cmn/form_calendar.svg) right center no-repeat #fff;
}
.p-form_submit {
  text-align: center;
}
.p-form_submit input {
  max-width: 440px;
  font-size: 22px;
  padding: 24px 15px;
}
.p-form_submit input[type=submit]:disabled {
  color: #cccccc;
  background: #f2f2f2;
  border: 1px solid #f2f2f2;
}
.p-form_submit2 {
  text-align: center;
}
.p-form_submit2 input {
  max-width: 230px;
  font-size: 16px;
  padding: 15px 15px;
  border-radius: 100px;
}
@media only screen and (max-width: 768px) {
  .p-form_submit2 input {
    max-width: 170px;
    padding: 5px 15px;
  }
}
.p-form_agree {
  background: #F29600;
  margin-bottom: 26px;
  font-weight: 500;
  font-size: 16px;
}
@media only screen and (max-width: 768px) {
  .p-form_agree {
    margin-bottom: 35px;
  }
}
.p-form_agree .his {
  background: #F29600;
  color: #fff;
  font-size: 12px;
  display: inline-block;
  padding: 1px 10px;
  margin-left: 10px;
}

.js-formCheckSelect {
  background: url(../img/cmn/select_arrow.svg) right center no-repeat #fff;
  padding: 10px;
  padding-right: 2em;
  cursor: pointer;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.js-formCheckItems {
  background: #FFFFFF;
  transform-origin: top center;
  transition: transform 0.3s;
  border: solid 1px #CDCDCD;
}
.js-formCheckItems[data-select=close] {
  height: 0;
  padding: 0;
  margin: 0;
  transform: scaleY(0);
}
.js-formCheckItems[data-select=open] {
  height: auto;
  transform: scaleY(1);
}
.js-formCheckItems .wpcf7-form-control {
  display: block;
}
.js-formCheckItems .wpcf7-list-item {
  display: block;
  margin: 0;
}
.js-formCheckItems .wpcf7-list-item:nth-child(n+2) {
  border-top: solid 1px #CDCDCD;
}
.js-formCheckItems .wpcf7-list-item label {
  display: block;
  padding: 0.6em;
}

.p-contact_wrap {
  max-width: 849px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 60px;
}
@media only screen and (max-width: 768px) {
  .p-contact_wrap {
    padding-bottom: 40px;
  }
}
.p-contact_wrap._narrow1 {
  max-width: 680px;
}
.p-contact_fv {
  font-weight: 700;
  font-size: 36px;
  padding-top: 62px;
  margin-bottom: 50px;
}
@media only screen and (max-width: 768px) {
  .p-contact_fv {
    padding-top: 40px;
    font-size: 22px;
    margin-bottom: 30px;
  }
}
.p-contact_text1 {
  max-width: 436px;
  margin-bottom: 35px;
}
@media only screen and (max-width: 768px) {
  .p-contact_text1 {
    max-width: 100%;
    margin-bottom: 26px;
  }
}
.p-contact_note1 {
  font-size: 16px;
  margin-bottom: 24px;
}
@media only screen and (max-width: 768px) {
  .p-contact_note1 {
    font-size: 14px;
  }
}

.p-thanks_fv {
  font-size: 30px;
  margin-bottom: 20px;
}
.p-thanks_info {
  font-size: 36px;
  line-height: 1.7;
}
@media only screen and (max-width: 768px) {
  .p-thanks_info {
    font-size: 22px;
  }
}
.p-thanks_text1 {
  margin-bottom: 40px;
  margin-top: 40px;
}
@media only screen and (max-width: 768px) {
  .p-thanks_text1 {
    margin-bottom: 30px;
  }
}
.p-thanks_slide iframe {
  width: 100%;
  aspect-ratio: 960/569;
}
.p-thanks_ycbm {
  font-weight: bold;
  font-size: 24px;
}
.p-thanks_ycbm_main {
  font-size: 30px;
}
@media only screen and (max-width: 768px) {
  .top_thanks .p-thanks_ycbm_main {
    font-size: 24px;
  }
}
.p-thanks_ycbm_sub {
  margin-bottom: 20px;
}
@media only screen and (max-width: 768px) {
  .top_thanks .p-thanks_ycbm_sub {
    font-size: 18px;
  }
}
.p-thanks_red {
  color: #e2371a;
  font-weight: bold;
}
.p-thanks_link {
  color: #001fd1;
  font-weight: bold;
  text-decoration: underline;
  margin-bottom: 30px;
}
.p-thanks_link .c-btn {
  font-size: 22px;
  padding-left: 2em;
  padding-right: 2em;
  width: auto;
  max-width: 100%;
}
@media only screen and (max-width: 768px) {
  .p-thanks_link .c-btn {
    font-size: 18px;
  }
}

[data-js-tel] a {
  color: inherit;
  text-decoration: underline;
}

/*アニメーション*/
.sa {
  opacity: 0;
  transition: all 0.6s ease;
}

.sa--lr {
  transform: translate(-100px, 0);
}

.sa--rl {
  transform: translate(100px, 0);
}

.sa--up {
  transform: translate(0, 100px);
}

.sa--down {
  transform: translate(0, -100px);
}

.sa--scaleUp {
  transform: scale(0.5);
}

.sa--scaleDown {
  transform: scale(1.5);
}

.sa--rotateL {
  transform: rotate(180deg);
}

.sa--rotateR {
  transform: rotate(-180deg);
}

.sa--imgl {
  width: 0;
  overflow: hidden;
  transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) !important;
  animation-fill-mode: both;
  background-size: cover;
  background-position: left top;
  background-repeat: no-repeat;
}

.sa.show {
  opacity: 1;
  transform: none;
}
.sa.show.sa--imgl {
  width: 100%;
}

.mw_wp_form.mw_wp_form_confirm .mw_confirm-hidden {
  display: none;
}
.mw_wp_form:not(.mw_wp_form_confirm) .mw_confirm-show {
  display: none;
}

/* pagenavi */
.wp-pagenavi {
  clear: both;
  padding: 5px 10px;
  text-align: center;
}
.wp-pagenavi a,
.wp-pagenavi span {
  display: inline-block;
  text-decoration: none;
  padding: 3px 5px 1px;
  margin: 0 3px;
  border: 1px solid #000;
  transition: 0.5s;
}
.wp-pagenavi a:hover,
.wp-pagenavi span.current {
  border-color: #000;
  background: #000;
  color: #fff;
}
.wp-pagenavi span.current {
  font-weight: normal;
}

.nav-links {
  text-align: center;
  padding: 60px 0 0;
}
@media only screen and (max-width: 768px) {
  .nav-links {
    padding: 30px 0 0;
  }
}

ul.page-numbers {
  overflow: hidden;
  display: flex;
  text-align: center;
  justify-content: center;
  margin: 0 auto;
  font-weight: bold;
  font-size: 16px;
}
ul.page-numbers .page-numbers {
  line-height: 50px;
  width: 50px;
  border: 1px solid #CCCCCC;
  border-radius: 4px;
  display: inline-block;
  margin: 0 3px;
}
@media only screen and (max-width: 768px) {
  ul.page-numbers .page-numbers {
    font-size: 12px;
    line-height: 30px;
    width: 30px;
    margin: 0 2px;
  }
}
ul.page-numbers .page-numbers.prev {
  margin-right: 60px;
  text-indent: -9999px;
  background: #fff url(../img/cmn/prev.svg) no-repeat center center;
}
ul.page-numbers .page-numbers.prev:hover {
  background: #E84715 url(../img/cmn/prev_hover.svg) no-repeat center center;
}
@media only screen and (max-width: 768px) {
  ul.page-numbers .page-numbers.prev {
    margin-right: 20px;
    background-size: 6px auto;
  }
  ul.page-numbers .page-numbers.prev:hover {
    background-size: 6px auto;
  }
}
ul.page-numbers .page-numbers.next {
  margin-left: 60px;
  text-indent: -9999px;
  background: #fff url(../img/cmn/next.svg) no-repeat center center;
}
ul.page-numbers .page-numbers.next:hover {
  background: #E84715 url(../img/cmn/next_hover.svg) no-repeat center center;
}
@media only screen and (max-width: 768px) {
  ul.page-numbers .page-numbers.next {
    margin-left: 20px;
    background-size: 6px auto;
  }
  ul.page-numbers .page-numbers.next:hover {
    background-size: 6px auto;
  }
}
ul.page-numbers a {
  color: #E84715;
}
ul.page-numbers a:hover {
  text-decoration: none;
}
ul.page-numbers .current,
ul.page-numbers a:hover {
  background: #E84715;
  color: #fff;
}

/*single markup style*/
.post_text {
  overflow: hidden;
}
.post_text p {
  margin-bottom: 25px;
  line-height: 1.6;
}
.post_text img {
  max-width: 100%;
  height: auto;
}
.post_text img.alignright {
  float: right;
  margin: 0 0 15px 15px;
  display: block;
}
.post_text img.alignleft {
  float: left;
  margin: 0 15px 15px 0;
  display: block;
}
.post_text img.aligncenter {
  display: block;
  margin: 0 auto 15px;
}
.post_text p,
.post_text table,
.post_text ul {
  position: relative;
  z-index: 2;
}
.post_text h1 {
  font-size: 36px;
  margin: 0 0 35px;
}
.post_text h2 {
  font-size: 28px;
  padding: 5px 10px;
  font-weight: bold;
  overflow: hidden;
  position: relative;
  /* margin-top: -90px; */
  margin-bottom: 30px;
  /* padding-top: 90px; */
  z-index: 1;
  background: #F2F2F2;
}
.post_text h2:before {
  content: "";
  position: absolute;
  display: block;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 90px);
  background: #F2F2F2;
  z-index: -1;
}
@media only screen and (max-width: 768px) {
  .post_text h2:before {
    height: calc(100% - 70px);
  }
}
.post_text h3 {
  font-size: 22px;
  font-weight: bold;
  position: relative;
  margin-bottom: 30px;
  padding-left: 20px;
  z-index: 1;
}
.post_text h3:before {
  content: "";
  position: absolute;
  display: block;
  bottom: 0;
  left: 0;
  width: 10px;
  height: calc(100% - 90px);
  background: #88888888;
  z-index: -1;
}
@media only screen and (max-width: 768px) {
  .post_text h3:before {
    height: calc(100% - 70px);
  }
}
.post_text h4 {
  font-size: 20px;
  font-weight: bold;
  position: relative;
  margin-bottom: 20px;
  z-index: 1;
}
.post_text h5 {
  font-size: 18px;
  font-weight: bold;
  position: relative;
  margin-bottom: 20px;
  z-index: 1;
}
.post_text td {
  padding: 10px;
  border: 1px solid;
}
.post_text table {
  margin-bottom: 25px;
}
.post_text ul,
.post_text ol {
  padding-left: 1.3em;
  margin-bottom: 25px;
}
.post_text li {
  list-style-type: inherit;
}
.post_text ul li {
  margin-bottom: 10px;
  line-height: 1.4;
}
.post_text ol li {
  margin-bottom: 10px;
  line-height: 1.4;
}
.post_text a {
  text-decoration: underline;
  color: #999;
}
.post_text a.wp-block-button__link {
  color: #FFF;
}
@media only screen and (max-width: 1200px) {
  .post_text img {
    float: none;
    margin: 0 auto;
    display: block;
  }
  .post_text img.emoji {
    display: inline !important;
  }
  .post_text table {
    width: 100% !important;
  }
}

.no-content {
  text-align: center;
  margin: 60px 0 0;
}

/*全画面*/
.g-wrapper {
  overflow: hidden;
  min-width: 1040px;
}
@media only screen and (max-width: 768px) {
  .g-wrapper {
    min-width: 414px;
  }
}

/*ヘッダー*/
#g-header {
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100%;
  height: 90px;
  font-weight: bold;
  min-width: 1040px;
  transition: all 0.5s;
}
@media only screen and (max-width: 768px) {
  #g-header {
    min-width: 414px;
    height: 56px;
    padding-bottom: 10px;
    background: none;
  }
  #g-header._open {
    left: -220px;
  }
}
#g-header .inner {
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  padding: 0 20px;
}
@media only screen and (max-width: 768px) {
  #g-header .inner {
    height: 71px;
    background: #fff;
    box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
  }
}
#g-header .nav__top {
  float: right;
  overflow: hidden;
  text-align: right;
  height: 40px;
}
@media only screen and (max-width: 768px) {
  #g-header .nav__top {
    display: none;
  }
}
#g-header .nav__top a {
  display: inline-block;
  line-height: 32px;
  margin: 0 0 0 6px;
}
#g-header .nav__top .c-grey {
  font-size: 12px;
  padding: 0 10px;
}
#g-header .nav__top .c-btn {
  width: 170px;
  height: 38px;
  text-align: center;
  border-radius: 0px;
  font-size: 14px;
}
#g-header .tel-sp {
  display: none;
}
@media only screen and (max-width: 768px) {
  #g-header .tel-sp {
    display: block;
    position: absolute;
    top: 13px;
    left: 174px;
  }
}
#g-header .tel-sp .tel {
  float: right;
  text-align: right;
  margin: 0 0 0 20px;
}
#g-header .tel-sp .tel .day {
  font-size: 12px;
  line-height: 1;
}
#g-header .tel-sp .tel .num {
  font-size: 16px;
  padding: 0 0 0 15px;
  background: url(../img/cmn/phone.svg) no-repeat center left/10px auto;
}
#g-header .nav__bottom {
  float: right;
  clear: both;
  height: 50px;
}
@media only screen and (max-width: 768px) {
  #g-header .nav__bottom {
    display: none;
  }
}
#g-header .nav__bottom .tel {
  float: right;
  text-align: right;
  margin: 0 0 0 20px;
}
#g-header .nav__bottom .tel .day {
  font-size: 12px;
  line-height: 1;
}
#g-header .nav__bottom .tel .num {
  font-size: 16px;
  padding: 0 0 0 15px;
  background: url(../img/cmn/phone.svg) no-repeat center left/10px auto;
}
#g-header .nav__bottom .nav_wrap {
  display: flex;
}
#g-header .nav__bottom .nav_wrap a {
  color: #393E4C;
  font-size: 16px;
  margin: 0 10px;
  padding: 10px 0 0;
  height: 50px;
  box-sizing: border-box;
}
#g-header .nav__bottom .nav_wrap a.active {
  color: #DA6115;
  border-bottom: 4px solid #DA6115;
}
#g-header .nav__bottom .nav_wrap a:hover {
  color: #DA6115;
}
#g-header .sp_menu {
  position: absolute;
  top: 0;
  right: 15px;
  cursor: pointer;
  padding: 20px 19px;
}
#g-header .sp_menu img {
  display: block;
  width: 22px;
}
#g-header .sp_menu_open {
  position: fixed;
  right: -220px;
  top: 0;
  background: #393E4C;
  padding: 10px 10px 30px;
  width: 200px;
  height: 100%;
  overflow-y: scroll;
  transition: all 0.5s;
}
#g-header .sp_menu_open._open {
  right: 0;
}
#g-header .sp_menu_open .c-btn {
  width: 100%;
  margin: 0 0 20px 0;
}
#g-header .sp_menu_open .link {
  padding: 0 0 20px;
}
#g-header .sp_menu_open .nav_wrap a {
  padding: 8px 10px 8px 20px;
  color: #fff;
  display: block;
}
#g-header .sp_menu_open .nav_wrap a.active {
  color: #F29600;
}
#g-header .sp_menu_open .tel {
  color: #fff;
  text-align: center;
  padding: 30px 0 40px;
}
#g-header .sp_menu_open .tel .day {
  font-size: 12px;
}
#g-header .sp_menu_open .tel .num {
  display: inline-block;
  padding: 0 0 0 15px;
  background: url(../img/cmn/phone_white.svg) no-repeat center left/10px auto;
}
#g-header .sp_menu_open .tel .num a {
  color: #fff;
}

@media print {
  .sp_menu,
.sp_menu_open {
    display: none;
  }

  #g-header {
    position: static;
  }

  .g-fv {
    padding-top: 0 !important;
  }
}
#g-logo {
  position: absolute;
  top: 20px;
  left: 20px;
}
@media only screen and (max-width: 768px) {
  #g-logo {
    top: 15px;
    left: 15px;
  }
}

#g-header2 .inner {
  max-width: 849px;
  margin-left: auto;
  margin-right: auto;
  padding: 60px 20px 0;
}
@media only screen and (max-width: 768px) {
  #g-header2 .inner {
    padding: 40px 20px 0;
  }
}

/*フッター*/
#g-footer {
  background: #393E4C;
  padding: 70px 0;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
}
#g-footer .l-inner, #g-footer .l-inner2, #g-footer .l-inner3, #g-footer .l-inner4, #g-footer .l-localFooter1__inner, #g-footer .l-localFooter2__inner {
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  #g-footer {
    padding: 25px 0 100px;
  }
}
#g-footer a {
  color: #fff;
}
#g-footer .flogo {
  float: left;
  width: 150px;
}
@media only screen and (max-width: 768px) {
  #g-footer .flogo {
    float: none;
    padding: 0;
    margin: 0 auto;
  }
}
#g-footer .fnav {
  float: right;
  display: flex;
  width: 50%;
}
@media only screen and (max-width: 768px) {
  #g-footer .fnav {
    display: block;
    float: none;
    width: 100%;
    padding: 20px;
  }
}
#g-footer .fnav > div:nth-child(n+2) {
  padding: 0 0 0 50px;
}
@media only screen and (max-width: 768px) {
  #g-footer .fnav > div:nth-child(n+2) {
    padding: 0;
  }
}
#g-footer .fnav > div a {
  display: block;
  padding: 0 0 10px;
}
#g-footer .fabout {
  float: left;
  width: 49%;
  padding: 10px 0 0;
}
@media only screen and (max-width: 768px) {
  #g-footer .fabout {
    float: none;
    width: 100%;
    padding: 0;
    font-size: 12px;
  }
}
#g-footer #copyright {
  font-size: 12px;
  padding: 5px 0 0;
}
@media only screen and (max-width: 768px) {
  #g-footer #copyright {
    text-align: center;
  }
}

/*メイン*/
.g-sp_cv {
  position: fixed;
  z-index: 99;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
}
@media not all and (max-width: 768px) {
  .g-sp_cv {
    display: none !important;
  }
}
.g-sp_cv .flex {
  width: 100%;
  display: flex;
}
.g-sp_cv .dl {
  width: 50%;
  background: #F29600;
  padding: 15px;
  box-sizing: border-box;
}
.g-sp_cv .ac {
  width: 50%;
  background: #E84715;
  padding: 15px;
  box-sizing: border-box;
}
.g-sp_cv .c-btn {
  max-width: 170px;
  line-height: 34px;
  margin: 0;
  font-size: 14px;
}

.g-fv {
  padding-top: 90px;
  line-height: 1.3;
  font-family: "游ゴシック体", "游ゴシック", "Yu Gothic", YuGothic, "メイリオ", Meiryo, sans-serif;
}
@media only screen and (max-width: 768px) {
  .g-fv {
    padding-top: 71px;
  }
}
.g-fv._top .bg {
  background: linear-gradient(#F07427, #DC350C);
  padding: 40px 0 47px;
  font-weight: bold;
  box-shadow: 0px -8px 8px -1px rgba(0, 0, 0, 0.06) inset;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .g-fv._top .bg {
    padding: 50px 0 25px;
    min-height: 588px;
  }
}
.g-fv._top .l-inner, .g-fv._top .l-inner2, .g-fv._top .l-inner3, .g-fv._top .l-inner4, .g-fv._top .l-localFooter1__inner, .g-fv._top .l-localFooter2__inner {
  overflow: hidden;
  max-width: 1060px;
}
@media only screen and (max-width: 1200px) {
  .g-fv._top .l-inner, .g-fv._top .l-inner2, .g-fv._top .l-inner3, .g-fv._top .l-inner4, .g-fv._top .l-localFooter1__inner, .g-fv._top .l-localFooter2__inner {
    max-width: 880px;
  }
}
@media only screen and (max-width: 768px) {
  .g-fv._top .l-inner, .g-fv._top .l-inner2, .g-fv._top .l-inner3, .g-fv._top .l-inner4, .g-fv._top .l-localFooter1__inner, .g-fv._top .l-localFooter2__inner {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.g-fv._top .txt1 {
  font-size: 65px;
  margin: 25px 0 40px;
  color: #FFF;
}
@media only screen and (max-width: 768px) {
  .g-fv._top .txt1 {
    font-size: 41px;
    text-align: center;
    float: none;
    width: 100%;
    margin: 0 0 10px;
    padding: 0 0 0 14px;
  }
}
.g-fv._top .txt2 {
  position: absolute;
  bottom: 0;
  width: 50%;
  max-width: 726px;
  right: max(4%, calc(50vw - 1060px / 2 - 170px));
}
@media only screen and (max-width: 1200px) {
  .g-fv._top .txt2 {
    top: 60%;
    transform: translateY(-50%);
    bottom: auto;
    right: 0;
  }
}
@media only screen and (max-width: 768px) {
  .g-fv._top .txt2 {
    float: none;
    width: 100%;
    margin: 0 auto 0px;
    top: auto;
    bottom: 0;
    transform: none;
    right: 0;
    left: 0;
  }
}
.g-fv._top .txt3 {
  width: 394px;
  margin: 0 0 20px;
  color: #FFF;
  font-size: 25px;
  font-weight: normal;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .g-fv._top .txt3 {
    font-size: 19px;
    float: none;
    display: block;
    margin: 0 auto 15px;
  }
}
.g-fv._top .txt3 span {
  font-size: 34px;
}
@media only screen and (max-width: 768px) {
  .g-fv._top .txt3 span {
    font-size: 16px;
  }
}
.g-fv._top .txt3 li {
  font-size: 16px;
  display: block;
  padding: 0 0 0 30px;
  background: url(../img/page-chiraceo/mv_medal.png) no-repeat left top 4px/23px auto;
}
@media only screen and (max-width: 768px) {
  .g-fv._top .txt3 li {
    background: url(../img/page-chiraceo/mv_medal.png) no-repeat left top 6px/19px auto;
    padding: 0 0 0 25px;
  }
}
.g-fv._top .txt3 b {
  font-size: 20px;
}
.g-fv._top .c-btn {
  font-size: 23px;
  width: 385px;
  max-width: 100%;
  line-height: 69px;
  border-radius: 0;
  border: 2px solid #fff;
  box-shadow: 0px 3px 15px 0px rgba(0, 0, 0, 0.16);
}
.g-fv._top .c-btn svg {
  fill: #fff;
  stroke: #fff;
  transition: all 0.5s;
  margin-left: 20px;
}
.g-fv._top .c-btn:hover {
  border-color: #02B7B0;
}
.g-fv._top .c-btn:hover svg {
  fill: #02B7B0;
  stroke: #02B7B0;
}
.g-fv._top .link {
  width: 50%;
  display: flex;
}
@media only screen and (max-width: 768px) {
  .g-fv._top .link {
    float: none;
    width: 310px;
    width: 100%;
    margin: 0 auto 0px;
  }
}
.g-fv._top .white-line {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 435px;
  margin: 15px 0;
}
@media only screen and (max-width: 768px) {
  .g-fv._top .white-line {
    width: 100%;
  }
}
.g-fv._top .white-line:before, .g-fv._top .white-line:after {
  content: "";
  border-top: 1px solid #FFF;
  width: 100%;
}
.g-fv._top .text4 {
  color: #FFF;
  font-size: 30px;
}
@media only screen and (max-width: 768px) {
  .g-fv._top .text4 {
    font-size: 21px;
    text-align: center;
  }
}
.g-fv ._page {
  position: relative;
  background: linear-gradient(#F9D0C4, #FBE4BF);
  height: 200px;
}
@media only screen and (max-width: 768px) {
  .g-fv ._page {
    height: 210px;
  }
}
@media only screen and (max-width: 768px) {
  .g-fv ._page._seminar {
    height: auto;
    padding: 70px 0 30px;
  }
  .g-fv ._page._seminar .title {
    position: static;
    height: auto;
    -webkit-transform: translate(0%, 0%);
    /* Safari用 */
    transform: translate(0%, 0%);
  }
}
.g-fv ._page._case {
  height: 300px;
}
@media only screen and (max-width: 768px) {
  .g-fv ._page._case {
    height: auto;
    padding: 50px 0 30px;
  }
  .g-fv ._page._case .title {
    position: static;
    height: auto;
    -webkit-transform: translate(0%, 0%);
    /* Safari用 */
    transform: translate(0%, 0%);
  }
}
.g-fv ._page._features, .g-fv ._page._functions, .g-fv ._page._archive-information, .g-fv ._page._archive-case {
  height: 200px;
  background: none;
}
@media only screen and (max-width: 768px) {
  .g-fv ._page._features, .g-fv ._page._functions, .g-fv ._page._archive-information, .g-fv ._page._archive-case {
    height: 100px;
  }
}
.g-fv ._page._features h1, .g-fv ._page._functions h1, .g-fv ._page._archive-information h1, .g-fv ._page._archive-case h1 {
  color: #E8760E;
  position: relative;
  display: inline-block;
  margin-bottom: 1em;
}
@media only screen and (max-width: 768px) {
  .g-fv ._page._features h1, .g-fv ._page._functions h1, .g-fv ._page._archive-information h1, .g-fv ._page._archive-case h1 {
    margin-bottom: 0;
    font-size: 21px;
  }
}
.g-fv ._page._features h1:before, .g-fv ._page._functions h1:before, .g-fv ._page._archive-information h1:before, .g-fv ._page._archive-case h1:before {
  content: "";
  position: absolute;
  bottom: -20px;
  display: inline-block;
  width: 230px;
  height: 1px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #E8760E;
  border-radius: 0px;
}
@media only screen and (max-width: 768px) {
  .g-fv ._page._features h1:before, .g-fv ._page._functions h1:before, .g-fv ._page._archive-information h1:before, .g-fv ._page._archive-case h1:before {
    bottom: -20px;
    width: 100px;
  }
}
.g-fv ._page .c-bread {
  position: absolute;
  top: 10px;
  left: 30px;
  width: calc(100% - 60px);
}
@media only screen and (max-width: 768px) {
  .g-fv ._page .c-bread {
    left: 20px;
    width: calc(100% - 40px);
  }
}
.g-fv ._page .title {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  /* Safari用 */
  transform: translate(-50%, -50%);
  width: 100%;
  padding: 0 20px;
  box-sizing: border-box;
  text-align: center;
}
.g-fv ._page h1 {
  font-size: 36px;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .g-fv ._page h1 {
    font-size: 26px;
  }
}
.g-fv ._page .sub {
  margin-top: 20px;
  font-size: 16px;
}
.g-fv._column ._page {
  height: auto;
  padding-bottom: 100px;
}
@media only screen and (max-width: 768px) {
  .g-fv._column ._page {
    padding-bottom: 70px;
  }
}
.g-fv._column .inner {
  position: relative;
  height: 250px;
}
@media only screen and (max-width: 768px) {
  .g-fv._column .inner {
    height: 210px;
  }
}

#g-footer2 .copyright {
  text-align: center;
  font-size: 12px;
  padding-bottom: 60px;
}

body#top {
  font-family: "游ゴシック体", "游ゴシック", "Yu Gothic", YuGothic, "メイリオ", Meiryo, sans-serif;
}
body#top input[type=text],
body#top input[type=tel],
body#top input[type=email],
body#top input[type=url],
body#top textarea,
body#top select,
body#top .js-formCheckSelect,
body#top button {
  font-family: inherit;
}
body#top label,
body#top button,
body#top select,
body#top .js-formCheckSelect,
body#top input[type=submit],
body#top input[type=reset] {
  cursor: pointer;
}
body#top .c-orange {
  color: #f07427;
}
body#top .c-orange-line {
  background: linear-gradient(transparent 60%, rgba(240, 116, 39, 0.5) 40%);
}
body#top .orange-underline {
  text-decoration: underline solid rgba(240, 116, 39, 0.5) 6px;
}
body#top .c-h2 {
  text-align: center;
  font-size: 38px;
  margin-bottom: 62px;
}
@media only screen and (max-width: 768px) {
  body#top .c-h2 {
    font-size: 21px;
    margin-bottom: 32px;
  }
}

#bottom-form .c-orange {
  color: #e8760e;
}
body#top #bottom-form .c-h2 {
  text-align: center;
}
body#top #bottom-form .c-h2:before {
  content: none;
}
#bottom-form .c-h2-read {
  font-size: 35px;
}
@media only screen and (max-width: 768px) {
  #bottom-form .c-h2 {
    font-size: 20px !important;
    margin-bottom: 20px;
  }
  #bottom-form .c-h2-read {
    font-size: 18px;
  }
}
#bottom-form .p-cta2 .p-form_wrap {
  width: 540px;
  margin: 0 auto 20px;
  padding: 0 0 10px;
}
@media only screen and (max-width: 768px) {
  #bottom-form .p-cta2 .p-form_wrap {
    width: calc(100% - 40px);
    padding: 0 20px;
    margin: 0 auto;
  }
}
#bottom-form .p-cta2 .p-form_wrap p {
  text-align: left;
  font-size: 18px;
}
#bottom-form .p-cta2 .p-form_wrap .his {
  color: #e8760e;
  font-size: 12px;
  display: inline-block;
  padding: 1px 10px;
  background: none;
}
#bottom-form .p-cta2 .p-form_wrap .company_name input[type=text],
#bottom-form .p-cta2 .p-form_wrap .company_name input[type=tel],
#bottom-form .p-cta2 .p-form_wrap .company_name input[type=email],
#bottom-form .p-cta2 .p-form_wrap .company_name input[type=url],
#bottom-form .p-cta2 .p-form_wrap .company_name textarea,
#bottom-form .p-cta2 .p-form_wrap .company_name select,
#bottom-form .p-cta2 .p-form_wrap .company_name .js-formCheckSelect,
#bottom-form .p-cta2 .p-form_wrap .your_name input[type=text],
#bottom-form .p-cta2 .p-form_wrap .your_name input[type=tel],
#bottom-form .p-cta2 .p-form_wrap .your_name input[type=email],
#bottom-form .p-cta2 .p-form_wrap .your_name input[type=url],
#bottom-form .p-cta2 .p-form_wrap .your_name textarea,
#bottom-form .p-cta2 .p-form_wrap .your_name select,
#bottom-form .p-cta2 .p-form_wrap .your_name .js-formCheckSelect,
#bottom-form .p-cta2 .p-form_wrap .your_fastname input[type=text],
#bottom-form .p-cta2 .p-form_wrap .your_fastname input[type=tel],
#bottom-form .p-cta2 .p-form_wrap .your_fastname input[type=email],
#bottom-form .p-cta2 .p-form_wrap .your_fastname input[type=url],
#bottom-form .p-cta2 .p-form_wrap .your_fastname textarea,
#bottom-form .p-cta2 .p-form_wrap .your_fastname select,
#bottom-form .p-cta2 .p-form_wrap .your_fastname .js-formCheckSelect,
#bottom-form .p-cta2 .p-form_wrap .your_officer input[type=text],
#bottom-form .p-cta2 .p-form_wrap .your_officer input[type=tel],
#bottom-form .p-cta2 .p-form_wrap .your_officer input[type=email],
#bottom-form .p-cta2 .p-form_wrap .your_officer input[type=url],
#bottom-form .p-cta2 .p-form_wrap .your_officer textarea,
#bottom-form .p-cta2 .p-form_wrap .your_officer select,
#bottom-form .p-cta2 .p-form_wrap .your_officer .js-formCheckSelect,
#bottom-form .p-cta2 .p-form_wrap .your_tel input[type=text],
#bottom-form .p-cta2 .p-form_wrap .your_tel input[type=tel],
#bottom-form .p-cta2 .p-form_wrap .your_tel input[type=email],
#bottom-form .p-cta2 .p-form_wrap .your_tel input[type=url],
#bottom-form .p-cta2 .p-form_wrap .your_tel textarea,
#bottom-form .p-cta2 .p-form_wrap .your_tel select,
#bottom-form .p-cta2 .p-form_wrap .your_tel .js-formCheckSelect,
#bottom-form .p-cta2 .p-form_wrap .employees0727 input[type=text],
#bottom-form .p-cta2 .p-form_wrap .employees0727 input[type=tel],
#bottom-form .p-cta2 .p-form_wrap .employees0727 input[type=email],
#bottom-form .p-cta2 .p-form_wrap .employees0727 input[type=url],
#bottom-form .p-cta2 .p-form_wrap .employees0727 textarea,
#bottom-form .p-cta2 .p-form_wrap .employees0727 select,
#bottom-form .p-cta2 .p-form_wrap .employees0727 .js-formCheckSelect,
#bottom-form .p-cta2 .p-form_wrap .your_email input[type=text],
#bottom-form .p-cta2 .p-form_wrap .your_email input[type=tel],
#bottom-form .p-cta2 .p-form_wrap .your_email input[type=email],
#bottom-form .p-cta2 .p-form_wrap .your_email input[type=url],
#bottom-form .p-cta2 .p-form_wrap .your_email textarea,
#bottom-form .p-cta2 .p-form_wrap .your_email select,
#bottom-form .p-cta2 .p-form_wrap .your_email .js-formCheckSelect {
  background: #F2F2F2 !important;
}
#bottom-form .p-cta2 .p-form_wrap .goal select, #bottom-form .p-cta2 .p-form_wrap .goal .js-formCheckSelect {
  background: url(../img/cmn/select_arrow.svg) right center no-repeat #F2F2F2;
}
#bottom-form .p-cta2 .p-form_wrap .box {
  margin-bottom: 20px;
}
@media only screen and (max-width: 768px) {
  #bottom-form .p-cta2 .p-form_wrap .box {
    width: 100%;
    margin-bottom: 16px;
  }
  #bottom-form .p-cta2 .p-form_wrap .box.acceptance {
    margin-bottom: 35px;
  }
}
#bottom-form .p-cta2 .p-form_wrap textarea {
  height: 90px;
  background-color: #F2F2F2;
}
@media only screen and (max-width: 768px) {
  #bottom-form .p-cta2 .p-form_wrap textarea {
    height: 60px;
  }
}
#bottom-form .p-cta2 .p-form_wrap .p-form_submit input {
  max-width: 360px;
  font-size: 24px;
  padding: 17px 15px;
  border-radius: 40px;
}
@media only screen and (max-width: 768px) {
  #bottom-form .p-cta2 .p-form_wrap .p-form_submit input {
    width: 280px;
    font-size: 18px;
    padding: 13px 15px;
  }
}
#bottom-form .p-cta2 .p-form_wrap .p-form_submit input[type=submit]:disabled {
  color: #fff;
  background: #E8E8E8;
  border: 4px solid #fff;
  font-family: "游ゴシック体", "游ゴシック", "Yu Gothic", YuGothic, "メイリオ", Meiryo, sans-serif;
}
#bottom-form .p-cta2 .p-form_wrap .p-form_submit p {
  text-align: center;
}
#bottom-form .p-cta2 .p-form_wrap .wpcf7 form .wpcf7-not-valid-tip {
  color: #f00;
}
#bottom-form .p-cta2 .p-form_wrap .wpcf7 form .wpcf7-list-item-label {
  font-size: 16px;
}
@media only screen and (max-width: 768px) {
  #bottom-form .p-cta2 .p-form_wrap .wpcf7 form .wpcf7-list-item-label {
    font-size: 14px;
  }
}
#bottom-form .p-cta2 .p-form_wrap .wpcf7 form .wpcf7-list-item-label a {
  color: #02B7B0;
}
#bottom-form .p-cta2 .p-form_wrap .acceptance.box br {
  display: none;
}
#bottom-form .p-cta2 .p-form_wrap .wpcf7-list-item {
  display: block;
  margin: 0;
}
#bottom-form .p-cta2 .p-form_wrap .wpcf7-list-item input {
  width: 20px;
  height: 20px;
}
#bottom-form .p-cta2 .p-form_wrap .f-title {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 16px;
  margin-bottom: 0;
  font-weight: normal;
}
#bottom-form .p-cta2 .p-form_wrap .f-title + p {
  margin-top: 0;
  margin-bottom: 0;
}
#bottom-form .p-cta2 .p-form_wrap .f-title + p input,
#bottom-form .p-cta2 .p-form_wrap .f-title + p select,
#bottom-form .p-cta2 .p-form_wrap .f-title + p .js-formCheckSelect,
#bottom-form .p-cta2 .p-form_wrap .f-title + p textarea {
  border: none;
}
#bottom-form .p-cta2 .p-form_wrap .f-title .c-orange {
  position: absolute;
  right: 0;
  font-weight: normal;
  font-size: 12px;
}
@media only screen and (max-width: 768px) {
  #bottom-form .p-cta2 .p-form_wrap {
    margin: 50px auto 0;
  }
  #bottom-form .p-cta2 .p-form_wrap .f-title {
    font-size: 18px;
    white-space: nowrap;
  }
  #bottom-form .p-cta2 .p-form_wrap .f-title .his {
    font-size: 12px;
  }
  #bottom-form .p-cta2 .p-form_wrap .f-title .c-orange {
    font-size: 14px;
  }
}

.overflow {
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .overflow {
    display: none;
  }
}
.overflow dt {
  display: flex;
  align-items: center;
}
.overflow .c-tell {
  position: relative;
  font-weight: bold;
  margin: 0 24px 0 0;
  padding: 8px 13px 8px 18px;
  background-color: #fff;
}
.overflow .c-tell::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 46px;
  right: -10px;
  top: 0;
  background-image: url(../img/page-chiraceo/contact_yrll_allow.png);
  background-size: 10px 46px;
  background-repeat: no-repeat;
}
.overflow figure {
  display: inline-block;
  margin: 0 6px 0 0;
  width: 20px;
}
.overflow figure img {
  width: 100%;
}
.overflow .c-num {
  font-size: 32px;
}
.overflow .c-num [data-js-tel] a {
  text-decoration: none;
}
.overflow .day {
  font-size: 14px;
}

#bottom-form.l-section.p-cta2-wrap {
  background-color: #e8e8e8;
  position: relative;
  padding: 144px 0 80px;
  overflow: inherit;
  z-index: 10;
}
@media only screen and (max-width: 768px) {
  #bottom-form.l-section.p-cta2-wrap {
    padding: 92px 0 20px;
    background-color: #fff;
  }
}
#bottom-form.l-section.p-cta2-wrap::before {
  content: "";
  position: absolute;
  top: -40px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 730px;
  height: 192px;
  background-size: 100%;
  background-repeat: no-repeat;
  background-image: url(../img/page-chiraceo/contact_top.png);
}
@media only screen and (max-width: 768px) {
  #bottom-form.l-section.p-cta2-wrap::before {
    width: 340px;
    height: 131px;
    top: -20px;
    background-image: url(../img/page-chiraceo/contact_top_sp.png);
  }
}
@media only screen and (max-width: 1200px) {
  #bottom-form.l-section.p-cta2-wrap {
    background-size: 400px;
    background-position: bottom left calc(50vw - 820px / 2 + 580px);
  }
}

#top #bottom-form .overflow {
  width: 630px;
}
#top #bottom-form .overflow .qa_link {
  display: none;
}

#top #bottom-form .p-cta2 {
  width: 880px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.16);
  padding-top: 0;
  padding-bottom: 0;
}
@media only screen and (max-width: 768px) {
  #top #bottom-form .p-cta2 {
    width: 100%;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
  }
}
#top #bottom-form .p-cta2 .c-h2 {
  position: relative;
  font-size: 34px !important;
  padding: 20px 0;
  color: #fff;
  margin-bottom: 54px !important;
  background-image: linear-gradient(180deg, #f5620c, #f29600);
  border-radius: 10px 10px 0 0;
}
@media only screen and (max-width: 768px) {
  #top #bottom-form .p-cta2 .c-h2 {
    margin-bottom: 40px !important;
    border-radius: 0;
  }
}
#top #bottom-form .p-cta2 .c-h2::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 20px;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: -20px;
  background-image: url(/img/page-chiraceo/contact_allow.png);
  background-repeat: no-repeat;
  background-size: 50px 20px;
}

/*----------------------------------------

case

-----------------------------------------*/
.u-case_catch {
  margin-bottom: 60px;
}
@media only screen and (max-width: 768px) {
  .u-case_catch {
    margin-bottom: 40px;
  }
}
.u-case_catch .head {
  margin-bottom: 60px;
}
@media only screen and (max-width: 768px) {
  .u-case_catch .head {
    margin-bottom: 40px;
  }
}
.u-case_catch .head img {
  display: block;
  margin: 0 auto 60px;
}
@media only screen and (max-width: 768px) {
  .u-case_catch .head img {
    margin-bottom: 40px;
  }
}

.u-mokuji {
  padding: 20px 50px;
  border: 1px solid #cccccc;
}
@media only screen and (max-width: 768px) {
  .u-mokuji {
    padding: 20px;
  }
}
.u-mokuji .title {
  font-size: 22px;
  font-weight: bold;
  text-align: center;
}
.u-mokuji .wrap_h2 {
  padding: 30px 0;
}
@media only screen and (max-width: 768px) {
  .u-mokuji .wrap_h2 {
    padding: 15px 0;
  }
}
.u-mokuji .wrap_h2 + .wrap_h2 {
  border-top: 1px solid #cccccc;
}
.u-mokuji .fake_h2 {
  margin: 0 0 25px;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .u-mokuji .fake_h2 {
    margin: 0 0 15px;
  }
}
.u-mokuji .fake_h3 a {
  display: block;
  margin: 0 0 25px;
  color: #E84715;
  font-weight: bold;
  padding: 0 0 0 1em;
  background: url(../img/case/anker.svg) no-repeat left top 10px;
}
@media only screen and (max-width: 768px) {
  .u-mokuji .fake_h3 a {
    margin: 0 0 15px;
  }
}
.u-mokuji li {
  padding-left: 1em;
  position: relative;
  font-size: 16px;
  line-height: 1.4;
}
@media only screen and (max-width: 768px) {
  .u-mokuji li {
    font-size: 14px;
  }
}
.u-mokuji li:before {
  content: "";
  position: absolute;
  top: 8px;
  left: 2px;
  width: 6px;
  height: 6px;
  background: #cccccc;
  border-radius: 50%;
}
@media only screen and (max-width: 768px) {
  .u-mokuji li:before {
    top: 7px;
  }
}
.u-mokuji li + li {
  margin-top: 5px;
}

.u-case_section {
  padding: 120px 0 0;
  margin-top: -50px;
}
@media only screen and (max-width: 768px) {
  .u-case_section {
    padding-top: 90px;
  }
}
.u-case_section .section_title {
  font-size: 16px;
  margin: 0 0 15px;
  font-weight: bold;
}
.u-case_section .main_title {
  font-size: 28px;
  margin: 0 0 20px;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .u-case_section .main_title {
    font-size: 24px;
  }
}
.u-case_section .main_img img {
  display: block;
  margin: 0 auto 30px;
}
@media only screen and (max-width: 768px) {
  .u-case_section .main_img img {
    margin-bottom: 20px;
  }
}
.u-case_section .case_content h4 {
  font-size: 20px;
  font-weight: bold;
  margin: 30px 0 10px;
}
@media only screen and (max-width: 768px) {
  .u-case_section .case_content h4 {
    font-size: 18px;
  }
}

.u-case_info {
  padding: 15px;
}
.u-case_info p {
  font-size: 16px;
  font-weight: bold;
}
.u-case_info .logo img {
  display: block;
  margin: 7px auto;
}
.u-case_info ul li {
  display: inline-block;
  font-size: 14px;
  padding: 0 15px;
  line-height: 1;
}
.u-case_info ul li + li {
  border-left: 1px solid;
}
@media only screen and (max-width: 768px) {
  .u-case_info ul li:nth-child(3) {
    border-left: none !important;
  }
}

.p-side .case-form {
  padding: 30px 20px;
}
.p-side .case-form-h2 {
  font-size: 28px;
  font-weight: bold;
}
.p-side .case-form .p-form_submit input {
  font-size: 16px;
}

.single-case .g-fv ._page._case {
  height: auto;
  overflow: hidden;
}
.single-case .g-fv ._page .title {
  position: static;
  -webkit-transform: none;
  /* Safari用 */
  transform: none;
  margin: 30px auto 0;
}

.single-case .wp-editor .u-case_catch {
  margin: auto;
}
.single-case .wp-editor .head {
  width: 906px;
  max-width: 100%;
  margin-bottom: 30px;
}
.single-case .wp-editor .head img {
  margin: auto;
}
.single-case .wp-editor .title {
  font-size: 25px;
  color: #e8760e;
  text-align: center;
  font-weight: bold;
}
.single-case .wp-editor .u-case_info p {
  color: #393e4c;
  font-size: 20px;
}
.single-case .wp-editor .u-case_info p:after {
  content: "";
  display: block;
  width: 235px;
  border-top: 1px solid #e8760e;
  margin: 32px auto;
}
.single-case .wp-editor .u-case_info ul {
  line-height: 1;
}
.single-case .wp-editor .u-case_info ul li {
  font-size: 16px;
  color: #393e4c;
}
.single-case .wp-editor .post_text {
  margin-top: 56px;
}
.single-case .wp-editor .form-action .c-btn {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}
.single-case .wp-editor .campaign-text {
  font-size: 30px;
  font-weight: bold;
  border-top: 1px solid #393e4c;
  display: inline-block;
  padding-top: 20px;
}
.single-case .wp-editor .movie-wrap {
  padding-bottom: 140px;
}
.single-case .wp-editor .movie {
  text-align: center;
}
.single-case .wp-editor .movie iframe {
  max-width: 100%;
}
@media only screen and (max-width: 768px) {
  .single-case .wp-editor .campaign-text {
    font-size: 24px;
  }
}

.post-type-archive-case ul.filter-tab {
  display: flex;
  color: #393E4C;
  font-size: 40px;
  font-weight: bold;
  justify-content: space-around;
  margin: 0 auto 40px;
}
.post-type-archive-case ul.filter-tab li:hover {
  cursor: pointer;
  color: #F07427;
  transition: all 0.3s;
}
.post-type-archive-case ul.filter-tab .current-tab {
  color: #F07427;
}
.post-type-archive-case ul.filter-tab .current-tab:hover {
  cursor: auto;
}
@media only screen and (max-width: 768px) {
  .post-type-archive-case ul.filter-tab {
    font-size: 20px;
  }
}
.post-type-archive-case .filter-panel {
  justify-content: space-between;
  display: none;
  font-size: 25px;
  font-weight: bold;
}
.post-type-archive-case .filter-panel.current-tab {
  display: flex;
}
.post-type-archive-case .filter-panel .panel-elem {
  display: flex;
  align-items: center;
  border-right: 1px solid #393E4C;
  padding: 0 13px;
}
.post-type-archive-case .filter-panel .panel-elem.current-panel a.panel-link {
  color: #F07427;
  border-bottom-color: #F07427;
}
.post-type-archive-case .filter-panel .panel-elem.current-panel a.panel-link:hover {
  cursor: auto;
}
.post-type-archive-case .filter-panel .panel-elem a.panel-link {
  color: #393E4C;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  box-sizing: border-box;
  border-bottom: 3px solid transparent;
  cursor: pointer;
}
.post-type-archive-case .filter-panel .panel-elem a.panel-link:hover {
  color: #F07427;
  border-bottom-color: #F07427;
}
.post-type-archive-case .filter-panel .panel-elem a.panel-link .tax-name {
  white-space: nowrap;
  display: block;
  text-align: center;
  margin: 0 auto 15px;
}
.post-type-archive-case .filter-panel .panel-elem a.panel-link .tax-description {
  display: block;
  font-size: 15px;
}
.post-type-archive-case .filter-panel .panel-elem:nth-last-of-type(1) {
  border-right: none;
}
.post-type-archive-case .filter-panel.issue-panel .issue-panel-child {
  font-size: 20px;
  flex-wrap: wrap;
  padding-left: 30px;
  gap: 20px 0;
}
.post-type-archive-case .filter-panel.issue-panel .panel-elem {
  padding: 0 23px;
}
.post-type-archive-case .filter-panel.issue-panel .panel-elem a.panel-link .tax-name {
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .post-type-archive-case .filter-panel.issue-panel .issue-panel-child {
    flex-wrap: wrap;
    padding-left: 0px;
    gap: 20px 0;
  }
  .post-type-archive-case .filter-panel.issue-panel .panel-elem {
    padding: 0 0px;
  }
  .post-type-archive-case .filter-panel.issue-panel .panel-elem a.panel-link .tax-name {
    margin: 0 auto;
  }
}
@media only screen and (max-width: 768px) {
  .post-type-archive-case .filter-panel {
    flex-direction: column;
    gap: 30px 0;
  }
  .post-type-archive-case .filter-panel .panel-elem {
    border-right: 0;
    border-left: 1px solid #393E4C;
  }
  .post-type-archive-case .filter-panel .panel-elem.current-panel {
    border-left-color: #F07427;
    border-left-width: 3px;
  }
  .post-type-archive-case .filter-panel .panel-elem:hover {
    border-left-color: #F07427;
  }
  .post-type-archive-case .filter-panel .panel-elem a.panel-link {
    flex-direction: row;
    border-bottom: 0;
    gap: 0 20px;
    align-items: center;
  }
  .post-type-archive-case .filter-panel .panel-elem a.panel-link .tax-name {
    margin: 0;
  }
  .post-type-archive-case .filter-panel.issue-panel .panel-elem {
    border-left: 0;
    border-right: 0;
  }
  .post-type-archive-case .filter-panel.issue-panel .issue-panel-child {
    font-size: 16px;
    flex-direction: row;
    padding-left: 0px;
    gap: 20px 20px;
  }
  .post-type-archive-case .filter-panel.issue-panel .issue-panel-child li.panel-elem {
    padding: 0 0px;
    border-right: 1px solid #393E4C;
  }
  .post-type-archive-case .filter-panel.issue-panel .issue-panel-child li.panel-elem:nth-last-of-type(1) {
    border-right: 0;
  }
  .post-type-archive-case .filter-panel.issue-panel .issue-panel-child li.panel-elem a.panel-link {
    gap: 0;
    padding-right: 20px;
  }
  .post-type-archive-case .filter-panel.issue-panel .issue-panel-child li.panel-elem a.panel-link .tax-name {
    margin: 0 auto;
  }
}
.post-type-archive-case .mejor-category {
  font-size: 40px;
  font-weight: bold;
  position: relative;
  margin-bottom: 20px;
}
.post-type-archive-case .mejor-category:after {
  content: "";
  position: absolute;
  border-top: 7px solid #e8760e;
  width: 44px;
  top: 50%;
  transform: translateY(-50%);
  left: -60px;
}
.post-type-archive-case .category-wrap {
  margin: 30px auto 80px;
}
.post-type-archive-case .category-wrap .more {
  z-index: 2;
  cursor: pointer;
  margin: 20px auto 0;
  display: block;
}
.post-type-archive-case .mejor-category_desc {
  font-size: 25px;
  font-weight: bold;
  margin-bottom: 60px;
}
.post-type-archive-case .middle-category {
  font-size: 29px;
  font-weight: bold;
  margin-bottom: 28px;
}
.post-type-archive-case .p-slide {
  max-width: 1300px;
  flex-wrap: wrap;
  gap: 0 30px;
  padding: 0;
}
@media only screen and (max-width: 768px) {
  .post-type-archive-case .p-slide {
    gap: 0px;
  }
}
.post-type-archive-case .p-slide .post {
  padding: 0 0 20px;
  border-radius: 20px 0 20px 0;
  color: #5c5d62;
  font-weight: bold;
  width: auto;
  width: calc(100% / 3 - 20px);
  margin: 0 auto 30px;
}
@media only screen and (max-width: 768px) {
  .post-type-archive-case .p-slide .post {
    margin: auto auto 30px;
  }
}
.post-type-archive-case .p-slide .post:nth-child(n+2) {
  margin: 0 auto 30px;
}
@media only screen and (max-width: 768px) {
  .post-type-archive-case .p-slide .post:nth-child(n+2) {
    margin: auto auto 30px;
  }
}
.post-type-archive-case .p-slide .post.is-hidden {
  padding: 0;
  opacity: 0;
  height: 0;
  margin: 0;
}
.post-type-archive-case .p-slide .post.is-hidden > * {
  display: none !important;
}
.post-type-archive-case .p-slide .post img {
  border-radius: 20px 0 0 0;
}
.post-type-archive-case .p-slide .post > :not(img) {
  margin: 0 20px;
}
.post-type-archive-case .p-slide .post .mh_company {
  padding: 20px 0;
  font-size: 18px;
}
.post-type-archive-case .p-slide .post .mh_title {
  margin: 20px 20px 25px;
  font-size: 18px;
  height: 3.8em;
  -webkit-line-clamp: 3;
  overflow: hidden;
  -webkit-box-orient: vertical;
  word-break: break-all;
  display: -webkit-box;
}
.post-type-archive-case .p-slide .post .mh_industry-employee {
  border-top: 1px solid #F07427;
  padding-top: 25px;
  font-size: 13px;
  display: flex;
  gap: 8px 8px;
  flex-wrap: wrap;
}
.post-type-archive-case .p-slide .post:hover {
  text-decoration: none;
  color: #F29600;
}
.post-type-archive-case .p-slide .post:hover img {
  opacity: 1;
}
.post-type-archive-case .p-slide .post .industry, .post-type-archive-case .p-slide .top-case-study .slick-slide div .post .employee, .top-case-study .slick-slide div .post-type-archive-case .p-slide .post .employee, .post-type-archive-case .p-slide .post .employee {
  border-radius: 19px;
  border: 1px solid #F07427;
  color: #FFF;
  background-color: #F07427;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 15px;
  font-size: 20px;
}
.post-type-archive-case .p-slide .post .employee {
  color: #F07427;
  background-color: #FFF;
}
.post-type-archive-case .p-slide .slick-slide:nth-of-type(n + 2) {
  margin-left: 30px;
}
.post-type-archive-case .p-slide .slick-slide > div {
  margin-bottom: 65px;
}
.post-type-archive-case .p-slide .slick-arrow.slick-prev {
  left: -60px;
}
.post-type-archive-case .p-slide .slick-arrow.slick-next {
  right: -60px;
}
.post-type-archive-case .form-action .c-btn {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}
.post-type-archive-case .campaign-text {
  font-size: 30px;
  font-weight: bold;
  border-top: 1px solid #393e4c;
  display: inline-block;
  padding-top: 20px;
}
.post-type-archive-case .movie-wrap {
  padding-bottom: 140px;
}
.post-type-archive-case .movie {
  text-align: center;
}
.post-type-archive-case .movie iframe {
  max-width: 100%;
}
@media only screen and (max-width: 768px) {
  .post-type-archive-case .campaign-text {
    font-size: 24px;
  }
  .post-type-archive-case .mejor-category {
    font-size: 28px;
    border-left: 3px solid #e8760e;
    padding-left: 10px;
  }
  .post-type-archive-case .mejor-category:after {
    content: none;
  }
  .post-type-archive-case .category-wrap {
    margin: 20px auto 40px;
  }
  .post-type-archive-case .mejor-category_desc {
    font-size: 13px;
    margin-bottom: 30px;
  }
  .post-type-archive-case .middle-category {
    font-size: 17px;
    margin-bottom: 10px;
  }
  .post-type-archive-case .p-slide {
    margin-top: 0;
    flex-direction: column;
  }
  .post-type-archive-case .p-slide .post {
    width: auto;
  }
  .post-type-archive-case .p-slide .post.u-dn {
    display: none !important;
  }
  .post-type-archive-case .p-slide .slick-slide:nth-of-type(n + 2) {
    margin-left: 0px;
  }
  .post-type-archive-case .p-slide .slick-slide > div {
    margin-bottom: 20px;
  }
  .post-type-archive-case .p-slide .slick-arrow {
    width: 48px;
    height: 48px;
  }
  .post-type-archive-case .p-slide .slick-arrow.slick-prev {
    left: -15px;
  }
  .post-type-archive-case .p-slide .slick-arrow.slick-next {
    right: -15px;
  }
}

.top-case-study .slick-slide {
  width: 368px;
}
.top-case-study .slick-slide div .post {
  padding: 0 0 20px;
  border-radius: 20px 0 20px 0;
  background: #fff;
  color: #5C5D62;
  font-weight: bold;
  box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.16);
}
@media only screen and (max-width: 768px) {
  .top-case-study .slick-slide div .post {
    margin: auto auto 30px;
  }
}
.top-case-study .slick-slide div .post:nth-child(n+2) {
  margin: 0 auto 30px;
}
@media only screen and (max-width: 768px) {
  .top-case-study .slick-slide div .post:nth-child(n+2) {
    margin: auto auto 30px;
  }
}
.top-case-study .slick-slide div .post.is-hidden {
  padding: 0;
  opacity: 0;
  height: 0;
  margin: 0;
}
.top-case-study .slick-slide div .post.is-hidden > * {
  display: none !important;
}
.top-case-study .slick-slide div .post img {
  border-radius: 20px 0 0 0;
  width: 100%;
  object-fit: contain;
  aspect-ratio: 16/9;
}
.top-case-study .slick-slide div .post > :not(img) {
  margin: 0 16px;
}
.top-case-study .slick-slide div .post .mh_company {
  padding: 20px 0;
  font-size: 18px;
}
.top-case-study .slick-slide div .post .mh_title {
  margin: 20px 0px 25px 0px;
  font-size: 18px;
  height: 3.8em;
  -webkit-line-clamp: 3;
  overflow: hidden;
  -webkit-box-orient: vertical;
  word-break: break-all;
  display: -webkit-box;
}
.top-case-study .slick-slide div .post .mh_industry-employee {
  border-top: 1px solid #F07427;
  padding-top: 25px;
  font-size: 13px;
  display: flex;
  gap: 8px 8px;
  flex-wrap: wrap;
}
.top-case-study .slick-slide div .post:hover {
  text-decoration: none;
  color: #F29600;
}
.top-case-study .slick-slide div .post:hover img {
  opacity: 1;
}
.top-case-study .slick-slide div .post .industry, .top-case-study .slick-slide div .post .employee {
  border-radius: 19px;
  border: 1px solid #F07427;
  color: #FFF;
  background-color: #F07427;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 15px;
  font-size: 20px;
}
.top-case-study .slick-slide div .post .employee {
  color: #F07427;
  background-color: #FFF;
}

/*----------------------------------------

column

-----------------------------------------*/
.u-column_slide {
  max-width: 704px;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .u-column_slide {
    margin: 0 30px;
    max-width: 100%;
  }
}
.u-column_slide .slick-list {
  overflow: visible;
}
.u-column_slide .pad {
  display: block;
  margin: 0 17px;
  position: relative;
  z-index: 1;
  transition: opacity 0.5s;
}
@media only screen and (max-width: 768px) {
  .u-column_slide .pad {
    margin: 0 10px;
  }
}
.u-column_slide .pad:hover img {
  opacity: 1;
}
@media not all and (max-width: 768px) {
  .u-column_slide .pad:hover {
    opacity: 0.6;
  }
}
.u-column_slide .mark {
  display: block;
  box-sizing: border-box;
  position: absolute;
  z-index: 1;
  left: -49px;
  top: 45px;
  color: #fff;
  text-align: center;
  font-size: 12px;
  font-weight: bold;
  line-height: 1.333;
  width: 134px;
  height: 68px;
  padding-top: 30px;
  transform: rotate(-45deg);
  transform-origin: left top;
}
.u-column_slide .mark:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 67px 68px 67px;
  border-color: transparent transparent #393e4c transparent;
}
.u-column_slide .slick-arrow {
  width: 52px;
  height: 52px;
  outline: none !important;
  border: none;
  cursor: pointer;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
  z-index: 98;
}
.u-column_slide .slick-arrow.slick-next {
  background: url(../img/cmn/next@2x.png) no-repeat center center/52px auto;
  text-indent: -9999px;
  right: -6px;
}
.u-column_slide .slick-arrow.slick-prev {
  background: url(../img/cmn/prev@2x.png) no-repeat center center/52px auto;
  text-indent: -9999px;
  left: -6px;
}
.u-column_slide .slick-dots {
  position: absolute;
  width: 100%;
  text-align: center;
}
.u-column_slide .slick-dots li {
  display: inline-block;
  vertical-align: top;
  margin: 0 5px 10px;
}
.u-column_slide .slick-dots button {
  font-size: 0;
  padding: 0;
  margin: 0;
  background: #fff;
  border: none;
  width: 11px;
  height: 11px;
  border-radius: 100%;
  cursor: pointer;
}
.u-column_slide .slick-dots .slick-active button {
  background: #f39763;
}

.u-column_mokuji {
  margin: 0 0 60px;
}

.u-column_lead {
  margin: 0 0 60px;
}
.u-column_lead .img {
  margin: 0 0 30px;
}
.u-column_lead .img img {
  display: block;
  margin: 0 auto;
}

@media not all and (max-width: 768px) {
  .single-column .p-main_side1 {
    width: 50%;
    float: none;
    margin: 30px auto 0;
  }
}
@media not all and (max-width: 768px) {
  .single-column .p-side .c-side_h2 {
    font-size: 24px;
  }
  .single-column .p-side .title1 {
    font-size: 20px;
  }
  .single-column .p-side .image1 {
    width: 200px;
  }
}
.single-column.p-top__topic {
  padding: 0px;
}
.single-column.p-top__topic .p-top__wrapper2 {
  padding: 0px;
}
.single-column-divider {
  width: 58.33%;
  height: 1px;
  margin-left: auto;
  margin-right: auto;
  background: #e2dfdf;
}
@media only screen and (max-width: 768px) {
  .single-column-divider {
    width: auto;
  }
}

.p-post_list-column {
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 50px;
}
@media only screen and (max-width: 768px) {
  .p-post_list-column {
    max-width: 380px;
  }
}
@media not all and (max-width: 768px) {
  .p-post_list-column {
    max-width: 934px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 32px 32px;
    justify-items: center;
  }
}

.p-card-column, .p-card-column--type2 {
  display: block;
  color: #393E4C;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.16);
  overflow: hidden;
  max-width: 290px;
  width: 100%;
  cursor: pointer;
}
.p-card-column--type2 {
  max-width: initial;
  max-width: none;
}
.p-card-column:hover, .p-card-column--type2:hover {
  opacity: 0.7;
  text-decoration: none;
}
@media only screen and (max-width: 768px) {
  .p-card-column, .p-card-column--type2 {
    margin-left: auto;
    margin-right: auto;
  }
  .p-card-column + .p-card-column, .p-card-column--type2 + .p-card-column, .p-card-column + .p-card-column--type2, .p-card-column--type2 + .p-card-column--type2 {
    margin-top: 32px;
  }
}
.p-card-column .__img-wrapper, .p-card-column--type2 .__img-wrapper {
  position: relative;
}
.p-card-column .__img-wrapper.close:after, .p-card-column--type2 .__img-wrapper.close:after {
  background: rgba(0, 0, 0, 0.3);
  visibility: visible;
}
.p-card-column .__img-wrapper:before, .p-card-column--type2 .__img-wrapper:before, .p-card-column .__img-wrapper:after, .p-card-column--type2 .__img-wrapper:after {
  content: "";
  display: block;
  padding-top: 56.20689%;
}
.p-card-column .__img-wrapper:after, .p-card-column--type2 .__img-wrapper:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  visibility: hidden;
}
.p-card-column .__img-wrapper .mark, .p-card-column--type2 .__img-wrapper .mark {
  background: #606060;
  color: #FFFFFF;
  font-size: 0.875rem;
  font-weight: bold;
  line-height: 1;
  padding: 0.4em 1em;
  border: solid 2px;
  position: absolute;
  top: -2px;
  right: -2px;
  z-index: 2;
}
.p-card-column .__img-wrapper .__img, .p-card-column--type2 .__img-wrapper .__img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  object-fit: cover;
}
.p-card-column .__body, .p-card-column--type2 .__body {
  padding: 16px 16px 32px;
}
.p-card-column .__meta, .p-card-column--type2 .__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.p-card-column .__category, .p-card-column--type2 .__category {
  background: #f6f6f6;
  font-weight: bold;
  font-size: 12px;
  border-radius: 20px;
  max-width: 200px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  padding: 2px 16px 0px;
}
.p-card-column .__category::before, .p-card-column--type2 .__category::before {
  display: inline-block;
  content: "";
  vertical-align: middle;
  height: 23px;
}
.p-card-column .__category[data-category-slug=event], .p-card-column--type2 .__category[data-category-slug=event] {
  background: #F8EBE6;
  color: #B73802;
}
.p-card-column .__category[data-category-slug=webinar], .p-card-column--type2 .__category[data-category-slug=webinar] {
  background: #EDF9E4;
  color: #6BAB3E;
}
.p-card-column .__category[data-category-slug=giverpitch], .p-card-column--type2 .__category[data-category-slug=giverpitch] {
  background: #E9F4FE;
  color: #0260B7;
}
.p-card-column .__date, .p-card-column--type2 .__date {
  font-size: 10px;
}
.p-card-column .__title, .p-card-column--type2 .__title {
  margin-top: 16px;
  font-weight: bold;
  font-size: 12px;
}

@media only screen and (max-width: 768px) {
  .p-post_list {
    margin-top: 56px;
  }
}

.p-column-search {
  width: 100%;
  margin-inline: auto;
  overflow: hidden;
}
.p-column-search.seminar {
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.16);
}
@media only screen and (max-width: 768px) {
  .p-column-search {
    background: #f6f6f6;
    box-shadow: none;
    border-radius: 15px;
    max-width: 520px;
    margin-bottom: 56px;
  }
}
@media not all and (max-width: 768px) {
  .p-column-search {
    background: rgba(255, 255, 255, 0.5);
    box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.16);
    border-radius: 45px;
    max-width: 934px;
  }
}
@media only screen and (max-width: 768px) {
  .p-column-search.--pc {
    display: none;
  }
}
@media not all and (max-width: 768px) {
  .p-column-search.--pc {
    display: block;
  }
}
@media only screen and (max-width: 768px) {
  .p-column-search.--sp {
    display: block;
  }
}
@media not all and (max-width: 768px) {
  .p-column-search.--sp {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .p-column-search .__container {
    display: block;
    padding: 24px 31px;
  }
}
@media not all and (max-width: 768px) {
  .p-column-search .__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 48px 17px;
  }
}
.p-column-search .__title {
  display: inline-block;
  white-space: nowrap;
  color: #393e4c;
  font-weight: bold;
  font-size: 14px;
}
.p-column-search .__categories1 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .p-column-search .__categories1 {
    flex-wrap: wrap;
    margin-top: 16px;
    margin-right: -8px;
  }
}
@media not all and (max-width: 768px) {
  .p-column-search .__categories1 {
    justify-content: flex-end;
    margin-left: auto;
    padding-left: 1em;
  }
}
.p-column-search .__category-input1 {
  display: none;
}
.p-column-search .__category-bnt, .p-column-search .__category-bnt1 {
  background: #fff;
  color: #393e4c;
  border-radius: 6px;
  font-size: 12px;
  font-weight: bold;
  line-height: 1;
  padding: 10px 22px 8px;
  white-space: nowrap;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
@media only screen and (max-width: 768px) {
  .p-column-search .__category-bnt, .p-column-search .__category-bnt1 {
    margin: 8px 8px 0 0;
  }
}
@media not all and (max-width: 768px) {
  .p-column-search .__category-bnt:not(:last-child), .p-column-search .__category-bnt1:not(:last-child) {
    margin-right: 8px;
  }
}
.p-column-search .__category-bnt:hover, .p-column-search .__category-bnt1:hover {
  text-decoration: none;
  background: #02b7b0;
  color: #fff;
}
.p-column-search .__category-bnt.is-active, .p-column-search .__category-bnt1.is-active {
  background: #02b7b0;
  color: #fff;
  pointer-events: none;
}
.p-column-search .__category-bnt {
  background: #F6F6F6;
}

.p-column-search-sub {
  width: 100%;
  margin-inline: auto;
  overflow: hidden;
  display: none;
}
.p-column-search-sub.is-open {
  display: block;
}
@media only screen and (max-width: 768px) {
  .p-column-search-sub {
    max-width: 520px;
    margin: 32px auto 56px;
  }
}
@media not all and (max-width: 768px) {
  .p-column-search-sub {
    margin-bottom: 56px;
    max-width: 604px;
  }
}
.p-column-search-sub .__container {
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .p-column-search-sub .__container {
    max-width: 520px;
  }
}
@media not all and (max-width: 768px) {
  .p-column-search-sub .__container {
    max-width: 604px;
  }
}
.p-column-search-sub .__title {
  color: #393e4c;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
}
.p-column-search-sub .__categories2 {
  display: none;
  margin-top: 12px;
  margin-right: -4px;
}
.p-column-search-sub .__categories2.is-active {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.p-column-search-sub .__category-input2 {
  display: none;
}
.p-column-search-sub .__category-bnt2 {
  background: #f6f6f6;
  color: #393e4c;
  font-size: 12px;
  font-weight: bold;
  line-height: 1;
  border-radius: 20px;
  white-space: nowrap;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 16px 3px;
  margin: 4px 4px 0 0;
  cursor: pointer;
}
.p-column-search-sub .__category-bnt2:hover {
  text-decoration: none;
  background: #02b7b0;
  color: #fff;
}
.p-column-search-sub .__category-bnt2.is-active {
  background: #02b7b0;
  color: #fff;
  pointer-events: none;
}

.top-event-list .slick-slide {
  width: 330px;
}

#cta-container {
  width: 700px;
  margin: 42px auto 72px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#cta-container .massage-container {
  padding-top: 40px;
}
#cta-container .massage-container #enicxo-bnr img {
  width: 700px;
}
#cta-container .massage-container .massage-wrapper {
  margin-top: 32px;
}
@media (max-width: 768px) {
  #cta-container .massage-container .massage-wrapper {
    margin-left: 20px;
    margin-right: 20px;
  }
}
#cta-container .massage-container .massage-wrapper .massage-title {
  display: flex;
  align-items: center;
  padding: 5px 10px;
  background-color: #FBF4EA;
  font-size: 28px;
  font-weight: bold;
  line-height: 1.7;
}
#cta-container .massage-container .massage-wrapper .massage-title img {
  margin-right: 12px;
}
#cta-container .massage-container .massage-wrapper .massage-text {
  margin-top: 24px;
  font-size: 16px;
  line-height: 1.6;
}

/*----------------------------------------

faq

-----------------------------------------*/
.u-faq .acc + .acc {
  margin-top: 30px;
}
@media only screen and (max-width: 768px) {
  .u-faq .acc + .acc {
    margin-top: 20px;
  }
}
.u-faq .acc dt {
  background: #F29600;
  color: #fff;
  font-size: 22px;
  font-weight: bold;
  position: relative;
  padding: 20px 50px 20px 90px;
  cursor: pointer;
}
@media only screen and (max-width: 768px) {
  .u-faq .acc dt {
    padding: 15px 35px 15px 50px;
    font-size: 18px;
  }
}
.u-faq .acc dt:before {
  content: "Q";
  display: block;
  position: absolute;
  top: 20px;
  left: 40px;
  font-size: 30px;
  line-height: 1;
}
@media only screen and (max-width: 768px) {
  .u-faq .acc dt:before {
    font-size: 24px;
    left: 20px;
    top: 15px;
  }
}
.u-faq .acc dt:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  margin-top: -5px;
  right: 30px;
  width: 16px;
  height: 9px;
  background: url(../img/cmn/accodion.svg) no-repeat center right/16px auto;
}
@media only screen and (max-width: 768px) {
  .u-faq .acc dt:after {
    right: 15px;
  }
}
.u-faq .acc dt._open:after {
  transform: scale(1, -1);
}
.u-faq .acc dd {
  background: #FDF4F0;
  padding: 15px;
}
@media only screen and (max-width: 768px) {
  .u-faq .acc dd {
    padding: 10px;
  }
}
.u-faq .acc dd .in {
  background: #fff;
  padding: 20px 20px 20px 75px;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .u-faq .acc dd .in {
    padding: 15px 10px 10px 40px;
  }
}
.u-faq .acc dd .in:before {
  content: "A";
  color: #F29600;
  display: block;
  position: absolute;
  top: 20px;
  left: 25px;
  font-size: 30px;
  line-height: 1;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .u-faq .acc dd .in:before {
    top: 10px;
    left: 10px;
  }
}

/*----------------------------------------

free_account

-----------------------------------------*/
.u-free_account_flow {
  margin-bottom: 53px;
}
@media only screen and (max-width: 768px) {
  .u-free_account_flow {
    margin-bottom: 38px;
  }
}
.u-free_account_flow .text1 {
  font-weight: bold;
  font-size: 28px;
}
@media only screen and (max-width: 768px) {
  .u-free_account_flow .text1 {
    font-size: 24px;
    padding-left: 0;
    text-align: center;
    margin: 0 -20px 37px;
  }
}
.u-free_account_flow .inner {
  max-width: 960px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
}
.u-free_account_flow .flow:after {
  content: " ";
  display: block;
  clear: both;
}
@media only screen and (max-width: 768px) {
  .u-free_account_flow .flow {
    overflow: auto;
  }
}
.u-free_account_flow .flow_inner {
  padding: 0 30px 40px;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .u-free_account_flow .flow_inner {
    width: 900px;
    padding: 0 30px 20px;
  }
}
.u-free_account_flow .flow_child {
  float: left;
  width: 22.22%;
  margin-right: 3.7%;
}
.u-free_account_flow .flow_child:nth-child(4) {
  margin-right: 0;
}
.u-free_account_flow .flow_child:nth-child(4) .flow_order {
  background-image: url(../img/free_account/flow_bg03@2x.png);
}
@media only screen and (max-width: 768px) {
  .u-free_account_flow .flow_child {
    margin-bottom: 22px;
  }
}
.u-free_account_flow .flow_order {
  margin-bottom: 30px;
  text-align: center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center center;
  background-image: url(../img/free_account/flow_bg02@2x.png);
  height: 66px;
  font-size: 16px;
  line-height: 1.375;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FD6D3B;
}
.u-free_account_flow .flow_order._active {
  color: #fff;
  background-image: url(../img/free_account/flow_bg01@2x.png);
}
.u-free_account_flow .flow_ico {
  max-width: 100px;
  margin: 0 auto 16px;
}
.u-free_account_flow .flow_body {
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
  font-size: 14px;
  padding: 20px;
}

.u-free_account_download1 {
  margin: 40px -97px 0;
}
@media only screen and (max-width: 768px) {
  .u-free_account_download2 {
    margin: 28px -20px 0;
  }
}
.u-free_account_download2 .inner {
  max-width: 413px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  color: #fff;
  padding-top: 36px;
  background: url(../img/free_account/download_bg01_sp@2x.png) center top no-repeat;
  background-size: 100% auto;
  text-align: center;
}
.u-free_account_download2 .text01 {
  color: #fff;
  margin-bottom: 16px;
  font-weight: bold;
  font-size: 18px;
}
.u-free_account_download2 .btn {
  text-align: center;
  max-width: 172px;
  margin: 0 auto 22px;
}
.u-free_account_download2 .btn a {
  display: block;
}
.u-free_account_download2 .btn a + a {
  margin-top: 9px;
}
.u-free_account_download2 .image1 {
  width: 308px;
}

/**
* サンクスページを以下の内容に変更
* https://only-story.jp/free-register-app/thanks
* 2021-10-20
*/
.u-free_account_thanks {
  font-family: "YuGothic", "Yu Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
  background: #ffffff;
  font-weight: bold;
  line-height: 150%;
}
.u-free_account_thanks .form {
  width: 50%;
  margin: auto;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .u-free_account_thanks .form {
    width: auto;
  }
}
.u-free_account_thanks .form img {
  width: 70%;
  margin: auto;
}
.u-free_account_thanks .discription {
  width: 70%;
  text-align: center;
  margin: auto;
}
@media only screen and (max-width: 768px) {
  .u-free_account_thanks .discription {
    width: auto;
  }
}
.u-free_account_thanks .discription-text {
  color: #fff;
  font-size: 23px;
  margin: 3% 5% 4%;
  line-height: 150%;
  padding: 4% 0;
  text-align: center;
  background: #192E71;
  font-family: 游明朝, "Yu Mincho";
  letter-spacing: 3px;
}
@media only screen and (max-width: 768px) {
  .u-free_account_thanks .discription-text {
    margin: 7% 5% 4%;
    font-size: 19px;
  }
}
.u-free_account_thanks .discription-mintext {
  color: #182631;
  font-weight: bold;
  font-size: 20px;
  margin: 2% 5% 4%;
  line-height: 150%;
  padding: 0 0 0;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .u-free_account_thanks .discription-mintext {
    font-size: 13px;
    margin: 2% 5% 4%;
  }
}
.u-free_account_thanks .discription img {
  max-width: 85%;
  height: auto;
  margin: 8% auto 5%;
  border-radius: 7px;
}

/*----------------------------------------

privacy_policy

-----------------------------------------*/
.u-privcy .u_title {
  font-size: 28px;
  font-weight: bold;
  margin: 60px 0 20px;
}
@media only screen and (max-width: 768px) {
  .u-privcy .u_title {
    font-size: 22px;
    margin: 40px 0 10px;
  }
}
.u-privcy p + p {
  margin-top: 25px;
}
.u-privcy ol {
  list-style-type: decimal;
  margin: 0 0 40px;
}
.u-privcy ol li {
  list-style-type: decimal;
  margin: 0 0 5px 1em;
}

/*----------------------------------------

seminar_event

-----------------------------------------*/
.u-post_title {
  font-size: 28px;
  font-weight: bold;
  margin: 0 0 50px;
}
@media only screen and (max-width: 768px) {
  .u-post_title {
    font-size: 24px;
    text-align: center;
    margin: 0 0 30px;
  }
}

.p-slide._seminar {
  width: 100%;
  max-width: 1200px;
  overflow: hidden;
  display: block;
  box-sizing: border-box;
}
@media only screen and (max-width: 768px) {
  .p-slide._seminar .slick-arrow.slick-next,
.p-slide._seminar .slick-arrow.slick-prev {
    top: 220px;
  }
}
@media only screen and (max-width: 768px) {
  .p-slide._seminar .u-seminar {
    padding: 20px 20px 30px;
    box-shadow: 0px 0px 20px 0 rgba(0, 0, 0, 0.16);
  }
  .p-slide._seminar .u-seminar + .u-seminar {
    margin-top: 0 !important;
  }
  .p-slide._seminar .u-seminar .more1 {
    max-width: 80%;
    margin: 20px auto 0;
    display: block;
  }
}

.u-seminar {
  position: relative;
  z-index: 1;
  display: block;
  line-height: 1.4;
  color: #393E4C;
}
@media only screen and (max-width: 768px) {
  .u-seminar {
    display: block !important;
    max-width: 380px;
    margin: 0 auto;
    box-sizing: border-box;
  }
  .u-seminar + .u-seminar {
    margin-top: 40px;
  }
}
@media not all and (max-width: 768px) {
  .u-seminar {
    width: 32%;
    float: left;
  }
  .u-seminar:nth-child(3n+1) {
    clear: both;
    margin-right: 2%;
  }
  .u-seminar:nth-child(3n) {
    float: right;
  }
  .u-seminar:nth-child(n+4) {
    margin-top: 50px;
  }
  .u-seminar._col2 {
    width: 49%;
  }
  .u-seminar._col2:nth-child(2n) {
    clear: none !important;
    float: right !important;
    margin-right: 0 !important;
  }
  .u-seminar._col2:nth-child(2n+1) {
    clear: both;
    float: left !important;
    margin-right: 0 !important;
  }
}
.u-seminar .img {
  position: relative;
}
.u-seminar .seminar_title {
  padding: 0 !important;
  text-align: left !important;
}
.u-seminar .more1 {
  width: 100%;
  margin: 20px 0 0;
  max-width: 100%;
}
.u-seminar .more2 {
  max-width: 220px;
  margin: 20px auto 0;
  display: block;
}
.u-seminar .type_list {
  font-size: 14px;
}
.u-seminar .type_list dt {
  font-weight: bold;
}
.u-seminar .type_list dd {
  padding: 0 0 0 1em;
  position: relative;
  margin-top: 5px;
}
.u-seminar .type_list dd:before {
  position: absolute;
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  top: 7px;
  left: 0;
  background: #ccc;
  border-radius: 50%;
}
.u-seminar .type_tb {
  overflow: hidden;
  font-size: 14px;
  margin: 0 0 10px;
}
.u-seminar .type_tb dt {
  float: left;
  width: 50px;
  border-right: 1px solid #CCCCCC;
  clear: both;
}
.u-seminar .type_tb dd {
  overflow: hidden;
  padding: 0 0 4px 10px;
}
.u-seminar img {
  display: block;
  margin: 0 0 15px;
}
.u-seminar .day {
  font-size: 16px;
}
@media only screen and (max-width: 768px) {
  .u-seminar .day {
    font-size: 14px;
    text-align: center;
    margin: 0 0 5px;
  }
}
.u-seminar .seminar_title {
  font-size: 20px;
  font-weight: bold;
  color: #E84715;
  margin: 0 0 15px;
}
@media only screen and (max-width: 768px) {
  .u-seminar .seminar_title {
    font-size: 18px;
  }
}
.u-seminar .mark {
  display: block;
  box-sizing: border-box;
  position: absolute;
  z-index: 1;
  left: -35px;
  top: 35px;
  color: #fff;
  text-align: center;
  font-size: 12px;
  font-weight: bold;
  line-height: 1.333;
  width: 100px;
  height: 67px;
  padding-top: 30px;
  transform: rotate(-45deg);
  transform-origin: left top;
}
.u-seminar .mark:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 50px 50px 50px;
  border-color: transparent transparent #393E4C transparent;
}
.u-seminar .mark._fin:before {
  border-color: transparent transparent #999999 transparent;
}

.u-seminar_cg {
  overflow: hidden;
}
.u-seminar_cg a {
  color: #393E4C;
  display: block;
}
@media only screen and (max-width: 768px) {
  .u-seminar_cg a + a {
    margin-top: 40px;
  }
}
@media not all and (max-width: 768px) {
  .u-seminar_cg a {
    width: 32%;
    float: left;
  }
  .u-seminar_cg a:nth-child(3n+1) {
    clear: both;
    margin-right: 2%;
  }
  .u-seminar_cg a:nth-child(3n) {
    float: right;
  }
}
.u-seminar_cg a img {
  display: block;
  margin: 0 auto 20px;
}
.u-seminar_cg a h3 {
  text-align: center;
  font-weight: bold;
  margin: 0 0 15px;
  font-size: 24px;
}
@media only screen and (max-width: 768px) {
  .u-seminar_cg a h3 {
    font-size: 22px;
  }
}
.u-seminar_cg a:hover {
  text-decoration: none;
}

.u-seminar_content {
  padding-bottom: 60px;
  position: relative;
  z-index: 1;
}
.u-seminar_content._bg1:before {
  content: "";
  display: block;
  width: 500%;
  height: 100%;
  position: absolute;
  top: 0;
  left: -250%;
  background: #FEF6E9;
  z-index: -1;
}
.u-seminar_content._bg2:before {
  content: "";
  display: block;
  width: 500%;
  height: 100%;
  position: absolute;
  top: 0;
  left: -250%;
  background: #FDF4F0;
  z-index: -1;
}
@media only screen and (max-width: 768px) {
  .u-seminar_content {
    padding-bottom: 40px;
  }
}
.u-seminar_content + .u-seminar_content {
  padding-top: 60px;
}
@media only screen and (max-width: 768px) {
  .u-seminar_content + .u-seminar_content {
    padding-top: 40px;
  }
}
.u-seminar_content .row_anker {
  display: inline-block;
  padding: 0 0 0 25px;
  background: url(../img/seminar_event/anker.svg) no-repeat center left;
  font-size: 24px;
}
@media only screen and (max-width: 768px) {
  .u-seminar_content .row_anker {
    font-size: 22px;
  }
}
.u-seminar_content .c-btn:hover .row_anker {
  background: url(../img/seminar_event/anker_hover.svg) no-repeat center left;
}
.u-seminar_content .head img {
  display: block;
  margin: 0 auto 60px;
}
@media only screen and (max-width: 768px) {
  .u-seminar_content .head img {
    margin-bottom: 20px;
  }
}
.u-seminar_content .body p {
  margin: 40px 0;
}
@media only screen and (max-width: 768px) {
  .u-seminar_content .body p {
    margin: 20px 0;
  }
}
.u-seminar_content h2 {
  font-size: 28px;
  margin: 0 0 30px;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .u-seminar_content h2 {
    font-size: 24px;
    margin: 0 0 15px;
  }
}
.u-seminar_content h3 {
  font-size: 22px;
  margin: 0 0 20px;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .u-seminar_content h3 {
    font-size: 18px;
    margin: 0 0 15px;
  }
}
.u-seminar_content table {
  width: 100%;
  font-size: 16px;
  border-top: 1px solid #cccccc;
}
@media only screen and (max-width: 768px) {
  .u-seminar_content table {
    font-size: 14px;
  }
}
.u-seminar_content table th {
  background: #F2F2F2;
  width: 150px;
  text-align: center;
  font-weight: bold;
  padding: 20px 0;
}
@media only screen and (max-width: 768px) {
  .u-seminar_content table th {
    width: 80px;
    padding: 10px;
  }
}
.u-seminar_content table td {
  padding: 20px 30px;
}
@media only screen and (max-width: 768px) {
  .u-seminar_content table td {
    padding: 10px;
  }
}
.u-seminar_content table tr {
  border-bottom: 1px solid #cccccc;
}
.u-seminar_content li {
  padding-left: 1em;
  position: relative;
  line-height: 1.4;
}
.u-seminar_content li:before {
  content: "";
  position: absolute;
  top: 11px;
  left: 2px;
  width: 6px;
  height: 6px;
  background: #CCCCCC;
  border-radius: 50%;
}
@media only screen and (max-width: 768px) {
  .u-seminar_content li:before {
    top: 9px;
  }
}
.u-seminar_content li + li {
  margin-top: 5px;
}
.u-seminar_content .teacher_info {
  overflow: hidden;
}
.u-seminar_content .teacher_info .img {
  max-width: 240px;
  margin: 0 auto 20px;
}
@media not all and (max-width: 768px) {
  .u-seminar_content .teacher_info .img {
    float: right;
    margin: 0 0 0 30px;
  }
}
.u-seminar_content .teacher_info .info {
  overflow: hidden;
}
.u-seminar_content .teacher_info ul {
  margin: 0 0 20px;
}
.u-seminar_content .sns {
  padding: 40px 0;
}
.u-seminar_content .sns .tw {
  display: inline-block;
  padding: 0 0 0 22px;
  background: url(../img/seminar_event/ico_tw.svg) no-repeat center left;
}
.u-seminar_content .sns .tw + .fb {
  margin-left: 20px;
}
.u-seminar_content .sns .fb {
  display: inline-block;
  padding: 0 0 0 13px;
  background: url(../img/seminar_event/ico_fb.svg) no-repeat center left;
}
.u-seminar_content a[target=_blank] {
  display: inline-block;
  padding: 0 17px 0 0;
  background: url(../img/seminar_event/ico_blank.svg) no-repeat center right 4px;
}
.u-seminar_content #form {
  padding-top: 140px;
  margin-top: -140px;
}
.u-seminar_content .c-link {
  margin-bottom: 50px !important;
}
@media only screen and (max-width: 768px) {
  .u-seminar_content .c-link {
    margin-top: 10px;
    margin-bottom: 30px !important;
  }
}

.u-seminar_submit {
  background: #F2F2F2;
  padding: 25px;
  text-align: center;
}
.u-seminar_submit p {
  margin: 0 0 20px;
  font-size: 16px;
}
@media only screen and (max-width: 768px) {
  .u-seminar_submit {
    padding: 20px 10px;
  }
  .u-seminar_submit p {
    font-size: 14px;
    margin: 0 0 15px;
  }
}

.u-seminar_info {
  font-weight: bold;
  padding: 5px 0 0;
}
.u-seminar_info .mark {
  max-width: 120px;
  margin: 10px auto 0;
  background: #393E4C;
  color: #fff;
  padding: 5px 0 7px;
}
.u-seminar_info .mark._fin {
  background: #999999;
}

.single-seminar_event .g-fv ._page, .tax-seminar_event_c .g-fv ._page, .post-type-archive-seminar_event .g-fv ._page {
  height: 200px;
  background: none;
}
@media only screen and (max-width: 768px) {
  .single-seminar_event .g-fv ._page, .tax-seminar_event_c .g-fv ._page, .post-type-archive-seminar_event .g-fv ._page {
    height: 100px;
  }
}
.single-seminar_event .g-fv ._page h1, .tax-seminar_event_c .g-fv ._page h1, .post-type-archive-seminar_event .g-fv ._page h1 {
  color: #E8760E;
  position: relative;
  display: inline-block;
  margin-bottom: 1em;
}
@media only screen and (max-width: 768px) {
  .single-seminar_event .g-fv ._page h1, .tax-seminar_event_c .g-fv ._page h1, .post-type-archive-seminar_event .g-fv ._page h1 {
    margin-bottom: 0;
    font-size: 21px;
  }
}
.single-seminar_event .g-fv ._page h1:before, .tax-seminar_event_c .g-fv ._page h1:before, .post-type-archive-seminar_event .g-fv ._page h1:before {
  content: "";
  position: absolute;
  bottom: -20px;
  display: inline-block;
  width: 230px;
  height: 1px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #E8760E;
  border-radius: 0px;
}
@media only screen and (max-width: 768px) {
  .single-seminar_event .g-fv ._page h1:before, .tax-seminar_event_c .g-fv ._page h1:before, .post-type-archive-seminar_event .g-fv ._page h1:before {
    bottom: -20px;
    width: 100px;
  }
}
.single-seminar_event .recommended, .single-seminar_event .seminar-fv, .tax-seminar_event_c .recommended, .tax-seminar_event_c .seminar-fv, .post-type-archive-seminar_event .recommended, .post-type-archive-seminar_event .seminar-fv {
  background-color: #F4F5F6;
}
@media only screen and (max-width: 768px) {
  .single-seminar_event .recommended .l-inner, .single-seminar_event .recommended .l-inner2, .single-seminar_event .recommended .l-inner3, .single-seminar_event .recommended .l-inner4, .single-seminar_event .recommended .l-localFooter1__inner, .single-seminar_event .recommended .l-localFooter2__inner, .single-seminar_event .seminar-fv .l-inner, .single-seminar_event .seminar-fv .l-inner2, .single-seminar_event .seminar-fv .l-inner3, .single-seminar_event .seminar-fv .l-inner4, .single-seminar_event .seminar-fv .l-localFooter1__inner, .single-seminar_event .seminar-fv .l-localFooter2__inner, .tax-seminar_event_c .recommended .l-inner, .tax-seminar_event_c .recommended .l-inner2, .tax-seminar_event_c .recommended .l-inner3, .tax-seminar_event_c .recommended .l-inner4, .tax-seminar_event_c .recommended .l-localFooter1__inner, .tax-seminar_event_c .recommended .l-localFooter2__inner, .tax-seminar_event_c .seminar-fv .l-inner, .tax-seminar_event_c .seminar-fv .l-inner2, .tax-seminar_event_c .seminar-fv .l-inner3, .tax-seminar_event_c .seminar-fv .l-inner4, .tax-seminar_event_c .seminar-fv .l-localFooter1__inner, .tax-seminar_event_c .seminar-fv .l-localFooter2__inner, .post-type-archive-seminar_event .recommended .l-inner, .post-type-archive-seminar_event .recommended .l-inner2, .post-type-archive-seminar_event .recommended .l-inner3, .post-type-archive-seminar_event .recommended .l-inner4, .post-type-archive-seminar_event .recommended .l-localFooter1__inner, .post-type-archive-seminar_event .recommended .l-localFooter2__inner, .post-type-archive-seminar_event .seminar-fv .l-inner, .post-type-archive-seminar_event .seminar-fv .l-inner2, .post-type-archive-seminar_event .seminar-fv .l-inner3, .post-type-archive-seminar_event .seminar-fv .l-inner4, .post-type-archive-seminar_event .seminar-fv .l-localFooter1__inner, .post-type-archive-seminar_event .seminar-fv .l-localFooter2__inner {
    padding: 0;
  }
  .single-seminar_event .recommended .p-slide, .single-seminar_event .seminar-fv .p-slide, .tax-seminar_event_c .recommended .p-slide, .tax-seminar_event_c .seminar-fv .p-slide, .post-type-archive-seminar_event .recommended .p-slide, .post-type-archive-seminar_event .seminar-fv .p-slide {
    padding: 0;
  }
}
.single-seminar_event .recommended .u-seminar, .single-seminar_event .seminar-fv .u-seminar, .tax-seminar_event_c .recommended .u-seminar, .tax-seminar_event_c .seminar-fv .u-seminar, .post-type-archive-seminar_event .recommended .u-seminar, .post-type-archive-seminar_event .seminar-fv .u-seminar {
  display: flex;
  align-items: center;
  width: auto;
  float: none;
  margin-right: 0;
  gap: 0px 60px;
}
.single-seminar_event .recommended .u-seminar .img, .single-seminar_event .seminar-fv .u-seminar .img, .tax-seminar_event_c .recommended .u-seminar .img, .tax-seminar_event_c .seminar-fv .u-seminar .img, .post-type-archive-seminar_event .recommended .u-seminar .img, .post-type-archive-seminar_event .seminar-fv .u-seminar .img {
  box-shadow: 0 3px 30px rgba(0, 0, 0, 0.16);
  width: 50%;
}
.single-seminar_event .recommended .u-seminar .seminar_text, .single-seminar_event .seminar-fv .u-seminar .seminar_text, .tax-seminar_event_c .recommended .u-seminar .seminar_text, .tax-seminar_event_c .seminar-fv .u-seminar .seminar_text, .post-type-archive-seminar_event .recommended .u-seminar .seminar_text, .post-type-archive-seminar_event .seminar-fv .u-seminar .seminar_text {
  width: 50%;
}
.single-seminar_event .recommended .u-seminar img, .single-seminar_event .seminar-fv .u-seminar img, .tax-seminar_event_c .recommended .u-seminar img, .tax-seminar_event_c .seminar-fv .u-seminar img, .post-type-archive-seminar_event .recommended .u-seminar img, .post-type-archive-seminar_event .seminar-fv .u-seminar img {
  margin: 0;
}
.single-seminar_event .recommended .u-seminar .mark, .single-seminar_event .seminar-fv .u-seminar .mark, .tax-seminar_event_c .recommended .u-seminar .mark, .tax-seminar_event_c .seminar-fv .u-seminar .mark, .post-type-archive-seminar_event .recommended .u-seminar .mark, .post-type-archive-seminar_event .seminar-fv .u-seminar .mark {
  font-size: 22px;
  top: 10px;
}
.single-seminar_event .recommended .u-seminar .seminar_title, .single-seminar_event .seminar-fv .u-seminar .seminar_title, .tax-seminar_event_c .recommended .u-seminar .seminar_title, .tax-seminar_event_c .seminar-fv .u-seminar .seminar_title, .post-type-archive-seminar_event .recommended .u-seminar .seminar_title, .post-type-archive-seminar_event .seminar-fv .u-seminar .seminar_title {
  font-size: 30px;
  line-height: 57px;
}
.single-seminar_event .recommended .u-seminar .day, .single-seminar_event .seminar-fv .u-seminar .day, .tax-seminar_event_c .recommended .u-seminar .day, .tax-seminar_event_c .seminar-fv .u-seminar .day, .post-type-archive-seminar_event .recommended .u-seminar .day, .post-type-archive-seminar_event .seminar-fv .u-seminar .day {
  font-size: 25px;
  border-top: 1px solid #393E4C;
  width: 90%;
  padding-top: 10px;
}
.single-seminar_event .recommended .u-seminar .c-btn, .single-seminar_event .seminar-fv .u-seminar .c-btn, .tax-seminar_event_c .recommended .u-seminar .c-btn, .tax-seminar_event_c .seminar-fv .u-seminar .c-btn, .post-type-archive-seminar_event .recommended .u-seminar .c-btn, .post-type-archive-seminar_event .seminar-fv .u-seminar .c-btn {
  border-radius: 0;
  background-color: #F07427;
  font-size: 23px;
  margin: 45px auto 0;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.16);
  width: auto;
  max-width: 100%;
  padding: 5px 30px;
}
.single-seminar_event .recommended .u-seminar .c-btn:hover, .single-seminar_event .seminar-fv .u-seminar .c-btn:hover, .tax-seminar_event_c .recommended .u-seminar .c-btn:hover, .tax-seminar_event_c .seminar-fv .u-seminar .c-btn:hover, .post-type-archive-seminar_event .recommended .u-seminar .c-btn:hover, .post-type-archive-seminar_event .seminar-fv .u-seminar .c-btn:hover {
  background-color: #FFFFFF;
  color: #F07427;
}
@media only screen and (max-width: 768px) {
  .single-seminar_event .recommended .u-seminar, .single-seminar_event .seminar-fv .u-seminar, .tax-seminar_event_c .recommended .u-seminar, .tax-seminar_event_c .seminar-fv .u-seminar, .post-type-archive-seminar_event .recommended .u-seminar, .post-type-archive-seminar_event .seminar-fv .u-seminar {
    flex-direction: column;
    gap: 30px 0;
    max-width: 100%;
  }
  .single-seminar_event .recommended .u-seminar .img, .single-seminar_event .seminar-fv .u-seminar .img, .tax-seminar_event_c .recommended .u-seminar .img, .tax-seminar_event_c .seminar-fv .u-seminar .img, .post-type-archive-seminar_event .recommended .u-seminar .img, .post-type-archive-seminar_event .seminar-fv .u-seminar .img {
    width: auto;
  }
  .single-seminar_event .recommended .u-seminar .seminar_text, .single-seminar_event .seminar-fv .u-seminar .seminar_text, .tax-seminar_event_c .recommended .u-seminar .seminar_text, .tax-seminar_event_c .seminar-fv .u-seminar .seminar_text, .post-type-archive-seminar_event .recommended .u-seminar .seminar_text, .post-type-archive-seminar_event .seminar-fv .u-seminar .seminar_text {
    width: auto;
  }
  .single-seminar_event .recommended .u-seminar .seminar_title, .single-seminar_event .seminar-fv .u-seminar .seminar_title, .tax-seminar_event_c .recommended .u-seminar .seminar_title, .tax-seminar_event_c .seminar-fv .u-seminar .seminar_title, .post-type-archive-seminar_event .recommended .u-seminar .seminar_title, .post-type-archive-seminar_event .seminar-fv .u-seminar .seminar_title {
    margin: 36px auto 26px;
    font-size: 20px;
    line-height: 1.5;
  }
  .single-seminar_event .recommended .u-seminar .day, .single-seminar_event .seminar-fv .u-seminar .day, .tax-seminar_event_c .recommended .u-seminar .day, .tax-seminar_event_c .seminar-fv .u-seminar .day, .post-type-archive-seminar_event .recommended .u-seminar .day, .post-type-archive-seminar_event .seminar-fv .u-seminar .day {
    font-size: 20px;
    width: auto;
    text-align: left;
    padding-top: 20px;
  }
  .single-seminar_event .recommended .u-seminar .c-btn, .single-seminar_event .seminar-fv .u-seminar .c-btn, .tax-seminar_event_c .recommended .u-seminar .c-btn, .tax-seminar_event_c .seminar-fv .u-seminar .c-btn, .post-type-archive-seminar_event .recommended .u-seminar .c-btn, .post-type-archive-seminar_event .seminar-fv .u-seminar .c-btn {
    font-size: 20px;
    padding: 5px 10px;
    width: 100%;
    padding: 10px 10px;
    margin: 35px auto 0;
  }
}
.single-seminar_event .u-seminar .mark, .tax-seminar_event_c .u-seminar .mark, .post-type-archive-seminar_event .u-seminar .mark {
  transform: none;
  width: 155px;
  width: 20%;
  left: auto;
  right: 0;
  top: 5px;
  background-color: #FFF;
  color: #393E4C;
  line-height: 2;
  font-size: 18px;
  padding: 0;
  height: auto;
}
.single-seminar_event .u-seminar .mark:before, .tax-seminar_event_c .u-seminar .mark:before, .post-type-archive-seminar_event .u-seminar .mark:before {
  content: none;
}
.single-seminar_event .u-seminar .seminar_title, .tax-seminar_event_c .u-seminar .seminar_title, .post-type-archive-seminar_event .u-seminar .seminar_title {
  color: #393E4C;
}
.single-seminar_event .u-seminar .day, .tax-seminar_event_c .u-seminar .day, .post-type-archive-seminar_event .u-seminar .day {
  font-weight: bold;
}
.single-seminar_event .u-seminar.is-hidden, .tax-seminar_event_c .u-seminar.is-hidden, .post-type-archive-seminar_event .u-seminar.is-hidden {
  padding: 0;
  opacity: 0;
  height: 0;
  margin: 0;
}
.single-seminar_event .u-seminar.is-hidden > *, .tax-seminar_event_c .u-seminar.is-hidden > *, .post-type-archive-seminar_event .u-seminar.is-hidden > * {
  display: none !important;
}
@media only screen and (max-width: 768px) {
  .single-seminar_event .u-seminar .mark, .tax-seminar_event_c .u-seminar .mark, .post-type-archive-seminar_event .u-seminar .mark {
    width: auto;
    font-size: 17px;
    padding: 0 5px;
  }
  .single-seminar_event .u-seminar .day, .tax-seminar_event_c .u-seminar .day, .post-type-archive-seminar_event .u-seminar .day {
    font-size: 12px;
    text-align: left;
  }
}
.single-seminar_event a.u-seminar:hover, .tax-seminar_event_c a.u-seminar:hover, .post-type-archive-seminar_event a.u-seminar:hover {
  text-decoration: none;
}
.single-seminar_event .c-btn.more, .tax-seminar_event_c .c-btn.more, .post-type-archive-seminar_event .c-btn.more {
  margin: 20px auto;
  display: block;
  cursor: pointer;
}

.what-giverpitch {
  background: #F4F5F6;
}
.what-giverpitch .c-orange {
  color: #F07427;
}
.what-giverpitch .giverpitch-notes {
  font-size: 30px;
  font-weight: bold;
  margin: 0 0 62px;
}
@media only screen and (max-width: 768px) {
  .what-giverpitch .giverpitch-notes {
    font-size: 15px;
  }
}
.what-giverpitch .giverpitch-img {
  max-width: 1000px;
  margin: auto;
  box-shadow: 0 3px 15px 0 rgba(0, 0, 0, 0.16);
}
.what-giverpitch .arrow-img {
  text-align: center;
  margin: 56px auto 33px;
}
@media only screen and (max-width: 768px) {
  .what-giverpitch .arrow-img {
    margin: 33px auto 33px;
  }
}
.what-giverpitch .matching {
  text-align: center;
  font-size: 30px;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .what-giverpitch .matching {
    font-size: 18px;
  }
}
.what-giverpitch .c-btn {
  border-radius: 0;
  margin: 100px auto 80px;
  display: block;
  border: 2px solid #fff;
  box-shadow: 0 3px 15px 0 rgba(0, 0, 0, 0.16);
  font-size: 23px;
  line-height: 69px;
  max-width: 383px;
}
.what-giverpitch .c-btn:hover {
  border-color: #02B7B0;
}
@media only screen and (max-width: 768px) {
  .what-giverpitch .c-btn {
    margin: 71px auto 40px;
    max-width: 100%;
    font-size: 21px;
    line-height: 65px;
  }
}

/*----------------------------------------

column

-----------------------------------------*/
.u-useful_materials_detail {
  position: relative;
}
.u-useful_materials_detail:after {
  content: " ";
  display: block;
  clear: both;
}
.u-useful_materials_detail .information {
  box-sizing: border-box;
  float: left;
  width: 56.66%;
}
@media only screen and (max-width: 1360px) {
  .u-useful_materials_detail .information {
    padding-left: 40px;
  }
}
@media only screen and (max-width: 768px) {
  .u-useful_materials_detail .information {
    padding-left: 0;
    float: none;
    width: auto;
    margin-bottom: 60px;
  }
}
.u-useful_materials_detail .information .image1 {
  text-align: center;
  margin-bottom: 32px;
}
.u-useful_materials_detail .information .desc + .desc {
  margin-top: 57px;
}
@media only screen and (max-width: 768px) {
  .u-useful_materials_detail .information .desc + .desc {
    margin-top: 38px;
  }
}
.u-useful_materials_detail .information .desc .hl1 {
  font-size: 24px;
  margin-bottom: 34px;
}
@media only screen and (max-width: 768px) {
  .u-useful_materials_detail .information .desc .hl1 {
    margin-bottom: 24px;
  }
}
.u-useful_materials_detail .information .desc ul {
  border: 1px solid #ccc;
  padding: 25px;
}
.u-useful_materials_detail .information .desc ul li {
  position: relative;
  padding-left: 36px;
}
@media only screen and (max-width: 768px) {
  .u-useful_materials_detail .information .desc ul li {
    padding-left: 44px;
  }
}
.u-useful_materials_detail .information .desc ul li:before {
  content: "";
  display: block;
  width: 14px;
  height: 13px;
  background: url(../img/useful_materials/ico_check.svg) center center no-repeat;
  background-size: 100% auto;
  position: absolute;
  left: 10px;
  top: 10px;
}
@media only screen and (max-width: 768px) {
  .u-useful_materials_detail .information .desc ul li:before {
    width: 21px;
    height: 21px;
    top: 5px;
  }
}
.u-useful_materials_detail .contact {
  float: right;
  width: 40%;
}
@media only screen and (max-width: 768px) {
  .u-useful_materials_detail .contact {
    float: none;
    width: auto;
  }
}

/*----------------------------------------

ver_free

-----------------------------------------*/
.u-free_bg {
  background: #fff url(../img/ver_free/bg_pc.png) no-repeat bottom 60px right 120px;
}
@media only screen and (max-width: 768px) {
  .u-free_bg {
    background: #fff url(../img/ver_free/bg_sp.png) no-repeat bottom 25px right 15px;
  }
}
.u-free_bg .c-h2 {
  text-align: left;
}
@media only screen and (max-width: 768px) {
  .u-free_bg .c-h2 {
    text-align: center;
  }
}

.u-free_flow {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  width: 1040px;
  margin: 0 auto;
  justify-content: center;
}
@media only screen and (max-width: 768px) {
  .u-free_flow {
    flex-wrap: nowrap;
    width: 1080px;
  }
}
.u-free_flow li {
  padding: 60px 15px 0;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  box-sizing: border-box;
  width: 25%;
}
@media only screen and (max-width: 768px) {
  .u-free_flow li {
    padding: 40px 15px 20px;
  }
}
.u-free_flow li span {
  display: block;
  margin: 0 0 20px;
}
.u-free_flow li img {
  width: auto;
  height: 175px;
}

.u-free_list1 {
  font-size: 22px;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .u-free_list1 {
    font-size: 20px;
  }
}

.u-free_txt1 {
  font-size: 14px;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .u-free_txt1 {
    text-align: left;
  }
}

.u-free_txt2 {
  text-align: center;
  padding: 40px 0 0;
}
@media only screen and (max-width: 768px) {
  .u-free_txt2 {
    padding: 20px 0 0;
  }
}
.u-free_txt2 p {
  color: #E84715;
  font-size: 28px;
  font-weight: bold;
  margin: 0 0 40px;
}
@media only screen and (max-width: 768px) {
  .u-free_txt2 p {
    font-size: 24px;
    margin: 0 0 10px;
  }
}

.u-free_content1 {
  text-align: center;
}
.u-free_content1 .zu {
  max-width: 806px;
  margin: 0 auto 50px;
}
@media only screen and (max-width: 768px) {
  .u-free_content1 .zu {
    margin-bottom: 40px;
  }
}
.u-free_content1 .zu2 {
  max-width: 980px;
  margin: 0 auto 50px;
}
@media only screen and (max-width: 768px) {
  .u-free_content1 .zu2 {
    margin-bottom: 40px;
  }
}
.u-free_content1 .big {
  font-size: 22px;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .u-free_content1 .big {
    font-size: 20px;
  }
}
.u-free_content1 .mideum {
  font-size: 26px;
}
@media only screen and (max-width: 768px) {
  .u-free_content1 .mideum {
    font-size: 24px;
  }
}
.u-free_content1 .check {
  text-align: left;
  margin: 20px auto 0;
  display: block;
  width: 300px;
}
.u-free_content1 .check li {
  font-size: 22px;
  padding: 0 0 0 26px;
  background: url(../img/ver_free/check@2x.png) no-repeat center left/22px auto;
}

.u-free_logo {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  max-width: 840px;
  margin: 0 auto;
}
.u-free_logo li {
  width: 25%;
  box-sizing: border-box;
  padding: 10px 10px;
  text-align: center;
}
.u-free_logo li img {
  max-width: 160px;
  width: 100%;
}

/*----------------------------------------

ver_paid

-----------------------------------------*/
.u-paid_bg {
  background: #fff url(../img/ver_paid/bg_pc.png) no-repeat bottom 60px right 30px;
}
@media only screen and (max-width: 768px) {
  .u-paid_bg {
    background: #fff url(../img/ver_paid/bg_sp.png) no-repeat bottom 25px right 15px;
  }
}
.u-paid_bg .c-h2 {
  text-align: left;
}
@media only screen and (max-width: 768px) {
  .u-paid_bg .c-h2 {
    text-align: center;
  }
}

.u-paid_txt1 {
  font-size: 14px;
  text-align: center;
  margin: 0 0 40px;
}
@media only screen and (max-width: 768px) {
  .u-paid_txt1 {
    margin: -15px 0 20px;
    font-size: 12px;
  }
}

.u-paid_txt2 {
  font-size: 16px;
  text-align: center;
  margin: -50px 0 40px;
}
@media only screen and (max-width: 768px) {
  .u-paid_txt2 {
    margin: -20px 0 20px;
    font-size: 12px;
  }
}

.p-step._paid {
  max-width: 780px;
  flex-wrap: wrap;
  margin: 0 auto;
}
.p-step._paid li {
  width: 32%;
}
.p-step._paid li:nth-child(n+4) {
  margin-top: 20px;
}
@media only screen and (max-width: 768px) {
  .p-step._paid li {
    width: 48%;
  }
  .p-step._paid li img {
    width: 70px;
  }
}

/*----------------------------------------

chira-ceo_features

-----------------------------------------*/
body.page-template-chira-ceo_features .features-img {
  padding-bottom: 20px;
}
body.page-template-chira-ceo_features .features-content1 {
  column-count: 2;
}
body.page-template-chira-ceo_features .features-content1 .features-img {
  padding-bottom: 20px;
}
body.page-template-chira-ceo_features .features-content3 {
  display: flex;
  gap: 0 20px;
}
body.page-template-chira-ceo_features .campaign-text {
  font-size: 30px;
  font-weight: bold;
  border-top: 1px solid #393E4C;
  display: inline-block;
  padding-top: 20px;
}
@media only screen and (max-width: 768px) {
  body.page-template-chira-ceo_features .campaign-text {
    font-size: 24px;
  }
}
body.page-template-chira-ceo_features .form-action {
  padding-top: 140px;
}
body.page-template-chira-ceo_features .form-action .c-btn {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}
body.page-template-chira-ceo_features .movie-wrap {
  padding-bottom: 140px;
}
body.page-template-chira-ceo_features .movie {
  text-align: center;
}
@media only screen and (max-width: 768px) {
  body.page-template-chira-ceo_features .movie {
    padding: 0 20px;
  }
  body.page-template-chira-ceo_features .movie iframe {
    max-width: 100%;
  }
}

/*----------------------------------------

chira-ceo_functions

-----------------------------------------*/
body.page-template-chira-ceo_functions .functions-main .functions-content:nth-of-type(odd) {
  background: #fdf4f0;
}
body.page-template-chira-ceo_functions .functions-main .functions-content .l-inner, body.page-template-chira-ceo_functions .functions-main .functions-content .l-inner2, body.page-template-chira-ceo_functions .functions-main .functions-content .l-inner3, body.page-template-chira-ceo_functions .functions-main .functions-content .l-inner4, body.page-template-chira-ceo_functions .functions-main .functions-content .l-localFooter1__inner, body.page-template-chira-ceo_functions .functions-main .functions-content .l-localFooter2__inner {
  display: flex;
  align-items: center;
  font-weight: bold;
  gap: 0 150px;
  padding-top: 69px;
  padding-bottom: 69px;
}
@media only screen and (max-width: 768px) {
  body.page-template-chira-ceo_functions .functions-main .functions-content .l-inner, body.page-template-chira-ceo_functions .functions-main .functions-content .l-inner2, body.page-template-chira-ceo_functions .functions-main .functions-content .l-inner3, body.page-template-chira-ceo_functions .functions-main .functions-content .l-inner4, body.page-template-chira-ceo_functions .functions-main .functions-content .l-localFooter1__inner, body.page-template-chira-ceo_functions .functions-main .functions-content .l-localFooter2__inner {
    flex-direction: column;
    gap: 67px 0;
  }
}
body.page-template-chira-ceo_functions .functions-main .functions-content .l-inner .functions-img, body.page-template-chira-ceo_functions .functions-main .functions-content .l-inner2 .functions-img, body.page-template-chira-ceo_functions .functions-main .functions-content .l-inner3 .functions-img, body.page-template-chira-ceo_functions .functions-main .functions-content .l-inner4 .functions-img, body.page-template-chira-ceo_functions .functions-main .functions-content .l-localFooter1__inner .functions-img, body.page-template-chira-ceo_functions .functions-main .functions-content .l-localFooter2__inner .functions-img {
  box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.16);
  width: 469px;
  flex-shrink: 0;
}
@media only screen and (max-width: 768px) {
  body.page-template-chira-ceo_functions .functions-main .functions-content .l-inner .functions-img, body.page-template-chira-ceo_functions .functions-main .functions-content .l-inner2 .functions-img, body.page-template-chira-ceo_functions .functions-main .functions-content .l-inner3 .functions-img, body.page-template-chira-ceo_functions .functions-main .functions-content .l-inner4 .functions-img, body.page-template-chira-ceo_functions .functions-main .functions-content .l-localFooter1__inner .functions-img, body.page-template-chira-ceo_functions .functions-main .functions-content .l-localFooter2__inner .functions-img {
    width: auto;
  }
}
body.page-template-chira-ceo_functions .functions-main .functions-content .l-inner .functions-text h2, body.page-template-chira-ceo_functions .functions-main .functions-content .l-inner2 .functions-text h2, body.page-template-chira-ceo_functions .functions-main .functions-content .l-inner3 .functions-text h2, body.page-template-chira-ceo_functions .functions-main .functions-content .l-inner4 .functions-text h2, body.page-template-chira-ceo_functions .functions-main .functions-content .l-localFooter1__inner .functions-text h2, body.page-template-chira-ceo_functions .functions-main .functions-content .l-localFooter2__inner .functions-text h2 {
  font-size: 40px;
  margin-bottom: 20px;
  position: relative;
}
@media only screen and (max-width: 768px) {
  body.page-template-chira-ceo_functions .functions-main .functions-content .l-inner .functions-text h2, body.page-template-chira-ceo_functions .functions-main .functions-content .l-inner2 .functions-text h2, body.page-template-chira-ceo_functions .functions-main .functions-content .l-inner3 .functions-text h2, body.page-template-chira-ceo_functions .functions-main .functions-content .l-inner4 .functions-text h2, body.page-template-chira-ceo_functions .functions-main .functions-content .l-localFooter1__inner .functions-text h2, body.page-template-chira-ceo_functions .functions-main .functions-content .l-localFooter2__inner .functions-text h2 {
    font-size: 30px;
    border-left: 2px solid #E8760E;
    padding-left: 11px;
  }
}
body.page-template-chira-ceo_functions .functions-main .functions-content .l-inner .functions-text h2:before, body.page-template-chira-ceo_functions .functions-main .functions-content .l-inner2 .functions-text h2:before, body.page-template-chira-ceo_functions .functions-main .functions-content .l-inner3 .functions-text h2:before, body.page-template-chira-ceo_functions .functions-main .functions-content .l-inner4 .functions-text h2:before, body.page-template-chira-ceo_functions .functions-main .functions-content .l-localFooter1__inner .functions-text h2:before, body.page-template-chira-ceo_functions .functions-main .functions-content .l-localFooter2__inner .functions-text h2:before {
  content: "";
  position: absolute;
  width: 44px;
  background: #E8760E;
  height: 7px;
  top: 50%;
  transform: translateY(-50%);
  left: -69px;
}
@media only screen and (max-width: 768px) {
  body.page-template-chira-ceo_functions .functions-main .functions-content .l-inner .functions-text h2:before, body.page-template-chira-ceo_functions .functions-main .functions-content .l-inner2 .functions-text h2:before, body.page-template-chira-ceo_functions .functions-main .functions-content .l-inner3 .functions-text h2:before, body.page-template-chira-ceo_functions .functions-main .functions-content .l-inner4 .functions-text h2:before, body.page-template-chira-ceo_functions .functions-main .functions-content .l-localFooter1__inner .functions-text h2:before, body.page-template-chira-ceo_functions .functions-main .functions-content .l-localFooter2__inner .functions-text h2:before {
    content: none;
  }
}
body.page-template-chira-ceo_functions .functions-main .functions-content .l-inner .functions-text .tag-wrap, body.page-template-chira-ceo_functions .functions-main .functions-content .l-inner2 .functions-text .tag-wrap, body.page-template-chira-ceo_functions .functions-main .functions-content .l-inner3 .functions-text .tag-wrap, body.page-template-chira-ceo_functions .functions-main .functions-content .l-inner4 .functions-text .tag-wrap, body.page-template-chira-ceo_functions .functions-main .functions-content .l-localFooter1__inner .functions-text .tag-wrap, body.page-template-chira-ceo_functions .functions-main .functions-content .l-localFooter2__inner .functions-text .tag-wrap {
  display: flex;
  gap: 0 10px;
}
body.page-template-chira-ceo_functions .functions-main .functions-content .l-inner .functions-text .orange-tag, body.page-template-chira-ceo_functions .functions-main .functions-content .l-inner2 .functions-text .orange-tag, body.page-template-chira-ceo_functions .functions-main .functions-content .l-inner3 .functions-text .orange-tag, body.page-template-chira-ceo_functions .functions-main .functions-content .l-inner4 .functions-text .orange-tag, body.page-template-chira-ceo_functions .functions-main .functions-content .l-localFooter1__inner .functions-text .orange-tag, body.page-template-chira-ceo_functions .functions-main .functions-content .l-localFooter2__inner .functions-text .orange-tag {
  background: #E8760E;
  color: #fff;
  padding: 0 25px;
  display: inline-block;
  margin: 0;
  margin-bottom: 20px;
  font-size: 30px;
}
@media only screen and (max-width: 768px) {
  body.page-template-chira-ceo_functions .functions-main .functions-content .l-inner .functions-text .orange-tag, body.page-template-chira-ceo_functions .functions-main .functions-content .l-inner2 .functions-text .orange-tag, body.page-template-chira-ceo_functions .functions-main .functions-content .l-inner3 .functions-text .orange-tag, body.page-template-chira-ceo_functions .functions-main .functions-content .l-inner4 .functions-text .orange-tag, body.page-template-chira-ceo_functions .functions-main .functions-content .l-localFooter1__inner .functions-text .orange-tag, body.page-template-chira-ceo_functions .functions-main .functions-content .l-localFooter2__inner .functions-text .orange-tag {
    font-size: 25px;
  }
}
body.page-template-chira-ceo_functions .functions-main .functions-content .l-inner .functions-text .description, body.page-template-chira-ceo_functions .functions-main .functions-content .l-inner2 .functions-text .description, body.page-template-chira-ceo_functions .functions-main .functions-content .l-inner3 .functions-text .description, body.page-template-chira-ceo_functions .functions-main .functions-content .l-inner4 .functions-text .description, body.page-template-chira-ceo_functions .functions-main .functions-content .l-localFooter1__inner .functions-text .description, body.page-template-chira-ceo_functions .functions-main .functions-content .l-localFooter2__inner .functions-text .description {
  font-size: 25px;
  line-height: 1.8;
}
@media only screen and (max-width: 768px) {
  body.page-template-chira-ceo_functions .functions-main .functions-content .l-inner .functions-text .description, body.page-template-chira-ceo_functions .functions-main .functions-content .l-inner2 .functions-text .description, body.page-template-chira-ceo_functions .functions-main .functions-content .l-inner3 .functions-text .description, body.page-template-chira-ceo_functions .functions-main .functions-content .l-inner4 .functions-text .description, body.page-template-chira-ceo_functions .functions-main .functions-content .l-localFooter1__inner .functions-text .description, body.page-template-chira-ceo_functions .functions-main .functions-content .l-localFooter2__inner .functions-text .description {
    font-size: 18px;
  }
}
body.page-template-chira-ceo_functions .form-action {
  padding-top: 140px;
}
@media only screen and (max-width: 768px) {
  body.page-template-chira-ceo_functions .form-action {
    padding-top: 30px;
  }
}
body.page-template-chira-ceo_functions .form-action .c-btn {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}
body.page-template-chira-ceo_functions .campaign-text {
  font-size: 30px;
  font-weight: bold;
  border-top: 1px solid #393E4C;
  display: inline-block;
  padding-top: 20px;
}
@media only screen and (max-width: 768px) {
  body.page-template-chira-ceo_functions .campaign-text {
    font-size: 24px;
  }
}
body.page-template-chira-ceo_functions .movie-wrap {
  padding-bottom: 140px;
}
body.page-template-chira-ceo_functions .movie {
  text-align: center;
}
@media only screen and (max-width: 768px) {
  body.page-template-chira-ceo_functions .movie {
    padding: 0 20px;
  }
  body.page-template-chira-ceo_functions .movie iframe {
    max-width: 100%;
  }
}

/*----------------------------------------

information

-----------------------------------------*/
body.post-type-archive-information .information-section._bg {
  background-color: #F4F5F6;
  padding-top: 100px;
}
body.post-type-archive-information .information-wrap {
  margin: 0px auto 100px;
  max-width: 640px;
}
body.post-type-archive-information .information-wrap h2 {
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  margin: 0 auto 60px;
}
@media only screen and (max-width: 768px) {
  body.post-type-archive-information .information-wrap h2 {
    font-size: 24px;
    margin: 0 auto 30px;
  }
}
body.post-type-archive-information .information-window {
  background-color: #FFF;
  padding: 10px 60px;
  max-height: 350px;
  overflow-y: auto;
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.16);
}
@media only screen and (max-width: 768px) {
  body.post-type-archive-information .information-window {
    max-height: 300px;
    padding: 10px 40px;
  }
}
body.post-type-archive-information .information-post {
  border-bottom: 1px solid #393E4C;
  padding: 30px 0;
  display: flex;
  gap: 0 20px;
}
body.post-type-archive-information .information-post:nth-last-of-type(1) {
  border: 0;
}
@media only screen and (max-width: 768px) {
  body.post-type-archive-information .information-post {
    flex-direction: column;
  }
}
body.post-type-archive-information .information-post a {
  color: #393E4C;
  font-size: 15px;
}
body.post-type-archive-information .information-post a:hover {
  color: #DA6115;
}
.single-information .l-section {
  min-height: 300px;
}

/*----------------------------------------

sales

-----------------------------------------*/
@media only screen and (max-width: 768px) {
  .slider._top {
    padding-top: 30px;
  }
}

.pc {
  display: inline-block;
}
@media only screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media only screen and (max-width: 768px) {
  .sp {
    display: inline-block;
  }
}

.sales_top ._page {
  height: auto;
  padding: 153px 0 11px;
  background: #fff url(../img/sales/main.png) no-repeat center/cover;
}
@media only screen and (max-width: 768px) {
  .sales_top ._page {
    padding: 118px 0 0;
    margin: 0 0 20px;
    background: #fff url(../img/sales/main_sp.png) no-repeat center/cover;
  }
}
.sales_top .title_wrap {
  text-align: center;
  color: #1f2432;
}
.sales_top .title_wrap h1 {
  font-weight: bold;
  font-size: 54px;
  line-height: 81px;
  letter-spacing: 0.03em;
  padding: 0 0 28px;
}
@media only screen and (max-width: 768px) {
  .sales_top .title_wrap h1 {
    font-size: 32px;
    line-height: 39px;
    padding: 0 0 48px;
  }
}
.sales_top .title_wrap .text_m {
  font-weight: bold;
  font-size: 22px;
  line-height: 35px;
  padding: 0 0 51px;
}
@media only screen and (max-width: 768px) {
  .sales_top .title_wrap .text_m {
    font-size: 16px;
    line-height: 27px;
    letter-spacing: -0.03em;
    padding: 0 0 27px;
  }
}
.sales_top .title_wrap .text_m span {
  font-size: 32px;
}
@media only screen and (max-width: 768px) {
  .sales_top .title_wrap .text_m span {
    font-size: 24px;
  }
}
.sales_top .title_wrap .text_b_wrap {
  width: 540px;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .sales_top .title_wrap .text_b_wrap {
    width: 100%;
  }
}
.sales_top .title_wrap .text_b_wrap .text_b {
  position: relative;
  font-weight: bold;
  font-size: 22px;
  line-height: 33px;
  color: #fff;
  padding: 11px 22px 12px;
  background: linear-gradient(180deg, #EB620C 0%, #F29600 100%);
}
@media only screen and (max-width: 768px) {
  .sales_top .title_wrap .text_b_wrap .text_b {
    font-size: 15px;
    line-height: 22px;
    padding: 13px 0 14px;
  }
}
.sales_top .title_wrap .text_b_wrap .text_b::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -15px;
  width: 26px;
  height: 15px;
  background-color: #F29600;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
}
.sales_top .title_wrap .text_b_wrap .text_sub {
  text-align: right;
  color: #393E4C;
  font-size: 12px;
  padding: 5px 0 0;
  line-height: 18px;
}
@media only screen and (max-width: 768px) {
  .sales_top .title_wrap .text_b_wrap .text_sub {
    position: absolute;
    right: 6px;
  }
}

.g-main.sales .technique .technique_box {
  position: relative;
  padding: 72px 0 56px;
  background: #F2F2F2;
}
@media only screen and (max-width: 768px) {
  .g-main.sales .technique .technique_box {
    padding: 48px 0 40px;
  }
}
.g-main.sales .technique .technique_box::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -40px;
  width: 86px;
  height: 40px;
  background-color: #F2F2F2;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  .g-main.sales .technique .technique_box::after {
    bottom: -22px;
    width: 48px;
    height: 22px;
  }
}
.g-main.sales .technique .technique_box h2 {
  font-weight: bold;
  font-size: 38px;
  text-align: center;
  line-height: 57px;
  color: #393E4C;
  padding: 0 0 56px;
}
@media only screen and (max-width: 768px) {
  .g-main.sales .technique .technique_box h2 {
    font-size: 26px;
    line-height: 35px;
    padding: 0 0 32px;
  }
}
.g-main.sales .technique .technique_box .technique_pattern {
  display: flex;
  justify-content: space-between;
  max-width: 800px;
  margin: 0 auto 48px;
}
@media only screen and (max-width: 768px) {
  .g-main.sales .technique .technique_box .technique_pattern {
    flex-wrap: wrap;
    justify-content: center;
    max-width: 100%;
    margin: 0 auto 24px;
  }
}
.g-main.sales .technique .technique_box .technique_pattern figure {
  width: 240px;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .g-main.sales .technique .technique_box .technique_pattern figure {
    margin: 0 0 32px;
  }
}
.g-main.sales .technique .technique_box .technique_pattern figure img {
  width: 220px;
  margin: 0 0 16px;
}
@media only screen and (max-width: 768px) {
  .g-main.sales .technique .technique_box .technique_pattern figure img {
    width: 170px;
  }
}
.g-main.sales .technique .technique_box .technique_pattern figure figcaption {
  font-weight: 700;
  font-size: 16px;
  line-height: 25px;
}
.g-main.sales .technique .technique_box .technique_pattern figure figcaption .notes {
  font-size: 12px;
  line-height: 21px;
}
@media only screen and (max-width: 768px) {
  .g-main.sales .technique .technique_box .technique_pattern figure figcaption .notes {
    font-size: 14px;
  }
}
.g-main.sales .technique .technique_box p {
  font-size: 34px;
  font-weight: bold;
  line-height: 51px;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .g-main.sales .technique .technique_box p {
    font-size: 20px;
    line-height: 28px;
  }
}
.g-main.sales .technique .technique_box p .c-orange {
  font-size: 40px;
}
@media only screen and (max-width: 768px) {
  .g-main.sales .technique .technique_box p .c-orange {
    font-size: 20px;
  }
}
.g-main.sales .technique .flow {
  padding: 39px 0 0;
}
@media only screen and (max-width: 768px) {
  .g-main.sales .technique .flow {
    width: 89%;
    margin: 0 auto;
    padding: 22px 0 0;
  }
}
.g-main.sales .technique .flow section {
  position: relative;
  max-width: 1130px;
  margin: 0 auto;
  padding: 56px 0 80px;
  text-align: center;
  border-bottom: 1.5px solid #5f5f5f;
}
@media only screen and (max-width: 768px) {
  .g-main.sales .technique .flow section {
    padding: 56px 0 40px;
  }
}
.g-main.sales .technique .flow section > figure {
  width: 80px;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .g-main.sales .technique .flow section > figure {
    width: 70px;
  }
}
.g-main.sales .technique .flow section h3 {
  font-size: 38px;
  font-weight: bold;
  color: #393E4C;
  line-height: 57px;
  padding: 0 0 16px;
}
@media only screen and (max-width: 768px) {
  .g-main.sales .technique .flow section h3 {
    font-size: 21px;
    line-height: 31.5px;
  }
}
.g-main.sales .technique .flow section h3 span {
  font-family: "Roboto", sans-serif;
  font-weight: normal;
  font-size: 50px;
  line-height: 58px;
}
@media only screen and (max-width: 768px) {
  .g-main.sales .technique .flow section h3 span {
    font-size: 34px;
    line-height: 40px;
  }
}
.g-main.sales .technique .flow section > p {
  font-weight: 500;
  font-size: 18px;
  line-height: 27px;
  color: #393E4C;
  padding: 0 0 48px;
}
@media only screen and (max-width: 768px) {
  .g-main.sales .technique .flow section > p {
    font-size: 16px;
    line-height: 24px;
    padding: 0 0 32px;
  }
}
.g-main.sales .technique .flow section .event_box {
  max-width: 1130px;
  display: flex;
  justify-content: space-between;
  margin: 0 auto 56px;
}
@media only screen and (max-width: 768px) {
  .g-main.sales .technique .flow section .event_box {
    flex-wrap: wrap;
    display: block;
    margin: 0 auto 40px;
  }
}
.g-main.sales .technique .flow section .event_box .event {
  width: 350px;
  height: 337px;
  text-align: left;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.16);
}
@media only screen and (max-width: 768px) {
  .g-main.sales .technique .flow section .event_box .event {
    width: 100%;
    height: auto;
    max-width: 370px;
    margin: 0 auto 32px;
  }
}
.g-main.sales .technique .flow section .event_box .event figure {
  width: 100%;
}
.g-main.sales .technique .flow section .event_box .event .text_box {
  padding: 16px;
}
.g-main.sales .technique .flow section .event_box .event .text_box span {
  font-weight: bold;
  font-size: 13px;
  line-height: 20px;
  color: rgba(57, 62, 76, 0.6);
  padding: 0 0 8px;
}
.g-main.sales .technique .flow section .event_box .event .text_box p {
  font-weight: bold;
  font-size: 18px;
  line-height: 26px;
  color: #303544;
}
@media only screen and (max-width: 768px) {
  .g-main.sales .technique .flow section .event_box .event .text_box p {
    font-size: 16px;
  }
}
.g-main.sales .technique .flow section .event_btn {
  display: block;
  width: 214px;
  margin: 0 auto;
  text-align: center;
  padding: 9px 26px;
  font-weight: bold;
  font-size: 20px;
  line-height: 30px;
  color: #F19929;
  border: 2px solid #F19929;
  border-radius: 26px;
}
.g-main.sales .technique .flow section .event_btn:hover {
  text-decoration: none;
  background-color: #F19929;
  color: #fff;
}
.g-main.sales .technique .flow section .sales_box {
  width: 840px;
  margin: 0 auto;
  padding: 0 0 40px;
  background-color: #F2F2F2;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.16);
  text-align: left;
}
@media only screen and (max-width: 768px) {
  .g-main.sales .technique .flow section .sales_box {
    width: 100%;
    max-width: 370px;
    margin: 0 auto 24px;
  }
}
.g-main.sales .technique .flow section .sales_box .sales_title {
  font-size: 22px;
  line-height: 33px;
  font-weight: bold;
  text-align: center;
  background-color: #5F5F5F;
  color: #fff;
  padding: 13.5px 0;
}
@media only screen and (max-width: 768px) {
  .g-main.sales .technique .flow section .sales_box .sales_title {
    font-size: 18px;
    line-height: 27px;
    padding: 10.5px 0;
  }
}
.g-main.sales .technique .flow section .sales_box .member_area {
  padding: 32px 32px 0;
}
@media only screen and (max-width: 768px) {
  .g-main.sales .technique .flow section .sales_box .member_area {
    padding: 24px 16px 0;
  }
}
.g-main.sales .technique .flow section .sales_box .member_area h4 {
  position: relative;
  font-weight: bold;
  font-size: 18px;
  line-height: 24px;
  color: #393E4C;
  padding: 0 0 16px 28px;
}
@media only screen and (max-width: 768px) {
  .g-main.sales .technique .flow section .sales_box .member_area h4 {
    font-size: 16px;
    padding: 0 0 8px 26px;
  }
}
.g-main.sales .technique .flow section .sales_box .member_area h4::before {
  position: absolute;
  content: "";
  width: 18px;
  height: 20px;
  top: 1px;
  left: 0;
  background-image: url(../img/sales/sales.png);
  background-size: 18px auto;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 768px) {
  .g-main.sales .technique .flow section .sales_box .member_area h4::before {
    width: 16px;
    height: 18px;
    top: 2px;
    background-size: 16px auto;
  }
}
.g-main.sales .technique .flow section .sales_box .member_area p {
  display: flex;
  align-items: center;
  background-color: #fff;
  border-radius: 5px;
}
@media only screen and (max-width: 768px) {
  .g-main.sales .technique .flow section .sales_box .member_area p {
    padding: 16px;
    display: block;
    line-height: 23px;
  }
}
.g-main.sales .technique .flow section .sales_box .member_area p .background {
  font-weight: bold;
  font-size: 12px;
  line-height: 20px;
  color: #393E4C;
  padding: 18px 10px 18px 24px;
}
@media only screen and (max-width: 768px) {
  .g-main.sales .technique .flow section .sales_box .member_area p .background {
    display: block;
    padding: 0;
  }
}
.g-main.sales .technique .flow section .sales_box .member_area p .member_text {
  padding: 18px 24px 18px 0;
  font-size: 16px;
  line-height: 24px;
  color: #393E4C;
}
@media only screen and (max-width: 768px) {
  .g-main.sales .technique .flow section .sales_box .member_area p .member_text {
    font-size: 15px;
    padding: 0;
  }
}
.g-main.sales .technique .flow section .letter_img {
  width: 650px;
  margin: 0 auto 40px;
}
@media only screen and (max-width: 768px) {
  .g-main.sales .technique .flow section .letter_img {
    width: 100%;
    max-width: 370px;
    margin: 0 auto 24px;
  }
}
.g-main.sales .technique .flow section .letter_box {
  width: 748px;
  margin: 0 auto;
  padding: 32px 46px;
  background-color: #F2F2F2;
}
@media only screen and (max-width: 768px) {
  .g-main.sales .technique .flow section .letter_box {
    width: 89%;
    max-width: 370px;
    margin: 0 auto;
    padding: 24px 14px 8px;
  }
}
.g-main.sales .technique .flow section .letter_box h5 {
  font-weight: bold;
  font-size: 26px;
  line-height: 39px;
  color: #393E4C;
}
@media only screen and (max-width: 768px) {
  .g-main.sales .technique .flow section .letter_box h5 {
    font-size: 18px;
    line-height: 27px;
    padding: 0 0 16px;
  }
}
.g-main.sales .technique .flow section .letter_box figure {
  display: flex;
  justify-content: space-between;
  width: 748px;
}
@media only screen and (max-width: 768px) {
  .g-main.sales .technique .flow section .letter_box figure {
    display: block;
    width: 100%;
  }
}
.g-main.sales .technique .flow section .letter_box figure img {
  width: 358px;
}
@media only screen and (max-width: 768px) {
  .g-main.sales .technique .flow section .letter_box figure img {
    padding: 0 0 16px;
  }
}
.g-main.sales .technique .flow .no_b {
  border-bottom: none;
}
.g-main.sales .technique .flow .letter {
  padding: 40px 0 40px;
}
.g-main.sales .ceo {
  padding: 72px 0 48px;
  text-align: center;
  background-color: #F2F2F2;
}
@media only screen and (max-width: 768px) {
  .g-main.sales .ceo {
    padding: 48px 0 22px;
  }
}
.g-main.sales .ceo h3 {
  font-weight: bold;
  font-size: 34px;
  line-height: 51px;
  color: #393E4C;
  padding: 0 0 24px;
}
@media only screen and (max-width: 768px) {
  .g-main.sales .ceo h3 {
    font-size: 20px;
    line-height: 28px;
  }
}
.g-main.sales .ceo h3 .c-orange {
  font-size: 40px;
  line-height: 60px;
  color: #F07427;
}
@media only screen and (max-width: 768px) {
  .g-main.sales .ceo h3 .c-orange {
    font-size: 20px;
    line-height: 28px;
  }
}
.g-main.sales .ceo > p {
  font-weight: 500;
  font-size: 18px;
  line-height: 27px;
  padding: 0 0 48px;
}
@media only screen and (max-width: 768px) {
  .g-main.sales .ceo > p {
    font-size: 16px;
    line-height: 24px;
    padding: 0 0 32px;
  }
}
.g-main.sales .ceo .ceo_box {
  width: 840px;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .g-main.sales .ceo .ceo_box {
    width: 89%;
    max-width: 370px;
  }
}
.g-main.sales .ceo .ceo_box h4 {
  font-weight: bold;
  font-size: 30px;
  line-height: 45px;
  padding: 0 0 24px;
}
@media only screen and (max-width: 768px) {
  .g-main.sales .ceo .ceo_box h4 {
    font-size: 20px;
    line-height: 30px;
    padding: 0 0 16px;
  }
}
.g-main.sales .ceo .ceo_box .ceo_cont {
  width: 100%;
  margin: 0 auto 32px;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.16);
  background-color: #fff;
}
.g-main.sales .ceo .ceo_box .ceo_cont .ceo_title {
  display: flex;
  justify-content: center;
  padding: 13.5px 0;
  color: #fff;
  background-color: #5F5F5F;
}
@media only screen and (max-width: 768px) {
  .g-main.sales .ceo .ceo_box .ceo_cont .ceo_title {
    align-items: center;
    padding: 11px 26.5px;
  }
}
.g-main.sales .ceo .ceo_box .ceo_cont .ceo_title .no {
  position: relative;
  top: -2px;
  font-weight: 500;
  font-size: 16px;
  line-height: 29px;
  padding: 0 16px 0 0;
}
@media only screen and (max-width: 768px) {
  .g-main.sales .ceo .ceo_box .ceo_cont .ceo_title .no {
    width: 50px;
    font-size: 12px;
    line-height: 12px;
    padding: 0 8px 0 0;
  }
}
.g-main.sales .ceo .ceo_box .ceo_cont .ceo_title .no span {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 30px;
  line-height: 30px;
  position: relative;
  top: 3px;
}
@media only screen and (max-width: 768px) {
  .g-main.sales .ceo .ceo_box .ceo_cont .ceo_title .no span {
    font-size: 20px;
    line-height: 20px;
  }
}
.g-main.sales .ceo .ceo_box .ceo_cont .ceo_title h5 {
  font-weight: 700;
  font-size: 22px;
  line-height: 33px;
}
@media only screen and (max-width: 768px) {
  .g-main.sales .ceo .ceo_box .ceo_cont .ceo_title h5 {
    font-size: 16px;
    line-height: 24px;
    text-align: left;
  }
}
.g-main.sales .ceo .ceo_box .ceo_cont > p {
  font-weight: 500;
  font-size: 18px;
  line-height: 25px;
  color: #393E4C;
  padding: 40px 0;
}
@media only screen and (max-width: 768px) {
  .g-main.sales .ceo .ceo_box .ceo_cont > p {
    font-size: 15px;
    line-height: 22px;
    padding: 20px 0;
  }
}
.g-main.sales .ceo .ceo_box .ceo_cont > p .c-orange {
  font-weight: 500;
}
.g-main.sales .ceo .ceo_box .ceo_cont figure {
  width: 676px;
  margin: 0 auto;
  padding: 0 0 40px;
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  .g-main.sales .ceo .ceo_box .ceo_cont figure {
    width: 100%;
    display: block;
  }
}
.g-main.sales .ceo .ceo_box .ceo_cont figure .ce0_01 {
  width: 226px;
}
@media only screen and (max-width: 768px) {
  .g-main.sales .ceo .ceo_box .ceo_cont figure .ce0_01 {
    margin: 12px auto 40px;
  }
}
.g-main.sales .ceo .ceo_box .ceo_cont figure .ce0_02 {
  width: 362px;
}
@media only screen and (max-width: 768px) {
  .g-main.sales .ceo .ceo_box .ceo_cont figure .ce0_02 {
    width: 300px;
    margin: 0 auto;
  }
}
.g-main.sales .ceo .ceo_box .ceo_cont + .only_text {
  background-position: right bottom;
  background-size: auto 160px;
  background-image: url(../img/sales/ceo_05.png);
  background-repeat: no-repeat;
}
@media only screen and (max-width: 768px) {
  .g-main.sales .ceo .ceo_box .ceo_cont + .only_text {
    background-size: 100% auto;
    background-image: url(../img/sales/ceo_05_sp.png);
  }
}
.g-main.sales .ceo .ceo_box .ceo_cont + .only_text p {
  width: 400px;
  margin: 0 0 0 40px;
  text-align: left;
}
@media only screen and (max-width: 768px) {
  .g-main.sales .ceo .ceo_box .ceo_cont + .only_text p {
    width: auto;
    margin: 0 auto;
    padding: 20px 16px 109px;
  }
}
.g-main.sales .ceo .ceo_box .ceo_cont + .only_text + .three {
  background-image: url(../img/sales/ceo_04.png);
}
@media only screen and (max-width: 768px) {
  .g-main.sales .ceo .ceo_box .ceo_cont + .only_text + .three {
    background-size: 100% auto;
    background-image: url(../img/sales/ceo_04_sp.png);
  }
}
.g-main.sales .merit {
  padding: 72px 0 80px;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .g-main.sales .merit {
    width: 89%;
    margin: 0 auto;
    padding: 48px 0 14px;
  }
}
.g-main.sales .merit h3 {
  font-weight: bold;
  font-size: 38px;
  line-height: 57px;
  padding: 0 0 24px;
}
@media only screen and (max-width: 768px) {
  .g-main.sales .merit h3 {
    font-size: 26px;
    line-height: 39px;
    padding: 0 0 16px;
  }
}
.g-main.sales .merit > p {
  font-weight: 500;
  font-size: 18px;
  line-height: 27px;
  padding: 0 0 50px;
}
@media only screen and (max-width: 768px) {
  .g-main.sales .merit > p {
    font-size: 16px;
    line-height: 24px;
    padding: 0 0 30px;
  }
}
.g-main.sales .merit .merit_box {
  display: flex;
  justify-content: space-between;
  width: 936px;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .g-main.sales .merit .merit_box {
    display: block;
    width: 100%;
  }
}
.g-main.sales .merit .merit_box .merit_pattern {
  width: 280px;
}
@media only screen and (max-width: 768px) {
  .g-main.sales .merit .merit_box .merit_pattern {
    width: 100%;
    padding: 0 0 43px;
  }
}
.g-main.sales .merit .merit_box .merit_pattern figure {
  display: block;
  width: 160px;
  margin: 0 auto 24px;
}
@media only screen and (max-width: 768px) {
  .g-main.sales .merit .merit_box .merit_pattern figure {
    width: 140px;
    margin: 0 auto 16px;
  }
}
.g-main.sales .merit .merit_box .merit_pattern h4 {
  font-weight: bold;
  font-size: 19px;
  text-align: 27px;
  padding: 0 0 16px;
}
.g-main.sales .merit .merit_box .merit_pattern > p {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  text-align: left;
}
.g-main.sales .form_titile {
  font-size: 32px;
  font-weight: 700;
  line-height: 48px;
  text-align: center;
  padding: 56px 0 54px;
  color: #393E4C;
  background-color: #E8E8E8;
}
@media only screen and (max-width: 768px) {
  .g-main.sales .form_titile {
    font-size: 20px;
    line-height: 28px;
    letter-spacing: -0.04em;
    background-color: #fff;
    padding: 0 0 30px;
  }
}
.g-main.sales .p-cta2 {
  width: 880px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.16);
  padding-top: 0;
  padding-bottom: 0;
}
@media only screen and (max-width: 768px) {
  .g-main.sales .p-cta2 {
    width: 100%;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
  }
}
.g-main.sales .p-cta2 .c-h2 {
  position: relative;
  font-size: 34px !important;
  padding: 20px 0;
  color: #fff;
  margin-bottom: 54px !important;
  background-image: linear-gradient(180deg, #f5620c, #f29600);
  border-radius: 10px 10px 0 0;
}
@media only screen and (max-width: 768px) {
  .g-main.sales .p-cta2 .c-h2 {
    margin-bottom: 40px !important;
    border-radius: 0;
  }
}
.g-main.sales .p-cta2 .c-h2::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 20px;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: -20px;
  background-image: url(/img/page-chiraceo/contact_allow.png);
  background-repeat: no-repeat;
  background-size: 50px 20px;
}
.g-main.sales .overflow {
  width: 630px;
}
.g-main.sales .overflow .qa_link {
  display: none;
}

/*----------------------------------------

webinar

-----------------------------------------*/
.page-template-lp-conference-0118 #g-header,
.page-template-lp-conference-0511 #g-header,
.page-template-lp-conference-0727 #g-header,
.page-template-lp-conference-0801 #g-header {
  display: none;
}
.page-template-lp-conference-0118 .webinar,
.page-template-lp-conference-0511 .webinar,
.page-template-lp-conference-0727 .webinar,
.page-template-lp-conference-0801 .webinar {
  color: #0E0E0E;
}
.page-template-lp-conference-0118 .webinar .pc,
.page-template-lp-conference-0511 .webinar .pc,
.page-template-lp-conference-0727 .webinar .pc,
.page-template-lp-conference-0801 .webinar .pc {
  display: block;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0118 .webinar .pc,
.page-template-lp-conference-0511 .webinar .pc,
.page-template-lp-conference-0727 .webinar .pc,
.page-template-lp-conference-0801 .webinar .pc {
    display: none;
  }
}
.page-template-lp-conference-0118 .webinar .sp,
.page-template-lp-conference-0511 .webinar .sp,
.page-template-lp-conference-0727 .webinar .sp,
.page-template-lp-conference-0801 .webinar .sp {
  display: none;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0118 .webinar .sp,
.page-template-lp-conference-0511 .webinar .sp,
.page-template-lp-conference-0727 .webinar .sp,
.page-template-lp-conference-0801 .webinar .sp {
    display: block;
  }
}
.page-template-lp-conference-0118 .webinar .bg_g,
.page-template-lp-conference-0511 .webinar .bg_g,
.page-template-lp-conference-0727 .webinar .bg_g,
.page-template-lp-conference-0801 .webinar .bg_g {
  background-color: #F8F8F8;
}
.page-template-lp-conference-0118 .webinar .mv,
.page-template-lp-conference-0511 .webinar .mv,
.page-template-lp-conference-0727 .webinar .mv,
.page-template-lp-conference-0801 .webinar .mv {
  height: 780px;
  background: #e9e9e9 url(../img/webinar/bg_01.png) no-repeat center/cover;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0118 .webinar .mv,
.page-template-lp-conference-0511 .webinar .mv,
.page-template-lp-conference-0727 .webinar .mv,
.page-template-lp-conference-0801 .webinar .mv {
    height: 1154px;
    background: #e9e9e9 url(../img/webinar/bg_01_sp.png) no-repeat top/cover;
  }
}
.page-template-lp-conference-0118 .webinar .mv .title_wrapper,
.page-template-lp-conference-0511 .webinar .mv .title_wrapper,
.page-template-lp-conference-0727 .webinar .mv .title_wrapper,
.page-template-lp-conference-0801 .webinar .mv .title_wrapper {
  position: relative;
  width: 1184px;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0118 .webinar .mv .title_wrapper,
.page-template-lp-conference-0511 .webinar .mv .title_wrapper,
.page-template-lp-conference-0727 .webinar .mv .title_wrapper,
.page-template-lp-conference-0801 .webinar .mv .title_wrapper {
    width: 100%;
  }
}
.page-template-lp-conference-0118 .webinar .mv .title_wrapper .copy,
.page-template-lp-conference-0511 .webinar .mv .title_wrapper .copy,
.page-template-lp-conference-0727 .webinar .mv .title_wrapper .copy,
.page-template-lp-conference-0801 .webinar .mv .title_wrapper .copy {
  display: flex;
  align-items: center;
  position: absolute;
  top: 47px;
  transform: rotate(-14deg);
}
@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0118 .webinar .mv .title_wrapper .copy,
.page-template-lp-conference-0511 .webinar .mv .title_wrapper .copy,
.page-template-lp-conference-0727 .webinar .mv .title_wrapper .copy,
.page-template-lp-conference-0801 .webinar .mv .title_wrapper .copy {
    width: 400px;
    margin: 0 auto;
    left: 10px;
  }
}
.page-template-lp-conference-0118 .webinar .mv .title_wrapper .copy .circle,
.page-template-lp-conference-0511 .webinar .mv .title_wrapper .copy .circle,
.page-template-lp-conference-0727 .webinar .mv .title_wrapper .copy .circle,
.page-template-lp-conference-0801 .webinar .mv .title_wrapper .copy .circle {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 118px;
  height: 118px;
  text-align: center;
  font-weight: bold;
  font-size: 19.6px;
  line-height: 24.63px;
  letter-spacing: 0.02em;
  border-radius: 50%;
  border: 3px solid #0E0E0E;
  box-sizing: border-box;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0118 .webinar .mv .title_wrapper .copy .circle,
.page-template-lp-conference-0511 .webinar .mv .title_wrapper .copy .circle,
.page-template-lp-conference-0727 .webinar .mv .title_wrapper .copy .circle,
.page-template-lp-conference-0801 .webinar .mv .title_wrapper .copy .circle {
    width: 96px;
    height: 96px;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: -0.05em;
  }
}
.page-template-lp-conference-0118 .webinar .mv .title_wrapper .copy .circle span,
.page-template-lp-conference-0511 .webinar .mv .title_wrapper .copy .circle span,
.page-template-lp-conference-0727 .webinar .mv .title_wrapper .copy .circle span,
.page-template-lp-conference-0801 .webinar .mv .title_wrapper .copy .circle span {
  font-size: 34.1px;
  line-height: 25.09px;
  font-family: "Roboto", sans-serif;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0118 .webinar .mv .title_wrapper .copy .circle span,
.page-template-lp-conference-0511 .webinar .mv .title_wrapper .copy .circle span,
.page-template-lp-conference-0727 .webinar .mv .title_wrapper .copy .circle span,
.page-template-lp-conference-0801 .webinar .mv .title_wrapper .copy .circle span {
    padding: 0 4px 0 0;
    font-size: 28px;
    line-height: 20px;
  }
}
.page-template-lp-conference-0118 .webinar .mv .title_wrapper .copy .copy_test,
.page-template-lp-conference-0511 .webinar .mv .title_wrapper .copy .copy_test,
.page-template-lp-conference-0727 .webinar .mv .title_wrapper .copy .copy_test,
.page-template-lp-conference-0801 .webinar .mv .title_wrapper .copy .copy_test {
  position: relative;
  margin: 0 0 0 10px;
  font-family: "Roboto";
  font-weight: 700;
  font-size: 28px;
  line-height: 33px;
  letter-spacing: 0.02em;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0118 .webinar .mv .title_wrapper .copy .copy_test,
.page-template-lp-conference-0511 .webinar .mv .title_wrapper .copy .copy_test,
.page-template-lp-conference-0727 .webinar .mv .title_wrapper .copy .copy_test,
.page-template-lp-conference-0801 .webinar .mv .title_wrapper .copy .copy_test {
    font-size: 22px;
    line-height: 26px;
  }
}
.page-template-lp-conference-0118 .webinar .mv .title_wrapper .copy .copy_test::before,
.page-template-lp-conference-0511 .webinar .mv .title_wrapper .copy .copy_test::before,
.page-template-lp-conference-0727 .webinar .mv .title_wrapper .copy .copy_test::before,
.page-template-lp-conference-0801 .webinar .mv .title_wrapper .copy .copy_test::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 119px;
  width: 29px;
  height: 30px;
  background-image: url(../img/webinar/copy_test.png);
  background-size: cover;
  transform: rotate(16deg);
}
@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0118 .webinar .mv .title_wrapper .copy .copy_test::before,
.page-template-lp-conference-0511 .webinar .mv .title_wrapper .copy .copy_test::before,
.page-template-lp-conference-0727 .webinar .mv .title_wrapper .copy .copy_test::before,
.page-template-lp-conference-0801 .webinar .mv .title_wrapper .copy .copy_test::before {
    top: 26px;
    left: 22px;
  }
}
.page-template-lp-conference-0118 .webinar .mv .title_wrapper .title,
.page-template-lp-conference-0511 .webinar .mv .title_wrapper .title,
.page-template-lp-conference-0727 .webinar .mv .title_wrapper .title,
.page-template-lp-conference-0801 .webinar .mv .title_wrapper .title {
  position: absolute;
  top: 134px;
  left: 103px;
  width: 1030px;
  font-weight: 700;
  font-size: 52px;
  line-height: 77px;
  letter-spacing: 0.03em;
  color: #FFFFFF;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0118 .webinar .mv .title_wrapper .title,
.page-template-lp-conference-0511 .webinar .mv .title_wrapper .title,
.page-template-lp-conference-0727 .webinar .mv .title_wrapper .title,
.page-template-lp-conference-0801 .webinar .mv .title_wrapper .title {
    width: 400px;
    font-size: 32px;
    line-height: 51px;
    top: 160px;
    left: 47%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }
}
.page-template-lp-conference-0118 .webinar .mv .title_wrapper .title h1,
.page-template-lp-conference-0511 .webinar .mv .title_wrapper .title h1,
.page-template-lp-conference-0727 .webinar .mv .title_wrapper .title h1,
.page-template-lp-conference-0801 .webinar .mv .title_wrapper .title h1 {
  position: relative;
}
.page-template-lp-conference-0118 .webinar .mv .title_wrapper .title h1 span,
.page-template-lp-conference-0511 .webinar .mv .title_wrapper .title h1 span,
.page-template-lp-conference-0727 .webinar .mv .title_wrapper .title h1 span,
.page-template-lp-conference-0801 .webinar .mv .title_wrapper .title h1 span {
  display: inline-block;
  padding: 12px 34px;
  background: #0E0E0E;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.25);
  transform: rotate(-8deg);
}
@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0118 .webinar .mv .title_wrapper .title h1 span,
.page-template-lp-conference-0511 .webinar .mv .title_wrapper .title h1 span,
.page-template-lp-conference-0727 .webinar .mv .title_wrapper .title h1 span,
.page-template-lp-conference-0801 .webinar .mv .title_wrapper .title h1 span {
    padding: 8px 30px 8px 20px;
  }
}
@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0118 .webinar .mv .title_wrapper .title h1 span:nth-child(1),
.page-template-lp-conference-0511 .webinar .mv .title_wrapper .title h1 span:nth-child(1),
.page-template-lp-conference-0727 .webinar .mv .title_wrapper .title h1 span:nth-child(1),
.page-template-lp-conference-0801 .webinar .mv .title_wrapper .title h1 span:nth-child(1) {
    padding: 8px 20px 8px 30px;
  }
}
.page-template-lp-conference-0118 .webinar .mv .title_wrapper .title h1 span:nth-child(2),
.page-template-lp-conference-0511 .webinar .mv .title_wrapper .title h1 span:nth-child(2),
.page-template-lp-conference-0727 .webinar .mv .title_wrapper .title h1 span:nth-child(2),
.page-template-lp-conference-0801 .webinar .mv .title_wrapper .title h1 span:nth-child(2) {
  position: absolute;
  top: 88px;
  left: -50px;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0118 .webinar .mv .title_wrapper .title h1 span:nth-child(2),
.page-template-lp-conference-0511 .webinar .mv .title_wrapper .title h1 span:nth-child(2),
.page-template-lp-conference-0727 .webinar .mv .title_wrapper .title h1 span:nth-child(2),
.page-template-lp-conference-0801 .webinar .mv .title_wrapper .title h1 span:nth-child(2) {
    position: absolute;
    top: 66px;
    left: 33px;
  }
}
@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0118 .webinar .mv .title_wrapper .title h1 span:nth-child(3),
.page-template-lp-conference-0511 .webinar .mv .title_wrapper .title h1 span:nth-child(3),
.page-template-lp-conference-0727 .webinar .mv .title_wrapper .title h1 span:nth-child(3),
.page-template-lp-conference-0801 .webinar .mv .title_wrapper .title h1 span:nth-child(3) {
    position: absolute;
    top: 139px;
    left: 70px;
  }
}
.page-template-lp-conference-0118 .webinar .mv .title_wrapper .time,
.page-template-lp-conference-0511 .webinar .mv .title_wrapper .time,
.page-template-lp-conference-0727 .webinar .mv .title_wrapper .time,
.page-template-lp-conference-0801 .webinar .mv .title_wrapper .time {
  position: absolute;
  top: 300px;
  left: 620px;
  display: inline-block;
  padding: 8px 18px;
  font-family: "Roboto";
  font-size: 24px;
  line-height: 28px;
  text-align: center;
  letter-spacing: 0.03em;
  background-color: #FFFFFF;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.15);
  transform: rotate(-8deg);
}
@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0118 .webinar .mv .title_wrapper .time,
.page-template-lp-conference-0511 .webinar .mv .title_wrapper .time,
.page-template-lp-conference-0727 .webinar .mv .title_wrapper .time,
.page-template-lp-conference-0801 .webinar .mv .title_wrapper .time {
    width: 310px;
    top: 390px;
    left: 39%;
    transform: translateX(-50%) rotate(-8deg);
    -webkit-transform: translateX(-50%) rotate(-8deg);
    -ms-transform: translateX(-50%) rotate(-8deg);
    padding: 8px 18px;
    font-size: 22px;
    line-height: 26px;
  }
}
.page-template-lp-conference-0118 .webinar .mv .title_wrapper .time span,
.page-template-lp-conference-0511 .webinar .mv .title_wrapper .time span,
.page-template-lp-conference-0727 .webinar .mv .title_wrapper .time span,
.page-template-lp-conference-0801 .webinar .mv .title_wrapper .time span {
  font-size: 19px;
  line-height: 22.27px;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0118 .webinar .mv .title_wrapper .time span,
.page-template-lp-conference-0511 .webinar .mv .title_wrapper .time span,
.page-template-lp-conference-0727 .webinar .mv .title_wrapper .time span,
.page-template-lp-conference-0801 .webinar .mv .title_wrapper .time span {
    font-size: 17px;
    line-height: 20px;
  }
}
.page-template-lp-conference-0118 .webinar .mv .section_wrapper,
.page-template-lp-conference-0511 .webinar .mv .section_wrapper,
.page-template-lp-conference-0727 .webinar .mv .section_wrapper,
.page-template-lp-conference-0801 .webinar .mv .section_wrapper {
  position: relative;
  width: 1184px;
  height: 100%;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0118 .webinar .mv .section_wrapper,
.page-template-lp-conference-0511 .webinar .mv .section_wrapper,
.page-template-lp-conference-0727 .webinar .mv .section_wrapper,
.page-template-lp-conference-0801 .webinar .mv .section_wrapper {
    width: 370px;
  }
}
.page-template-lp-conference-0118 .webinar .mv .section_wrapper .section,
.page-template-lp-conference-0511 .webinar .mv .section_wrapper .section,
.page-template-lp-conference-0727 .webinar .mv .section_wrapper .section,
.page-template-lp-conference-0801 .webinar .mv .section_wrapper .section {
  position: absolute;
  display: flex;
  justify-content: space-between;
  width: 906px;
  right: 0;
  bottom: 48px;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0118 .webinar .mv .section_wrapper .section,
.page-template-lp-conference-0511 .webinar .mv .section_wrapper .section,
.page-template-lp-conference-0727 .webinar .mv .section_wrapper .section,
.page-template-lp-conference-0801 .webinar .mv .section_wrapper .section {
    display: block;
    width: 100%;
    left: 0;
  }
}
.page-template-lp-conference-0118 .webinar .mv .section_wrapper .section figure,
.page-template-lp-conference-0511 .webinar .mv .section_wrapper .section figure,
.page-template-lp-conference-0727 .webinar .mv .section_wrapper .section figure,
.page-template-lp-conference-0801 .webinar .mv .section_wrapper .section figure {
  width: 286px;
  filter: drop-shadow(10px 10px 20px rgba(0, 0, 0, 0.15));
}
@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0118 .webinar .mv .section_wrapper .section figure,
.page-template-lp-conference-0511 .webinar .mv .section_wrapper .section figure,
.page-template-lp-conference-0727 .webinar .mv .section_wrapper .section figure,
.page-template-lp-conference-0801 .webinar .mv .section_wrapper .section figure {
    width: 208px;
  }
}
.page-template-lp-conference-0118 .webinar .mv .section_wrapper .section figure + .sec_img_02,
.page-template-lp-conference-0511 .webinar .mv .section_wrapper .section figure + .sec_img_02,
.page-template-lp-conference-0727 .webinar .mv .section_wrapper .section figure + .sec_img_02,
.page-template-lp-conference-0801 .webinar .mv .section_wrapper .section figure + .sec_img_02 {
  margin: 0 auto;
}
.page-template-lp-conference-0118 .webinar .mv .section_wrapper .section figure + .sec_img_03,
.page-template-lp-conference-0511 .webinar .mv .section_wrapper .section figure + .sec_img_03,
.page-template-lp-conference-0727 .webinar .mv .section_wrapper .section figure + .sec_img_03,
.page-template-lp-conference-0801 .webinar .mv .section_wrapper .section figure + .sec_img_03 {
  float: right;
}
.page-template-lp-conference-0118 .webinar .cont,
.page-template-lp-conference-0511 .webinar .cont,
.page-template-lp-conference-0727 .webinar .cont,
.page-template-lp-conference-0801 .webinar .cont {
  position: relative;
  background-image: url(../img/webinar/bg_02.png);
  background-position: left bottom;
  background-repeat: no-repeat;
  background-size: 749px;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0118 .webinar .cont,
.page-template-lp-conference-0511 .webinar .cont,
.page-template-lp-conference-0727 .webinar .cont,
.page-template-lp-conference-0801 .webinar .cont {
    background-size: contain;
  }
}
.page-template-lp-conference-0118 .webinar .cont .cont_inner,
.page-template-lp-conference-0511 .webinar .cont .cont_inner,
.page-template-lp-conference-0727 .webinar .cont .cont_inner,
.page-template-lp-conference-0801 .webinar .cont .cont_inner {
  display: flex;
  justify-content: space-between;
  width: 1080px;
  margin: 0 auto;
  padding: 80px 0;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0118 .webinar .cont .cont_inner,
.page-template-lp-conference-0511 .webinar .cont .cont_inner,
.page-template-lp-conference-0727 .webinar .cont .cont_inner,
.page-template-lp-conference-0801 .webinar .cont .cont_inner {
    width: 100%;
    padding: 48px 30px 136px;
    flex-wrap: wrap;
    box-sizing: border-box;
  }
}
@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0118 .webinar .cont .cont_inner > section,
.page-template-lp-conference-0511 .webinar .cont .cont_inner > section,
.page-template-lp-conference-0727 .webinar .cont .cont_inner > section,
.page-template-lp-conference-0801 .webinar .cont .cont_inner > section {
    width: 100%;
  }
}
.page-template-lp-conference-0118 .webinar .cont .cont_inner > section h2,
.page-template-lp-conference-0511 .webinar .cont .cont_inner > section h2,
.page-template-lp-conference-0727 .webinar .cont .cont_inner > section h2,
.page-template-lp-conference-0801 .webinar .cont .cont_inner > section h2 {
  margin: 0 0 64px;
  font-weight: bold;
  font-size: 35px;
  line-height: 52px;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0118 .webinar .cont .cont_inner > section h2,
.page-template-lp-conference-0511 .webinar .cont .cont_inner > section h2,
.page-template-lp-conference-0727 .webinar .cont .cont_inner > section h2,
.page-template-lp-conference-0801 .webinar .cont .cont_inner > section h2 {
    margin: 0 auto 24px;
    font-size: 26px;
    line-height: 39px;
    text-align: center;
  }
}
.page-template-lp-conference-0118 .webinar .cont .cont_inner > section h2 span,
.page-template-lp-conference-0511 .webinar .cont .cont_inner > section h2 span,
.page-template-lp-conference-0727 .webinar .cont .cont_inner > section h2 span,
.page-template-lp-conference-0801 .webinar .cont .cont_inner > section h2 span {
  font-size: 48px;
  line-height: 72px;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0118 .webinar .cont .cont_inner > section h2 span,
.page-template-lp-conference-0511 .webinar .cont .cont_inner > section h2 span,
.page-template-lp-conference-0727 .webinar .cont .cont_inner > section h2 span,
.page-template-lp-conference-0801 .webinar .cont .cont_inner > section h2 span {
    font-size: 38px;
    line-height: 57px;
  }
}
.page-template-lp-conference-0118 .webinar .cont .cont_inner > section .figure_wrapper,
.page-template-lp-conference-0511 .webinar .cont .cont_inner > section .figure_wrapper,
.page-template-lp-conference-0727 .webinar .cont .cont_inner > section .figure_wrapper,
.page-template-lp-conference-0801 .webinar .cont .cont_inner > section .figure_wrapper {
  width: 180px;
  margin: 0 0 0 56px;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0118 .webinar .cont .cont_inner > section .figure_wrapper,
.page-template-lp-conference-0511 .webinar .cont .cont_inner > section .figure_wrapper,
.page-template-lp-conference-0727 .webinar .cont .cont_inner > section .figure_wrapper,
.page-template-lp-conference-0801 .webinar .cont .cont_inner > section .figure_wrapper {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 330px;
    margin: 0 auto 24px;
  }
}
.page-template-lp-conference-0118 .webinar .cont .cont_inner > section .figure_wrapper .sec_logo,
.page-template-lp-conference-0511 .webinar .cont .cont_inner > section .figure_wrapper .sec_logo,
.page-template-lp-conference-0727 .webinar .cont .cont_inner > section .figure_wrapper .sec_logo,
.page-template-lp-conference-0801 .webinar .cont .cont_inner > section .figure_wrapper .sec_logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background-color: #fff;
  filter: drop-shadow(0px 5px 15px rgba(0, 0, 0, 0.1));
}
@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0118 .webinar .cont .cont_inner > section .figure_wrapper .sec_logo,
.page-template-lp-conference-0511 .webinar .cont .cont_inner > section .figure_wrapper .sec_logo,
.page-template-lp-conference-0727 .webinar .cont .cont_inner > section .figure_wrapper .sec_logo,
.page-template-lp-conference-0801 .webinar .cont .cont_inner > section .figure_wrapper .sec_logo {
    width: 140px;
    height: 140px;
  }
}
.page-template-lp-conference-0118 .webinar .cont .cont_inner > section .figure_wrapper .sec_logo .l_01,
.page-template-lp-conference-0511 .webinar .cont .cont_inner > section .figure_wrapper .sec_logo .l_01,
.page-template-lp-conference-0727 .webinar .cont .cont_inner > section .figure_wrapper .sec_logo .l_01,
.page-template-lp-conference-0801 .webinar .cont .cont_inner > section .figure_wrapper .sec_logo .l_01 {
  width: 114px;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0118 .webinar .cont .cont_inner > section .figure_wrapper .sec_logo .l_01,
.page-template-lp-conference-0511 .webinar .cont .cont_inner > section .figure_wrapper .sec_logo .l_01,
.page-template-lp-conference-0727 .webinar .cont .cont_inner > section .figure_wrapper .sec_logo .l_01,
.page-template-lp-conference-0801 .webinar .cont .cont_inner > section .figure_wrapper .sec_logo .l_01 {
    width: 89px;
  }
}
.page-template-lp-conference-0118 .webinar .cont .cont_inner > section .figure_wrapper .sec_logo .l_02,
.page-template-lp-conference-0511 .webinar .cont .cont_inner > section .figure_wrapper .sec_logo .l_02,
.page-template-lp-conference-0727 .webinar .cont .cont_inner > section .figure_wrapper .sec_logo .l_02,
.page-template-lp-conference-0801 .webinar .cont .cont_inner > section .figure_wrapper .sec_logo .l_02 {
  width: 127px;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0118 .webinar .cont .cont_inner > section .figure_wrapper .sec_logo .l_02,
.page-template-lp-conference-0511 .webinar .cont .cont_inner > section .figure_wrapper .sec_logo .l_02,
.page-template-lp-conference-0727 .webinar .cont .cont_inner > section .figure_wrapper .sec_logo .l_02,
.page-template-lp-conference-0801 .webinar .cont .cont_inner > section .figure_wrapper .sec_logo .l_02 {
    width: 99px;
  }
}
.page-template-lp-conference-0118 .webinar .cont .cont_inner > section .figure_wrapper .sec_logo .l_03,
.page-template-lp-conference-0511 .webinar .cont .cont_inner > section .figure_wrapper .sec_logo .l_03,
.page-template-lp-conference-0727 .webinar .cont .cont_inner > section .figure_wrapper .sec_logo .l_03,
.page-template-lp-conference-0801 .webinar .cont .cont_inner > section .figure_wrapper .sec_logo .l_03 {
  width: 138px;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0118 .webinar .cont .cont_inner > section .figure_wrapper .sec_logo .l_03,
.page-template-lp-conference-0511 .webinar .cont .cont_inner > section .figure_wrapper .sec_logo .l_03,
.page-template-lp-conference-0727 .webinar .cont .cont_inner > section .figure_wrapper .sec_logo .l_03,
.page-template-lp-conference-0801 .webinar .cont .cont_inner > section .figure_wrapper .sec_logo .l_03 {
    width: 107px;
  }
}
.page-template-lp-conference-0118 .webinar .cont .cont_inner > section .figure_wrapper .sec_logo .l_04,
.page-template-lp-conference-0511 .webinar .cont .cont_inner > section .figure_wrapper .sec_logo .l_04,
.page-template-lp-conference-0727 .webinar .cont .cont_inner > section .figure_wrapper .sec_logo .l_04,
.page-template-lp-conference-0801 .webinar .cont .cont_inner > section .figure_wrapper .sec_logo .l_04 {
  width: 165px;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0118 .webinar .cont .cont_inner > section .figure_wrapper .sec_logo .l_04,
.page-template-lp-conference-0511 .webinar .cont .cont_inner > section .figure_wrapper .sec_logo .l_04,
.page-template-lp-conference-0727 .webinar .cont .cont_inner > section .figure_wrapper .sec_logo .l_04,
.page-template-lp-conference-0801 .webinar .cont .cont_inner > section .figure_wrapper .sec_logo .l_04 {
    width: 126px;
  }
}
.page-template-lp-conference-0118 .webinar .cont .cont_inner > section .figure_wrapper .sec_logo .l_05,
.page-template-lp-conference-0511 .webinar .cont .cont_inner > section .figure_wrapper .sec_logo .l_05,
.page-template-lp-conference-0727 .webinar .cont .cont_inner > section .figure_wrapper .sec_logo .l_05,
.page-template-lp-conference-0801 .webinar .cont .cont_inner > section .figure_wrapper .sec_logo .l_05 {
  width: 169px;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0118 .webinar .cont .cont_inner > section .figure_wrapper .sec_logo .l_05,
.page-template-lp-conference-0511 .webinar .cont .cont_inner > section .figure_wrapper .sec_logo .l_05,
.page-template-lp-conference-0727 .webinar .cont .cont_inner > section .figure_wrapper .sec_logo .l_05,
.page-template-lp-conference-0801 .webinar .cont .cont_inner > section .figure_wrapper .sec_logo .l_05 {
    width: 131px;
  }
}
.page-template-lp-conference-0118 .webinar .cont .cont_inner > section .figure_wrapper .sec_logo .l_06,
.page-template-lp-conference-0511 .webinar .cont .cont_inner > section .figure_wrapper .sec_logo .l_06,
.page-template-lp-conference-0727 .webinar .cont .cont_inner > section .figure_wrapper .sec_logo .l_06,
.page-template-lp-conference-0801 .webinar .cont .cont_inner > section .figure_wrapper .sec_logo .l_06 {
  width: 143px;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0118 .webinar .cont .cont_inner > section .figure_wrapper .sec_logo .l_06,
.page-template-lp-conference-0511 .webinar .cont .cont_inner > section .figure_wrapper .sec_logo .l_06,
.page-template-lp-conference-0727 .webinar .cont .cont_inner > section .figure_wrapper .sec_logo .l_06,
.page-template-lp-conference-0801 .webinar .cont .cont_inner > section .figure_wrapper .sec_logo .l_06 {
    width: 111px;
  }
}
.page-template-lp-conference-0118 .webinar .cont .cont_inner > section .figure_wrapper .x_icon,
.page-template-lp-conference-0511 .webinar .cont .cont_inner > section .figure_wrapper .x_icon,
.page-template-lp-conference-0727 .webinar .cont .cont_inner > section .figure_wrapper .x_icon,
.page-template-lp-conference-0801 .webinar .cont .cont_inner > section .figure_wrapper .x_icon {
  width: 30px;
  margin: 16px auto;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0118 .webinar .cont .cont_inner > section .figure_wrapper .x_icon,
.page-template-lp-conference-0511 .webinar .cont .cont_inner > section .figure_wrapper .x_icon,
.page-template-lp-conference-0727 .webinar .cont .cont_inner > section .figure_wrapper .x_icon,
.page-template-lp-conference-0801 .webinar .cont .cont_inner > section .figure_wrapper .x_icon {
    width: 21px;
  }
}
.page-template-lp-conference-0118 .webinar .cont .cont_inner .text_box,
.page-template-lp-conference-0511 .webinar .cont .cont_inner .text_box,
.page-template-lp-conference-0727 .webinar .cont .cont_inner .text_box,
.page-template-lp-conference-0801 .webinar .cont .cont_inner .text_box {
  width: 662px;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0118 .webinar .cont .cont_inner .text_box,
.page-template-lp-conference-0511 .webinar .cont .cont_inner .text_box,
.page-template-lp-conference-0727 .webinar .cont .cont_inner .text_box,
.page-template-lp-conference-0801 .webinar .cont .cont_inner .text_box {
    width: 100%;
  }
}
.page-template-lp-conference-0118 .webinar .cont .cont_inner .text_box > p,
.page-template-lp-conference-0511 .webinar .cont .cont_inner .text_box > p,
.page-template-lp-conference-0727 .webinar .cont .cont_inner .text_box > p,
.page-template-lp-conference-0801 .webinar .cont .cont_inner .text_box > p {
  padding: 0 0 64px;
  font-size: 16px;
  line-height: 30px;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0118 .webinar .cont .cont_inner .text_box > p,
.page-template-lp-conference-0511 .webinar .cont .cont_inner .text_box > p,
.page-template-lp-conference-0727 .webinar .cont .cont_inner .text_box > p,
.page-template-lp-conference-0801 .webinar .cont .cont_inner .text_box > p {
    padding: 0 0 48px;
  }
}
.page-template-lp-conference-0118 .webinar .cont .cont_inner .text_box h3,
.page-template-lp-conference-0511 .webinar .cont .cont_inner .text_box h3,
.page-template-lp-conference-0727 .webinar .cont .cont_inner .text_box h3,
.page-template-lp-conference-0801 .webinar .cont .cont_inner .text_box h3 {
  position: relative;
  font-weight: 700;
  font-size: 24px;
  line-height: 36px;
  letter-spacing: 0.05em;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0118 .webinar .cont .cont_inner .text_box h3,
.page-template-lp-conference-0511 .webinar .cont .cont_inner .text_box h3,
.page-template-lp-conference-0727 .webinar .cont .cont_inner .text_box h3,
.page-template-lp-conference-0801 .webinar .cont .cont_inner .text_box h3 {
    max-width: 372px;
    margin: 0 auto;
    font-size: 22px;
    line-height: 33px;
  }
}
.page-template-lp-conference-0118 .webinar .cont .cont_inner .text_box h3::before, .page-template-lp-conference-0118 .webinar .cont .cont_inner .text_box h3::after,
.page-template-lp-conference-0511 .webinar .cont .cont_inner .text_box h3::before,
.page-template-lp-conference-0511 .webinar .cont .cont_inner .text_box h3::after,
.page-template-lp-conference-0727 .webinar .cont .cont_inner .text_box h3::before,
.page-template-lp-conference-0727 .webinar .cont .cont_inner .text_box h3::after,
.page-template-lp-conference-0801 .webinar .cont .cont_inner .text_box h3::before,
.page-template-lp-conference-0801 .webinar .cont .cont_inner .text_box h3::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 250px;
  height: 1px;
  background-color: rgba(82, 88, 99, 0.25);
}
@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0118 .webinar .cont .cont_inner .text_box h3::before, .page-template-lp-conference-0118 .webinar .cont .cont_inner .text_box h3::after,
.page-template-lp-conference-0511 .webinar .cont .cont_inner .text_box h3::before,
.page-template-lp-conference-0511 .webinar .cont .cont_inner .text_box h3::after,
.page-template-lp-conference-0727 .webinar .cont .cont_inner .text_box h3::before,
.page-template-lp-conference-0727 .webinar .cont .cont_inner .text_box h3::after,
.page-template-lp-conference-0801 .webinar .cont .cont_inner .text_box h3::before,
.page-template-lp-conference-0801 .webinar .cont .cont_inner .text_box h3::after {
    width: 132px;
  }
}
.page-template-lp-conference-0118 .webinar .cont .cont_inner .text_box h3::before,
.page-template-lp-conference-0511 .webinar .cont .cont_inner .text_box h3::before,
.page-template-lp-conference-0727 .webinar .cont .cont_inner .text_box h3::before,
.page-template-lp-conference-0801 .webinar .cont .cont_inner .text_box h3::before {
  left: 0;
}
.page-template-lp-conference-0118 .webinar .cont .cont_inner .text_box h3::after,
.page-template-lp-conference-0511 .webinar .cont .cont_inner .text_box h3::after,
.page-template-lp-conference-0727 .webinar .cont .cont_inner .text_box h3::after,
.page-template-lp-conference-0801 .webinar .cont .cont_inner .text_box h3::after {
  right: 0;
}
.page-template-lp-conference-0118 .webinar .cont .cont_inner .text_box .speaker_wrapper,
.page-template-lp-conference-0511 .webinar .cont .cont_inner .text_box .speaker_wrapper,
.page-template-lp-conference-0727 .webinar .cont .cont_inner .text_box .speaker_wrapper,
.page-template-lp-conference-0801 .webinar .cont .cont_inner .text_box .speaker_wrapper {
  display: flex;
  margin: 64px 0 0;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0118 .webinar .cont .cont_inner .text_box .speaker_wrapper,
.page-template-lp-conference-0511 .webinar .cont .cont_inner .text_box .speaker_wrapper,
.page-template-lp-conference-0727 .webinar .cont .cont_inner .text_box .speaker_wrapper,
.page-template-lp-conference-0801 .webinar .cont .cont_inner .text_box .speaker_wrapper {
    display: block;
    margin: 32px 0 0;
  }
}
.page-template-lp-conference-0118 .webinar .cont .cont_inner .text_box .speaker_wrapper figure,
.page-template-lp-conference-0511 .webinar .cont .cont_inner .text_box .speaker_wrapper figure,
.page-template-lp-conference-0727 .webinar .cont .cont_inner .text_box .speaker_wrapper figure,
.page-template-lp-conference-0801 .webinar .cont .cont_inner .text_box .speaker_wrapper figure {
  min-width: 220px;
  width: 220px;
  margin: 0 32px 0 0;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0118 .webinar .cont .cont_inner .text_box .speaker_wrapper figure,
.page-template-lp-conference-0511 .webinar .cont .cont_inner .text_box .speaker_wrapper figure,
.page-template-lp-conference-0727 .webinar .cont .cont_inner .text_box .speaker_wrapper figure,
.page-template-lp-conference-0801 .webinar .cont .cont_inner .text_box .speaker_wrapper figure {
    min-width: 140px;
    width: 140px;
    margin: 0 auto 16px;
  }
}
.page-template-lp-conference-0118 .webinar .cont .cont_inner .text_box .speaker_wrapper .speaker_box h4,
.page-template-lp-conference-0511 .webinar .cont .cont_inner .text_box .speaker_wrapper .speaker_box h4,
.page-template-lp-conference-0727 .webinar .cont .cont_inner .text_box .speaker_wrapper .speaker_box h4,
.page-template-lp-conference-0801 .webinar .cont .cont_inner .text_box .speaker_wrapper .speaker_box h4 {
  padding: 0 0 16px;
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0118 .webinar .cont .cont_inner .text_box .speaker_wrapper .speaker_box h4,
.page-template-lp-conference-0511 .webinar .cont .cont_inner .text_box .speaker_wrapper .speaker_box h4,
.page-template-lp-conference-0727 .webinar .cont .cont_inner .text_box .speaker_wrapper .speaker_box h4,
.page-template-lp-conference-0801 .webinar .cont .cont_inner .text_box .speaker_wrapper .speaker_box h4 {
    font-size: 20px;
    line-height: 26px;
    text-align: center;
  }
}
.page-template-lp-conference-0118 .webinar .cont .cont_inner .text_box .speaker_wrapper .speaker_box h4 .company_name,
.page-template-lp-conference-0511 .webinar .cont .cont_inner .text_box .speaker_wrapper .speaker_box h4 .company_name,
.page-template-lp-conference-0727 .webinar .cont .cont_inner .text_box .speaker_wrapper .speaker_box h4 .company_name,
.page-template-lp-conference-0801 .webinar .cont .cont_inner .text_box .speaker_wrapper .speaker_box h4 .company_name {
  display: block;
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
}
.page-template-lp-conference-0118 .webinar .cont .cont_inner .text_box .speaker_wrapper .speaker_box h4 .name,
.page-template-lp-conference-0511 .webinar .cont .cont_inner .text_box .speaker_wrapper .speaker_box h4 .name,
.page-template-lp-conference-0727 .webinar .cont .cont_inner .text_box .speaker_wrapper .speaker_box h4 .name,
.page-template-lp-conference-0801 .webinar .cont .cont_inner .text_box .speaker_wrapper .speaker_box h4 .name {
  display: block;
  font-weight: 500;
  font-size: 12px;
  line-height: 21px;
}
.page-template-lp-conference-0118 .webinar .cont .cont_inner .text_box .speaker_wrapper .speaker_box p,
.page-template-lp-conference-0511 .webinar .cont .cont_inner .text_box .speaker_wrapper .speaker_box p,
.page-template-lp-conference-0727 .webinar .cont .cont_inner .text_box .speaker_wrapper .speaker_box p,
.page-template-lp-conference-0801 .webinar .cont .cont_inner .text_box .speaker_wrapper .speaker_box p {
  font-size: 14px;
  line-height: 26px;
}
.page-template-lp-conference-0118 .webinar .time_table,
.page-template-lp-conference-0511 .webinar .time_table,
.page-template-lp-conference-0727 .webinar .time_table,
.page-template-lp-conference-0801 .webinar .time_table {
  padding: 80px 0;
  text-align: center;
  background-image: url(../img/webinar/bg_03.png);
  background-position: top left;
  background-repeat: repeat;
  background-size: 37px;
  color: #fff;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0118 .webinar .time_table,
.page-template-lp-conference-0511 .webinar .time_table,
.page-template-lp-conference-0727 .webinar .time_table,
.page-template-lp-conference-0801 .webinar .time_table {
    padding: 56px 0;
  }
}
.page-template-lp-conference-0118 .webinar .time_table h2,
.page-template-lp-conference-0511 .webinar .time_table h2,
.page-template-lp-conference-0727 .webinar .time_table h2,
.page-template-lp-conference-0801 .webinar .time_table h2 {
  padding: 0 0 16px;
  font-weight: 700;
  font-size: 38px;
  line-height: 57px;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0118 .webinar .time_table h2,
.page-template-lp-conference-0511 .webinar .time_table h2,
.page-template-lp-conference-0727 .webinar .time_table h2,
.page-template-lp-conference-0801 .webinar .time_table h2 {
    font-size: 26px;
    line-height: 39px;
  }
}
.page-template-lp-conference-0118 .webinar .time_table > span,
.page-template-lp-conference-0511 .webinar .time_table > span,
.page-template-lp-conference-0727 .webinar .time_table > span,
.page-template-lp-conference-0801 .webinar .time_table > span {
  display: inline-block;
  padding: 8px 20px;
  font-family: "Roboto";
  font-size: 18px;
  line-height: 27px;
  letter-spacing: 0.03em;
  border: 1px solid #fff;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0118 .webinar .time_table > span,
.page-template-lp-conference-0511 .webinar .time_table > span,
.page-template-lp-conference-0727 .webinar .time_table > span,
.page-template-lp-conference-0801 .webinar .time_table > span {
    padding: 6px 14px;
    font-size: 16px;
    line-height: 24px;
  }
}
.page-template-lp-conference-0118 .webinar .time_table .schedule,
.page-template-lp-conference-0511 .webinar .time_table .schedule,
.page-template-lp-conference-0727 .webinar .time_table .schedule,
.page-template-lp-conference-0801 .webinar .time_table .schedule {
  margin: 64px 0 0;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0118 .webinar .time_table .schedule,
.page-template-lp-conference-0511 .webinar .time_table .schedule,
.page-template-lp-conference-0727 .webinar .time_table .schedule,
.page-template-lp-conference-0801 .webinar .time_table .schedule {
    margin: 48px 0 0;
  }
}
.page-template-lp-conference-0118 .webinar .time_table .schedule h3,
.page-template-lp-conference-0511 .webinar .time_table .schedule h3,
.page-template-lp-conference-0727 .webinar .time_table .schedule h3,
.page-template-lp-conference-0801 .webinar .time_table .schedule h3 {
  padding: 0 0 12px;
  font-weight: 700;
  font-size: 22px;
  line-height: 26px;
  letter-spacing: 0.03em;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0118 .webinar .time_table .schedule h3,
.page-template-lp-conference-0511 .webinar .time_table .schedule h3,
.page-template-lp-conference-0727 .webinar .time_table .schedule h3,
.page-template-lp-conference-0801 .webinar .time_table .schedule h3 {
    font-size: 20px;
    line-height: 26px;
  }
}
.page-template-lp-conference-0118 .webinar .time_table .schedule h3 span,
.page-template-lp-conference-0511 .webinar .time_table .schedule h3 span,
.page-template-lp-conference-0727 .webinar .time_table .schedule h3 span,
.page-template-lp-conference-0801 .webinar .time_table .schedule h3 span {
  font-weight: 500;
  font-size: 14px;
  line-height: 27px;
  color: rgba(255, 255, 255, 0.6);
}
@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0118 .webinar .time_table .schedule h3 span,
.page-template-lp-conference-0511 .webinar .time_table .schedule h3 span,
.page-template-lp-conference-0727 .webinar .time_table .schedule h3 span,
.page-template-lp-conference-0801 .webinar .time_table .schedule h3 span {
    font-size: 12px;
    line-height: 23px;
  }
}
.page-template-lp-conference-0118 .webinar .time_table .schedule p,
.page-template-lp-conference-0511 .webinar .time_table .schedule p,
.page-template-lp-conference-0727 .webinar .time_table .schedule p,
.page-template-lp-conference-0801 .webinar .time_table .schedule p {
  position: relative;
  padding: 0 0 74px;
  font-size: 22px;
  line-height: 22px;
  letter-spacing: 0.03em;
  font-family: "Roboto";
}
@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0118 .webinar .time_table .schedule p,
.page-template-lp-conference-0511 .webinar .time_table .schedule p,
.page-template-lp-conference-0727 .webinar .time_table .schedule p,
.page-template-lp-conference-0801 .webinar .time_table .schedule p {
    font-size: 20px;
    line-height: 22px;
  }
}
.page-template-lp-conference-0118 .webinar .time_table .schedule p::after,
.page-template-lp-conference-0511 .webinar .time_table .schedule p::after,
.page-template-lp-conference-0727 .webinar .time_table .schedule p::after,
.page-template-lp-conference-0801 .webinar .time_table .schedule p::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 34px;
  background-color: #fff;
  right: 50%;
  bottom: 20px;
  transform: translateX(-50%);
}
.page-template-lp-conference-0118 .webinar .time_table .schedule p:last-child,
.page-template-lp-conference-0511 .webinar .time_table .schedule p:last-child,
.page-template-lp-conference-0727 .webinar .time_table .schedule p:last-child,
.page-template-lp-conference-0801 .webinar .time_table .schedule p:last-child {
  padding: 0;
}
.page-template-lp-conference-0118 .webinar .time_table .schedule p:last-child::after,
.page-template-lp-conference-0511 .webinar .time_table .schedule p:last-child::after,
.page-template-lp-conference-0727 .webinar .time_table .schedule p:last-child::after,
.page-template-lp-conference-0801 .webinar .time_table .schedule p:last-child::after {
  display: none;
}
.page-template-lp-conference-0118 .webinar #bottom-form::before,
.page-template-lp-conference-0511 .webinar #bottom-form::before,
.page-template-lp-conference-0727 .webinar #bottom-form::before,
.page-template-lp-conference-0801 .webinar #bottom-form::before {
  display: none;
}
.page-template-lp-conference-0118 .webinar #bottom-form,
.page-template-lp-conference-0118 .webinar .l-section,
.page-template-lp-conference-0511 .webinar #bottom-form,
.page-template-lp-conference-0511 .webinar .l-section,
.page-template-lp-conference-0727 .webinar #bottom-form,
.page-template-lp-conference-0727 .webinar .l-section,
.page-template-lp-conference-0801 .webinar #bottom-form,
.page-template-lp-conference-0801 .webinar .l-section {
  padding: 80px 0;
  background: #F8F8F8;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0118 .webinar #bottom-form,
.page-template-lp-conference-0118 .webinar .l-section,
.page-template-lp-conference-0511 .webinar #bottom-form,
.page-template-lp-conference-0511 .webinar .l-section,
.page-template-lp-conference-0727 .webinar #bottom-form,
.page-template-lp-conference-0727 .webinar .l-section,
.page-template-lp-conference-0801 .webinar #bottom-form,
.page-template-lp-conference-0801 .webinar .l-section {
    padding: 0;
  }
}
.page-template-lp-conference-0118 .webinar #bottom-form .p-cta2,
.page-template-lp-conference-0118 .webinar .l-section .p-cta2,
.page-template-lp-conference-0511 .webinar #bottom-form .p-cta2,
.page-template-lp-conference-0511 .webinar .l-section .p-cta2,
.page-template-lp-conference-0727 .webinar #bottom-form .p-cta2,
.page-template-lp-conference-0727 .webinar .l-section .p-cta2,
.page-template-lp-conference-0801 .webinar #bottom-form .p-cta2,
.page-template-lp-conference-0801 .webinar .l-section .p-cta2 {
  width: 800px;
  padding: 56px 0;
  background-color: #fff;
  filter: drop-shadow(0px 5px 20px rgba(0, 0, 0, 0.15));
}
@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0118 .webinar #bottom-form .p-cta2,
.page-template-lp-conference-0118 .webinar .l-section .p-cta2,
.page-template-lp-conference-0511 .webinar #bottom-form .p-cta2,
.page-template-lp-conference-0511 .webinar .l-section .p-cta2,
.page-template-lp-conference-0727 .webinar #bottom-form .p-cta2,
.page-template-lp-conference-0727 .webinar .l-section .p-cta2,
.page-template-lp-conference-0801 .webinar #bottom-form .p-cta2,
.page-template-lp-conference-0801 .webinar .l-section .p-cta2 {
    width: 100%;
    padding: 32px 15px;
    box-sizing: border-box;
    background: #F8F8F8;
    filter: drop-shadow(0px 5px 20px rgba(0, 0, 0, 0));
  }
}
.page-template-lp-conference-0118 .webinar #bottom-form .p-cta2 .c-h2,
.page-template-lp-conference-0118 .webinar .l-section .p-cta2 .c-h2,
.page-template-lp-conference-0511 .webinar #bottom-form .p-cta2 .c-h2,
.page-template-lp-conference-0511 .webinar .l-section .p-cta2 .c-h2,
.page-template-lp-conference-0727 .webinar #bottom-form .p-cta2 .c-h2,
.page-template-lp-conference-0727 .webinar .l-section .p-cta2 .c-h2,
.page-template-lp-conference-0801 .webinar #bottom-form .p-cta2 .c-h2,
.page-template-lp-conference-0801 .webinar .l-section .p-cta2 .c-h2 {
  width: 540px;
  margin: 0 auto 32px !important;
  padding: 0 0 28px !important;
  font-size: 28px !important;
  line-height: 42px;
  border-bottom: 1px solid #0E0E0E;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0118 .webinar #bottom-form .p-cta2 .c-h2,
.page-template-lp-conference-0118 .webinar .l-section .p-cta2 .c-h2,
.page-template-lp-conference-0511 .webinar #bottom-form .p-cta2 .c-h2,
.page-template-lp-conference-0511 .webinar .l-section .p-cta2 .c-h2,
.page-template-lp-conference-0727 .webinar #bottom-form .p-cta2 .c-h2,
.page-template-lp-conference-0727 .webinar .l-section .p-cta2 .c-h2,
.page-template-lp-conference-0801 .webinar #bottom-form .p-cta2 .c-h2,
.page-template-lp-conference-0801 .webinar .l-section .p-cta2 .c-h2 {
    width: 100%;
    max-width: 400px;
    margin: 0 auto 26px !important;
    padding: 0 0 24px !important;
    font-size: 22px !important;
    line-height: 24px !important;
  }
}
.page-template-lp-conference-0118 .webinar #bottom-form .p-cta2 .p-form_wrap,
.page-template-lp-conference-0118 .webinar .l-section .p-cta2 .p-form_wrap,
.page-template-lp-conference-0511 .webinar #bottom-form .p-cta2 .p-form_wrap,
.page-template-lp-conference-0511 .webinar .l-section .p-cta2 .p-form_wrap,
.page-template-lp-conference-0727 .webinar #bottom-form .p-cta2 .p-form_wrap,
.page-template-lp-conference-0727 .webinar .l-section .p-cta2 .p-form_wrap,
.page-template-lp-conference-0801 .webinar #bottom-form .p-cta2 .p-form_wrap,
.page-template-lp-conference-0801 .webinar .l-section .p-cta2 .p-form_wrap {
  margin: 0 auto !important;
  padding: 0 !important;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0118 .webinar #bottom-form .p-cta2 .p-form_wrap,
.page-template-lp-conference-0118 .webinar .l-section .p-cta2 .p-form_wrap,
.page-template-lp-conference-0511 .webinar #bottom-form .p-cta2 .p-form_wrap,
.page-template-lp-conference-0511 .webinar .l-section .p-cta2 .p-form_wrap,
.page-template-lp-conference-0727 .webinar #bottom-form .p-cta2 .p-form_wrap,
.page-template-lp-conference-0727 .webinar .l-section .p-cta2 .p-form_wrap,
.page-template-lp-conference-0801 .webinar #bottom-form .p-cta2 .p-form_wrap,
.page-template-lp-conference-0801 .webinar .l-section .p-cta2 .p-form_wrap {
    width: 100%;
  }
}
.page-template-lp-conference-0118 .webinar #bottom-form .p-cta2 .p-form_wrap .box,
.page-template-lp-conference-0118 .webinar .l-section .p-cta2 .p-form_wrap .box,
.page-template-lp-conference-0511 .webinar #bottom-form .p-cta2 .p-form_wrap .box,
.page-template-lp-conference-0511 .webinar .l-section .p-cta2 .p-form_wrap .box,
.page-template-lp-conference-0727 .webinar #bottom-form .p-cta2 .p-form_wrap .box,
.page-template-lp-conference-0727 .webinar .l-section .p-cta2 .p-form_wrap .box,
.page-template-lp-conference-0801 .webinar #bottom-form .p-cta2 .p-form_wrap .box,
.page-template-lp-conference-0801 .webinar .l-section .p-cta2 .p-form_wrap .box {
  margin: 0 0 16px !important;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0118 .webinar #bottom-form .p-cta2 .p-form_wrap .box,
.page-template-lp-conference-0118 .webinar .l-section .p-cta2 .p-form_wrap .box,
.page-template-lp-conference-0511 .webinar #bottom-form .p-cta2 .p-form_wrap .box,
.page-template-lp-conference-0511 .webinar .l-section .p-cta2 .p-form_wrap .box,
.page-template-lp-conference-0727 .webinar #bottom-form .p-cta2 .p-form_wrap .box,
.page-template-lp-conference-0727 .webinar .l-section .p-cta2 .p-form_wrap .box,
.page-template-lp-conference-0801 .webinar #bottom-form .p-cta2 .p-form_wrap .box,
.page-template-lp-conference-0801 .webinar .l-section .p-cta2 .p-form_wrap .box {
    margin: 0 0 10px !important;
  }
}
.page-template-lp-conference-0118 .webinar #bottom-form .p-cta2 .p-form_wrap .box .f-title,
.page-template-lp-conference-0118 .webinar .l-section .p-cta2 .p-form_wrap .box .f-title,
.page-template-lp-conference-0511 .webinar #bottom-form .p-cta2 .p-form_wrap .box .f-title,
.page-template-lp-conference-0511 .webinar .l-section .p-cta2 .p-form_wrap .box .f-title,
.page-template-lp-conference-0727 .webinar #bottom-form .p-cta2 .p-form_wrap .box .f-title,
.page-template-lp-conference-0727 .webinar .l-section .p-cta2 .p-form_wrap .box .f-title,
.page-template-lp-conference-0801 .webinar #bottom-form .p-cta2 .p-form_wrap .box .f-title,
.page-template-lp-conference-0801 .webinar .l-section .p-cta2 .p-form_wrap .box .f-title {
  margin: 0 0 4px !important;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0118 .webinar #bottom-form .p-cta2 .p-form_wrap .box .f-title,
.page-template-lp-conference-0118 .webinar .l-section .p-cta2 .p-form_wrap .box .f-title,
.page-template-lp-conference-0511 .webinar #bottom-form .p-cta2 .p-form_wrap .box .f-title,
.page-template-lp-conference-0511 .webinar .l-section .p-cta2 .p-form_wrap .box .f-title,
.page-template-lp-conference-0727 .webinar #bottom-form .p-cta2 .p-form_wrap .box .f-title,
.page-template-lp-conference-0727 .webinar .l-section .p-cta2 .p-form_wrap .box .f-title,
.page-template-lp-conference-0801 .webinar #bottom-form .p-cta2 .p-form_wrap .box .f-title,
.page-template-lp-conference-0801 .webinar .l-section .p-cta2 .p-form_wrap .box .f-title {
    font-weight: 700;
    font-size: 14px;
    line-height: 21px;
  }
}
.page-template-lp-conference-0118 .webinar #bottom-form .p-cta2 .p-form_wrap .box .f-title .his,
.page-template-lp-conference-0118 .webinar .l-section .p-cta2 .p-form_wrap .box .f-title .his,
.page-template-lp-conference-0511 .webinar #bottom-form .p-cta2 .p-form_wrap .box .f-title .his,
.page-template-lp-conference-0511 .webinar .l-section .p-cta2 .p-form_wrap .box .f-title .his,
.page-template-lp-conference-0727 .webinar #bottom-form .p-cta2 .p-form_wrap .box .f-title .his,
.page-template-lp-conference-0727 .webinar .l-section .p-cta2 .p-form_wrap .box .f-title .his,
.page-template-lp-conference-0801 .webinar #bottom-form .p-cta2 .p-form_wrap .box .f-title .his,
.page-template-lp-conference-0801 .webinar .l-section .p-cta2 .p-form_wrap .box .f-title .his {
  margin-left: 0 !important;
  padding: 1px 5px !important;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0118 .webinar #bottom-form .p-cta2 .p-form_wrap .box .f-title .his,
.page-template-lp-conference-0118 .webinar .l-section .p-cta2 .p-form_wrap .box .f-title .his,
.page-template-lp-conference-0511 .webinar #bottom-form .p-cta2 .p-form_wrap .box .f-title .his,
.page-template-lp-conference-0511 .webinar .l-section .p-cta2 .p-form_wrap .box .f-title .his,
.page-template-lp-conference-0727 .webinar #bottom-form .p-cta2 .p-form_wrap .box .f-title .his,
.page-template-lp-conference-0727 .webinar .l-section .p-cta2 .p-form_wrap .box .f-title .his,
.page-template-lp-conference-0801 .webinar #bottom-form .p-cta2 .p-form_wrap .box .f-title .his,
.page-template-lp-conference-0801 .webinar .l-section .p-cta2 .p-form_wrap .box .f-title .his {
    padding: 1px 8px !important;
  }
}
@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0118 .webinar #bottom-form .p-cta2 .p-form_wrap .box > p input[type=text], .page-template-lp-conference-0118 .webinar #bottom-form .p-cta2 .p-form_wrap .box > p input[type=tel], .page-template-lp-conference-0118 .webinar #bottom-form .p-cta2 .p-form_wrap .box > p input[type=email], .page-template-lp-conference-0118 .webinar #bottom-form .p-cta2 .p-form_wrap .box > p textarea, .page-template-lp-conference-0118 .webinar #bottom-form .p-cta2 .p-form_wrap .box > p select, .page-template-lp-conference-0118 .webinar #bottom-form .p-cta2 .p-form_wrap .box > p .js-formCheckSelect,
.page-template-lp-conference-0118 .webinar .l-section .p-cta2 .p-form_wrap .box > p input[type=text],
.page-template-lp-conference-0118 .webinar .l-section .p-cta2 .p-form_wrap .box > p input[type=tel],
.page-template-lp-conference-0118 .webinar .l-section .p-cta2 .p-form_wrap .box > p input[type=email],
.page-template-lp-conference-0118 .webinar .l-section .p-cta2 .p-form_wrap .box > p textarea,
.page-template-lp-conference-0118 .webinar .l-section .p-cta2 .p-form_wrap .box > p select,
.page-template-lp-conference-0118 .webinar .l-section .p-cta2 .p-form_wrap .box > p .js-formCheckSelect,
.page-template-lp-conference-0511 .webinar #bottom-form .p-cta2 .p-form_wrap .box > p input[type=text],
.page-template-lp-conference-0511 .webinar #bottom-form .p-cta2 .p-form_wrap .box > p input[type=tel],
.page-template-lp-conference-0511 .webinar #bottom-form .p-cta2 .p-form_wrap .box > p input[type=email],
.page-template-lp-conference-0511 .webinar #bottom-form .p-cta2 .p-form_wrap .box > p textarea,
.page-template-lp-conference-0511 .webinar #bottom-form .p-cta2 .p-form_wrap .box > p select,
.page-template-lp-conference-0511 .webinar #bottom-form .p-cta2 .p-form_wrap .box > p .js-formCheckSelect,
.page-template-lp-conference-0511 .webinar .l-section .p-cta2 .p-form_wrap .box > p input[type=text],
.page-template-lp-conference-0511 .webinar .l-section .p-cta2 .p-form_wrap .box > p input[type=tel],
.page-template-lp-conference-0511 .webinar .l-section .p-cta2 .p-form_wrap .box > p input[type=email],
.page-template-lp-conference-0511 .webinar .l-section .p-cta2 .p-form_wrap .box > p textarea,
.page-template-lp-conference-0511 .webinar .l-section .p-cta2 .p-form_wrap .box > p select,
.page-template-lp-conference-0511 .webinar .l-section .p-cta2 .p-form_wrap .box > p .js-formCheckSelect,
.page-template-lp-conference-0727 .webinar #bottom-form .p-cta2 .p-form_wrap .box > p input[type=text],
.page-template-lp-conference-0727 .webinar #bottom-form .p-cta2 .p-form_wrap .box > p input[type=tel],
.page-template-lp-conference-0727 .webinar #bottom-form .p-cta2 .p-form_wrap .box > p input[type=email],
.page-template-lp-conference-0727 .webinar #bottom-form .p-cta2 .p-form_wrap .box > p textarea,
.page-template-lp-conference-0727 .webinar #bottom-form .p-cta2 .p-form_wrap .box > p select,
.page-template-lp-conference-0727 .webinar #bottom-form .p-cta2 .p-form_wrap .box > p .js-formCheckSelect,
.page-template-lp-conference-0727 .webinar .l-section .p-cta2 .p-form_wrap .box > p input[type=text],
.page-template-lp-conference-0727 .webinar .l-section .p-cta2 .p-form_wrap .box > p input[type=tel],
.page-template-lp-conference-0727 .webinar .l-section .p-cta2 .p-form_wrap .box > p input[type=email],
.page-template-lp-conference-0727 .webinar .l-section .p-cta2 .p-form_wrap .box > p textarea,
.page-template-lp-conference-0727 .webinar .l-section .p-cta2 .p-form_wrap .box > p select,
.page-template-lp-conference-0727 .webinar .l-section .p-cta2 .p-form_wrap .box > p .js-formCheckSelect,
.page-template-lp-conference-0801 .webinar #bottom-form .p-cta2 .p-form_wrap .box > p input[type=text],
.page-template-lp-conference-0801 .webinar #bottom-form .p-cta2 .p-form_wrap .box > p input[type=tel],
.page-template-lp-conference-0801 .webinar #bottom-form .p-cta2 .p-form_wrap .box > p input[type=email],
.page-template-lp-conference-0801 .webinar #bottom-form .p-cta2 .p-form_wrap .box > p textarea,
.page-template-lp-conference-0801 .webinar #bottom-form .p-cta2 .p-form_wrap .box > p select,
.page-template-lp-conference-0801 .webinar #bottom-form .p-cta2 .p-form_wrap .box > p .js-formCheckSelect,
.page-template-lp-conference-0801 .webinar .l-section .p-cta2 .p-form_wrap .box > p input[type=text],
.page-template-lp-conference-0801 .webinar .l-section .p-cta2 .p-form_wrap .box > p input[type=tel],
.page-template-lp-conference-0801 .webinar .l-section .p-cta2 .p-form_wrap .box > p input[type=email],
.page-template-lp-conference-0801 .webinar .l-section .p-cta2 .p-form_wrap .box > p textarea,
.page-template-lp-conference-0801 .webinar .l-section .p-cta2 .p-form_wrap .box > p select,
.page-template-lp-conference-0801 .webinar .l-section .p-cta2 .p-form_wrap .box > p .js-formCheckSelect {
    background: #FFFFFF;
    border: 1px solid rgba(14, 14, 14, 0.1);
  }
}
.page-template-lp-conference-0118 .webinar #bottom-form .p-cta2 .p-form_wrap .policy,
.page-template-lp-conference-0118 .webinar #bottom-form .p-cta2 .p-form_wrap .policy_link,
.page-template-lp-conference-0118 .webinar .l-section .p-cta2 .p-form_wrap .policy,
.page-template-lp-conference-0118 .webinar .l-section .p-cta2 .p-form_wrap .policy_link,
.page-template-lp-conference-0511 .webinar #bottom-form .p-cta2 .p-form_wrap .policy,
.page-template-lp-conference-0511 .webinar #bottom-form .p-cta2 .p-form_wrap .policy_link,
.page-template-lp-conference-0511 .webinar .l-section .p-cta2 .p-form_wrap .policy,
.page-template-lp-conference-0511 .webinar .l-section .p-cta2 .p-form_wrap .policy_link,
.page-template-lp-conference-0727 .webinar #bottom-form .p-cta2 .p-form_wrap .policy,
.page-template-lp-conference-0727 .webinar #bottom-form .p-cta2 .p-form_wrap .policy_link,
.page-template-lp-conference-0727 .webinar .l-section .p-cta2 .p-form_wrap .policy,
.page-template-lp-conference-0727 .webinar .l-section .p-cta2 .p-form_wrap .policy_link,
.page-template-lp-conference-0801 .webinar #bottom-form .p-cta2 .p-form_wrap .policy,
.page-template-lp-conference-0801 .webinar #bottom-form .p-cta2 .p-form_wrap .policy_link,
.page-template-lp-conference-0801 .webinar .l-section .p-cta2 .p-form_wrap .policy,
.page-template-lp-conference-0801 .webinar .l-section .p-cta2 .p-form_wrap .policy_link {
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
  color: #303544;
  margin: 0 0 8px;
}
.page-template-lp-conference-0118 .webinar #bottom-form .p-cta2 .p-form_wrap .policy_link,
.page-template-lp-conference-0118 .webinar .l-section .p-cta2 .p-form_wrap .policy_link,
.page-template-lp-conference-0511 .webinar #bottom-form .p-cta2 .p-form_wrap .policy_link,
.page-template-lp-conference-0511 .webinar .l-section .p-cta2 .p-form_wrap .policy_link,
.page-template-lp-conference-0727 .webinar #bottom-form .p-cta2 .p-form_wrap .policy_link,
.page-template-lp-conference-0727 .webinar .l-section .p-cta2 .p-form_wrap .policy_link,
.page-template-lp-conference-0801 .webinar #bottom-form .p-cta2 .p-form_wrap .policy_link,
.page-template-lp-conference-0801 .webinar .l-section .p-cta2 .p-form_wrap .policy_link {
  margin: 0 0 32px;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0118 .webinar #bottom-form .p-cta2 .p-form_wrap .policy_link,
.page-template-lp-conference-0118 .webinar .l-section .p-cta2 .p-form_wrap .policy_link,
.page-template-lp-conference-0511 .webinar #bottom-form .p-cta2 .p-form_wrap .policy_link,
.page-template-lp-conference-0511 .webinar .l-section .p-cta2 .p-form_wrap .policy_link,
.page-template-lp-conference-0727 .webinar #bottom-form .p-cta2 .p-form_wrap .policy_link,
.page-template-lp-conference-0727 .webinar .l-section .p-cta2 .p-form_wrap .policy_link,
.page-template-lp-conference-0801 .webinar #bottom-form .p-cta2 .p-form_wrap .policy_link,
.page-template-lp-conference-0801 .webinar .l-section .p-cta2 .p-form_wrap .policy_link {
    margin: 0 0 24px;
    line-height: 2;
  }
}
.page-template-lp-conference-0118 .webinar #bottom-form .p-cta2 .p-form_wrap .policy_link a,
.page-template-lp-conference-0118 .webinar .l-section .p-cta2 .p-form_wrap .policy_link a,
.page-template-lp-conference-0511 .webinar #bottom-form .p-cta2 .p-form_wrap .policy_link a,
.page-template-lp-conference-0511 .webinar .l-section .p-cta2 .p-form_wrap .policy_link a,
.page-template-lp-conference-0727 .webinar #bottom-form .p-cta2 .p-form_wrap .policy_link a,
.page-template-lp-conference-0727 .webinar .l-section .p-cta2 .p-form_wrap .policy_link a,
.page-template-lp-conference-0801 .webinar #bottom-form .p-cta2 .p-form_wrap .policy_link a,
.page-template-lp-conference-0801 .webinar .l-section .p-cta2 .p-form_wrap .policy_link a {
  text-decoration-line: underline;
  color: #303544;
}
.page-template-lp-conference-0118 .webinar #bottom-form .p-cta2 .p-form_wrap .policy_link a::after,
.page-template-lp-conference-0118 .webinar .l-section .p-cta2 .p-form_wrap .policy_link a::after,
.page-template-lp-conference-0511 .webinar #bottom-form .p-cta2 .p-form_wrap .policy_link a::after,
.page-template-lp-conference-0511 .webinar .l-section .p-cta2 .p-form_wrap .policy_link a::after,
.page-template-lp-conference-0727 .webinar #bottom-form .p-cta2 .p-form_wrap .policy_link a::after,
.page-template-lp-conference-0727 .webinar .l-section .p-cta2 .p-form_wrap .policy_link a::after,
.page-template-lp-conference-0801 .webinar #bottom-form .p-cta2 .p-form_wrap .policy_link a::after,
.page-template-lp-conference-0801 .webinar .l-section .p-cta2 .p-form_wrap .policy_link a::after {
  display: none;
}
.page-template-lp-conference-0118 .webinar #bottom-form .p-cta2 .p-form_wrap .wpcf7-list-item,
.page-template-lp-conference-0118 .webinar .l-section .p-cta2 .p-form_wrap .wpcf7-list-item,
.page-template-lp-conference-0511 .webinar #bottom-form .p-cta2 .p-form_wrap .wpcf7-list-item,
.page-template-lp-conference-0511 .webinar .l-section .p-cta2 .p-form_wrap .wpcf7-list-item,
.page-template-lp-conference-0727 .webinar #bottom-form .p-cta2 .p-form_wrap .wpcf7-list-item,
.page-template-lp-conference-0727 .webinar .l-section .p-cta2 .p-form_wrap .wpcf7-list-item,
.page-template-lp-conference-0801 .webinar #bottom-form .p-cta2 .p-form_wrap .wpcf7-list-item,
.page-template-lp-conference-0801 .webinar .l-section .p-cta2 .p-form_wrap .wpcf7-list-item {
  text-align: center;
  color: #303544;
}
.page-template-lp-conference-0118 .webinar #bottom-form .p-cta2 .p-form_wrap .wpcf7-list-item input,
.page-template-lp-conference-0118 .webinar .l-section .p-cta2 .p-form_wrap .wpcf7-list-item input,
.page-template-lp-conference-0511 .webinar #bottom-form .p-cta2 .p-form_wrap .wpcf7-list-item input,
.page-template-lp-conference-0511 .webinar .l-section .p-cta2 .p-form_wrap .wpcf7-list-item input,
.page-template-lp-conference-0727 .webinar #bottom-form .p-cta2 .p-form_wrap .wpcf7-list-item input,
.page-template-lp-conference-0727 .webinar .l-section .p-cta2 .p-form_wrap .wpcf7-list-item input,
.page-template-lp-conference-0801 .webinar #bottom-form .p-cta2 .p-form_wrap .wpcf7-list-item input,
.page-template-lp-conference-0801 .webinar .l-section .p-cta2 .p-form_wrap .wpcf7-list-item input {
  width: 22px;
  height: 22px;
}
.page-template-lp-conference-0118 .webinar #bottom-form .p-cta2 .p-form_wrap .wpcf7-list-item a,
.page-template-lp-conference-0118 .webinar .l-section .p-cta2 .p-form_wrap .wpcf7-list-item a,
.page-template-lp-conference-0511 .webinar #bottom-form .p-cta2 .p-form_wrap .wpcf7-list-item a,
.page-template-lp-conference-0511 .webinar .l-section .p-cta2 .p-form_wrap .wpcf7-list-item a,
.page-template-lp-conference-0727 .webinar #bottom-form .p-cta2 .p-form_wrap .wpcf7-list-item a,
.page-template-lp-conference-0727 .webinar .l-section .p-cta2 .p-form_wrap .wpcf7-list-item a,
.page-template-lp-conference-0801 .webinar #bottom-form .p-cta2 .p-form_wrap .wpcf7-list-item a,
.page-template-lp-conference-0801 .webinar .l-section .p-cta2 .p-form_wrap .wpcf7-list-item a {
  color: #303544;
  text-decoration-line: underline;
}
.page-template-lp-conference-0118 .webinar #bottom-form .p-cta2 .p-form_wrap .wpcf7-list-item a::after,
.page-template-lp-conference-0118 .webinar .l-section .p-cta2 .p-form_wrap .wpcf7-list-item a::after,
.page-template-lp-conference-0511 .webinar #bottom-form .p-cta2 .p-form_wrap .wpcf7-list-item a::after,
.page-template-lp-conference-0511 .webinar .l-section .p-cta2 .p-form_wrap .wpcf7-list-item a::after,
.page-template-lp-conference-0727 .webinar #bottom-form .p-cta2 .p-form_wrap .wpcf7-list-item a::after,
.page-template-lp-conference-0727 .webinar .l-section .p-cta2 .p-form_wrap .wpcf7-list-item a::after,
.page-template-lp-conference-0801 .webinar #bottom-form .p-cta2 .p-form_wrap .wpcf7-list-item a::after,
.page-template-lp-conference-0801 .webinar .l-section .p-cta2 .p-form_wrap .wpcf7-list-item a::after {
  display: none;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0118 .webinar #bottom-form .p-cta2 .p-form_wrap .acceptance,
.page-template-lp-conference-0118 .webinar .l-section .p-cta2 .p-form_wrap .acceptance,
.page-template-lp-conference-0511 .webinar #bottom-form .p-cta2 .p-form_wrap .acceptance,
.page-template-lp-conference-0511 .webinar .l-section .p-cta2 .p-form_wrap .acceptance,
.page-template-lp-conference-0727 .webinar #bottom-form .p-cta2 .p-form_wrap .acceptance,
.page-template-lp-conference-0727 .webinar .l-section .p-cta2 .p-form_wrap .acceptance,
.page-template-lp-conference-0801 .webinar #bottom-form .p-cta2 .p-form_wrap .acceptance,
.page-template-lp-conference-0801 .webinar .l-section .p-cta2 .p-form_wrap .acceptance {
    margin: 0 0 24px !important;
  }
}
.page-template-lp-conference-0118 .webinar #bottom-form .p-cta2 .p-form_wrap .p-form_submit p,
.page-template-lp-conference-0118 .webinar .l-section .p-cta2 .p-form_wrap .p-form_submit p,
.page-template-lp-conference-0511 .webinar #bottom-form .p-cta2 .p-form_wrap .p-form_submit p,
.page-template-lp-conference-0511 .webinar .l-section .p-cta2 .p-form_wrap .p-form_submit p,
.page-template-lp-conference-0727 .webinar #bottom-form .p-cta2 .p-form_wrap .p-form_submit p,
.page-template-lp-conference-0727 .webinar .l-section .p-cta2 .p-form_wrap .p-form_submit p,
.page-template-lp-conference-0801 .webinar #bottom-form .p-cta2 .p-form_wrap .p-form_submit p,
.page-template-lp-conference-0801 .webinar .l-section .p-cta2 .p-form_wrap .p-form_submit p {
  margin: 0 !important;
}
.page-template-lp-conference-0118 .webinar #bottom-form .p-cta2 .p-form_wrap .p-form_submit p input[type=submit]:disabled,
.page-template-lp-conference-0118 .webinar .l-section .p-cta2 .p-form_wrap .p-form_submit p input[type=submit]:disabled,
.page-template-lp-conference-0511 .webinar #bottom-form .p-cta2 .p-form_wrap .p-form_submit p input[type=submit]:disabled,
.page-template-lp-conference-0511 .webinar .l-section .p-cta2 .p-form_wrap .p-form_submit p input[type=submit]:disabled,
.page-template-lp-conference-0727 .webinar #bottom-form .p-cta2 .p-form_wrap .p-form_submit p input[type=submit]:disabled,
.page-template-lp-conference-0727 .webinar .l-section .p-cta2 .p-form_wrap .p-form_submit p input[type=submit]:disabled,
.page-template-lp-conference-0801 .webinar #bottom-form .p-cta2 .p-form_wrap .p-form_submit p input[type=submit]:disabled,
.page-template-lp-conference-0801 .webinar .l-section .p-cta2 .p-form_wrap .p-form_submit p input[type=submit]:disabled {
  color: #fff;
  background: #DDDDDD;
  border: 4px solid #fff;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0118 .webinar #bottom-form .p-cta2 .p-form_wrap .p-form_submit p input[type=submit]:disabled,
.page-template-lp-conference-0118 .webinar .l-section .p-cta2 .p-form_wrap .p-form_submit p input[type=submit]:disabled,
.page-template-lp-conference-0511 .webinar #bottom-form .p-cta2 .p-form_wrap .p-form_submit p input[type=submit]:disabled,
.page-template-lp-conference-0511 .webinar .l-section .p-cta2 .p-form_wrap .p-form_submit p input[type=submit]:disabled,
.page-template-lp-conference-0727 .webinar #bottom-form .p-cta2 .p-form_wrap .p-form_submit p input[type=submit]:disabled,
.page-template-lp-conference-0727 .webinar .l-section .p-cta2 .p-form_wrap .p-form_submit p input[type=submit]:disabled,
.page-template-lp-conference-0801 .webinar #bottom-form .p-cta2 .p-form_wrap .p-form_submit p input[type=submit]:disabled,
.page-template-lp-conference-0801 .webinar .l-section .p-cta2 .p-form_wrap .p-form_submit p input[type=submit]:disabled {
    width: 299px;
    font-size: 20px;
    padding: 16px 15px;
    border: none;
    background: #DDDDDD;
  }
}
.page-template-lp-conference-0118 .webinar #bottom-form .p-cta2 .p-form_wrap .p-form_submit p input[type=submit],
.page-template-lp-conference-0118 .webinar .l-section .p-cta2 .p-form_wrap .p-form_submit p input[type=submit],
.page-template-lp-conference-0511 .webinar #bottom-form .p-cta2 .p-form_wrap .p-form_submit p input[type=submit],
.page-template-lp-conference-0511 .webinar .l-section .p-cta2 .p-form_wrap .p-form_submit p input[type=submit],
.page-template-lp-conference-0727 .webinar #bottom-form .p-cta2 .p-form_wrap .p-form_submit p input[type=submit],
.page-template-lp-conference-0727 .webinar .l-section .p-cta2 .p-form_wrap .p-form_submit p input[type=submit],
.page-template-lp-conference-0801 .webinar #bottom-form .p-cta2 .p-form_wrap .p-form_submit p input[type=submit],
.page-template-lp-conference-0801 .webinar .l-section .p-cta2 .p-form_wrap .p-form_submit p input[type=submit] {
  color: #0E0E0E;
  background: #FFDC36;
  border: 4px solid #fff;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0118 .webinar #bottom-form .p-cta2 .p-form_wrap .p-form_submit p input[type=submit],
.page-template-lp-conference-0118 .webinar .l-section .p-cta2 .p-form_wrap .p-form_submit p input[type=submit],
.page-template-lp-conference-0511 .webinar #bottom-form .p-cta2 .p-form_wrap .p-form_submit p input[type=submit],
.page-template-lp-conference-0511 .webinar .l-section .p-cta2 .p-form_wrap .p-form_submit p input[type=submit],
.page-template-lp-conference-0727 .webinar #bottom-form .p-cta2 .p-form_wrap .p-form_submit p input[type=submit],
.page-template-lp-conference-0727 .webinar .l-section .p-cta2 .p-form_wrap .p-form_submit p input[type=submit],
.page-template-lp-conference-0801 .webinar #bottom-form .p-cta2 .p-form_wrap .p-form_submit p input[type=submit],
.page-template-lp-conference-0801 .webinar .l-section .p-cta2 .p-form_wrap .p-form_submit p input[type=submit] {
    width: 299px;
    font-size: 20px;
    padding: 16px 15px;
    border: none;
    background: #FFDC36;
  }
}
.page-template-lp-conference-0118 .webinar #bottom-form .p-cta2 .p-form_wrap .p-form_submit p:hover input[type=submit],
.page-template-lp-conference-0118 .webinar .l-section .p-cta2 .p-form_wrap .p-form_submit p:hover input[type=submit],
.page-template-lp-conference-0511 .webinar #bottom-form .p-cta2 .p-form_wrap .p-form_submit p:hover input[type=submit],
.page-template-lp-conference-0511 .webinar .l-section .p-cta2 .p-form_wrap .p-form_submit p:hover input[type=submit],
.page-template-lp-conference-0727 .webinar #bottom-form .p-cta2 .p-form_wrap .p-form_submit p:hover input[type=submit],
.page-template-lp-conference-0727 .webinar .l-section .p-cta2 .p-form_wrap .p-form_submit p:hover input[type=submit],
.page-template-lp-conference-0801 .webinar #bottom-form .p-cta2 .p-form_wrap .p-form_submit p:hover input[type=submit],
.page-template-lp-conference-0801 .webinar .l-section .p-cta2 .p-form_wrap .p-form_submit p:hover input[type=submit] {
  transition: all 0.3s;
  opacity: 0.7;
  box-shadow: none;
}
.page-template-lp-conference-0118 .webinar #bottom-form .overflow,
.page-template-lp-conference-0118 .webinar .l-section .overflow,
.page-template-lp-conference-0511 .webinar #bottom-form .overflow,
.page-template-lp-conference-0511 .webinar .l-section .overflow,
.page-template-lp-conference-0727 .webinar #bottom-form .overflow,
.page-template-lp-conference-0727 .webinar .l-section .overflow,
.page-template-lp-conference-0801 .webinar #bottom-form .overflow,
.page-template-lp-conference-0801 .webinar .l-section .overflow {
  width: 610px;
  margin: 24px auto 0;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0118 .webinar #bottom-form .overflow,
.page-template-lp-conference-0118 .webinar .l-section .overflow,
.page-template-lp-conference-0511 .webinar #bottom-form .overflow,
.page-template-lp-conference-0511 .webinar .l-section .overflow,
.page-template-lp-conference-0727 .webinar #bottom-form .overflow,
.page-template-lp-conference-0727 .webinar .l-section .overflow,
.page-template-lp-conference-0801 .webinar #bottom-form .overflow,
.page-template-lp-conference-0801 .webinar .l-section .overflow {
    display: block;
    width: calc(100% - 30px);
    margin: 0 auto;
    padding: 32px 0 40px;
    border-top: 1px solid #0E0E0E;
  }
}
.page-template-lp-conference-0118 .webinar #bottom-form .overflow > figure,
.page-template-lp-conference-0118 .webinar .l-section .overflow > figure,
.page-template-lp-conference-0511 .webinar #bottom-form .overflow > figure,
.page-template-lp-conference-0511 .webinar .l-section .overflow > figure,
.page-template-lp-conference-0727 .webinar #bottom-form .overflow > figure,
.page-template-lp-conference-0727 .webinar .l-section .overflow > figure,
.page-template-lp-conference-0801 .webinar #bottom-form .overflow > figure,
.page-template-lp-conference-0801 .webinar .l-section .overflow > figure {
  display: block;
  width: 122px;
  margin: 0 auto 18px;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0118 .webinar #bottom-form .overflow > figure,
.page-template-lp-conference-0118 .webinar .l-section .overflow > figure,
.page-template-lp-conference-0511 .webinar #bottom-form .overflow > figure,
.page-template-lp-conference-0511 .webinar .l-section .overflow > figure,
.page-template-lp-conference-0727 .webinar #bottom-form .overflow > figure,
.page-template-lp-conference-0727 .webinar .l-section .overflow > figure,
.page-template-lp-conference-0801 .webinar #bottom-form .overflow > figure,
.page-template-lp-conference-0801 .webinar .l-section .overflow > figure {
    margin: 0 auto 26px;
  }
}
.page-template-lp-conference-0118 .webinar #bottom-form .overflow > figure figcaption,
.page-template-lp-conference-0118 .webinar .l-section .overflow > figure figcaption,
.page-template-lp-conference-0511 .webinar #bottom-form .overflow > figure figcaption,
.page-template-lp-conference-0511 .webinar .l-section .overflow > figure figcaption,
.page-template-lp-conference-0727 .webinar #bottom-form .overflow > figure figcaption,
.page-template-lp-conference-0727 .webinar .l-section .overflow > figure figcaption,
.page-template-lp-conference-0801 .webinar #bottom-form .overflow > figure figcaption,
.page-template-lp-conference-0801 .webinar .l-section .overflow > figure figcaption {
  margin: 0 0 5px;
  font-size: 12px;
  line-height: 18px;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0118 .webinar #bottom-form .overflow .cta_tel dt,
.page-template-lp-conference-0118 .webinar .l-section .overflow .cta_tel dt,
.page-template-lp-conference-0511 .webinar #bottom-form .overflow .cta_tel dt,
.page-template-lp-conference-0511 .webinar .l-section .overflow .cta_tel dt,
.page-template-lp-conference-0727 .webinar #bottom-form .overflow .cta_tel dt,
.page-template-lp-conference-0727 .webinar .l-section .overflow .cta_tel dt,
.page-template-lp-conference-0801 .webinar #bottom-form .overflow .cta_tel dt,
.page-template-lp-conference-0801 .webinar .l-section .overflow .cta_tel dt {
    display: block;
    width: 250px;
    margin: 0 auto;
  }
}
.page-template-lp-conference-0118 .webinar #bottom-form .overflow .cta_tel dt .c-tell,
.page-template-lp-conference-0118 .webinar .l-section .overflow .cta_tel dt .c-tell,
.page-template-lp-conference-0511 .webinar #bottom-form .overflow .cta_tel dt .c-tell,
.page-template-lp-conference-0511 .webinar .l-section .overflow .cta_tel dt .c-tell,
.page-template-lp-conference-0727 .webinar #bottom-form .overflow .cta_tel dt .c-tell,
.page-template-lp-conference-0727 .webinar .l-section .overflow .cta_tel dt .c-tell,
.page-template-lp-conference-0801 .webinar #bottom-form .overflow .cta_tel dt .c-tell,
.page-template-lp-conference-0801 .webinar .l-section .overflow .cta_tel dt .c-tell {
  padding: 4px 14px;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #fff;
  background: #4D4D4D;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0118 .webinar #bottom-form .overflow .cta_tel dt .c-tell,
.page-template-lp-conference-0118 .webinar .l-section .overflow .cta_tel dt .c-tell,
.page-template-lp-conference-0511 .webinar #bottom-form .overflow .cta_tel dt .c-tell,
.page-template-lp-conference-0511 .webinar .l-section .overflow .cta_tel dt .c-tell,
.page-template-lp-conference-0727 .webinar #bottom-form .overflow .cta_tel dt .c-tell,
.page-template-lp-conference-0727 .webinar .l-section .overflow .cta_tel dt .c-tell,
.page-template-lp-conference-0801 .webinar #bottom-form .overflow .cta_tel dt .c-tell,
.page-template-lp-conference-0801 .webinar .l-section .overflow .cta_tel dt .c-tell {
    display: block;
    margin: 0 0 12px;
    text-align: center;
    font-weight: 700;
    font-size: 14px;
    line-height: 21px;
    color: #0E0E0E;
    background: transparent;
    border: 1px solid #0E0E0E;
  }
}
.page-template-lp-conference-0118 .webinar #bottom-form .overflow .cta_tel dt .c-tell:after,
.page-template-lp-conference-0118 .webinar .l-section .overflow .cta_tel dt .c-tell:after,
.page-template-lp-conference-0511 .webinar #bottom-form .overflow .cta_tel dt .c-tell:after,
.page-template-lp-conference-0511 .webinar .l-section .overflow .cta_tel dt .c-tell:after,
.page-template-lp-conference-0727 .webinar #bottom-form .overflow .cta_tel dt .c-tell:after,
.page-template-lp-conference-0727 .webinar .l-section .overflow .cta_tel dt .c-tell:after,
.page-template-lp-conference-0801 .webinar #bottom-form .overflow .cta_tel dt .c-tell:after,
.page-template-lp-conference-0801 .webinar .l-section .overflow .cta_tel dt .c-tell:after {
  height: 32px;
  right: -16px;
  border-left: 16px solid #4D4D4D;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  box-sizing: border-box;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0118 .webinar #bottom-form .overflow .cta_tel dt .c-tell:after,
.page-template-lp-conference-0118 .webinar .l-section .overflow .cta_tel dt .c-tell:after,
.page-template-lp-conference-0511 .webinar #bottom-form .overflow .cta_tel dt .c-tell:after,
.page-template-lp-conference-0511 .webinar .l-section .overflow .cta_tel dt .c-tell:after,
.page-template-lp-conference-0727 .webinar #bottom-form .overflow .cta_tel dt .c-tell:after,
.page-template-lp-conference-0727 .webinar .l-section .overflow .cta_tel dt .c-tell:after,
.page-template-lp-conference-0801 .webinar #bottom-form .overflow .cta_tel dt .c-tell:after,
.page-template-lp-conference-0801 .webinar .l-section .overflow .cta_tel dt .c-tell:after {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0118 .webinar #bottom-form .overflow .cta_tel dt figure,
.page-template-lp-conference-0118 .webinar .l-section .overflow .cta_tel dt figure,
.page-template-lp-conference-0511 .webinar #bottom-form .overflow .cta_tel dt figure,
.page-template-lp-conference-0511 .webinar .l-section .overflow .cta_tel dt figure,
.page-template-lp-conference-0727 .webinar #bottom-form .overflow .cta_tel dt figure,
.page-template-lp-conference-0727 .webinar .l-section .overflow .cta_tel dt figure,
.page-template-lp-conference-0801 .webinar #bottom-form .overflow .cta_tel dt figure,
.page-template-lp-conference-0801 .webinar .l-section .overflow .cta_tel dt figure {
    width: 17px;
    margin: 0 4px 0 0;
  }
}
@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0118 .webinar #bottom-form .overflow .cta_tel dt figure img,
.page-template-lp-conference-0118 .webinar .l-section .overflow .cta_tel dt figure img,
.page-template-lp-conference-0511 .webinar #bottom-form .overflow .cta_tel dt figure img,
.page-template-lp-conference-0511 .webinar .l-section .overflow .cta_tel dt figure img,
.page-template-lp-conference-0727 .webinar #bottom-form .overflow .cta_tel dt figure img,
.page-template-lp-conference-0727 .webinar .l-section .overflow .cta_tel dt figure img,
.page-template-lp-conference-0801 .webinar #bottom-form .overflow .cta_tel dt figure img,
.page-template-lp-conference-0801 .webinar .l-section .overflow .cta_tel dt figure img {
    vertical-align: baseline;
  }
}
.page-template-lp-conference-0118 .webinar #bottom-form .overflow .cta_tel dt .c-num,
.page-template-lp-conference-0118 .webinar .l-section .overflow .cta_tel dt .c-num,
.page-template-lp-conference-0511 .webinar #bottom-form .overflow .cta_tel dt .c-num,
.page-template-lp-conference-0511 .webinar .l-section .overflow .cta_tel dt .c-num,
.page-template-lp-conference-0727 .webinar #bottom-form .overflow .cta_tel dt .c-num,
.page-template-lp-conference-0727 .webinar .l-section .overflow .cta_tel dt .c-num,
.page-template-lp-conference-0801 .webinar #bottom-form .overflow .cta_tel dt .c-num,
.page-template-lp-conference-0801 .webinar .l-section .overflow .cta_tel dt .c-num {
  font-weight: 700;
  font-size: 32px;
  line-height: 38px;
  letter-spacing: 0.01em;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0118 .webinar #bottom-form .overflow .cta_tel dt .c-num,
.page-template-lp-conference-0118 .webinar .l-section .overflow .cta_tel dt .c-num,
.page-template-lp-conference-0511 .webinar #bottom-form .overflow .cta_tel dt .c-num,
.page-template-lp-conference-0511 .webinar .l-section .overflow .cta_tel dt .c-num,
.page-template-lp-conference-0727 .webinar #bottom-form .overflow .cta_tel dt .c-num,
.page-template-lp-conference-0727 .webinar .l-section .overflow .cta_tel dt .c-num,
.page-template-lp-conference-0801 .webinar #bottom-form .overflow .cta_tel dt .c-num,
.page-template-lp-conference-0801 .webinar .l-section .overflow .cta_tel dt .c-num {
    width: 100%;
    font-size: 32px;
    line-height: 38px;
  }
}
.page-template-lp-conference-0118 .webinar #bottom-form .overflow .cta_tel dt [data-js-tel] a,
.page-template-lp-conference-0118 .webinar .l-section .overflow .cta_tel dt [data-js-tel] a,
.page-template-lp-conference-0511 .webinar #bottom-form .overflow .cta_tel dt [data-js-tel] a,
.page-template-lp-conference-0511 .webinar .l-section .overflow .cta_tel dt [data-js-tel] a,
.page-template-lp-conference-0727 .webinar #bottom-form .overflow .cta_tel dt [data-js-tel] a,
.page-template-lp-conference-0727 .webinar .l-section .overflow .cta_tel dt [data-js-tel] a,
.page-template-lp-conference-0801 .webinar #bottom-form .overflow .cta_tel dt [data-js-tel] a,
.page-template-lp-conference-0801 .webinar .l-section .overflow .cta_tel dt [data-js-tel] a {
  text-decoration: none;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0118 .webinar #bottom-form .overflow .cta_tel dt .day,
.page-template-lp-conference-0118 .webinar .l-section .overflow .cta_tel dt .day,
.page-template-lp-conference-0511 .webinar #bottom-form .overflow .cta_tel dt .day,
.page-template-lp-conference-0511 .webinar .l-section .overflow .cta_tel dt .day,
.page-template-lp-conference-0727 .webinar #bottom-form .overflow .cta_tel dt .day,
.page-template-lp-conference-0727 .webinar .l-section .overflow .cta_tel dt .day,
.page-template-lp-conference-0801 .webinar #bottom-form .overflow .cta_tel dt .day,
.page-template-lp-conference-0801 .webinar .l-section .overflow .cta_tel dt .day {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 14px;
    line-height: 21px;
  }
}
.page-template-lp-conference-0118 #g-footer,
.page-template-lp-conference-0511 #g-footer,
.page-template-lp-conference-0727 #g-footer,
.page-template-lp-conference-0801 #g-footer {
  padding: 40px 0;
  text-align: center;
  background: #0E0E0E;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0118 #g-footer,
.page-template-lp-conference-0511 #g-footer,
.page-template-lp-conference-0727 #g-footer,
.page-template-lp-conference-0801 #g-footer {
    padding: 29px;
  }
}
.page-template-lp-conference-0118 #g-footer ul,
.page-template-lp-conference-0511 #g-footer ul,
.page-template-lp-conference-0727 #g-footer ul,
.page-template-lp-conference-0801 #g-footer ul {
  display: flex;
  justify-content: center;
  margin: 0 0 56px;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0118 #g-footer ul,
.page-template-lp-conference-0511 #g-footer ul,
.page-template-lp-conference-0727 #g-footer ul,
.page-template-lp-conference-0801 #g-footer ul {
    flex-wrap: wrap;
    margin: 0 0 41px;
  }
}
.page-template-lp-conference-0118 #g-footer ul li,
.page-template-lp-conference-0511 #g-footer ul li,
.page-template-lp-conference-0727 #g-footer ul li,
.page-template-lp-conference-0801 #g-footer ul li {
  padding: 0 20px;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-conference-0118 #g-footer ul li:last-child,
.page-template-lp-conference-0511 #g-footer ul li:last-child,
.page-template-lp-conference-0727 #g-footer ul li:last-child,
.page-template-lp-conference-0801 #g-footer ul li:last-child {
    padding: 14px 20px 0;
  }
}
.page-template-lp-conference-0118 #g-footer ul li a,
.page-template-lp-conference-0511 #g-footer ul li a,
.page-template-lp-conference-0727 #g-footer ul li a,
.page-template-lp-conference-0801 #g-footer ul li a {
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
}
.page-template-lp-conference-0118 #g-footer span,
.page-template-lp-conference-0511 #g-footer span,
.page-template-lp-conference-0727 #g-footer span,
.page-template-lp-conference-0801 #g-footer span {
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
}

.page-template-lp-btobmarketing {
  color: #FFF;
}
.page-template-lp-btobmarketing .roboto {
  font-family: "Roboto", sans-serif;
}
.page-template-lp-btobmarketing #g-header {
  display: none;
}
.page-template-lp-btobmarketing .webinar {
  background-color: #112C5A;
  color: #fff;
}
.page-template-lp-btobmarketing .webinar .mv {
  background: url(../img/webinar/bg_mv.webp) no-repeat center center/cover;
  aspect-ratio: 1280/550;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-btobmarketing .webinar .mv {
    background-image: url(../img/webinar/bg_mv_sp.webp);
  }
}
.page-template-lp-btobmarketing .webinar .mv .mv_child {
  max-width: 1138px;
  width: 88.9%;
  margin: 0 auto;
  padding: 50px 0;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-btobmarketing .webinar .mv .mv_child {
    padding: 118px 0 64px;
    width: 321px;
  }
}
.page-template-lp-btobmarketing .webinar .mv .title_wrapper {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.page-template-lp-btobmarketing .webinar .mv .title_wrapper .copy {
  color: #214786;
  background: #01FFFF;
  font-size: 24px;
  font-weight: 700;
  padding: 4px 13px;
  position: relative;
  display: inline-block;
}
.page-template-lp-btobmarketing .webinar .mv .title_wrapper .copy span {
  position: relative;
  z-index: 1;
}
.page-template-lp-btobmarketing .webinar .mv .title_wrapper .copy:before {
  content: "";
  position: absolute;
  bottom: -7px;
  left: 30px;
  border: 20px solid transparent;
  border-left: 20px solid #01FFFF;
  z-index: 0;
  -webkit-transform: rotate(-50deg);
  transform: rotate(-50deg);
}
@media only screen and (max-width: 768px) {
  .page-template-lp-btobmarketing .webinar .mv .title_wrapper .copy {
    font-size: 19px;
    margin: 0 0 30px;
  }
}
.page-template-lp-btobmarketing .webinar .mv .title_wrapper .title {
  font-weight: 700;
  font-size: 44px;
  margin: 0 auto 19px;
  line-height: 1.2;
}
.page-template-lp-btobmarketing .webinar .mv .title_wrapper .title .thin {
  font-size: 38px;
}
.page-template-lp-btobmarketing .webinar .mv .title_wrapper .title .badget-num {
  font-size: 66px;
}
.page-template-lp-btobmarketing .webinar .mv .title_wrapper .title .strong {
  font-size: 62px;
}
.page-template-lp-btobmarketing .webinar .mv .title_wrapper .title .strong2 {
  font-size: 44px;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-btobmarketing .webinar .mv .title_wrapper .title {
    font-size: 31px;
    text-align: center;
    margin: 0 auto 30px;
  }
  .page-template-lp-btobmarketing .webinar .mv .title_wrapper .title .thin {
    font-size: 31px;
  }
  .page-template-lp-btobmarketing .webinar .mv .title_wrapper .title .badget-num {
    font-size: 47px;
  }
  .page-template-lp-btobmarketing .webinar .mv .title_wrapper .title .strong {
    font-size: 37px;
  }
  .page-template-lp-btobmarketing .webinar .mv .title_wrapper .title .strong2 {
    font-size: 31px;
  }
}
.page-template-lp-btobmarketing .webinar .mv .title_wrapper .time {
  color: #01FFFF;
  border: 1px solid #01FFFF;
  padding: 10px 14px;
  margin: 0 auto;
  display: inline-block;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-btobmarketing .webinar .mv .title_wrapper .time {
    font-size: 18px;
  }
}
.page-template-lp-btobmarketing .webinar .mv .title_wrapper .mv_btn {
  color: #FFF;
  background: linear-gradient(90deg, #758AFF 0%, #FD4AFE 100%);
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  border-radius: 50px;
  width: 400px;
  padding: 20px 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  line-height: 42px;
  font-weight: 700;
  margin: 60px auto 0;
  transition: all 0.3s;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-btobmarketing .webinar .mv .title_wrapper .mv_btn {
    font-size: 22px;
    line-height: 35px;
    width: 300px;
    margin: 60px auto 0;
    padding: 16px 5px;
  }
}
.page-template-lp-btobmarketing .webinar .mv .title_wrapper .mv_btn .mv_btn_inner {
  position: relative;
  z-index: 2;
}
.page-template-lp-btobmarketing .webinar .mv .title_wrapper .mv_btn::after {
  background: linear-gradient(90deg, #4D61D1 0%, #C737C8 100%);
  border-radius: 50px;
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  transition-duration: 0.3s;
  opacity: 0;
}
.page-template-lp-btobmarketing .webinar .mv .title_wrapper .mv_btn:hover {
  text-decoration: none;
}
.page-template-lp-btobmarketing .webinar .mv .title_wrapper .mv_btn:hover::after {
  opacity: 1;
}
.page-template-lp-btobmarketing .webinar .cont_wrap {
  background-image: url(../img/webinar/bg_bodytop.svg), url(../img/webinar/bg_bodybottom.svg);
  background-repeat: no-repeat, no-repeat;
  background-position: top right -5px, bottom left;
  background-size: 100vw, auto;
  color: #fff;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-btobmarketing .webinar .cont_wrap {
    background: none;
  }
}
@media only screen and (max-width: 768px) {
  .page-template-lp-btobmarketing .webinar .cont {
    background-image: url(../img/webinar/bg_bodybottom_sp.svg);
    background-repeat: no-repeat;
    background-position: bottom 200px left;
  }
}
.page-template-lp-btobmarketing .webinar .cont .cont_inner {
  max-width: 860px;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-btobmarketing .webinar .cont .cont_inner {
    padding: 0 30px 35px;
  }
}
.page-template-lp-btobmarketing .webinar .cont .introduction {
  margin: 0px auto 64px;
  padding: 72px 0 0;
  line-height: 34px;
  letter-spacing: 1px;
  text-align: justify;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-btobmarketing .webinar .cont .introduction {
    margin: 0px auto 48px;
    padding: 48px 0 0;
    line-height: 32px;
  }
}
.page-template-lp-btobmarketing .webinar .cont .introduction p,
.page-template-lp-btobmarketing .webinar .cont .introduction ul {
  margin-bottom: 24px;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-btobmarketing .webinar .cont .introduction p,
.page-template-lp-btobmarketing .webinar .cont .introduction ul {
    margin-bottom: 16px;
  }
}
.page-template-lp-btobmarketing .webinar .cont .introduction ul {
  margin-left: 1em;
}
.page-template-lp-btobmarketing .webinar .cont .introduction li {
  list-style-type: disc;
  margin-left: 0.5em;
  margin-bottom: 5px;
  line-height: 1.4;
}
.page-template-lp-btobmarketing .webinar .cont .h_line_h2 {
  color: #01FFFF;
  font-weight: bold;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto 48px;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-btobmarketing .webinar .cont .h_line_h2 {
    font-size: 20px;
    margin: 0 auto 40px;
  }
}
.page-template-lp-btobmarketing .webinar .cont .h_line_h2::before, .page-template-lp-btobmarketing .webinar .cont .h_line_h2::after {
  content: "";
  background-color: #01FFFF;
  height: 1px;
  display: block;
  width: calc(50% - 100px);
}
@media only screen and (max-width: 768px) {
  .page-template-lp-btobmarketing .webinar .cont .h_line_h2::before, .page-template-lp-btobmarketing .webinar .cont .h_line_h2::after {
    width: calc(50% - 70px);
  }
}
.page-template-lp-btobmarketing .webinar .cont .speaker_wrap {
  margin: 0 auto 64px;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-btobmarketing .webinar .cont .speaker_wrap {
    margin: 0 auto 48px;
  }
}
.page-template-lp-btobmarketing .webinar .cont .speaker_wrap .speaker {
  display: flex;
  justify-content: space-between;
  gap: 0 40px;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-btobmarketing .webinar .cont .speaker_wrap .speaker {
    flex-direction: column;
    gap: 40px 0;
  }
}
.page-template-lp-btobmarketing .webinar .cont .speaker_wrap .speaker .speaker_img {
  width: 200px;
}
.page-template-lp-btobmarketing .webinar .cont .speaker_wrap .speaker .speaker_profile .speaker_company {
  font-size: 16px;
}
.page-template-lp-btobmarketing .webinar .cont .speaker_wrap .speaker .speaker_profile .speaker_post {
  font-size: 14px;
}
.page-template-lp-btobmarketing .webinar .cont .speaker_wrap .speaker .speaker_profile .speaker_name {
  font-size: 26px;
  font-weight: bold;
  margin: 0 auto 16px;
}
.page-template-lp-btobmarketing .webinar .cont .speaker_wrap .speaker .speaker_profile .speaker_description {
  font-size: 16px;
  line-height: 28px;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-btobmarketing .webinar .cont .speaker_wrap .speaker .speaker_profile .speaker_company,
.page-template-lp-btobmarketing .webinar .cont .speaker_wrap .speaker .speaker_profile .speaker_post,
.page-template-lp-btobmarketing .webinar .cont .speaker_wrap .speaker .speaker_profile .speaker_name {
    text-align: center;
  }
}
.page-template-lp-btobmarketing .webinar .cont .description_wrap .desc_list .desc_item {
  background-color: rgba(255, 255, 255, 0.1);
  font-size: 16px;
  display: flex;
  padding: 14px 20px;
  margin: 0 auto 3px;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-btobmarketing .webinar .cont .description_wrap .desc_list .desc_item {
    flex-direction: column;
    gap: 8px 0;
  }
}
.page-template-lp-btobmarketing .webinar .cont .description_wrap .desc_list .desc_item .desc_title {
  width: 100px;
}
.page-template-lp-btobmarketing .webinar #bottom-form::before {
  display: none;
}
.page-template-lp-btobmarketing .webinar #bottom-form {
  padding: 80px 0;
  background-color: transparent;
  color: #0C1A34;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-btobmarketing .webinar #bottom-form {
    padding: 0;
    background-color: #F8F8F8;
  }
}
.page-template-lp-btobmarketing .webinar #bottom-form .p-cta2 {
  width: 860px;
  max-width: 860px;
  padding: 56px 0;
  background-color: #fff;
  filter: drop-shadow(0px 5px 20px rgba(0, 0, 0, 0.15));
}
@media only screen and (max-width: 768px) {
  .page-template-lp-btobmarketing .webinar #bottom-form .p-cta2 {
    width: 100%;
    padding: 32px 15px;
    box-sizing: border-box;
    background: #F8F8F8;
    filter: drop-shadow(0px 5px 20px rgba(0, 0, 0, 0));
  }
}
.page-template-lp-btobmarketing .webinar #bottom-form .p-cta2 .c-h2 {
  width: 540px;
  margin: 0 auto 32px !important;
  padding: 0 0 28px !important;
  font-size: 28px !important;
  line-height: 42px;
  border-bottom: 1px solid #0E0E0E;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-btobmarketing .webinar #bottom-form .p-cta2 .c-h2 {
    width: 100%;
    max-width: 400px;
    margin: 0 auto 26px !important;
    padding: 0 0 24px !important;
    font-size: 22px !important;
    line-height: 24px !important;
  }
}
.page-template-lp-btobmarketing .webinar #bottom-form .p-cta2 .p-form_wrap {
  margin: 0 auto !important;
  padding: 0 !important;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-btobmarketing .webinar #bottom-form .p-cta2 .p-form_wrap {
    width: 100%;
  }
}
.page-template-lp-btobmarketing .webinar #bottom-form .p-cta2 .p-form_wrap .box {
  margin: 0 0 16px !important;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-btobmarketing .webinar #bottom-form .p-cta2 .p-form_wrap .box {
    margin: 0 0 10px !important;
  }
}
.page-template-lp-btobmarketing .webinar #bottom-form .p-cta2 .p-form_wrap .box .f-title {
  margin: 0 0 4px !important;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-btobmarketing .webinar #bottom-form .p-cta2 .p-form_wrap .box .f-title {
    font-weight: 700;
    font-size: 14px;
    line-height: 21px;
  }
}
.page-template-lp-btobmarketing .webinar #bottom-form .p-cta2 .p-form_wrap .box .f-title .his {
  margin-left: 0 !important;
  padding: 1px 5px !important;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-btobmarketing .webinar #bottom-form .p-cta2 .p-form_wrap .box .f-title .his {
    padding: 1px 8px !important;
  }
}
@media only screen and (max-width: 768px) {
  .page-template-lp-btobmarketing .webinar #bottom-form .p-cta2 .p-form_wrap .box > p input[type=text],
.page-template-lp-btobmarketing .webinar #bottom-form .p-cta2 .p-form_wrap .box > p input[type=tel],
.page-template-lp-btobmarketing .webinar #bottom-form .p-cta2 .p-form_wrap .box > p input[type=email],
.page-template-lp-btobmarketing .webinar #bottom-form .p-cta2 .p-form_wrap .box > p textarea,
.page-template-lp-btobmarketing .webinar #bottom-form .p-cta2 .p-form_wrap .box > p select,
.page-template-lp-btobmarketing .webinar #bottom-form .p-cta2 .p-form_wrap .box > p .js-formCheckSelect {
    background: #FFFFFF;
    border: 1px solid rgba(14, 14, 14, 0.1);
  }
}
.page-template-lp-btobmarketing .webinar #bottom-form .p-cta2 .p-form_wrap .your_department input[type=text] {
  background: #F2F2F2;
}
.page-template-lp-btobmarketing .webinar #bottom-form .p-cta2 .p-form_wrap .policy,
.page-template-lp-btobmarketing .webinar #bottom-form .p-cta2 .p-form_wrap .policy_link {
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
  color: #303544;
  margin: 0 0 8px;
}
.page-template-lp-btobmarketing .webinar #bottom-form .p-cta2 .p-form_wrap .policy_link {
  margin: 0 0 32px;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-btobmarketing .webinar #bottom-form .p-cta2 .p-form_wrap .policy_link {
    margin: 0 0 24px;
    line-height: 2;
  }
}
.page-template-lp-btobmarketing .webinar #bottom-form .p-cta2 .p-form_wrap .policy_link a {
  text-decoration-line: underline;
  color: #303544;
}
.page-template-lp-btobmarketing .webinar #bottom-form .p-cta2 .p-form_wrap .policy_link a::after {
  display: none;
}
.page-template-lp-btobmarketing .webinar #bottom-form .p-cta2 .p-form_wrap .wpcf7-list-item {
  text-align: center;
  color: #303544;
}
.page-template-lp-btobmarketing .webinar #bottom-form .p-cta2 .p-form_wrap .wpcf7-list-item input {
  width: 22px;
  height: 22px;
}
.page-template-lp-btobmarketing .webinar #bottom-form .p-cta2 .p-form_wrap .wpcf7-list-item a {
  color: #303544;
  text-decoration-line: underline;
}
.page-template-lp-btobmarketing .webinar #bottom-form .p-cta2 .p-form_wrap .wpcf7-list-item a::after {
  display: none;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-btobmarketing .webinar #bottom-form .p-cta2 .p-form_wrap .acceptance {
    margin: 0 0 24px !important;
  }
}
.page-template-lp-btobmarketing .webinar #bottom-form .p-cta2 .p-form_wrap .p-form_submit p {
  margin: 0 !important;
}
.page-template-lp-btobmarketing .webinar #bottom-form .p-cta2 .p-form_wrap .p-form_submit p input[type=submit]:disabled {
  color: #fff;
  background: #DDDDDD;
  border: none;
}
.page-template-lp-btobmarketing .webinar #bottom-form .p-cta2 .p-form_wrap .p-form_submit p input[type=submit]:disabled:hover {
  background: #DDDDDD;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-btobmarketing .webinar #bottom-form .p-cta2 .p-form_wrap .p-form_submit p input[type=submit]:disabled {
    width: 299px;
    font-size: 20px;
    padding: 16px 15px;
    background: #DDDDDD;
  }
}
.page-template-lp-btobmarketing .webinar #bottom-form .p-cta2 .p-form_wrap .p-form_submit p input[type=submit] {
  font-family: inherit;
  color: #FFF;
  background: linear-gradient(90deg, #758AFF 0%, #FD4AFE 100%);
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  border-radius: 50px;
  width: 360px;
  margin: auto;
  padding: 20px 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  transition: all 0.3s;
  position: relative;
  border: none;
}
.page-template-lp-btobmarketing .webinar #bottom-form .p-cta2 .p-form_wrap .p-form_submit p input[type=submit] .mv_btn_inner {
  position: relative;
  z-index: 2;
}
.page-template-lp-btobmarketing .webinar #bottom-form .p-cta2 .p-form_wrap .p-form_submit p input[type=submit]::after {
  background: linear-gradient(90deg, #4D61D1 0%, #C737C8 100%);
  border-radius: 50px;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "222";
  transition-duration: 0.3s;
  opacity: 0;
}
.page-template-lp-btobmarketing .webinar #bottom-form .p-cta2 .p-form_wrap .p-form_submit p input[type=submit]:hover {
  text-decoration: none;
  background: linear-gradient(90deg, #4D61D1 0%, #C737C8 100%);
  transition-duration: 0.3s;
}
.page-template-lp-btobmarketing .webinar #bottom-form .p-cta2 .p-form_wrap .p-form_submit p input[type=submit]:hover::after {
  opacity: 1;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-btobmarketing .webinar #bottom-form .p-cta2 .p-form_wrap .p-form_submit p input[type=submit] {
    width: 299px;
    font-size: 20px;
    padding: 16px 15px;
    border: none;
    background: #FFDC36;
  }
}
.page-template-lp-btobmarketing .webinar #bottom-form .overflow {
  width: 610px;
  margin: 24px auto 0;
  color: #FFF;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-btobmarketing .webinar #bottom-form .overflow {
    display: block;
    width: calc(100% - 30px);
    margin: 0 auto;
    padding: 32px 0 40px;
    border-top: 1px solid #0E0E0E;
    color: #0C1A34;
  }
}
.page-template-lp-btobmarketing .webinar #bottom-form .overflow > figure {
  display: block;
  width: 122px;
  margin: 0 auto 18px;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-btobmarketing .webinar #bottom-form .overflow > figure {
    margin: 0 auto 26px;
  }
}
.page-template-lp-btobmarketing .webinar #bottom-form .overflow > figure figcaption {
  margin: 0 0 5px;
  font-size: 12px;
  line-height: 18px;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-btobmarketing .webinar #bottom-form .overflow .cta_tel dt {
    display: block;
    width: 250px;
    margin: 0 auto;
  }
}
.page-template-lp-btobmarketing .webinar #bottom-form .overflow .cta_tel dt .c-tell {
  padding: 4px 14px;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #0C1A34;
  background: #FFF;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-btobmarketing .webinar #bottom-form .overflow .cta_tel dt .c-tell {
    display: block;
    margin: 0 0 12px;
    text-align: center;
    font-weight: 700;
    font-size: 14px;
    line-height: 21px;
    color: #0C1A34;
    background: transparent;
    border: 1px solid #0C1A34;
  }
}
.page-template-lp-btobmarketing .webinar #bottom-form .overflow .cta_tel dt .c-tell:after {
  height: 32px;
  right: -16px;
  border-left: 16px solid #FFF;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  box-sizing: border-box;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-btobmarketing .webinar #bottom-form .overflow .cta_tel dt .c-tell:after {
    display: none;
  }
}
.page-template-lp-btobmarketing .webinar #bottom-form .overflow .cta_tel dt figure {
  display: inline-flex;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-btobmarketing .webinar #bottom-form .overflow .cta_tel dt figure {
    width: 17px;
    margin: 0 4px 0 0;
  }
}
.page-template-lp-btobmarketing .webinar #bottom-form .overflow .cta_tel dt figure svg {
  fill: #FFF;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-btobmarketing .webinar #bottom-form .overflow .cta_tel dt figure svg {
    fill: #0C1A34;
  }
}
@media only screen and (max-width: 768px) {
  .page-template-lp-btobmarketing .webinar #bottom-form .overflow .cta_tel dt figure img {
    vertical-align: baseline;
  }
}
.page-template-lp-btobmarketing .webinar #bottom-form .overflow .cta_tel dt .c-num {
  font-weight: 700;
  font-size: 32px;
  line-height: 38px;
  letter-spacing: 0.01em;
  color: #FFF;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-btobmarketing .webinar #bottom-form .overflow .cta_tel dt .c-num {
    width: 100%;
    font-size: 32px;
    line-height: 38px;
    color: #0C1A34;
  }
}
.page-template-lp-btobmarketing .webinar #bottom-form .overflow .cta_tel dt [data-js-tel] a {
  text-decoration: none;
}
.page-template-lp-btobmarketing .webinar #bottom-form .overflow .cta_tel dt .day {
  color: #fff;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-btobmarketing .webinar #bottom-form .overflow .cta_tel dt .day {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 14px;
    line-height: 21px;
    color: #0C1A34;
  }
}
.page-template-lp-btobmarketing #g-footer {
  padding: 40px 0;
  text-align: center;
  background: #0C1A34;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-btobmarketing #g-footer {
    padding: 29px;
  }
}
.page-template-lp-btobmarketing #g-footer ul {
  display: flex;
  justify-content: center;
  margin: 0 0 56px;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-btobmarketing #g-footer ul {
    flex-wrap: wrap;
    margin: 0 0 41px;
  }
}
.page-template-lp-btobmarketing #g-footer ul li {
  padding: 0 20px;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-btobmarketing #g-footer ul li:last-child {
    padding: 14px 20px 0;
  }
}
.page-template-lp-btobmarketing #g-footer ul li a {
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
}
.page-template-lp-btobmarketing #g-footer span {
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
}

.page-template-lp-rapidgrowth {
  color: #FFF;
}
.page-template-lp-rapidgrowth .roboto {
  font-family: "Roboto", sans-serif;
}
.page-template-lp-rapidgrowth .g-wrapper {
  min-width: auto;
}
.page-template-lp-rapidgrowth #g-header {
  display: none;
}
.page-template-lp-rapidgrowth .webinar {
  background-color: #20849A;
  color: #fff;
}
.page-template-lp-rapidgrowth .webinar .mv {
  background: url(../img/webinar/rapidgrowth//bg_mv.webp) no-repeat bottom center/cover;
  aspect-ratio: 1280/550;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-rapidgrowth .webinar .mv {
    background-image: url(../img/webinar/rapidgrowth/bg_mv_sp.webp);
  }
}
.page-template-lp-rapidgrowth .webinar .mv .mv_child {
  width: min(88.9%, 1000px);
  margin: 0 auto;
  padding: 120px 0 45px;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-rapidgrowth .webinar .mv .mv_child {
    padding: 99px 0 24px;
  }
}
.page-template-lp-rapidgrowth .webinar .mv .title_wrapper {
  text-align: center;
}
.page-template-lp-rapidgrowth .webinar .mv .title_wrapper .copy {
  font-size: 20px;
  font-weight: 700;
  line-height: 25px;
  text-align: center;
  width: 117px;
  height: 117px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #FFF;
  transform: rotate(-18deg);
  position: absolute;
  top: -75px;
  left: -120px;
}
.page-template-lp-rapidgrowth .webinar .mv .title_wrapper .copy .corp_count {
  font-size: 34px;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-rapidgrowth .webinar .mv .title_wrapper .copy .corp_count {
    font-size: 14px;
  }
}
@media only screen and (max-width: 768px) {
  .page-template-lp-rapidgrowth .webinar .mv .title_wrapper .copy {
    line-height: 15px;
    font-size: 12px;
    width: 74px;
    height: 74px;
    left: 0;
    top: -84px;
  }
}
.page-template-lp-rapidgrowth .webinar .mv .title_wrapper .title {
  font-weight: 700;
  font-size: 44px;
  margin: 0 auto 38px;
  line-height: 1.2;
  text-align: center;
  position: relative;
  display: inline-block;
}
.page-template-lp-rapidgrowth .webinar .mv .title_wrapper .title h1 {
  display: inline-flex;
  flex-direction: column;
  margin: auto;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-rapidgrowth .webinar .mv .title_wrapper .title h1 {
    display: flex;
  }
}
.page-template-lp-rapidgrowth .webinar .mv .title_wrapper .title h1 .intoro {
  font-size: 58px;
  text-align: center;
  margin: 0 auto 17px;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-rapidgrowth .webinar .mv .title_wrapper .title h1 .intoro {
    font-size: 27px;
  }
}
.page-template-lp-rapidgrowth .webinar .mv .title_wrapper .title h1 .funding,
.page-template-lp-rapidgrowth .webinar .mv .title_wrapper .title h1 .listing {
  font-size: 31px;
  padding: 10px 33px;
  position: relative;
}
.page-template-lp-rapidgrowth .webinar .mv .title_wrapper .title h1 .funding:after,
.page-template-lp-rapidgrowth .webinar .mv .title_wrapper .title h1 .listing:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.16);
  transform: skewX(-20deg);
}
@media only screen and (max-width: 768px) {
  .page-template-lp-rapidgrowth .webinar .mv .title_wrapper .title h1 .funding,
.page-template-lp-rapidgrowth .webinar .mv .title_wrapper .title h1 .listing {
    font-size: 19px;
    padding: 5px 26px 5px 18px;
  }
}
@media only screen and (max-width: 768px) {
  .page-template-lp-rapidgrowth .webinar .mv .title_wrapper .title h1 .funding {
    align-self: flex-start;
  }
}
.page-template-lp-rapidgrowth .webinar .mv .title_wrapper .title h1 img {
  margin: -8px auto;
  width: 38px;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-rapidgrowth .webinar .mv .title_wrapper .title h1 img {
    width: 30px;
  }
}
@media only screen and (max-width: 768px) {
  .page-template-lp-rapidgrowth .webinar .mv .title_wrapper .title h1 .listing {
    align-self: flex-end;
  }
}
.page-template-lp-rapidgrowth .webinar .mv .title_wrapper .title h1 .strong {
  font-size: 31px;
  color: #C0FF00;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-rapidgrowth .webinar .mv .title_wrapper .title h1 .strong {
    font-size: 24px;
  }
}
@media only screen and (max-width: 768px) {
  .page-template-lp-rapidgrowth .webinar .mv .title_wrapper .title {
    text-align: center;
    margin: 0 auto 25px;
    display: block;
  }
}
.page-template-lp-rapidgrowth .webinar .mv .title_wrapper .time {
  color: #FFF;
  border-top: 1px solid #FFF;
  border-bottom: 1px solid #FFF;
  padding: 12px 3px;
  margin: 0 auto 23px;
  display: block;
  font-size: 22px;
  width: 300px;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-rapidgrowth .webinar .mv .title_wrapper .time {
    font-size: 16px;
    display: inline-block;
    width: auto;
  }
  .page-template-lp-rapidgrowth .webinar .mv .title_wrapper .time span {
    font-size: 12px;
  }
}
.page-template-lp-rapidgrowth .webinar .mv .title_wrapper .time span {
  font-size: 18px;
}
.page-template-lp-rapidgrowth .webinar .mv .title_wrapper .mv_speaker_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  gap: 0 16px;
}
@media only screen and (max-width: 1040px) {
  .page-template-lp-rapidgrowth .webinar .mv .title_wrapper .mv_speaker_wrap {
    flex-direction: column;
  }
}
.page-template-lp-rapidgrowth .webinar .mv .title_wrapper .mv_speaker_wrap .mv_speaker {
  display: flex;
  align-items: center;
  gap: 0 16px;
  flex: 0 1 50%;
  justify-content: flex-end;
}
.page-template-lp-rapidgrowth .webinar .mv .title_wrapper .mv_speaker_wrap .mv_speaker:nth-of-type(2) {
  flex-direction: row-reverse;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-rapidgrowth .webinar .mv .title_wrapper .mv_speaker_wrap .mv_speaker {
    min-width: 300px;
  }
}
.page-template-lp-rapidgrowth .webinar .mv .title_wrapper .mv_speaker_wrap .mv_speaker .mv_speaker_corp {
  font-size: 14px;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-rapidgrowth .webinar .mv .title_wrapper .mv_speaker_wrap .mv_speaker .mv_speaker_corp {
    font-size: 12px;
  }
}
.page-template-lp-rapidgrowth .webinar .mv .title_wrapper .mv_speaker_wrap .mv_speaker .mv_speaker_post {
  font-size: 13px;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-rapidgrowth .webinar .mv .title_wrapper .mv_speaker_wrap .mv_speaker .mv_speaker_post {
    font-size: 11px;
  }
}
.page-template-lp-rapidgrowth .webinar .mv .title_wrapper .mv_speaker_wrap .mv_speaker .mv_speaker_name {
  font-size: 24px;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-rapidgrowth .webinar .mv .title_wrapper .mv_speaker_wrap .mv_speaker .mv_speaker_name {
    font-size: 16px;
  }
}
.page-template-lp-rapidgrowth .webinar .mv .title_wrapper .mv_speaker_wrap .mv_speaker:nth-of-type(1) .mv_speaker_corp,
.page-template-lp-rapidgrowth .webinar .mv .title_wrapper .mv_speaker_wrap .mv_speaker:nth-of-type(1) .mv_speaker_post,
.page-template-lp-rapidgrowth .webinar .mv .title_wrapper .mv_speaker_wrap .mv_speaker:nth-of-type(1) .mv_speaker_name {
  text-align: right;
}
.page-template-lp-rapidgrowth .webinar .mv .title_wrapper .mv_speaker_wrap .mv_speaker .mv_speaker_img {
  max-width: 257px;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-rapidgrowth .webinar .mv .title_wrapper .mv_speaker_wrap .mv_speaker .mv_speaker_img {
    max-width: 156px;
  }
}
.page-template-lp-rapidgrowth .webinar .mv .title_wrapper .mv_speaker_wrap .mv_speaker_joint {
  width: 42px;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-rapidgrowth .webinar .mv .title_wrapper .mv_speaker_wrap .mv_speaker_joint {
    width: 22px;
    margin: -5px 0;
  }
}
.page-template-lp-rapidgrowth .webinar .cont_wrap {
  color: #fff;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-rapidgrowth .webinar .cont_wrap {
    background: none;
  }
}
.page-template-lp-rapidgrowth .webinar .cont .cont_inner {
  max-width: min(980px, 92%);
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-rapidgrowth .webinar .cont .cont_inner {
    padding: 0 30px 35px;
  }
}
.page-template-lp-rapidgrowth .webinar .cont .introduction {
  margin: 0px auto 40px;
  padding: 64px 60px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0px 5px 20px rgba(12, 41, 74, 0.1);
  line-height: 34px;
  letter-spacing: 1px;
  text-align: justify;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-rapidgrowth .webinar .cont .introduction {
    margin: 0px auto 32px;
    padding: 40px 22px;
    line-height: 32px;
  }
}
.page-template-lp-rapidgrowth .webinar .cont .introduction p,
.page-template-lp-rapidgrowth .webinar .cont .introduction ul {
  margin-bottom: 24px;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-rapidgrowth .webinar .cont .introduction p,
.page-template-lp-rapidgrowth .webinar .cont .introduction ul {
    margin-bottom: 16px;
  }
}
.page-template-lp-rapidgrowth .webinar .cont .introduction ul {
  margin-left: 1em;
}
.page-template-lp-rapidgrowth .webinar .cont .introduction li {
  list-style-type: disc;
  margin-left: 0.5em;
  margin-bottom: 5px;
  line-height: 1.4;
}
.page-template-lp-rapidgrowth .webinar .cont .h_line_h2 {
  color: #CCFF00;
  font-weight: bold;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  gap: 0 24px;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-rapidgrowth .webinar .cont .h_line_h2 {
    font-size: 22px;
    margin: 0 auto 8px;
  }
}
.page-template-lp-rapidgrowth .webinar .cont .h_line_h2::before, .page-template-lp-rapidgrowth .webinar .cont .h_line_h2::after {
  content: "";
  background-color: #CCFF00;
  height: 1px;
  display: block;
  width: 15px;
}
.page-template-lp-rapidgrowth .webinar .cont .speaker_wrap {
  margin: 0 auto 40px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0px 5px 20px rgba(12, 41, 74, 0.1);
  padding: 60px;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-rapidgrowth .webinar .cont .speaker_wrap {
    margin: 0 auto 32px;
    padding: 40px 22px;
  }
}
.page-template-lp-rapidgrowth .webinar .cont .speaker_wrap .speaker {
  display: flex;
  justify-content: space-between;
  gap: 0 40px;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-rapidgrowth .webinar .cont .speaker_wrap .speaker {
    flex-direction: column;
    gap: 40px 0;
  }
}
.page-template-lp-rapidgrowth .webinar .cont .speaker_wrap .speaker:nth-of-type(1) {
  margin: 0 auto 56px;
}
.page-template-lp-rapidgrowth .webinar .cont .speaker_wrap .speaker .speaker_img {
  width: 230px;
}
.page-template-lp-rapidgrowth .webinar .cont .speaker_wrap .speaker .speaker_profile .speaker_company {
  font-size: 16px;
}
.page-template-lp-rapidgrowth .webinar .cont .speaker_wrap .speaker .speaker_profile .speaker_post {
  font-size: 14px;
}
.page-template-lp-rapidgrowth .webinar .cont .speaker_wrap .speaker .speaker_profile .speaker_name {
  font-size: 26px;
  font-weight: bold;
  margin: 0 auto 16px;
}
.page-template-lp-rapidgrowth .webinar .cont .speaker_wrap .speaker .speaker_profile .speaker_description {
  font-size: 15px;
  line-height: 27px;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-rapidgrowth .webinar .cont .speaker_wrap .speaker .speaker_profile .speaker_company,
.page-template-lp-rapidgrowth .webinar .cont .speaker_wrap .speaker .speaker_profile .speaker_post,
.page-template-lp-rapidgrowth .webinar .cont .speaker_wrap .speaker .speaker_profile .speaker_name {
    text-align: center;
  }
}
.page-template-lp-rapidgrowth .webinar .cont .description_wrap .desc_list {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0px 5px 20px rgba(12, 41, 74, 0.1);
  padding: 16px 60px;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-rapidgrowth .webinar .cont .description_wrap .desc_list {
    padding: 8px 22px;
  }
}
.page-template-lp-rapidgrowth .webinar .cont .description_wrap .desc_list .desc_item {
  font-size: 16px;
  display: flex;
  padding: 20px 10px;
  margin: 0 auto 3px;
}
.page-template-lp-rapidgrowth .webinar .cont .description_wrap .desc_list .desc_item:not(:nth-last-of-type(1)) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
@media only screen and (max-width: 768px) {
  .page-template-lp-rapidgrowth .webinar .cont .description_wrap .desc_list .desc_item {
    flex-direction: column;
    gap: 8px 0;
    padding: 20px 0;
  }
}
.page-template-lp-rapidgrowth .webinar .cont .description_wrap .desc_list .desc_item .desc_title {
  width: 100px;
}
.page-template-lp-rapidgrowth .webinar #bottom-form::before {
  display: none;
}
.page-template-lp-rapidgrowth .webinar #bottom-form {
  padding: 72px 0;
  background: linear-gradient(180deg, #20849A 0%, #114877 100%);
  color: #0C294A;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-rapidgrowth .webinar #bottom-form {
    padding: 0;
    background: #F8F8F8;
  }
}
.page-template-lp-rapidgrowth .webinar #bottom-form .p-cta2 {
  max-width: 980px;
  padding: 56px 0;
  background-color: #fff;
  filter: drop-shadow(0px 5px 20px rgba(0, 0, 0, 0.15));
}
@media only screen and (max-width: 768px) {
  .page-template-lp-rapidgrowth .webinar #bottom-form .p-cta2 {
    width: 100%;
    padding: 32px 15px;
    box-sizing: border-box;
    background: #F8F8F8;
    filter: drop-shadow(0px 5px 20px rgba(0, 0, 0, 0));
  }
}
.page-template-lp-rapidgrowth .webinar #bottom-form .p-cta2 .c-h2 {
  width: 540px;
  margin: 0 auto 32px !important;
  padding: 0 0 28px !important;
  font-size: 28px !important;
  line-height: 42px;
  border-bottom: 1px solid #0E0E0E;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-rapidgrowth .webinar #bottom-form .p-cta2 .c-h2 {
    width: 100%;
    max-width: 400px;
    margin: 0 auto 26px !important;
    padding: 0 0 24px !important;
    font-size: 22px !important;
    line-height: 24px !important;
  }
}
.page-template-lp-rapidgrowth .webinar #bottom-form .p-cta2 .p-form_wrap {
  margin: 0 auto !important;
  padding: 0 !important;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-rapidgrowth .webinar #bottom-form .p-cta2 .p-form_wrap {
    width: 100%;
  }
}
.page-template-lp-rapidgrowth .webinar #bottom-form .p-cta2 .p-form_wrap .box {
  margin: 0 0 16px !important;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-rapidgrowth .webinar #bottom-form .p-cta2 .p-form_wrap .box {
    margin: 0 0 10px !important;
  }
}
.page-template-lp-rapidgrowth .webinar #bottom-form .p-cta2 .p-form_wrap .box .f-title {
  margin: 0 0 4px !important;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-rapidgrowth .webinar #bottom-form .p-cta2 .p-form_wrap .box .f-title {
    font-weight: 700;
    font-size: 14px;
    line-height: 21px;
  }
}
.page-template-lp-rapidgrowth .webinar #bottom-form .p-cta2 .p-form_wrap .box .f-title .his {
  margin-left: 0 !important;
  padding: 1px 5px !important;
  color: #FF7A00;
  font-weight: normal;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-rapidgrowth .webinar #bottom-form .p-cta2 .p-form_wrap .box .f-title .his {
    padding: 1px 8px !important;
  }
}
.page-template-lp-rapidgrowth .webinar #bottom-form .p-cta2 .p-form_wrap .box > p input[type=text],
.page-template-lp-rapidgrowth .webinar #bottom-form .p-cta2 .p-form_wrap .box > p input[type=tel],
.page-template-lp-rapidgrowth .webinar #bottom-form .p-cta2 .p-form_wrap .box > p input[type=email],
.page-template-lp-rapidgrowth .webinar #bottom-form .p-cta2 .p-form_wrap .box > p textarea,
.page-template-lp-rapidgrowth .webinar #bottom-form .p-cta2 .p-form_wrap .box > p select,
.page-template-lp-rapidgrowth .webinar #bottom-form .p-cta2 .p-form_wrap .box > p .js-formCheckSelect {
  font-weight: normal;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-rapidgrowth .webinar #bottom-form .p-cta2 .p-form_wrap .box > p input[type=text],
.page-template-lp-rapidgrowth .webinar #bottom-form .p-cta2 .p-form_wrap .box > p input[type=tel],
.page-template-lp-rapidgrowth .webinar #bottom-form .p-cta2 .p-form_wrap .box > p input[type=email],
.page-template-lp-rapidgrowth .webinar #bottom-form .p-cta2 .p-form_wrap .box > p textarea,
.page-template-lp-rapidgrowth .webinar #bottom-form .p-cta2 .p-form_wrap .box > p select,
.page-template-lp-rapidgrowth .webinar #bottom-form .p-cta2 .p-form_wrap .box > p .js-formCheckSelect {
    background: #FFFFFF;
    border: 1px solid rgba(14, 14, 14, 0.1);
  }
}
.page-template-lp-rapidgrowth .webinar #bottom-form .p-cta2 .p-form_wrap .your_department input[type=text] {
  background: #F2F2F2;
}
.page-template-lp-rapidgrowth .webinar #bottom-form .p-cta2 .p-form_wrap .policy,
.page-template-lp-rapidgrowth .webinar #bottom-form .p-cta2 .p-form_wrap .policy_link {
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
  color: #303544;
  margin: 0 0 8px;
}
.page-template-lp-rapidgrowth .webinar #bottom-form .p-cta2 .p-form_wrap .policy_link {
  margin: 0 0 32px;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-rapidgrowth .webinar #bottom-form .p-cta2 .p-form_wrap .policy_link {
    margin: 0 0 24px;
    line-height: 2;
  }
}
.page-template-lp-rapidgrowth .webinar #bottom-form .p-cta2 .p-form_wrap .policy_link a {
  text-decoration-line: underline;
  color: #303544;
}
.page-template-lp-rapidgrowth .webinar #bottom-form .p-cta2 .p-form_wrap .policy_link a::after {
  display: none;
}
.page-template-lp-rapidgrowth .webinar #bottom-form .p-cta2 .p-form_wrap .wpcf7-list-item {
  text-align: center;
  color: #303544;
}
.page-template-lp-rapidgrowth .webinar #bottom-form .p-cta2 .p-form_wrap .wpcf7-list-item input {
  width: 22px;
  height: 22px;
}
.page-template-lp-rapidgrowth .webinar #bottom-form .p-cta2 .p-form_wrap .wpcf7-list-item a {
  color: #303544;
  text-decoration-line: underline;
}
.page-template-lp-rapidgrowth .webinar #bottom-form .p-cta2 .p-form_wrap .wpcf7-list-item a::after {
  display: none;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-rapidgrowth .webinar #bottom-form .p-cta2 .p-form_wrap .acceptance {
    margin: 0 0 24px !important;
  }
}
.page-template-lp-rapidgrowth .webinar #bottom-form .p-cta2 .p-form_wrap .acceptance label {
  cursor: pointer;
}
.page-template-lp-rapidgrowth .webinar #bottom-form .p-cta2 .p-form_wrap .p-form_submit p {
  margin: 0 !important;
}
.page-template-lp-rapidgrowth .webinar #bottom-form .p-cta2 .p-form_wrap .p-form_submit p input[type=submit]:disabled {
  color: #fff;
  background: #DDDDDD;
  border: none;
}
.page-template-lp-rapidgrowth .webinar #bottom-form .p-cta2 .p-form_wrap .p-form_submit p input[type=submit]:disabled:hover {
  background: #DDDDDD;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-rapidgrowth .webinar #bottom-form .p-cta2 .p-form_wrap .p-form_submit p input[type=submit]:disabled {
    width: 299px;
    font-size: 20px;
    padding: 16px 15px;
    background: #DDDDDD;
  }
}
.page-template-lp-rapidgrowth .webinar #bottom-form .p-cta2 .p-form_wrap .p-form_submit p input[type=submit] {
  font-family: inherit;
  color: #FFF;
  background: linear-gradient(90deg, #00A591 0%, #96C800 100%);
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  border-radius: 50px;
  width: 360px;
  margin: auto;
  padding: 20px 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  transition: all 0.3s;
  position: relative;
  border: none;
}
.page-template-lp-rapidgrowth .webinar #bottom-form .p-cta2 .p-form_wrap .p-form_submit p input[type=submit] .mv_btn_inner {
  position: relative;
  z-index: 2;
}
.page-template-lp-rapidgrowth .webinar #bottom-form .p-cta2 .p-form_wrap .p-form_submit p input[type=submit]::after {
  background: linear-gradient(90deg, #00A591 0%, #96C800 100%);
  border-radius: 50px;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "222";
  transition-duration: 0.3s;
  opacity: 0;
}
.page-template-lp-rapidgrowth .webinar #bottom-form .p-cta2 .p-form_wrap .p-form_submit p input[type=submit]:hover {
  text-decoration: none;
  background: linear-gradient(90deg, #008474 0%, #7BA400 100%);
  transition-duration: 0.3s;
}
.page-template-lp-rapidgrowth .webinar #bottom-form .p-cta2 .p-form_wrap .p-form_submit p input[type=submit]:hover::after {
  opacity: 1;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-rapidgrowth .webinar #bottom-form .p-cta2 .p-form_wrap .p-form_submit p input[type=submit] {
    width: 299px;
    font-size: 20px;
    padding: 16px 15px;
    border: none;
  }
}
.page-template-lp-rapidgrowth .webinar #bottom-form .overflow {
  width: 610px;
  margin: 24px auto 0;
  color: #FFF;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-rapidgrowth .webinar #bottom-form .overflow {
    display: block;
    width: calc(100% - 30px);
    margin: 0 auto;
    padding: 32px 0 40px;
    border-top: 1px solid #0E0E0E;
    color: #0C1A34;
  }
}
.page-template-lp-rapidgrowth .webinar #bottom-form .overflow > figure {
  display: block;
  width: 122px;
  margin: 0 auto 18px;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-rapidgrowth .webinar #bottom-form .overflow > figure {
    margin: 0 auto 26px;
  }
}
.page-template-lp-rapidgrowth .webinar #bottom-form .overflow > figure figcaption {
  margin: 0 0 5px;
  font-size: 12px;
  line-height: 18px;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-rapidgrowth .webinar #bottom-form .overflow .cta_tel dt {
    display: block;
    width: 250px;
    margin: 0 auto;
  }
}
.page-template-lp-rapidgrowth .webinar #bottom-form .overflow .cta_tel dt .c-tell {
  padding: 4px 14px;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #0C1A34;
  background: #FFF;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-rapidgrowth .webinar #bottom-form .overflow .cta_tel dt .c-tell {
    display: block;
    margin: 0 0 12px;
    text-align: center;
    font-weight: 700;
    font-size: 14px;
    line-height: 21px;
    color: #0C1A34;
    background: transparent;
    border: 1px solid #0C1A34;
  }
}
.page-template-lp-rapidgrowth .webinar #bottom-form .overflow .cta_tel dt .c-tell:after {
  height: 32px;
  right: -16px;
  border-left: 16px solid #FFF;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  box-sizing: border-box;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-rapidgrowth .webinar #bottom-form .overflow .cta_tel dt .c-tell:after {
    display: none;
  }
}
.page-template-lp-rapidgrowth .webinar #bottom-form .overflow .cta_tel dt figure {
  display: inline-flex;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-rapidgrowth .webinar #bottom-form .overflow .cta_tel dt figure {
    width: 17px;
    margin: 0 4px 0 0;
  }
}
.page-template-lp-rapidgrowth .webinar #bottom-form .overflow .cta_tel dt figure svg {
  fill: #FFF;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-rapidgrowth .webinar #bottom-form .overflow .cta_tel dt figure svg {
    fill: #0C1A34;
  }
}
@media only screen and (max-width: 768px) {
  .page-template-lp-rapidgrowth .webinar #bottom-form .overflow .cta_tel dt figure img {
    vertical-align: baseline;
  }
}
.page-template-lp-rapidgrowth .webinar #bottom-form .overflow .cta_tel dt .c-num {
  font-weight: 700;
  font-size: 32px;
  line-height: 38px;
  letter-spacing: 0.01em;
  color: #FFF;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-rapidgrowth .webinar #bottom-form .overflow .cta_tel dt .c-num {
    width: 100%;
    font-size: 32px;
    line-height: 38px;
    color: #0C1A34;
  }
}
.page-template-lp-rapidgrowth .webinar #bottom-form .overflow .cta_tel dt [data-js-tel] a {
  text-decoration: none;
}
.page-template-lp-rapidgrowth .webinar #bottom-form .overflow .cta_tel dt .day {
  color: #fff;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-rapidgrowth .webinar #bottom-form .overflow .cta_tel dt .day {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 14px;
    line-height: 21px;
    color: #0C1A34;
  }
}
.page-template-lp-rapidgrowth #g-footer {
  padding: 40px 0;
  text-align: center;
  background: #0C294A;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-rapidgrowth #g-footer {
    padding: 29px;
  }
}
.page-template-lp-rapidgrowth #g-footer ul {
  display: flex;
  justify-content: center;
  margin: 0 0 56px;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-rapidgrowth #g-footer ul {
    flex-wrap: wrap;
    margin: 0 0 41px;
  }
}
.page-template-lp-rapidgrowth #g-footer ul li {
  padding: 0 20px;
}
@media only screen and (max-width: 768px) {
  .page-template-lp-rapidgrowth #g-footer ul li:last-child {
    padding: 14px 20px 0;
  }
}
.page-template-lp-rapidgrowth #g-footer ul li a {
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
}
.page-template-lp-rapidgrowth #g-footer span {
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
}

@-webkit-keyframes anim_line {
  0% {
    -webkit-transform: translate(0, 0);
  }
  100% {
    -webkit-transform: translate(0, 200px);
  }
}
@keyframes anim_line {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(0, 200px);
  }
}
@keyframes loop {
  0% {
    transform: translateX(200%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes loop2 {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-200%);
  }
}
@keyframes loop3 {
  0% {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-300%);
  }
}
.c-colum-mailcta {
  border-radius: 8px;
  border: 2px solid;
  border-color: #F95D12;
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  max-width: 500px;
  gap: 15px;
  padding-top: 20px;
  padding-bottom: 20px;
  margin: 0 auto;
  margin-top: 10px;
}
.c-colum-mailcta div {
  display: flex;
}
.c-colum-mailcta span {
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  transition: 0.3s ease-in-out;
}
.c-colum-mailcta .ctatitle {
  flex-direction: column;
}
.c-colum-mailcta .ctatitle .imgdiv {
  width: 100%;
  justify-content: center;
}
.c-colum-mailcta .ctatitle span {
  font-size: 24px;
  font-weight: 700;
}
.c-colum-mailcta .ctamain {
  flex-direction: column;
  align-items: center;
  width: 95%;
}
.c-colum-mailcta .ctamain .mailctatxt {
  width: 100%;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}
.c-colum-mailcta .ctamain .mailctatxt span {
  font-size: 13px;
}
.c-colum-mailcta .ctamain div:nth-child(2) {
  width: 100%;
  justify-content: center;
  flex-direction: column;
}
.c-colum-mailcta form .wpcf7-form-control-wrap {
  display: flex;
  flex-direction: column;
  margin-top: 10px;
}
.c-colum-mailcta form .wpcf7-form-control-wrap input[type=text], .c-colum-mailcta form .wpcf7-form-control-wrap input[type=email] {
  font-family: "Noto Sans JP", sans-serif;
  display: inline-block;
  height: 40px;
  padding: 9px;
  font-size: 16px;
  font-weight: normal;
  line-height: 22px;
  color: #33475b;
  border: 1px solid #cbd6e2;
  box-sizing: border-box;
  border-radius: 15px;
  width: 95%;
  align-self: center;
}
.c-colum-mailcta form.sent {
  display: none;
}
.c-colum-mailcta form p {
  display: flex;
  justify-content: center;
  margin: 0;
}
.c-colum-mailcta form input[type=submit] {
  background-color: #E84715;
  border-color: #F95D12;
  border: 1px solid;
  color: #FFFFFF;
  font-size: 16px;
  line-height: 16px;
  padding: 12px 24px;
  border-style: none;
  border-radius: 48px;
  cursor: pointer;
  margin-top: 10px;
  display: flex;
  margin: 0 auto;
  justify-content: center;
  margin-top: 10px;
}
.c-colum-mailcta form input[type=submit]:hover {
  background-color: #FFFFFF;
  color: #E84715;
  border: 1px solid;
}
.c-colum-mailcta form .wpcf7-form-control-wrap .wpcf7-not-valid-tip {
  color: #E84715;
  padding-left: 10px;
}
.c-colum-mailcta .ctamain .screen-reader-response, .c-colum-mailcta form .wpcf7-response-output {
  display: none;
}

/*----------------------------------------

timeRex用

-----------------------------------------*/
.time-rex .time-rex__h2 {
  text-align: center;
  margin-bottom: 32px;
  font-weight: bold;
  font-size: 38px;
}
.time-rex .time-rex__p {
  font-size: 16px;
  font-weight: normal;
  text-align: center;
  margin-bottom: 1em;
}

/*# sourceMappingURL=main.css.map*/