@charset "utf-8";

/* ベース
/************************************************************/
body {
  margin: 0;
  font-family: 'Roboto', 'Noto Sans', 'Noto Sans CJK JP', sans-serif;
  overflow-wrap: break-word;
  word-break: normal;
  color: #222;
  background-color: #FFFFFF;
  font-size: 16px;
}
*, *:before, *:after {
  box-sizing: border-box;
}
img {
  max-width: 100%;
  height: auto;
  transition: all .2s ease;
}
a {
  color: #222;
  text-decoration: none;
  transition: all .2s ease;
}
a:hover {
  color: #E8410B;
}
p {
  line-height: 200%;
  font-size: 18px;
}


/* WPテーマカスタマイズ
/************************************************************/
#footer {
    display: none;
}

/* 共通要素
/************************************************************/
main {
margin-top: 72px;
}
.container {
  position: relative;
  width: 1088px;
  margin: 0 auto;
}
.anchor {
  position: relative;
  top: -96px;
}
.hide-pc {
  display: none;
}

/* header
/************************************************************/
header {
  background-color: #fff;
  box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.2);
  position: fixed;
  width: 100%;
  min-width: 1280px;
  height: 80px;
  z-index: 100;
  top: 0;
}
header .header-logo {
  position: absolute;
  top: 12px;
  left: 32px;
}
header .header-nav {
  position: relative;
  top: 12px;
}
header .header-nav ul {
  line-height: 56px;
  padding-right: 184px;
  text-align: right;
}
header .header-nav li {
  display: inline-block;
  margin-right: 2.4%;
}
header .header-nav li:last-child {
  margin-right: 0;
}
header .header-nav li a {
  font-weight: bold;
  font-size: 16px;
}
header .header-nav li a:hover {
  opacity: .6;
}
header .header-contact {
  position: absolute;
  top: 0px;
  right: 0px;
}
header .header-contact a {
  font-weight: bold;
  font-size: 16px;
  display: table-cell;
  vertical-align: middle;
  background-image: linear-gradient(to right, #EC6108, #F5BC02);
  color: #fff;
  text-align: center;
  width: 144px;
  height: 80px;
}
header .header-contact a:hover {
  opacity: .6;
}

/* SPメニュー
/************************************************************/
#sp-nav {
  /*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
  position: fixed;
  z-index: -1;
  opacity: 0; /*はじめは透過0*/
  /*ナビの位置と形状*/
  top: 0;
  width: 100%;
  height: 100vh; /*ナビの高さ*/
  background-color: rgba(0, 0, 0, 0.8);
  /*動き*/
  transition: all 0.3s;
}
/*アクティブクラスがついたら透過なしにして最前面へ*/
#sp-nav.panelactive {
  opacity: 1;
  z-index: 999;
}
/*ナビゲーションの縦スクロール*/
#sp-nav.panelactive #sp-nav-list {
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh; /*表示する高さ*/
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
/*ナビゲーション*/
#sp-nav ul {
  display: none;
  /*ナビゲーション天地中央揃え*/
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64%;
}
#sp-nav.panelactive ul {
  display: block;
}
/*リストのレイアウト設定*/
#sp-nav li {
  list-style: none;
  text-align: center;
  margin-top: 16px;
}
#sp-nav li a {
  text-decoration: none;
  display: block;
  background-color: #FFFF;
  color: #222;
  font-weight: bold;
  border-radius: 4px;
  line-height: 64px;
  letter-spacing: 0.1em;
  font-size: 18px;
}
#sp-nav li a.contact {
  color: #fff;
  background-image: linear-gradient(to right, #EC6108, #F5BC02);
}

/*ボタン*/
.openbtn {
  position: fixed;
  z-index: 9999; /*ボタンを最前面に*/
  top: 16px;
  right: 24px;
  cursor: pointer;
  width: 48px;
  height: 48px;
}
/*×に変化*/
.openbtn span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 13px;
  height: 2px;
  background-color: #222;
  width: 45%;
}
.openbtn span:nth-of-type(1) {
  top: 15px;
}
.openbtn span:nth-of-type(2) {
  top: 23px;
}
.openbtn span:nth-of-type(3) {
  top: 31px;
}
.openbtn.active span:nth-of-type(1) {
  top: 17px;
  left: 16px;
  transform: translateY(6px) rotate(-45deg);
  width: 35%;
  background-color: #fff;
}
.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}
.openbtn.active span:nth-of-type(3) {
  top: 29px;
  left: 16px;
  transform: translateY(-6px) rotate(45deg);
  width: 35%;
  background-color: #fff;
}

