@charset "UTF-8";
/*
====================
IMPORT
====================
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-style: normal;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
}

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

blockquote,
q {
  quotes: none;
}

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

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

input,
textarea {
  margin: 0;
  padding: 0;
}

ol,
ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

caption,
th {
  text-align: left;
}

th {
  font-weight: normal;
}

a:focus {
  outline: none;
}

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

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

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

textarea {
  resize: vertical;
}

/*
============================
GENERAL CONTENTS
============================
*/
*:not(br) {
  box-sizing: border-box;
  line-height: 1.4;
  letter-spacing: 0.1em;
}
*:not(br)::before, *:not(br)::after {
  box-sizing: inherit;
  line-height: inherit;
}

body {
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  font-size: 16px;
  color: #000;
  -webkit-text-size-adjust: 100%;
  position: relative;
  text-align: left;
}

p {
  line-height: 1.8;
}

input[type="text"],
input[type="email"],
textarea,
button {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
  border: 0;
  margin: 0;
  background: none transparent;
  vertical-align: middle;
  font-size: inherit;
  color: inherit;
}

/*
============================
MAIN CONTENTS
============================
*/
.pc {
  display: block;
}

.sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }

  .sp {
    display: block;
  }
}
.header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 999;
  background-color: #fff;
}

.header__outer {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
}

.header__access {
  position: absolute;
  right: 0;
  top: 0;
  display: inline-block;
  width: 90px;
  height: 30px;
  line-height: 30px;
  padding-left: 15px;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
  text-align: center;
  background: #ee7800 url(../img/icon_place01.svg) no-repeat 5px 50%/12px auto;
  color: #fff;
  font-weight: bold;
  font-size: 14px;
}

.menu-btn {
  display: none;
}

.header__nav__list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
.header__nav__list > li + li {
  margin-left: 42px;
}

