@charset "UTF-8";
/*=============================================================
 04_modules
=============================================================*/
/* inner
================================================ */
.mod_inner01 { padding-right: 15px; padding-left: 15px; }
@media all and (min-width: 600px) { .mod_inner01 { box-sizing: border-box; width: 1020px; margin: 0 auto; padding-right: 10px; padding-left: 10px; } }
/*
#styleguide
mod_inner01

SP:両端パディング15px
PC:1000pxでセンタリング＆border-box

```
<section id="hoge">
	<div class="inner mod_inner01">
		<h2 class="tit">タイトル</h3>
		<p class="txt">テキストが入ります。テキストが入ります。テキストが入ります。</p>
	</div>
</section>
```
*/
@media all and (min-width: 600px) { .mod_inner02 { box-sizing: border-box; width: 1020px; margin: 0 auto; padding-right: 10px; padding-left: 10px; } }
/*
#styleguide
mod_inner01

SP:両端パディング0px
PC:1000pxでセンタリング＆border-box

```
<section id="hoge">
	<div class="inner mod_inner01">
		<h2 class="tit">タイトル</h3>
		<p class="txt">テキストが入ります。テキストが入ります。テキストが入ります。</p>
	</div>
</section>
```
*/
/* title
================================================ */
.mod_tit01 { margin-bottom: 15px; padding: 10px 0; border-bottom: 5px solid #ffa32c; font-size: 1.8rem; text-align: center; }
@media all and (min-width: 600px) { .mod_tit01 { margin-bottom: 25px; padding: 30px 0 25px; border-bottom: 1px solid #030303; font-size: 2.4rem; } }
/*
#styleguide
mod_tit01


```
<p class="tit mod_tit01">見出しテキスト</p>
```
*/
.mod_tit02 { margin-bottom: 25px; padding-top: 15px; font-size: 2.4rem; text-align: center; }
@media all and (min-width: 600px) { .mod_tit02 { padding: 20px 0; font-size: 2.8rem; } }
.mod_tit02 span { display: inline-block; margin: 0 0 0 1em; vertical-align: middle; }
@media all and (min-width: 600px) { .mod_tit02 span { font-size: 1.6rem; } }
/*
#styleguide
mod_tit02


```
<p class="tit mod_tit02">見出しテキスト</p>
```
*/
.mod_tit03 { padding-top: 15px; border-bottom: 1px solid #030303; font-size: 1.8rem; text-align: center; }
@media all and (min-width: 600px) { .mod_tit03 { width: 320px; margin: 0 auto; padding: 8px 0; } }
/*
#styleguide
mod_tit03


```
<p class="tit mod_tit03">見出しテキスト</p>
```
*/
.mod_tit04 { padding: 15px 0 5px 35px; border-bottom: 1px solid #030303; font-size: 2.8rem; }
@media all and (min-width: 600px) { .mod_tit04 { margin-bottom: 25px; padding: 15px 0 15px; font-size: 3.2rem; } }
.mod_tit04 small { padding: 0 0 0 7em; font-size: 1.3rem; vertical-align: middle; }
/*
#styleguide
mod_tit04


```
<p class="tit mod_tit04">見出しテキスト</p>
```
*/
/* button
================================================ */
.mod_btn01 a , .mod_btn01 input { box-sizing: border-box; width: 100%; height: 70px; line-height: 68px; border: 1px solid #030303; border-radius: 10px; font-size: 2rem; text-align: center; }
@media all and (min-width: 600px) { .mod_btn01 a , .mod_btn01 input { font-size: 2.4rem; transition: all .3s ease; }  .mod_btn01 a:hover , .mod_btn01 input:hover { background: #030303; color: #fff; } }
.mod_btn01 a { display: block; }
/*
#styleguide
mod_btn01


```
<p class="btn mod_btn01"><a class="alpha" href="#">ボタンテキスト</a></p>
```
*/
/* archives
================================================ */
.mod_column03 > * { margin-bottom: 18px; }
@media all and (min-width: 600px) { .mod_column03 > * { float: left; width: 32%; margin-right: 2%; margin-bottom: 0; } }
.mod_column03 > *:nth-child(3n) { margin-right: 0; }
/*
#styleguide
mod_articles03

```
```
*/
/* archives
================================================ */
.mod_articles01 .item { position: relative; }
.mod_articles01 a { display: block; color: #fff; }
@media all and (min-width: 600px) { .mod_articles01 a { transition: all .3s ease; }  .mod_articles01 a:hover { opacity: .7; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)"; } }
.mod_articles01 .photo { position: relative; height: 0; padding-bottom: 100%; }
.mod_articles01 .photo:after { display: block; position: absolute; top: 0; left: 0; z-index: 1; width: 100%; height: 100%; background: rgba(0, 0, 0, .45); content: ""; }
.mod_articles01 .photo img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; }
.mod_articles01 .info { position: absolute; bottom: 35px; left: 0; z-index: 2; box-sizing: border-box; width: 100%; padding: 0 20px; }
@media all and (min-width: 600px) { .mod_articles01 .info { bottom: 25px; } }
.mod_articles01 .date { margin: 0 0 3px; font-size: 1.1rem; }
@media all and (min-width: 600px) { .mod_articles01 .date { font-size: 1.2rem; } }
.mod_articles01 .tit { height: 41.6px; line-height: 1.3; font-size: 1.6rem; }
/*
#styleguide
mod_articles01

```
```
*/
/* table
================================================ */
.mod_table01 { width: 100%; }
.mod_table01 th , .mod_table01 td { padding: 10px; border: 1px solid #000; }
.mod_table01 th { width: 20%; font-weight: 700; }
/*
#styleguide
mod_table01

会社概要など
```
<table class="table mod_table01" border="1">
	<tr>
		<th scope="row">社名</th>
		<td>株式会社エムハンド</td>
	</tr>
	<tr>
		<th scope="row">設立</th>
		<td>2003年10月</td>
	</tr>
	<tr>
		<th scope="row">従業員</th>
		<td>35名<span>（ディレクター：11名、デザイナー：13名、エンジニア：8名、エディター：3名）</span></td>
	</tr>
	<tr>
		<th scope="row">資本金</th>
		<td>1,000万円</td>
	</tr>
	<tr>
		<th scope="row">事業内容</th>
		<td><b>ウェブサイト事業</b>（コンサルティング、制作、運営）<br>
			<b>メディア事業</b>（企画、制作、実施）</td>
	</tr>
</table>

```
*/
/* form
================================================ */
.mod_form01 input[type="text"] , .mod_form01 input[type="email"] , .mod_form01 input[type="tel"] , .mod_form01 textarea { box-sizing: border-box; width: 100%; padding: .5em 10px; border: 1px solid #707070; background: #fff; font-size: 1.2rem; }
@media all and (min-width: 600px) { .mod_form01 input[type="text"] , .mod_form01 input[type="email"] , .mod_form01 input[type="tel"] , .mod_form01 textarea { padding: 10px 18px; font-size: 1.9rem; } }
.mod_form01 input[type="text"]:-ms-input-placeholder , .mod_form01 input[type="email"]:-ms-input-placeholder , .mod_form01 input[type="tel"]:-ms-input-placeholder , .mod_form01 textarea:-ms-input-placeholder { color: #969696; font-size: 1.6rem; }
.mod_form01 input[type="text"]::placeholder , .mod_form01 input[type="email"]::placeholder , .mod_form01 input[type="tel"]::placeholder , .mod_form01 textarea::placeholder { color: #969696; font-size: 1.6rem; }
@media all and (min-width: 600px) { .mod_form01 input[type="text"]:-ms-input-placeholder , .mod_form01 input[type="email"]:-ms-input-placeholder , .mod_form01 input[type="tel"]:-ms-input-placeholder , .mod_form01 textarea:-ms-input-placeholder { font-size: 1.9rem; } .mod_form01 input[type="text"]::placeholder , .mod_form01 input[type="email"]::placeholder , .mod_form01 input[type="tel"]::placeholder , .mod_form01 textarea::placeholder { font-size: 1.9rem; } }
.mod_form01 input[type="text"] , .mod_form01 input[type="email"] , .mod_form01 input[type="tel"] { height: 40px; }
@media all and (min-width: 600px) { .mod_form01 input[type="text"] , .mod_form01 input[type="email"] , .mod_form01 input[type="tel"] { height: 50px; } }
.mod_form01 textarea { height: 120px; }
@media all and (min-width: 600px) { .mod_form01 textarea { height: 200px; } }
.mod_form01 .checkWrap label , .mod_form01 .radioWrap label { display: inline-block; position: relative; }
.mod_form01 .checkWrap label input , .mod_form01 .radioWrap label input { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); margin: -1px; padding: 0; border: 0; }
.mod_form01 .checkWrap label input:checked + span:before , .mod_form01 .radioWrap label input:checked + span:before { background-color: #030303; }
.mod_form01 .checkWrap label span , .mod_form01 .radioWrap label span { display: inline-block; position: relative; cursor: pointer; }
@media all and (max-width: 599px) { .mod_form01 .checkWrap label span , .mod_form01 .radioWrap label span { margin-bottom: 1.5em; padding: 0 27px; } }
@media all and (min-width: 600px) { .mod_form01 .checkWrap label span , .mod_form01 .radioWrap label span { line-height: 30px; padding: 0 47px 0 35px; } }
.mod_form01 .checkWrap label span:before , .mod_form01 .radioWrap label span:before { display: block; display: inline-block; position: absolute; top: 5px; left: 0; width: 20px; height: 20px; border: 1px solid #030303; border-radius: 0; background-color: #fff; vertical-align: middle; content: ""; content: ""; }
.mod_form01 .radioWrap label input[type=radio]:checked + span:before { background-color: #fff; }
.mod_form01 .radioWrap label input[type=radio]:checked + span:after { display: block; position: absolute; top: 4px; left: 4px; width: 12px; height: 12px; border-radius: 50%; background: #030303; content: ""; }
@media all and (min-width: 600px) { .mod_form01 .radioWrap label input[type=radio]:checked + span:after { top: 9px; left: 4px; width: 14px; height: 14px; } }
.mod_form01 .radioWrap label span { margin: 0; }
.mod_form01 .radioWrap label span:before { border-radius: 50%; }
@media all and (max-width: 599px) { .mod_form01 .radioWrap label span:before { top: 0; left: 0; width: 18px; height: 18px; } }
.mod_form01 .radioWrap .mwform-radio-field.horizontal-item { margin-left: 0; }
.mod_form01 .checkWrap label { line-height: 26px; vertical-align: top; }
@media all and (max-width: 599px) { .mod_form01 .checkWrap label { position: absolute; top: 0; left: 0; } }
@media all and (min-width: 600px) { .mod_form01 .checkWrap label { display: inline-block; } }
.mod_form01 .checkWrap label input[type=checkbox]:checked + span:after { display: block; position: absolute; top: .25em; left: .35em; width: .3em; height: .7em; border-right: 3px solid #fff; border-bottom: 3px solid #fff; font-size: 1.5rem; content: ""; transform: rotate(45deg); }
@media all and (min-width: 600px) { .mod_form01 .checkWrap label input[type=checkbox]:checked + span:after { font-size: 2rem; } }
.mod_form01 .checkWrap label input:checked + span:before { background-color: #030303; }
.mod_form01 .checkWrap label span { padding: 0 0 0 35px; }
@media all and (min-width: 600px) { .mod_form01 .checkWrap label span { padding: 0 0 0 32px; } }
.mod_form01 .checkWrap label span:before { left: 0; width: 18px; height: 18px; border-radius: 4px; }
@media all and (min-width: 600px) { .mod_form01 .checkWrap label span:before { width: 20px; height: 20px; } }
.mod_form01 .checkWrap span { line-height: 26px; vertical-align: top; }
.mod_form01 .checkWrap a { color: #030303; text-decoration: underline; }
.mod_form01 .checkWrap a:hover { text-decoration: none; }
.mod_form01 .require { line-height: 1; margin: 0 0 0 5px; color: #f60707; font-size: 1.1rem; vertical-align: middle; }
@media all and (min-width: 600px) { .mod_form01 .require { display: block; position: absolute; right: -4px; bottom: .6em; margin: 0 4px 0 0; margin: 0; padding: 0; border-radius: 2px; font-family: "Noto Sans JP", sans-serif; text-align: center; } }
/*
#styleguide
mod_table01

```
```
*/
#popmake-26 .popmake-title { margin-top: 3em; margin-bottom: 3em; color: #030303; font-size: 2rem; text-align: center; }
#popmake-26 .popmake-content { max-width: 900px; margin: 0 auto; padding-bottom: 50px; }
#popmake-26 .popmake-content h2 { margin-top: 2em; margin-bottom: 1em; font-size: 1.4rem; }
#popmake-26 .popmake-content p { font-size: 1.2rem; }
#popmake-26 .popmake-content p + p { margin-top: 1em; }
#popmake-26 .popmake-content ul , #popmake-26 .popmake-content ol { margin: 1em 0; }
#popmake-26 .popmake-content ul li , #popmake-26 .popmake-content ol li { position: relative; padding-left: 1em; font-size: 1.2rem; }
#popmake-26 .popmake-content ul li:before , #popmake-26 .popmake-content ol li:before { display: block; position: absolute; top: 0; left: 0; content: "・"; }
#popmake-26 .popmake-content ul li ul , #popmake-26 .popmake-content ul li ol , #popmake-26 .popmake-content ol li ul , #popmake-26 .popmake-content ol li ol { margin-top: 0; margin-bottom: .5em; }
#popmake-26 .pum-close { top: 15px; right: 15px; width: 30px; height: 30px; line-height: 0; border: 3px solid #030303; border-radius: 0; background-color: #fff; color: #030303; font-family: "Font Awesome 5 Free"; font-weight: 900; font-size: 23px; text-shadow: none; content: "\f10d"; box-shadow: none; }
/* pager
================================================ */
.mod_pager01 { text-align: center; letter-spacing: -.5em; }
.mod_pager01 li { display: inline-block; margin: 0 5px 10px; letter-spacing: 0; }
.mod_pager01 li a , .mod_pager01 li span { display: block; box-sizing: border-box; width: 30px; height: 30px; padding-top: 1px; border: 1px solid #000; text-decoration: none; }
.mod_pager01 li.current span { background: #000; color: #fff; }
.mod_pager01 li.previous { margin-right: 15px; }
.mod_pager01 li.next { margin-left: 15px; }
@media screen and (min-width: 600px) { .mod_pager01 { margin-bottom: 100px; }  .mod_pager01 li { margin: 0 3px; }  .mod_pager01 li a { width: 30px; height: 30px; padding: 4px 0 0 0; font-size: 1.3rem; }  .mod_pager01 li a:hover { border: 1px solid #034198; background-color: #034198; color: #fff; text-decoration: none; }  .mod_pager01 li.current { width: 30px; height: 30px; padding: 4px 0 0 0; font-size: 1.3rem; }  .mod_pager01 li.previous { margin-right: 0; }  .mod_pager01 li.next { margin-left: 0; } }
/*
#styleguide
mod_pager01

pager

```
<ul class="pager mod_pager01">
	<li class="previous"><a href="#">&lt;</a></li>
	<li class="current"><span>1</span></li>
	<li><a href="#">2</a></li>
	<li><a href="#">3</a></li>
	<li class="next"><a href="#">&gt;</a></li>
</ul>
```
*/

/*# sourceMappingURL=maps/modules.css.map */