/* 下部共通コンテンツ
/************************************************************/
#area-contact {
  min-width: 1280px;
  background-image: url("../img/contact-bg.jpg");
  background-size: cover;
  background-position: center;
  padding: 96px 0;
}
#area-contact .container {
  width: 832px;
}
#area-contact .box {
  padding: 40px;
  border-radius: 16px;
  background-color: #FFFFFF;
  text-align: center;
}
#area-contact .box h2 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 24px;
}
#area-contact .box .btn-contact {
  width: 560px;
  margin: 0 auto 32px;
}
#area-contact .box .btn-contact a {
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  background-image: linear-gradient(to right, #EC6108, #F5BC02);
  line-height: 80px;
  display: block;
  text-align: center;
  border-radius: 8px;
  border-bottom: 3px solid rgba(0, 0, 0, 0.20);
  box-shadow: 0px 4px 8px rgb(0 0 0 / 15%);
}
#area-contact .box .btn-tel {
  width: 80%;
  margin: 0 auto 16px;
}
#area-contact .box .btn-tel a {
  font-size: 22px;
  font-weight: bold;
  background-color: #ddd;
  line-height: 80px;
  display: block;
  text-align: center;
  border-radius: 8px;
  border-bottom: 3px solid rgba(0, 0, 0, 0.20);
  box-shadow: 0px 4px 8px rgb(0 0 0 / 15%);
}
#area-contact .box .btn-contact a:hover {
  opacity: .6;
}


/* footer
/************************************************************/
.footer {
  background-color: #E8410B;
  width: 100%;
  min-width: 1280px;
  color: #fff;
  padding: 64px 0 48px;
}
.footer .container {
}
.footer .box {
  border: solid 1px #fff;
  padding: 32px 40px;
  margin-bottom: 48px;
  display: table;
  width: 100%;
  box-sizing: border-box;
}
.footer .text {
  display: table-cell;
  vertical-align: middle;
}
.footer .qr {
  display: table-cell;
  vertical-align: middle;
  text-align: right;
}

.footer h2 {
  margin-bottom: 8px;
}
.footer .copyright {
  letter-spacing: 0.1em;
  text-align: center;
}
.footer .copyright span {
  letter-spacing: 0em;
}
.f-production {
text-align: center;
margin-bottom: 64px;
}

/* トップページ
/************************************************************/
#top-mv {
  min-width: 1280px;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 560px;
  position: relative;
  background-image: url("../img/top-mv-bg.jpg")
}
#top-mv .copy {
  position: absolute;
  bottom: 128px;
  left: 8%;
  max-width: 480px;
}
#top-mv .copy p {
  color: #E8410B;
  background-color: #fff;
  font-size: 48px;
  font-weight: bold;
  display: inline-block;
  line-height: 72px;
  padding: 0 12px;
  margin-top: 12px;
}
#top-mv .img {
  position: absolute;
  bottom: 0px;
  right: 16%;
}
#top-mv-sp {
display: none;
min-width: 360px;
}
#top-contents {
  min-width: 1280px;
  padding: 96px 0 96px;
}

#top-contents h2 {
  font-size: 36px;
  color: #E8410B;
  font-weight: bold;
  text-align: center;
  margin-bottom: 32px;
}
#top-contents p {
  text-align: center;
}
#top-contents .support-list ul {
  margin-top: 16px;
}
#top-contents .support-list li {
  margin-left: 3.5%;
  margin-top: 31px;
  width: 31%;
  float: left;
}
#top-contents .support-list li a:hover {
  opacity: .6;
}
#top-contents .support-list li:nth-child(1) {
  margin-left: 0px;
}
#top-contents .support-list li:nth-child(4) {
  margin-left: 0px;
}
#top-contents .support-list li .img {
  padding: 24px 0px;
  border: solid 4px #E8410B;
  border-radius: 8px;
  position: relative;
  box-shadow: 0px 1px 8px rgba(0, 0, 0, 0.2);
  background-color: #FFFFFF;
  text-align: center;
  margin-bottom: 8px;
}

#top-contents .support-list li .nth {
  font-size: 20px;
  width: 48px;
  line-height: 48px;
  font-weight: bold;
  text-align: center;
  color: #FFFFFF;
  background-color: #E8410B;
  border-radius: 8px 0px 8px 0px;
  position: absolute;
  top: -4px;
  left: -4px;
  box-sizing: border-box;
}

#top-contents .support-list li p {
  font-weight: bold;
  text-align: center;
  font-size: 16px;
}
#top-contents .support-list li p::before {
  content: "";
  background-image: url(../img/arrow-icon.png);
  background-size: cover;
  display: inline-block;
  width: 8px;
  height: 14px;
  margin-right: 8px;
  position: relative;
  top: 1px;
}

/* 下層ページ共通
/************************************************************/
#page-head {
min-width: 1280px;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 256px;
  position: relative;
  background-image: url("../img/head-bg.png");
}
#page-head h1 {
font-size: 40px;
font-weight: bold;
color: #fff;
  width: 100%;
text-align: center;
line-height: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

#contents {
min-width: 1280px;
padding: 48px 0px 128px;
}