.header__nav__list__item {
  color: #57433b;
  font-weight: bold;
  font-size: 17px;
  display: block;
  height: 130px;
  line-height: 130px;
  font-weight: bold;
  cursor: pointer;
  position: relative;
}
.header__nav__list__item::before {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 0%;
  height: 0;
  content: "";
  display: block;
  border-top: 5px solid #ee7800;
  -ms-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.header__nav__list__detail-list {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 0px;
  padding-left: 230px;
  background-color: #808080;
  z-index: 2;
  visibility: hidden;
  opacity: 0;
}
.header__nav__list__detail-list::before {
  position: absolute;
  left: -100%;
  right: -100%;
  top: 0;
  display: block;
  content: "";
  width: 100vw;
  height: 100%;
  margin: auto;
  background-color: #808080;
  z-index: -1;
}
.header__nav__list__detail-list li + li {
  margin-left: 35px;
}
.header__nav__list__detail-list a {
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  -ms-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.footer__top {
  border-top: 1px solid #ee7800;
  padding: 60px 0;
  font-size: 12px;
}

.footer__top__outer {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: start;
  align-items: flex-start;
  position: relative;
}

.footer__about {
  color: #666;
}
.footer__about dt {
  margin: 0 0 15px;
}
.footer__about dd {
  line-height: 1.8;
}

.footer__access {
  display: inline-block;
  margin: 5px 0 0;
  padding-left: 16px;
  background: url(../img/icon_place02.svg) no-repeat 0% 50%/12px auto;
  color: #57433b;
}

.footer__nav {
  display: -ms-flexbox;
  display: flex;
  color: #57433b;
}

.footer__nav__block + .footer__nav__block {
  margin-left: 60px;
}
.footer__nav__block:last-of-type {
  margin-left: 30px;
}

.footer__nav__ttl {
  font-weight: bold;
  display: inline-block;
  margin: 0 0 15px;
}

.footer__nav__list li + li {
  margin-top: 5px;
}

.footer__copy {
  display: block;
  height: 30px;
  line-height: 30px;
  text-align: center;
  font-size: 10px;
  background-color: #808080;
  color: #fff;
}

.to-page-top-wrap {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 20px;
  height: 60px;
}

.to-page-top {
  position: absolute;
  left: calc(100%);
  display: block;
  width: 60px;
  height: 60px;
  text-indent: -9999px;
  overflow: hidden;
  background-color: #ee7800;
  border-radius: 30px;
  opacity: 0;
  visibility: hidden;
  -ms-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.to-page-top::before, .to-page-top::after {
  position: absolute;
  content: "";
  display: block;
  left: 0;
  right: 0;
  margin: auto;
}
.to-page-top::before {
  top: 0;
  bottom: 0;
  width: 28px;
  height: 28px;
  border-style: solid;
  border-width: 5px 5px 0 0;
  border-color: #fff #fff transparent transparent;
  transform: rotate(-45deg);
}
.to-page-top::after {
  width: 0;
  top: 15px;
  width: 5px;
  height: 35px;
  background-color: #fff;
}
.to-page-top.show {
  opacity: 1;
  visibility: visible;
}

.outer {
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  max-width: 1160px;
  min-width: 1000px;
}

.inner {
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  width: 1000px;
}

.breadcranbs,
.main-wrap#top {
  margin-top: 130px;
}

.all-wrap {
  min-width: 1100px;
  overflow: hidden;
}

.all-wrap--top {
  min-width: 1100px;
}

.box--type01 {
  padding: 15px;
  border: 1px solid #ee7800;
  background-color: #fff;
}

.breadcranbs {
  background: linear-gradient(to right, #ee7800 0%, #fcd68c 100%);
  height: 50px;
  padding: 17px 0;
}

.breadcranbs__list {
  color: #fff;
  font-size: 12px;
  display: -ms-flexbox;
  display: flex;
}
.breadcranbs__list li + li {
  margin-left: 30px;
  position: relative;
}
.breadcranbs__list li + li::before {
  position: absolute;
  content: "＞";
  display: block;
  top: 0;
  bottom: 0;
  margin: auto;
  right: calc(100% + 10px);
}

.headerline {
  background: linear-gradient(to right, #f1f1f1 0%, white 100%);
}
.headerline .outer {
  height: 140px;
  position: relative;
}

.headerline__txt {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  color: #57433b;
  font-size: 30px;
  -ms-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.headerline__txt {
  opacity: 0;
  left: 40px;
}
.headerline__txt.show {
  opacity: 1;
  left: 20px;
}

@media screen and (max-width: 1280px) {
  .to-page-top {
    left: auto;
    right: 10px;
  }
}
@media screen and (min-width: 768px) {
  .header__logo img,
  .header__nav__list__item,
  .header__access {
    -ms-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
  }

  .header.follow .header__logo img {
    width: 300px;
  }
  .header.follow .header__nav__list__item {
    height: 70px;
    line-height: 95px;
    transform: scale(0.9);
  }
  .header.follow .header__nav__list__item::before {
    bottom: -4px;
  }
  .header.follow .header__access {
    font-size: 12px;
    height: 25px;
    line-height: 25px;
    background-size: 10px auto;
    background-position: 10px 50%;
  }

  .header__nav__list li:hover .header__nav__list__detail-list {
    height: 100px;
    visibility: visible;
    opacity: 1;
  }

  .header__nav__list__item:hover::before {
    width: 100%;
  }

  .header__nav__list__detail-list {
    -ms-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
  }
  .header__nav__list__detail-list a:hover {
    color: #ee7800;
  }
}
@media screen and (max-width: 767px) {
  body {
    font-size: 14px;
  }

  .header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
  }

  .header__outer {
    height: 60px;
    padding-right: 0 !important;
  }

  .header__logo {
    width: 70%;
    max-width: 200px;
  }

  .menu-btn {
    display: block;
    width: 60px;
    height: 60px;
    position: relative;
    overflow: hidden;
  }
  .menu-btn::before {
    position: absolute;
    content: "";
    display: block;
    right: 0;
    top: 0;
    width: 100vw;
    height: 100%;
    opacity: 0;
    background: linear-gradient(to right, #ee7800 0%, #fcd68c 100%);
  }
  .menu-btn span {
    position: absolute;
    width: 20px;
    height: 2px;
    background-color: #ee7800;
    left: 20px;
  }
  .menu-btn span:nth-of-type(1) {
    top: 24px;
  }
  .menu-btn span:nth-of-type(2) {
    top: 29px;
  }
  .menu-btn span:nth-of-type(3) {
    top: 34px;
  }
  .menu-btn.show::before {
    opacity: 1;
  }
  .menu-btn.show span {
    width: 42px;
    background-color: #fff;
    left: 10px;
  }
  .menu-btn.show span:nth-of-type(1) {
    transform: rotate(45deg);
    top: 29px;
  }
  .menu-btn.show span:nth-of-type(2) {
    opacity: 0;
  }
  .menu-btn.show span:nth-of-type(3) {
    transform: rotate(-45deg);
    top: 29px;
  }

  .header__nav {
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    background-color: #fff;
    overflow: hidden;
    visibility: hidden;
    height: 0;
    -ms-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
  }
  .header__nav.show {
    visibility: visible;
    height: calc(100vh - 60px);
    overflow-y: scroll;
  }

  .header__nav__list {
    padding-bottom: 80px;
    position: relative;
    display: block;
    background: linear-gradient(to right, #ee7800 0%, #fcd68c 100%);
  }
  .header__nav__list > li + li {
    margin-left: 0;
  }
  .header__nav__list > li:last-of-type {
    width: 50%;
  }
  .header__nav__list::before {
    position: absolute;
    content: "";
    display: block;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background-color: #fff;
  }

  .header__nav__list__item {
    padding-left: 16px;
    height: 36px;
    line-height: 36px;
    font-size: 13px;
    color: #fff;
    font-weight: normal;
  }

  .header__nav__list__detail-list {
    position: static;
    height: auto;
    padding-left: 0;
    visibility: visible;
    opacity: 1;
    display: block;
    background-color: #fff;
  }
  .header__nav__list__detail-list li {
    padding: 10px 0 10px 16px;
  }
  .header__nav__list__detail-list li + li {
    border-top: 1px solid #ee7800;
    margin-left: 0;
  }
  .header__nav__list__detail-list a {
    display: inline-block;
    padding-left: 16px;
    color: #57433b;
    font-weight: normal;
    font-size: 13px;
    position: relative;
  }
  .header__nav__list__detail-list a::before {
    position: absolute;
    content: "";
    display: block;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 5px;
    height: 5px;
    border-style: solid;
    border-width: 1px 1px 0 0;
    border-color: #ee7800 #ee7800 transparent transparent;
    transform: rotate(45deg);
  }

  .header__access {
    position: static;
    float: right;
    margin: -116px 0 0;
    width: 50%;
    border-radius: 0;
    height: 36px;
    line-height: 36px;
    font-size: 13px;
    background: none;
    font-weight: normal;
    text-align: left;
    position: relative;
  }
  .header__access::before {
    position: absolute;
    content: "";
    display: block;
    left: 0;
    top: 0;
    border-left: 1px solid #fff;
    height: 100%;
    width: 0;
  }

  .header__nav__list__item--btn-harf {
    padding-left: 32px;
    position: relative;
  }
  .header__nav__list__item--btn-harf::after {
    position: absolute;
    content: "";
    display: block;
    left: 16px;
    top: 0;
    bottom: 0;
    width: 5px;
    height: 5px;
    margin: auto;
    border-style: solid;
    border-width: 1px 1px 0 0;
    border-color: #fff #fff transparent transparent;
    transform: rotate(45deg);
  }

  .outer {
    min-width: 0;
    padding-left: 16px;
    padding-right: 16px;
  }

  .inner {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .all-wrap {
    min-width: 0;
  }

  .footer__top {
    padding: 0;
    font-size: 10px;
  }

  .footer__top__outer {
    display: block;
    padding-left: 40px;
    padding-right: 40px;
  }

  .footer__about {
    padding: 25px 0 20px;
  }

  .footer__access {
    background-size: 10px auto;
  }

  .footer__nav {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 34px 0 45px;
    position: relative;
  }
  .footer__nav::before {
    position: absolute;
    content: "";
    display: block;
    border-top: 1px solid #ee7800;
    top: 0;
    left: -40px;
    width: 100vw;
  }

  .footer__nav__block:nth-of-type(odd) {
    width: 58%;
  }
  .footer__nav__block:nth-of-type(even) {
    width: 42%;
  }
  .footer__nav__block:nth-of-type(n + 3) {
    margin-top: 20px;
  }
  .footer__nav__block + .footer__nav__block {
    margin-left: 0;
  }

  .footer__nav__ttl {
    margin-bottom: 8px;
  }

  .footer__nav__list a {
    letter-spacing: 0.05em;
  }

  .footer__copy {
    letter-spacing: 0;
  }

  .to-page-top-wrap {
    bottom: 15px;
    height: 30px;
  }

  .to-page-top {
    width: 30px;
    height: 30px;
    left: auto;
    right: 20px;
  }
  .to-page-top::before {
    width: 14px;
    height: 14px;
    border-width: 2.5px 2.5px 0 0;
  }
  .to-page-top::after {
    width: 2.5px;
    height: 17px;
    top: 8px;
  }

  .main-wrap#top,
  .breadcranbs {
    margin-top: 60px;
  }

  .breadcranbs {
    height: auto;
    padding: 5.5px 0;
  }

  .breadcranbs__list {
    font-size: 10px;
  }

  .headerline .outer {
    height: 100px;
  }

  .headerline__txt {
    font-size: 20px;
  }
}
/*
============================
UNDER CONTENTS
============================
*/
/*
============================
index
============================
*/
#top .inner {
  width: 1120px;
}

.mv {
  position: relative;
  overflow: hidden;
}

.mv__body {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 2;
}

.slider {
  height: 850px;
  width: 1280px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.slider::before {
  position: absolute;
  content: "";
  display: block;
  left: -220px;
  top: -210px;
  width: 1000px;
  height: 1000px;
  background: linear-gradient(to bottom, white 40%, rgba(255, 255, 255, 0) 100%);
  transform: rotate(20deg);
  z-index: 1;
}

.mv__txt01 {
  font-size: 40px;
  color: #57433b;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin: 120px 0 30px;
}

.mv__txt02 {
  color: #ee7800;
  font-size: 22px;
  line-height: 2;
  letter-spacing: 0.1em;
}

.mv__txt03 {
  max-width: 640px;
  margin: 50px 0 0;
}

.top__sec {
  margin: 40px 0 90px;
}

.top__sec__ttl {
  font-size: 30px;
  color: #57433b;
  letter-spacing: 0.1em;
  position: relative;
}
.top__sec__ttl::before, .top__sec__ttl::after {
  position: absolute;
  content: "";
  display: block;
  top: 0;
  bottom: 0;
  margin: auto;
}
.top__sec__ttl::before {
  right: calc(100% + 20px);
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #ee7800;
}
.top__sec__ttl::after {
  right: calc(100% + 30px);
  width: 70px;
  border-top: 2px solid #ee7800;
  height: 0;
}

.top__list__tt__arrow {
  position: relative;
  margin-top: 10px;
}
.top__list__tt__arrow::before {
  position: absolute;
  content: "";
  display: block;
  right: 4px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 14px;
  height: 14px;
  transform: rotate(45deg);
  border-style: solid;
  border-color: #ee7800 #ee7800 transparent transparent;
  border-width: 2px 2px 0 0;
}
.top__list__tt__arrow span {
  display: block;
  width: 80%;
  max-width: 180px;
  color: #57433b;
  font-weight: bold;
  font-size: 20px;
}

.top__sec__first {
  color: #ee7800;
  margin: 10px 0 0;
}

.top__sec__news-list {
  margin: 40px 0 0;
}
.top__sec__news-list a {
  color: #8c6239;
  display: inline-block;
  border-bottom: 1px dashed #ee7800;
}

.top__sec__card-list {
  display: -ms-flexbox;
  display: flex;
  margin: 40px -12px 0;
  width: calc(100% + 24px);
}
.top__sec__card-list li {
  width: calc(100% / 4);
  padding: 0 12px;
}

.top__sec__case-list {
  display: -ms-flexbox;
  display: flex;
  margin: 40px -10px;
  width: calc(100% + 20px);
}
.top__sec__case-list li {
  padding: 0 10px;
  width: calc(100% / 5);
}
.top__sec__case-list a {
  display: block;
  height: 198px;
  padding: 20px;
  color: #fff;
  background: linear-gradient(135deg, #ee7800 0%, #fcd68c 100%);
  position: relative;
}
.top__sec__case-list a::before {
  position: absolute;
  content: "";
  display: block;
  right: 20px;
  bottom: 20px;
  border-style: solid;
  border-width: 2px 2px 0 0;
  border-color: inherit inherit transparent transparent;
  transform: rotate(45deg);
  width: 15px;
  height: 15px;
}

.top__sec__case-list__ttl {
  font-size: 20px;
}

.top__sec__partner {
  overflow: hidden;
}
.top__sec__partner .top__sec__card-list {
  margin-top: -80px;
  float: right;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.top__sec__partner__txt {
  float: left;
}

@media screen and (max-width: 767px) {
  #top .inner {
    width: 100%;
    padding-left: 40px;
    padding-right: 30px;
  }

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

  .mv__txt01 {
    margin: 40px 0 18px;
    font-size: 19px;
  }

  .mv__txt02 {
    font-size: 13px;
  }

  .mv__txt03 {
    margin-top: 20px;
    font-size: 10px;
    padding: 12px 14px;
    letter-spacing: 0.02em;
  }

  .slider {
    height: auto;
    width: 100%;
  }
  .slider::before {
    width: 80%;
    height: 110%;
    top: -16%;
    left: -14%;
  }

  .top__sec {
    margin: 45px 0 50px;
  }

  .top__sec__ttl {
    font-size: 15px;
  }
  .top__sec__ttl::before {
    right: calc(100% + 6px);
  }
  .top__sec__ttl::after {
    right: calc(100% + 10px);
  }

  .top__sec__first {
    font-size: 10px;
    margin-top: 5px;
  }

  .top__sec__card-list {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 10px -9px -8px;
    width: calc(100% + 18px);
  }
  .top__sec__card-list li {
    width: 50%;
    padding: 8px 9px;
  }

  .top__list__tt__arrow {
    margin-top: 5px;
  }
  .top__list__tt__arrow::before {
    width: 6px;
    height: 6px;
    border-width: 1px 1px 0 0;
  }
  .top__list__tt__arrow span {
    font-size: 10px;
  }

  .top__sec__news-list {
    margin-top: 15px;
  }
  .top__sec__news-list a {
    font-size: 12px;
  }

  .top__sec__case-list {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 15px -2.5px -2.5px;
    width: calc(100% + 5px);
  }
  .top__sec__case-list li {
    width: calc(100% / 3);
    padding: 2.5px;
  }
  .top__sec__case-list a {
    height: 94px;
    padding: 12px 10px;
  }
  .top__sec__case-list a::before {
    bottom: 10px;
    right: 10px;
    width: 7px;
    height: 7px;
    border-width: 1px 1px 0 0;
  }

  .top__sec__case-list__ttl {
    font-size: 10px;
  }

  .top__sec__partner__txt {
    float: none;
  }

  .top__sec__partner .top__sec__card-list {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin-top: 10px;
  }
}
/*
============================
contact
============================
*/
#contact,
#confirm,
#thanks {
  padding-bottom: 100px;
}

.form-table {
  margin: 80px 0 0;
}
.form-table tr {
  border-bottom: 1px dashed #ee7800;
}
.form-table th,
.form-table td {
  padding-top: 30px;
  padding-bottom: 30px;
  vertical-align: text-top;
}
.form-table th {
  padding-left: 30px;
  padding-right: 40px;
  width: 300px;
  position: relative;
  color: #57433b;
  font-weight: bold;
  line-height: 1.8;
}
.form-table .required {
  position: absolute;
  right: 30px;
  top: 40px;
}

input[type="text"],
input[type="email"],
textarea {
  display: block;
  border: 1px solid #b2b2b2;
  width: 100%;
  padding: 8px 10px;
}

textarea {
  height: 240px;
}

.required {
  font-size: 12px;
  display: inline-block;
  color: #e56a7c;
}

.form-table__item-ttl {
  vertical-align: text-top;
  display: inline-block;
}

.input-example {
  display: block;
  margin: 5px 0 0;
  font-size: 14px;
  color: #666;
}

.error {
  display: block;
  font-size: 12px;
  color: #e56a7c;
}

.privacy--ttl {
  display: block;
  margin: 60px 0 30px;
  font-size: 20px;
  text-align: center;
  color: #ee7800;
}

.privacy-box-wrap {
  margin: 0 40px;
  border: 1px solid #b2b2b2;
  padding: 50px;
}

.privacy-box {
  overflow-y: scroll;
  height: 330px;
  color: #666666;
  padding-right: 20px;
  scrollbar-base-color: #ee7800;
}
.privacy-box::-webkit-scrollbar {
  width: 10px;
  overflow: hidden;
}
.privacy-box::-webkit-scrollbar-thumb {
  background: #ee7800;
  border-radius: 10px;
}
.privacy-box p + p {
  margin-top: 20px;
}

.agree-wrap {
  text-align: center;
  margin: 40px 0 0px;
}
.agree-wrap label {
  font-weight: bold;
  padding-left: 30px;
  display: inline-block;
  position: relative;
  cursor: pointer;
}
.agree-wrap label::before, .agree-wrap label::after {
  position: absolute;
  content: "";
  display: block;
}
.agree-wrap label::before {
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  border: 1px solid;
  width: 20px;
  height: 20px;
}
.agree-wrap label::after {
  left: 0;
  top: 0px;
  width: 22px;
  height: 13px;
  border-style: solid;
  border-width: 0 0 4px 4px;
  border-color: transparent transparent #ee7800 #ee7800;
  transform: rotate(-50deg);
  opacity: 0;
}
.agree-wrap input[type="checkbox"] {
  display: none;
}
.agree-wrap input[type="checkbox"]:checked + label::after {
  opacity: 1;
}

.input-item {
  padding: 9px 0;
}

.form__btn-wrap {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 54px;
}

.form__btn {
  display: block;
  width: 300px;
  height: 80px;
  line-height: 80px;
  color: #fff;
  font-size: 24px;
  letter-spacing: 3em;
  text-indent: 3em;
  border-radius: 3px;
  cursor: pointer;
}

.form__btn--back {
  margin-right: 40px;
  background-color: #666;
}

.form__btn--submit {
  background-color: #ee7800;
}

.thanks__body {
  padding: 100px 0 200px;
}

@media screen and (max-width: 767px) {
  #contact,
  #confirm,
  #thanks {
    padding-bottom: 50px;
  }

  .form-table {
    margin: 40px 0 0;
  }
  .form-table tr {
    border-bottom: none;
  }
  .form-table th,
  .form-table td {
    display: block;
    padding: 20px 15px;
  }
  .form-table th {
    width: 100%;
    padding-bottom: 0;
  }
  .form-table td {
    border-bottom: 1px dashed #ee7800;
  }
  .form-table .required {
    position: static;
    margin-left: 10px;
  }

  .privacy--ttl {
    margin: 30px 0 15px;
    font-size: 15px;
  }

  .privacy-box-wrap {
    margin: 0 15px;
    padding: 25px;
  }

  .privacy-box {
    padding-right: 0px;
    height: 240px;
    font-size: 12px;
  }
  .privacy-box::-webkit-scrollbar {
    width: 5px;
  }
  .privacy-box p + p {
    margin-top: 10px;
  }

  textarea {
    height: 200px;
  }

  .input-example {
    font-size: 10px;
  }

  .agree-wrap {
    margin-top: 20px;
  }
  .agree-wrap label {
    padding-left: 20px;
  }
  .agree-wrap label::before {
    width: 12px;
    height: 12px;
    bottom: 1px;
  }
  .agree-wrap label::after {
    width: 15px;
    height: 8px;
    border-width: 0 0 2px 2px;
  }

  .form__btn-wrap {
    margin-top: 30px;
    display: block;
  }

  .form__btn {
    font-size: 16px;
    width: 260px;
    height: 60px;
    line-height: 60px;
    margin-left: auto;
    margin-right: auto;
  }

  .form__btn--back {
    margin-bottom: 20px;
  }

  .thanks__body {
    padding: 50px 0 20px;
  }
}
/*
============================
access
============================
*/
#access {
  padding: 100px 0 160px;
}

.access__block {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.access__block__body {
  width: calc(100% - 600px);
  padding-left: 60px;
}
.access__block__body p + p {
  margin: 40px 0 0;
}

.access__block__map {
  width: 600px;
}

@media screen and (max-width: 767px) {
  #access {
    padding: 30px 0 60px;
  }

  .access__block {
    display: block;
  }

  .access__block__body {
    width: 100%;
    padding: 0 0 30px;
  }
  .access__block__body p + p {
    margin-top: 15px;
  }

  .access__block__map {
    width: 100%;
    height: 250px;
  }
}
/*
============================
company
============================
*/
#idea {
  padding: 100px 0 256px;
  background: url(../img/idea_bg.jpg) no-repeat 50% 100%/100% auto;
}

.idea__ttl,
.idea__first {
  text-align: center;
}

.idea__ttl {
  color: #57433b;
  font-weight: bold;
  font-size: 36px;
}

.idea__first {
  color: #ee7800;
  font-weight: bold;
  font-size: 20px;
  margin: 40px 0 100px;
}

.idea__body p + p {
  margin-top: 30px;
}

.idea__box {
  margin-top: 60px;
}

#feature {
  padding: 120px 0 50px;
}

.feature__first {
  margin: 0 0 80px;
  font-size: 18px;
  color: #57433b;
  font-weight: bold;
  text-align: center;
}

.feature__ttl {
  margin: 90px 0 25px;
  padding: 0 0 30px;
  font-size: 28px;
  color: #57433b;
  font-weight: bold;
  position: relative;
  text-align: center;
}
.feature__ttl::before {
  position: absolute;
  content: "";
  display: block;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 200px;
  border-top: 6px solid #ee7800;
}

.feature__body {
  margin-bottom: 90px;
}

#about {
  padding: 80px 0 220px;
}

.about__table tr {
  border-bottom: 1px dashed #ee7800;
}
.about__table tr:first-of-type td {
  font-size: 18px;
}
.about__table th,
.about__table td {
  vertical-align: text-top;
  padding-top: 40px;
  padding-bottom: 40px;
}
.about__table th {
  width: 180px;
  font-weight: bold;
  color: #57433b;
  padding-left: 26px;
}

.about__table__access {
  display: inline-block;
  margin-left: 20px;
  padding-left: 15px;
  background: url(../img/icon_place02.svg) no-repeat 0% 50%/12px auto;
  color: #ee7800;
  font-weight: bold;
}

#member {
  padding: 100px 0;
}

.member__list li + li {
  margin-top: 100px;
}

.member__list__ttl-wrap,
.member__list__body {
  padding-left: 30px;
  padding-right: 30px;
}

.member__list__ttl-wrap {
  border-bottom: 1px dashed #ee7800;
  padding-bottom: 20px;
  margin-bottom: 35px;
}

.member__list__ttl {
  font-size: 22px;
  font-weight: bold;
  color: #57433b;
}
.member__list__ttl span {
  display: inline-block;
  padding-left: 30px;
  font-size: 16px;
  font-weight: normal;
}

.member__list__job {
  display: block;
  margin-top: 10px;
  color: #ee7800;
}

@media screen and (max-width: 767px) {
  #idea {
    padding: 50px 0 138px;
    background-image: url(../img/idea_bg_sp.jpg);
  }

  .idea__ttl {
    font-size: 18px;
  }

  .idea__first {
    font-size: 13px;
    margin: 30px 0 55px;
  }

  .idea__body p + p {
    margin-top: 20px;
  }

  .idea__box {
    margin-top: 40px;
    padding: 20px;
  }

  #feature {
    padding: 60px 0 25px;
  }

  .feature__first {
    font-size: 14px;
    margin-bottom: 40px;
  }

  .feature__ttl {
    font-size: 18px;
    margin: 45px 0 20px;
    padding: 0 0 20px;
  }
  .feature__ttl::before {
    border-top-width: 3px;
  }

  .feature__body {
    margin-bottom: 45px;
  }

  #about {
    padding: 40px 0 110px;
  }

  .about__table tr {
    border-bottom: none;
  }
  .about__table tr:first-of-type td {
    font-size: 15px;
  }
  .about__table th,
  .about__table td {
    display: block;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 25px;
    padding-bottom: 25px;
  }
  .about__table th {
    width: 100%;
    padding-bottom: 0px;
  }
  .about__table td {
    border-bottom: 1px dashed #ee7800;
  }

  .about__table__access {
    margin: 0 0 10px;
    background-size: 10px auto;
  }

  #member {
    padding: 50px 0;
  }

  .member__list li + li {
    margin-top: 50px;
  }

  .member__list__ttl-wrap,
  .member__list__body {
    padding-left: 15px;
    padding-right: 15px;
  }

  .member__list__ttl-wrap {
    padding-bottom: 15px;
    margin-bottom: 20px;
  }

  .member__list__ttl {
    font-size: 16px;
  }
  .member__list__ttl span {
    font-size: 12px;
    padding-left: 15px;
  }

  .member__list__job {
    margin-top: 5px;
    font-size: 12px;
  }
}
/*
============================
track-record
============================
*/
.track-record {
  padding: 100px 0 165px;
}

