@charset "UTF-8";

/* CSS Document */
/**********************************
Reset
**********************************/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
dialog,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  font-weight: 300;
}
body {
  line-height: 1;
}
article,
aside,
dialog,
figure,
footer,
header,
hgroup,
nav,
section {
  display: block;
}
nav ul,
ul,
li {
  list-style: none;
}
li a {
  text-decoration: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
a {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}
del {
  text-decoration: line-through;
}
abbr[title],
dfn[title] {
  border-bottom: 1px dotted #000;
  cursor: help;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}
input,
select {
  vertical-align: middle;
}
img {
  vertical-align: bottom;
}
/**********************************
Settings
**********************************/
html {
  font-size: 16px;
}
body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  color: #031c50;
  line-height: 1.5em;
  width: 100%;
  background-color: #e6e4de;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
body.fixed {
  overflow: hidden;
}
/**********************************
Hover
**********************************/
a {
  color: #3b3bee;
  font-weight: 500;
  text-decoration: underline;
  transition: all .2s ease;
  cursor: pointer;
}
a:hover {
  color: #031c50;
  text-decoration: none;
}
a img {
  transition: all .2s ease;
}
a img:hover {
  opacity: .6;
}
/**********************************
Header Navigation
**********************************/
header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 901;
  background-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.header_wrap {
  width: auto;
  padding: 7px 2%;
}
.header_wrap .header_logo_sp {
  width: 106px;
}
.header_wrap .header_logo_sp img {
  width: 100%;
  height: auto;
}
.nav_sp {
  width: 58px;
  height: 58px;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 401;
}
.nav_unshown {
  display: none;
}
.nav_sp .hamburger {
  width: 58px;
  height: 58px;
  -webkit-transition: .2s;
  transition: .2s;
  cursor: pointer;
  position: relative;
  top: 0;
  right: 0;
  z-index: 902;
}
.nav_sp .hamburger .hamburger_inner {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -16px 0 0 -14px;
  pointer-events: none;
}
#nav_open {
  display: inline-block;
  width: 30px;
  height: 30px;
  top: 0;
  left: 50%;
  margin-left: -15px;
  vertical-align: middle;
  cursor: pointer;
  position: relative;
}
.nav_sp .hamburger span {
  position: absolute;
  width: 30px;
  height: 3px;
  left: 0;
  background-color: #3b3bee;
  display: block;
  content: '';
  border-radius: 18px;
  cursor: pointer;
  transition: all .1s linear;
}
#nav_open span:nth-of-type(1) {
  top: 5px;
}
#nav_open span:nth-of-type(2) {
  top: 13px;
}
#nav_open span:nth-of-type(3) {
  bottom: 5px;
}
#nav_check:checked~.hamburger #nav_open span:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transform-origin: 6px 6px;
}
#nav_check:checked~.hamburger #nav_open span:nth-of-type(2) {
  display: none;
}
#nav_check:checked~.hamburger #nav_open span:nth-of-type(3) {
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  transform-origin: 17px -3px;
  width: 30px;
}
#nav_check:checked~.bg_mask {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 800;
  display: block;
  min-width: 100vw;
  height: 100vh;
  background-color: rgba(0,0,0,.7);
  cursor: pointer;
}
.nav_inner {
  position: absolute;
  background-color: #fff;
  top: 0;
  right: -101vw;
  width: 100vw;
  height: calc(100vh - 24px);
  padding: 0 0 58px;
  z-index: 801;
  overflow: scroll;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
}
.nav_inner::-webkit-scrollbar {
  display: none;
}
.nav_inner nav > ul {
  width: 82%;
  margin: 86px auto 0;
}
.nav_inner nav > ul > li {
  border-bottom: solid 1px #ddd;
}
.nav_inner nav > ul > li > a {
  padding: 18px 0;
  color: #111;
  font-size: 1.25rem;
  font-weight: 700;
  display: block;
}
.nav_inner nav > ul > li > a:hover {
  color: #ddd;
}
.nav_inner .tel_num {
  line-height: 1.7em;
  color: #3b3bee;
  text-align: center;
  margin-top: 38px;
  font-size: 1.125rem;
}
.nav_inner .tel_num a {
  display: block;
  cursor: pointer;
  text-decoration: none;
}
.nav_inner .tel_num a span {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 2.375rem;
  padding-left: 32px;
  position: relative;
}
.nav_inner .tel_num a span:before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background-image: url(../images/phone_icon_blue.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -12px;
}
.nav_inner .contact_btn {
  margin: 28px auto 0;
  width: 82%;
}
.nav_inner .contact_btn a {
  display: block;
  width: auto;
  text-decoration: none;
  border: solid 2px #3b3bee;
  background-color: #3b3bee;
  color: #fff;
  text-align: center;
  font-size: 1.125rem;
  padding: 16px 0;
  border-radius: 8px;
  font-weight: 900;
}
.nav_inner .contact_btn a:hover {
  border: solid 2px #031C50;
  color: #031c50;
  background-color: transparent;
}
.nav_inner .contact_btn a span {
  position: relative;
  padding-left: 32px;
  font-weight: 900;
}
.nav_inner .contact_btn a span:before {
  content: "";
  display: block;
  width: 20px;
  height: 16px;
  background-image: url(../images/mail_icon_white.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -8px;
}
.nav_inner .contact_btn a:hover span:before {
  background-image: url(../images/mail_icon_blue.svg);  
}
#nav_check:checked~.nav_inner {
  right: 0;
  scrollbar-width: none;
  overflow: scroll;
}
.nav_pc {
  display: none;
}
.contents_wrap {
  width: 100%;
  overflow-x: hidden;
  background-color: #fff;
}
/**Modal**/
.modal_bg {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 800;
  min-width: 100vw;
  height: 100vh;
  background-color: rgba(0,0,0,.7);
  z-index: 999;
  cursor: pointer;
}
.modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  z-index: 1000;
  width: 90%;
  box-shadow: 0 0 20px rgba(0,0,0,0.2);
}
.modal > p {
  width: auto;
  padding: 56px 26px 36px;
  line-height: 1.5em;
}
.modal_close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  font-size: 0.875rem;
  cursor: pointer;
}
body.no_scroll {
  overflow: hidden;
}
/**********************************
TOP Page
**********************************/
/***MV***/
.mv_sp {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.mv_sp .mv_message {
  width: 100%;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -178px;
}
.mv_sp .mv_message > h2 {
  color: #fff;
  text-align: center;
  font-size: 1.375rem;
  font-weight: 900;
  line-height: 1.7em;
}
.mv_sp .mv_message > p {
  width: 85%;
  text-align: center;
  margin: 36px auto 0;
  color: #fff;
  line-height: 1.9em;
}
.mv_sp .mv_bg {
  width: 100%;
}
.mv_sp .mv_bg img {
  width: 100%;
  height: auto;
}
.mv_pc {
  display: none;
}
/***当社について***/
#about_us .section_inner {
  width: auto;
  padding: 126px 0;
  background-color: #d2d9e0;
}
#about_us .section_inner h2 {
  margin:  0 auto;
  text-align: center;
  color: #3b3bee;
  font-size: 1.125rem;
  font-weight: 900;
}
#about_us .section_inner h2 span {
  display: block;
  color: #031c50;
  font-size: 2.375rem;
  margin-top: 24px;
  font-weight: 900;
}
#about_us .section_inner > p {
  width: 90%;
  max-width: 960px;
  margin: 56px auto 0;
  line-height: 1.7em;
}
#about_us .section_inner .photo_wrap {
  width: 100%;
  margin-top: 94px;
  overflow-x: hidden;
}
#about_us .section_inner .photo_wrap ul {
  display: flex;
  width: max-content;
  animation: scroll-left 20s linear infinite;
}
#about_us .section_inner .photo_wrap ul li.square {
  width: 240px;
  margin-right: 30px;
}
#about_us .section_inner .photo_wrap ul li.rectangle {
  width: 388px;
  margin: 36px 30px 0 0;
}
#about_us .section_inner .photo_wrap ul li img {
  width: 100%;
  height: auto;
}
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/***事業内容***/
#our_services .section_inner {
  width: auto;
  padding: 126px 0;
  background-color: #e6e4de;
}
#our_services .section_inner .title_wrap h2 {
  margin:  0 auto;
  text-align: center;
  color: #3b3bee;
  font-size: 1.125rem;
  font-weight: 900;
}
#our_services .section_inner .title_wrap h2 span {
  display: block;
  color: #031c50;
  font-size: 2.375rem;
  margin-top: 24px;
  font-weight: 900;
}
#our_services .section_inner .title_wrap > p {
  width: 90%;
  max-width: 960px;
  margin: 56px auto 0;
  line-height: 1.7em;
}
#our_services .section_inner .service_wrap {
  width: 90%;
  max-width: 960px;
  margin: 0 auto;
}
#our_services .section_inner .service_wrap .inner_box {
  width: 100%;
  margin-top: 56px;
}
#our_services .section_inner .service_wrap .inner_box a {
  display: block;
  width: auto;
  text-decoration: none;
}
#our_services .section_inner .service_wrap .inner_box a:hover img {
  opacity: 1;
}
#our_services .section_inner .service_wrap .inner_box a .photo_wrap {
  width: 100%;
}
#our_services .section_inner .service_wrap .inner_box a .photo_wrap img {
  width: 100%;
  height: auto;
}
#our_services .section_inner .service_wrap .inner_box a .link_text {
  color: #3b3bee;
  font-size: 1.375rem;
  margin-top: 18px;
  font-weight: 900;
}
#our_services .section_inner .service_wrap .inner_box a .link_text span {
  color: #031c50;
  font-weight: 900;
  padding-left: 4px;
}
/***採用情報***/
#recruit .section_inner {
  width: auto;
}
#recruit .section_inner .recruit_photo {
  width: 100%;
  height: 320px;
  background-image: url(../images/recruit_photo.jpg);
  background-size: cover;
  background-position: center;
}
#recruit .section_inner .text_wrap {
  width: 90%;
  max-width: 960px;
  margin: 64px auto 0;
}
#recruit .section_inner .text_wrap > h2 {
  margin: 0 auto;
  text-align: center;
  color: #3b3bee;
  font-size: 1.125rem;
  font-weight: 900;
}
#recruit .section_inner .text_wrap > h2 span {
  display: block;
  color: #031c50;
  font-size: 2.375rem;
  margin-top: 24px;
  font-weight: 900;
}
#recruit .section_inner .text_wrap > p {
  margin-top: 46px;
  line-height: 1.9em;
}
#recruit .section_inner .text_wrap .more_btn {
  width: 262px;
  margin: 46px auto 0;
}
#recruit .section_inner .text_wrap .more_btn a {
  display: block;
  text-align: center;
  background-color: #3b3bee;
  border: solid 2px #3b3bee;
  color: #fff;
  border-radius: 24px;
  padding: 10px 14px;
  text-decoration: none;
  position: relative;
  font-weight: 900;
}
#recruit .section_inner .text_wrap .more_btn a:before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background-image: url(../images/more_btn_arrow_white.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 20px;
  margin-top: -8px;
}
#recruit .section_inner .text_wrap .more_btn a:hover {
  background-color: transparent;
  border: solid 2px #3b3bee;
  color: #3b3bee;
}
#recruit .section_inner .text_wrap .more_btn a:hover:before {
  background-image: url(../images/more_btn_arrow_blue.png);
}
#recruit .section_inner .photo_wrap {
  width: 100%;
}
#recruit .section_inner .photo_wrap img {
  width: 100%;
  height: auto;
}
/***会社概要***/
#company .section_inner {
  width: 90%;
  max-width: 960px;
  padding: 126px 0;
  margin: 0 auto;
}
#company .section_inner h2 {
  margin:  0 auto;
  text-align: center;
  color: #3b3bee;
  font-size: 1.125rem;
  font-weight: 900;
}
#company .section_inner h2 span {
  display: block;
  color: #031c50;
  font-size: 2.375rem;
  margin-top: 24px;
  font-weight: 900;
}
#company .section_inner .profile_table {
  margin-top: 46px;
  width: auto;
}
#company .section_inner .profile_table table {
  width: 100%;
  border-top: solid 1px #ddd;
}
#company .section_inner .profile_table table tr {
  border-bottom: solid 1px #ddd;
}
#company .section_inner .profile_table table th {
  display: block;
  width: auto;
  padding: 10px 2.5%;
  text-align: left;
  font-weight: 700;
  color: #76a385;
  background-color: #fff;
}
#company .section_inner .profile_table table td {
  display: block;
  padding: 16px 2.5%;
  line-height: 1.7em;
}
/***お問い合わせ***/
#contact .section_inner {
  width: auto;
  padding: 126px 0;
  background-color: #76a385;
}
#contact .section_inner > h2 {
  margin:  0 auto;
  text-align: center;
  color: #fff;
  font-size: 2.375rem;
  font-weight: 900;
}
#contact .section_inner > p {
  width: 90%;
  max-width: 960px;
  margin: 56px auto 0;
  color: #fff;
  line-height: 2em;
}
#contact .section_inner .tel_num {
  margin-top: 48px;
  color: #fff;
  text-align: center;
  font-size: 1.125rem;
}
#contact .section_inner .tel_num a {
  color: #fff;
  display: block;
  margin-bottom: 6px;
  text-decoration: none;
}
#contact .section_inner .tel_num a span {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 2.125rem;
  letter-spacing: 1px;
  padding-left: 30px;
  position: relative;
}
#contact .section_inner .tel_num a span:before {
  content: "";
  display: block;
  width: 22px;
  height: 22px;
  background-image: url(../images/phone_icon_white.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -11px;
}
#contact .section_inner .contact_table {
  width: 90%;
  max-width: 960px;
  margin: 76px auto 0;
  background-color: #e6e4de;
  padding: 86px 0;
}
#contact .section_inner .contact_table table {
  width: 90%;
  margin: 0 auto;
}
#contact .section_inner .contact_table table tr {
}
#contact .section_inner .contact_table table th {
  font-weight: 700;
  display: block;
  text-align: left;
  padding: 8px 10px;
}
#contact .section_inner .contact_table table th span {
  font-size: 0.75rem;
  font-weight: 700;
  background-color: #76a385;
  color: #fff;
  padding: 2px 6px 3px;
  border-radius: 4px;
  margin-left: 10px;
}
#contact .section_inner .contact_table table td {
  display: block;
  padding: 0 8px 24px;
}
#contact .section_inner .contact_table table td .wpcf7-text,
#contact .section_inner .contact_table table td .wpcf7-textarea {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  box-shadow: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #fff;
  border-radius: 6px;
}
#contact .section_inner .contact_table table td .textL {
  padding: 12px 1.5%;
  width: 97%;
}
#contact .section_inner .contact_table .pp_info {
  width: 90%;
  margin: 16px auto 0;
  text-align: center;
  font-size: 0.75rem;
}
#contact .section_inner .contact_table .pp_info a {
  font-weight: 400;
  text-decoration: none;
  padding-right: 24px;
  position: relative;
}
#contact .section_inner .contact_table .pp_info a:before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background-image: url(../images/link_icon.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: 4px;
  top: 50%;
  margin-top: -7px;
}
#contact .section_inner .contact_table .submit_btn {
  width: 86%;
  margin: 64px auto 0;
  position: relative;
}
#contact .section_inner .contact_table .submit_btn .wpcf7-submit {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  box-shadow: none;
  border-radius: 0;
  outline: none;
  display: block;
  width: 100%;
  border: solid 2px #3b3bee;
  background-color: #3b3bee;
  color: #fff;
  font-size: 1.375rem;
  font-weight: 900;
  padding: 10px 14px;
  border-radius: 36px;
  text-align: center;
  cursor: pointer;
  transition: all .2s ease;
}
#contact .section_inner .contact_table .submit_btn .wpcf7-submit:hover {
  background-color: transparent;
  color: #3b3bee;
  border: solid 2px #3b3bee;
}
#contact .section_inner .contact_table .submit_btn:before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background-image: url(../images/more_btn_arrow_white.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 26px;
  margin-top: -8px;
}
#contact .section_inner .contact_table .submit_btn:hover:before {
  background-image: url(../images/more_btn_arrow_blue.png);
}
.wpcf7-spinner {
  display: none !important;
}
/**********************************
共通
**********************************/
.contents_wrap .page_title {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.contents_wrap .page_title .page_title_wrap {
  width: 100%;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -48px;
}
.contents_wrap .page_title .page_title_wrap > h2 {
  color: #fff;
  font-weight: 600;
  font-size: 2rem;
  padding-left: 18px;
}
.contents_wrap .page_title .page_title_wrap > h2 span {
  display: block;
  font-weight: 600;
  margin-top: 16px;
  font-size: 1rem;
}
.contents_wrap .page_title .page_image {
  width: 100%;
  height: 450px;
}
.contents_wrap .page_title .page_image img {
  object-fit: cover;
  width: 100%;
  height: 450px;
}
.section_inner > h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 56px;
}
.section_inner > h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-top: 36px;
}
.section_inner .dot_list {
  margin: 36px 0 0 18px;
}
.section_inner .dot_list li {
  list-style: disc;
  margin-top: 14px;
  font-weight: 600;
  line-height: 1.5em;
}
/***パンくず***/
.breadcrumbs {
  width: auto;
  padding: 14px 18px;
}
.breadcrumbs > a {
  font-size: 0.875rem;
}
.breadcrumbs .breadcrumb-separator {
  margin-left: 6px;
}
.breadcrumbs .current-page {
  margin-left: 6px;
  font-weight: 500;
}
/**********************************
Subpage
**********************************/
/*採用情報*/
#recruit01 {
  width: auto;
  padding: 0 18px;
}
#recruit01 .section_inner {
  padding: 36px 0 0;
}
#recruit01 .section_inner > p {
  text-align: left;
  line-height: 1.9em;
}
#recruit02 {
  width: auto;
  padding: 0 18px;
}
#recruit02 .section_inner {
  padding: 36px 0 120px;
}
#recruit02 .section_inner > h2 {
  text-align: center;
}
#recruit02 .section_inner > h2 span {
  display: block;
  margin-top: 16px;
  font-weight: 700;
  font-size: 2.375rem;
}
#recruit02 .section_inner .job_table {
  margin-top: 46px;
  width: auto;
}
#recruit02 .section_inner .job_table table {
  width: 100%;
  border-top: solid 1px #ddd;
}
#recruit02 .section_inner .job_table table tr {
  border-bottom: solid 1px #ddd;
}
#recruit02 .section_inner .job_table table th {
  display: block;
  width: auto;
  padding: 10px 2%;
  text-align: left;
  font-weight: 700;
  color: #031c50;
  background-color: #efefef;
}
#recruit02 .section_inner .job_table table td {
  display: block;
  padding: 16px 2%;
  font-size: 0.875rem;
  line-height: 1.7em;
}
#recruit02 .section_inner .more_btn {
  margin: 56px auto 0;
  width: 256px;
}
#recruit02 .section_inner .more_btn a {
  display: block;
  border: solid 2px #3b3bee;
  background-color: #3b3bee;
  color: #fff;
  padding: 14px 2px 16px;
  border-radius: 34px;
  text-align: center;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: .1em;
}
#recruit02 .section_inner .more_btn a:hover {
  background-color: #fff;
  color: #3b3bee;
}
/*採用応募フォーム*/
#entry_form {
  width: 100%;
  background-color: #fff;
  padding-bottom: 1px;
}
#entry_form .page_title_form {
  padding: 112px 0 64px;
}
#entry_form .page_title_form h2 {
  text-align: center;
  font-size: 2.75rem;
  font-weight: 700;
  color: #031c50;
}
#entry_form .page_title_form h2 span {
  display: block;
  font-size: 1rem;
  text-align: center;
  font-weight: 500;
  margin-top: 24px;
}
#entry_form .section_inner {
  width: 92%;
  margin: 24px auto 120px;
  padding: 36px 0 68px;
  background-color: #d2d9e0;
}
#entry_form .section_inner .contact_table table {
  width: 86%;
  margin: 0 auto;
}
#entry_form .section_inner .contact_table table tr {
}
#entry_form .section_inner .contact_table table th {
  font-weight: 700;
  display: block;
  text-align: left;
  padding: 8px 10px;
}
#entry_form .section_inner .contact_table table th span {
  font-size: 0.75rem;
  font-weight: 700;
  background-color: #0064b8;
  color: #fff;
  padding: 2px 6px 3px;
  border-radius: 4px;
  margin-left: 10px;
}
#entry_form .section_inner .contact_table table td {
  display: block;
  padding: 0 8px 28px;
}
#entry_form .section_inner .contact_table table td .wpcf7-text,
#entry_form .section_inner .contact_table table td .wpcf7-textarea {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  box-shadow: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #fff;
  border: solid 1px #0064b8;
  border-radius: 6px;
}
#entry_form .section_inner .contact_table table td .textL {
  padding: 12px 1.5%;
  width: 97%;
}
#entry_form .section_inner .contact_table table td .textS {
  padding: 12px 1.5%;
  width: 50%;
}
#entry_form .section_inner .contact_table table td .unit {
  font-weight: 600;
  margin: 0 8px;
}
#entry_form .section_inner .contact_table table td .zip {
}
#entry_form .section_inner .contact_table table td .address {
  margin-top: 12px;
}
#entry_form .section_inner .contact_table table td .selectS {
  padding: 12px 1.5%;
  width: 50%;
  border: solid 1px #0064b8;
  border-radius: 6px;
  margin-bottom: 12px;
}
#entry_form .section_inner .contact_table .pp_info {
  font-size: 0.875rem;
  text-align: center;
  padding: 0 14px;
  margin-top: 16px;
}
#entry_form .section_inner .contact_table .pp_info a {
  font-weight: 400;
  text-decoration: none;
  padding-right: 24px;
  position: relative;
}
#entry_form .section_inner .contact_table .pp_info a:before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background-image: url(../images/link_icon.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: 4px;
  top: 50%;
  margin-top: -7px;
}
#entry_form .section_inner .contact_table .submit_btn {
  width: 320px;
  margin: 56px auto 0;
}
#entry_form .section_inner .contact_table .submit_btn .wpcf7-submit {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  box-shadow: none;
  border-radius: 0;
  outline: none;
  display: block;
  width: 100%;
  border: solid 2px #3b3bee;
  background-color: #3b3bee;
  color: #fff;
  font-size: 1rem;
  letter-spacing: .1em;
  font-weight: 700;
  padding: 20px 14px;
  border-radius: 36px;
  text-align: center;
  cursor: pointer;
  transition: all .2s ease;
}
#entry_form .section_inner .contact_table .submit_btn .wpcf7-submit:hover {
  background-color: #fff;
  color: #3b3bee;
}
.wpcf7-response-output {
  background-color: #fff;
}
.google_annotation {
  font-size: 0.875rem;
  font-weight: 500;
  text-align: center;
  margin: 24px 0 86px;
}
.grecaptcha-badge {
  visibility: hidden;
}
/*サンクスページ*/
#thanks01 {
  width: auto;
  padding: 0 18px;
}
#thanks01 .section_inner {
  padding: 36px 0 120px;
}
#thanks01 .section_inner > p {
  line-height: 1.7em;
}
#thanks01 .section_inner .return_home {
  width: 320px;
  margin: 46px auto 0;
}
#thanks01 .section_inner .return_home a {
  display: block;
  border: solid 2px #3b3bee;
  background-color: #3b3bee;
  color: #fff;
  padding: 14px 2px 16px;
  border-radius: 34px;
  text-align: center;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: .1em;
}
#thanks01 .section_inner .return_home a:hover {
  background-color: #fff;
  color: #3b3bee;
}