#contents .pankuzu {
margin-bottom: 96px;
}
#contents .pankuzu li {
display: inline-block;
margin-right: 12px;
font-size: 14px;
}
#contents .pankuzu li a:hover {
  opacity: .6;
}
#contents .pankuzu li::after {
content: "/";
margin-left: 16px;
}
#contents .pankuzu li:last-child::after {
display: none;
}

#contents section {
margin-top: 96px;
}
#contents section p {
margin-top: 16px;
}
#contents section p.em {
font-weight: bold;
}
#contents section ul {
margin-top: 16px;
}

#contents section p + ul {
margin-top: 0px;
}

#contents section li {
font-size: 18px;
line-height: 200%;
position: relative;
padding-left: 28px;
}
#contents section li::before {
content: "●";
position: absolute;
left: 0px;
}
#contents section ol {
margin-top: 16px;
}
#contents section ol li {
font-weight: bold;
}
#contents section ol li:nth-child(1)::before {
content: "①";
}
#contents section ol li:nth-child(2)::before {
content: "②";
}
#contents section ol li:nth-child(3)::before {
content: "③";
}
#contents section h2 {
font-size: 24px;
font-weight: bold;
color: #E8410B;
}
#contents section h3 {
font-size: 18px;
font-weight: bold;
margin: 64px 0 32px;
border: solid 1px #222;
line-height: 56px;
text-align: center;
}
#contents section h4 {
font-size: 18px;
font-weight: bold;
margin-top:32px;
position: relative;
padding-left: 28px;
}
#contents section h4::before {
content: "●";
position: absolute;
left: 0px;
color: #E8410B;
}

#contents section dl {
margin-top: 16px;
display: table;
width: 100%;
font-size: 18px;
line-height: 200%;
}
#contents section dl dt {
display: table-cell;
width: 16%;
font-weight: bold;
vertical-align: top;
}
#contents section dl dd {
display: table-cell;
vertical-align: top;
}



#contents .img {
max-width: 672px;
margin: 0 auto;
}
#contents .img + h2 {
margin-top: 64px;
}
#contents p + .img {
margin-top: 64px;
}
#contents .line {
border-top: solid 1px #ccc;
margin-top: 64px;
padding-top: 64px;
}
#contents .btn {
width: 400px;
margin: 64px auto;
}
#contents .btn a {
    font-size: 18px;
    background-color: #ddd;
    line-height: 64px;
    display: block;
    text-align: center;
    border-radius: 8px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.20);
}
#contents .btn a:hover {
  opacity: .6;
}

#contents table {
border-top: solid 1px #222;
border-left: solid 1px #222;
font-size: 18px;
width: 100%;
margin: 32px 0;
}
#contents table thead td {
border-right: solid 1px #222;
border-bottom: solid 1px #222;
width: 25%;
box-sizing: border-box;
background-color: #FFF1BD;
padding: 16px;
text-align: center;
font-weight: bold;
}
#contents table tbody th {
border-right: solid 1px #222;
border-bottom: solid 1px #222;
padding: 16px;
text-align: center;
background-color: #eee;
vertical-align: middle;
}
#contents table tbody td {
border-right: solid 1px #222;
border-bottom: solid 1px #222;
padding: 16px;
text-align: center;
font-weight: bold;
color: #EB5505;
vertical-align: middle;
}



/* 代表あいさつ
/************************************************************/

#contents .name {
text-align: center;
font-size: 32px;
font-weight: bold;
margin-top: 32px;
}
#contents .name span {
font-size: 16px;
margin-right: 16px;
}
#contents .position {
font-size: 16px;
text-align: center;
font-weight: bold;
margin: 24px 0 48px;
}
#contents .message p{
text-align: center;
font-weight: bold;
line-height: 300%;
}

#contents section.company dl {
border-bottom: solid 1px #ccc;
padding-bottom: 40px;
margin-top: 40px;
}
#contents section.company dl dt {
width: 24%;
vertical-align: middle;
}
#contents section.company dl dd {
vertical-align: middle;
}

/* セミナー
/************************************************************/

#contents section .seminar li {
border-bottom: solid 1px #ccc;
padding-bottom: 24px;
margin-bottom: 24px;
padding-left: 0px;
}
#contents section .seminar li::before {
display: none;
}

/* お問い合わせ
/************************************************************/
.contact .tel {
border: solid 1px #ccc;
padding: 40px 0px 32px;;
text-align: center;
margin-bottom: 64px;
position: relative;
}
.contact .tel p {
margin-top: 8px;
}
.contact .tel h3 {
position: absolute;
width: 100%;
font-size: 18px;
font-weight: bold;
top: -14px;
}
.contact .tel h3 span {
display: inline-block;
padding: 0 16px;
background-color: #fff;
}
.contact h2 {
margin-bottom: 24px;
font-size: 24px;
font-weight: bold;
}