.track-record__first {
  font-size: 22px;
  color: #57433b;
  font-weight: bold;
}

.track-record__sec {
  margin: 90px 0 0;
}

.track-record__ttl {
  padding-bottom: 10px;
  margin-bottom: 50px;
  border-bottom: 1px solid #ee7800;
  font-size: 28px;
  color: #ee7800;
  font-weight: bold;
  text-align: center;
  letter-spacing: 1em;
  text-indent: 1em;
}

.track-record__summary-list > li {
  padding-left: 2.8em;
  position: relative;
}
.track-record__summary-list > li::before {
  position: absolute;
  content: "・";
  display: block;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.track-record__summary-list li {
  margin-top: 6px;
}

.track-record__example-ttl {
  margin-bottom: 40px;
  font-size: 24px;
  text-align: center;
  font-weight: bold;
}

.track-record01__track-record__example-ttl {
  color: #7a6c99;
}

.track-record02__track-record__example-ttl {
  color: #0f87a6;
}

.track-record03__track-record__example-ttl {
  color: #48873a;
}

.track-record04__track-record__example-ttl {
  color: #a67e39;
}

.track-record05__track-record__example-ttl {
  color: #b15e82;
}

.track-record__sec__img-wrap {
  margin-top: 70px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .track-record {
    padding: 25px 0 70px;
  }

  .track-record__first {
    font-size: 15px;
  }

  .track-record__sec {
    margin: 40px 0 0;
  }

  .track-record__ttl {
    padding-bottom: 5px;
    margin-bottom: 22px;
    font-size: 15px;
  }

  .track-record__summary-list > li {
    padding-left: 1.5em;
  }

  .track-record__example-ttl {
    margin-bottom: 15px;
    font-size: 15px;
  }

  .track-record__sec__img-wrap {
    margin-top: 20px;
  }
}
/*
============================
partner
============================
*/
#message {
  padding: 100px 0 200px;
}