/*プライバシーポリシー*/
#privacy01 {
  width: auto;
  padding: 0 18px;
}
#privacy01 .section_inner {
  padding: 36px 0 120px;
}
#privacy01 .section_inner > p {
  line-height: 1.7em;
  margin-top: 24px;
}
/**********************************
404
**********************************/
#not_found {
  width: auto;
  padding: 0 18px;
}
#not_found .section_inner {
  padding: 36px 0 120px;
}
#not_found .section_inner .not_found_info {
  text-align: center;
  line-height: 1.9em;
}
/**********************************
Footer
**********************************/
footer .footer_inner {
  width: auto;
  padding: 96px 0 68px;
  background-image: url(../images/footer_bg.jpg);
  background-size: cover;
  background-position: top right;
  background-repeat: no-repeat;
  margin-left: auto;
}
footer .footer_inner .footer_info h1 {
  width: 184px;
  margin: 0 auto;
}
footer .footer_inner .footer_info h1 img {
  width: 100%;
  height: auto;
}
footer .footer_inner .footer_info .address {
  text-align: center;
  color: #fff;
  margin-top: 16px;
  line-height: 1.9em;
}
footer .sns_icons {
  width: auto;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  margin-top: 24px;
}
footer .sns_icons .icon {
  width: 38px;
  margin-right: 20px;
}
footer .sns_icons .icon img {
  width: 100%;
  height: auto;
}
footer .footer_inner .copyright {
  width: auto;
  color: #fff;
  font-size: 0.75rem;
  text-align: center;
  margin-top: 96px;
}
.pc_only {
  display: none;
}