.message__first {
  margin-bottom: 30px;
  font-size: 22px;
  color: #57433b;
  font-weight: bold;
}

.message__list li {
  margin: 90px 0 0;
}

.message__list__ttl-wrap {
  text-align: center;
  margin: 0 0 40px;
}

.message__list__ttl-main {
  margin-bottom: 10px;
  padding-bottom: 10px;
  font-size: 28px;
  letter-spacing: 0.5em;
  text-indent: 0.5em;
  border-bottom: 1px solid #ee7800;
  color: #ee7800;
  font-weight: bold;
}

.message__list__ttl-sub {
  font-size: 22px;
  color: #57433b;
}

.message__list__block {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
}

.message__list__block__img {
  border: 5px solid #fff;
  box-shadow: 3px 3px 10px 0 rgba(35, 24, 21, 0.5);
  width: 318px;
}

.message__list__block__txt {
  width: calc(100% - 318px);
  padding-left: 30px;
  overflow: hidden;
}

.message__list__block__txt__img {
  display: block;
  margin: 0 0 10px;
}

.message__list__block__txt__name {
  float: right;
  padding-top: 34px;
}

#partner-list {
  padding: 100px 0 72px;
}

.partner-list__first {
  font-size: 22px;
  font-weight: bold;
  color: #57433b;
}

.partner-list__ttl01 {
  margin-top: 120px;
  font-size: 22px;
  font-weight: bold;
  color: #ee7800;
}

.partner-list__list {
  margin-top: 44px;
}
.partner-list__list li {
  padding: 30px;
  border-bottom: 1px dashed #ee7800;
  color: #57433b;
  position: relative;
}

.partner-list__list__ttl {
  margin-bottom: 10px;
  font-size: 22px;
  font-weight: bold;
}

.partner-list__img-wrap {
  position: absolute;
  text-align: center;
  top: 50%;
  right: 30px;
  width: 400px;
  transform: translate(0, -50%);
}

.partner-list__detail {
  overflow: hidden;
}
.partner-list__detail dt,
.partner-list__detail dd {
  float: left;
  color: #57433b;
  line-height: 1.6;
}
.partner-list__detail dt {
  position: relative;
  width: 110px;
  clear: left;
}
.partner-list__detail dt::after {
  position: absolute;
  content: ":";
  display: inline-block;
  top: 0;
  right: auto;
}

.partner-list__detail__link {
  display: inline-block;
  padding-right: 25px;
  background: url(../img/icon_link.svg) no-repeat 100% 50%/18px auto;
  color: #ee7800;
}

.partner-list__note {
  display: block;
  margin-top: 60px;
  text-align: right;
}

@media screen and (max-width: 767px) {
  #message {
    padding: 50px 0 75px;
  }

  .message__first {
    font-size: 15px;
    margin-bottom: 15px;
  }

  .message__list li {
    margin: 45px 0 0;
  }

  .message__second {
    font-size: 10px;
  }

  .message__list__ttl-wrap {
    margin-bottom: 20px;
  }

  .message__list__ttl-main {
    font-size: 15px;
  }

  .message__list__ttl-sub {
    font-size: 14px;
  }

  .message__list__block {
    display: block;
  }

  .message__list__block__img {
    width: 160px;
    display: block;
    margin: 0 auto;
    box-shadow: 3px 3px 6px 0 rgba(35, 24, 21, 0.4);
  }

  .message__list__block__txt {
    width: 100%;
    padding: 32px 0 0 0;
  }

  .message__list__block__txt__img {
    width: 70px;
    margin-bottom: 15px;
  }

  .message__list__block__txt__name {
    padding-top: 25px;
  }

  #partner-list {
    padding: 50px 0 40px;
  }

  .partner-list__first {
    font-size: 15px;
  }

  .partner-list__ttl01 {
    margin-top: 60px;
    font-size: 15px;
  }

  .partner-list__list {
    margin-top: 20px;
  }
  .partner-list__list li {
    padding: 20px 15px;
  }

  .partner-list__list__ttl {
    margin-bottom: 10px;
    font-size: 15px;
  }

  .partner-list__img-wrap {
    position: static;
    width: 100%;
    margin: 20px 0;
    transform: translate(0);
    text-align: left;
  }

  .partner-list__detail {
    font-size: 13px;
  }
  .partner-list__detail dt {
    width: 80px;
  }
  .partner-list__detail dd {
    width: calc(100% - 80px);
  }

  .partner-list__detail__link {
    padding-right: 20px;
    word-break: break-all;
    background-size: 15px auto;
  }

  .partner-list__note {
    margin-top: 30px;
  }
}
