@charset "UTF-8";
/* base
==================================*/
h1,
h2,
h3,
h4,
h5,
h6,
p,
pre,
blockquote,
ul,
li,
ol,
dl,
dd,
tr {
  font-size: 16px;
  line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1;
}

.sp {
  display: none !important;
}

a {
  color: #000;
  text-decoration: none;
  transition: 0.3s;
}
a:visited {
  color: #000;
}
a:hover {
  color: #000;
  text-decoration: none;
}
a:active {
  color: #000;
}
a.tel,
.tel a {
  pointer-events: none;
  cursor: default;
}
*,
*:before,
*::after{
	box-sizing: border-box;
}
/* main
==================================*/
main {
  display: block; /*IE対策*/
}

/*　Retina対応時のCSS↓　*/
/* header
==================================*/
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: #fff;
  width: 100%;
}

/* footer
==================================*/
footer {
  background: #000;
}

#pageTop {
  opacity: 0;
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 888;
  transition: 0.3s;
}
#pageTop.active {
  opacity: 1;
}
#pageTop a {
  display: block;
  width: 50px;
}
#pageTop a:hover {
  opacity: 0.7;
}

/* loader
==================================*/
#loader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  z-index: 1001;
}

/* Animation
==================================*/
.c-anim-up {
  transform: translate(0, 30px);
  opacity: 0;
  transition: 0.3s ease;
}

.move {
  transform: translate(0, 0);
  opacity: 1;
}

.delay1 {
  -moz-transition-delay: 300ms;
  -webkit-transition-delay: 300ms;
  -o-transition-delay: 300ms;
  -ms-transition-delay: 300ms;
}

.delay2 {
  -moz-transition-delay: 600ms;
  -webkit-transition-delay: 600ms;
  -o-transition-delay: 600ms;
  -ms-transition-delay: 600ms;
}

.delay3 {
  -moz-transition-delay: 900ms;
  -webkit-transition-delay: 900ms;
  -o-transition-delay: 900ms;
  -ms-transition-delay: 900ms;
}

.delay4 {
  -moz-transition-delay: 1200ms;
  -webkit-transition-delay: 1200ms;
  -o-transition-delay: 1200ms;
  -ms-transition-delay: 1200ms;
}

.delay5 {
  -moz-transition-delay: 1500ms;
  -webkit-transition-delay: 1500ms;
  -o-transition-delay: 1500ms;
  -ms-transition-delay: 1500ms;
}

.delay6 {
  -moz-transition-delay: 1800ms;
  -webkit-transition-delay: 1800ms;
  -o-transition-delay: 1800ms;
  -ms-transition-delay: 1800ms;
}

.delay7 {
  -moz-transition-delay: 2100ms;
  -webkit-transition-delay: 2100ms;
  -o-transition-delay: 2100ms;
  -ms-transition-delay: 2100ms;
}

/*==================================
  Component
==================================*/
html {
  overflow: auto;
}
html.no_move {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
}
img[src$=".png"], img[src$=".jpg"] {
  backface-visibility: hidden;
}

.container {
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 50px;
  padding-right: 50px;
  box-sizing: border-box;
}
@media (max-width: 899px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.row {
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
}
.row .col {
  position: relative;
  width: 100%;
  min-height: 1px;
  box-sizing: border-box;
}
.row .col.col_4 {
  flex: 0 0 33.3333%;
  max-width: 33.3333%;
}

/*==================================
	リスト系
==================================*/
.news_ul {
  margin: 0 0 19px;
}
.news_ul .news_li {
  border-bottom: 1px solid #e8e8e8;
  padding: 22px 14px;
}
.news_ul .news_li > a {
  display: flex;
  align-items: center;
}
.news_ul .news_li > a .date {
  font-size: 16px;
  color: #919191;
  margin-right: 24px;
}
.news_ul .news_li > a .img_wrap {
  margin-right: 17px;
}
@media (min-width: 900px) {
  .news_ul .news_li > a .title {
    background: linear-gradient(#000, #000) 0 100%/0 1px no-repeat;
    transition: background 0.4s ease;
  }
  .news_ul .news_li > a:hover .title {
    background-size: 100% 1px;
  }
}
@media (max-width: 899px) {
  .news_ul .news_li {
    padding: 14px 0;
  }
  .news_ul .news_li > a {
    display: block;
    position: relative;
    padding-left: 80px;
  }
  .news_ul .news_li > a .img_wrap {
    margin-right: 0;
    position: absolute;
    top: 0;
    left: -5px;
    bottom: 0;
    margin: auto;
    display: flex;
    align-items: center;
  }
  .news_ul .news_li > a .img_wrap img {
    max-width: 57px;
  }
  .news_ul .news_li > a .date,
  .news_ul .news_li > a .title {
    display: block;
  }
  .news_ul .news_li > a .date {
    font-size: 14px;
    margin: 0 0 7px;
  }
  .news_ul .news_li > a .title {
    font-size: 16px;
    line-height: 1.3;
  }
}

/*==================================
	ページナビ
==================================*/
.page_navigation .wp-pagenavi {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 45px 0 50px;
}
@media (max-width: 899px) {
  .page_navigation .wp-pagenavi {
    margin: 30px 0 40px;
  }
}
.page_navigation .wp-pagenavi > .page,
.page_navigation .wp-pagenavi .current {
  font-size: 16px;
  font-weight: 500;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  box-sizing: border-box;
  margin: 0 5px;
}
.page_navigation .wp-pagenavi > .page:not(.current),
.page_navigation .wp-pagenavi .current:not(.current) {
  background-color: #f3f3f3;
}
@media (min-width: 900px) {
  .page_navigation .wp-pagenavi > .page:not(.current):hover,
  .page_navigation .wp-pagenavi .current:not(.current):hover {
    color: #fff;
    background-color: #000;
  }
}
.page_navigation .wp-pagenavi > .page.current,
.page_navigation .wp-pagenavi .current.current {
  background-color: #000;
  color: #fff;
}
.page_navigation .wp-pagenavi .nextpostslink,
.page_navigation .wp-pagenavi .previouspostslink {
  position: relative;
  font-weight: 500;
  box-sizing: border-box;
}
.page_navigation .wp-pagenavi .nextpostslink::before,
.page_navigation .wp-pagenavi .previouspostslink::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 9px;
  height: 14px;
  background-image: url(../images/common/pager_arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  transition: all 0.3s ease;
}
.page_navigation .wp-pagenavi .nextpostslink.previouspostslink,
.page_navigation .wp-pagenavi .previouspostslink.previouspostslink {
  padding-left: 33px;
  margin-right: 30px;
}
.page_navigation .wp-pagenavi .nextpostslink.previouspostslink::before,
.page_navigation .wp-pagenavi .previouspostslink.previouspostslink::before {
  left: 0;
  transform: scale(-1, 1);
}
@media (min-width: 900px) {
  .page_navigation .wp-pagenavi .nextpostslink.previouspostslink:hover::before,
  .page_navigation .wp-pagenavi .previouspostslink.previouspostslink:hover::before {
    left: -5px;
  }
}
.page_navigation .wp-pagenavi .nextpostslink.nextpostslink,
.page_navigation .wp-pagenavi .previouspostslink.nextpostslink {
  padding-right: 33px;
  margin-left: 30px;
}
.page_navigation .wp-pagenavi .nextpostslink.nextpostslink::before,
.page_navigation .wp-pagenavi .previouspostslink.nextpostslink::before {
  right: 0;
}
@media (min-width: 900px) {
  .page_navigation .wp-pagenavi .nextpostslink.nextpostslink:hover::before,
  .page_navigation .wp-pagenavi .previouspostslink.nextpostslink:hover::before {
    right: -5px;
  }
}
.page_navigation .wp-pagenavi .list_back {
  margin-left: 58px;
  margin-right: 58px;
}
.page_navigation .wp-pagenavi .list_back > a {
  font-weight: 500;
}
.page_navigation .wp-pagenavi .list_back > a > .list_icon {
  display: inline-block;
  padding-left: 24px;
  position: relative;
}
.page_navigation .wp-pagenavi .list_back > a > .list_icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  width: 14px;
  height: 14px;
  background-image: url(../img/news/list_icon.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.page_navigation > ul {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 45px 0 50px;
}
.page_navigation > ul .link_page,
.page_navigation > ul .current_page {
  font-size: 16px;
  font-weight: 500;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  box-sizing: border-box;
  margin: 0 5px;
}
.page_navigation > ul .link_page:not(.current_page),
.page_navigation > ul .current_page:not(.current_page) {
  background-color: #f3f3f3;
}
@media (min-width: 900px) {
  .page_navigation > ul .link_page:not(.current_page):hover,
  .page_navigation > ul .current_page:not(.current_page):hover {
    color: #fff;
    background-color: #000;
  }
}
.page_navigation > ul .link_page.current_page,
.page_navigation > ul .current_page.current_page {
  background-color: #000;
  color: #fff;
}

/*==================================
  Top
==================================*/
/*==================================
  News
==================================*/
#News main#Blog .pager_wrap {
  max-width: 560px;
  margin: 80px auto 0;
}
#News main#Blog .pager_wrap ul {
  position: relative;
}
#News main#Blog .pager_wrap ul li a:hover {
  opacity: 0.7;
}
#News main#Blog .pager_wrap ul .list a {
  font-weight: 500;
  display: block;
  width: 210px;
  color: #002344;
  border: 2px solid #002344;
  letter-spacing: 0.2em;
  line-height: 34px;
  border-radius: 19px;
  font-size: 18px;
  text-align: center;
  margin: auto;
}
#News main#Blog .pager_wrap ul .prev, #News main#Blog .pager_wrap ul .next {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  height: 32px;
}
#News main#Blog .pager_wrap ul .prev a, #News main#Blog .pager_wrap ul .next a {
  display: inline-block;
  position: relative;
  font-weight: 500;
  width: 32px;
  height: 32px;
  border: 1px solid #000;
  box-sizing: border-box;
}
#News main#Blog .pager_wrap ul .prev a::before, #News main#Blog .pager_wrap ul .next a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  transition: all 0.3s ease;
}
#News main#Blog .pager_wrap ul .prev {
  left: 90px;
}
#News main#Blog .pager_wrap ul .prev a::before {
  border-right: 8px solid #000;
}
#News main#Blog .pager_wrap ul .next {
  right: 90px;
}
#News main#Blog .pager_wrap ul .next a::before {
  border-left: 8px solid #000;
}

/*==================================
  Contact_reset
==================================*/
main#Contact {
  /*------ Reset CSS ------*/
  /*------ Reset END ------*/
}
main#Contact input {
  -webkit-appearance: none;
}
main#Contact input[type=text] {
  padding: 0;
  border: none;
  border-radius: 0;
  outline: none;
  background: none;
}
main#Contact input[type=radio] {
  opacity: 0;
  margin: 0;
  width: 0;
  height: 0;
  font-size: 0;
  line-height: 1;
}
main#Contact input[type=radio]:checked + label {
  background: #ff0000;
}
main#Contact input[type=checkbox] {
  opacity: 0;
  margin: 0;
  width: 0;
  height: 0;
  font-size: 0;
  line-height: 1;
}
main#Contact input[type=checkbox]:checked + label {
  background: #ff0000;
}
main#Contact input::placeholder {
  color: #b7b7b7;
}
main#Contact input:-ms-input-placeholder {
  color: #b7b7b7;
}
main#Contact input::-webkit-input-placeholder {
  color: #b7b7b7;
}
main#Contact button,
main#Contact input[type=button],
main#Contact input[type=submit] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0;
  border: none;
  outline: none;
  background: transparent;
}
main#Contact textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  resize: none;
  padding: 0;
  border: 0;
  outline: none;
  background: transparent;
  border-radius: 0;
}
main#Contact select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;
  background: transparent;
  border-radius: 0;
}

/*==================================
  Contact_base
==================================*/
/* input, textarea
--------------------------------*/
/* radio_button
--------------------------------*/
main#Contact {
  /*------ Form Base ------*/
  /*------ Form Base END ------*/
}
@keyframes onAutoFillStart {}
main#Contact span.error {
  color: #cc0303;
  display: block;
  margin: 7px 0 0;
}
main#Contact input:-webkit-autofill {
  animation-name: onAutoFillStart;
  background-color: rgb(255, 255, 255) !important;
  transition: background-color 50000s ease-in-out 0s;
  box-shadow: 0px 0px 100px 100px #fff inset;
}
main#Contact input[type=text]:focus,
main#Contact input[type=email]:focus,
main#Contact input[type=tel]:focus,
main#Contact input[type=search]:focus,
main#Contact input[type=url]:focus,
main#Contact textarea:focus {
  color: #000;
  background-color: #eeeeee;
  box-shadow: 0px 0px 100px 100px #fff inset;
}
main#Contact .ERR {
  color: #cc0303;
}
main#Contact input[type=text] {
  font-size: 16px;
  line-height: 1.625;
  letter-spacing: 0.03em;
  padding: 8px 21px;
  border: 1px solid #707070;
  box-sizing: border-box;
  color: #000;
  width: 100%;
}

main#Contact input[type=text].zip {
  max-width: 247px;
  width: 100%;
}
main#Contact .zip-wrap {
  background: #eeeeee;
  display: inline-block;
  position: relative;
  max-width: 247px;
  width: 100%;
  margin-right: 3px;
}
main#Contact .zip-wrap::before {
  content: "〒";
  font-size: 18px;
  position: absolute;
  top: 0.8em;
  left: 24px;
  margin: 0 6px 0 0;
}
main#Contact .zip-wrap input {
  padding: 8px 21px 8px 55px;
  width: 100%;
}
main#Contact input[type=button] {
  font-size: 16px;
  line-height: 1.625;
  letter-spacing: 0.03em;
  font-weight: 500;
  color: #000;
  max-width: 140px;
  width: 100%;
  background: #eeeeee;
  border: 3px solid #707070;
  padding: 10px 19px;
  box-sizing: border-box;
  transition: all 0.3s ease;
  cursor: pointer;
}
main#Contact input[type=button]:hover {
  background: none;
}
main#Contact input[type=checkbox] + label {
  padding-left: 29px;
  position: relative;
  margin-right: 29px;
  cursor: pointer;
}
main#Contact input[type=checkbox] + label::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 22px;
  height: 22px;
  border: 1px solid #707070;
  background: #eeeeee;
  box-sizing: border-box;
}
main#Contact input[type=checkbox] + label::after {
  content: "";
  opacity: 0;
  border-right: 3px solid #000;
  border-bottom: 3px solid #000;
  display: block;
  height: 9px;
  left: 7px;
  margin-top: -8px;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: rotate(45deg);
  width: 5px;
}
main#Contact input[type=checkbox]:checked + label {
  background: none;
}
main#Contact input[type=checkbox]:checked + label::after {
  opacity: 1;
}
main#Contact input[type=radio] + label {
  padding-left: 27px;
  position: relative;
  margin-right: 27px;
  cursor: pointer;
}
main#Contact input[type=radio] + label::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 17px;
  height: 17px;
  border: 1px solid #707070;
  background: #eeeeee;
  box-sizing: border-box;
  border-radius: 50%;
}
main#Contact input[type=radio] + label::after {
  content: "";
  display: block;
  position: absolute;
  top: 4px;
  left: 4px;
  width: 9px;
  height: 9px;
  background: #000;
  border-radius: 50%;
  opacity: 0;
}
main#Contact input[type=radio]:checked + label {
  background: none;
}
main#Contact input[type=radio]:checked + label::after {
  opacity: 1;
}
main#Contact .select-box {
  overflow: hidden;
  width: 60%;
  text-align: center;
  position: relative;
  border-radius: 2px;
  background: #eeeeee;
}
main#Contact .select-box select {
  font-size: 16px;
  color: #000;
  letter-spacing: 0.035em;
  width: 100%;
  padding-right: 1em;
  cursor: pointer;
  text-indent: 0.01px;
  text-overflow: ellipsis;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
  padding: 12px 38px 12px 21px;
}
main#Contact .select-box select::-ms-expand {
  display: none;
}
main#Contact .select-box::before {
  position: absolute;
  top: 1.25em;
  right: 21px;
  width: 0;
  height: 0;
  padding: 0;
  content: "";
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #000;
  pointer-events: none;
}
main#Contact textarea {
  font-size: 20px;
  line-height: 1.625;
  letter-spacing: 0.03em;
  border: 1px solid #707070;
  box-sizing: border-box;
  width: 100%;
  padding: 12px 21px;
}
main#Contact .overscroll {
  overflow-y: scroll;
  height: 237px;
  padding: 25px 21px;
  background: #eeeeee;
}
main#Contact .overscroll ul > li {
  margin-bottom: 25px;
}
main#Contact .overscroll ul > li strong {
  font-size: 16px;
  line-height: 1.25;
  font-weight: 500;
  letter-spacing: 0.03em;
  display: block;
  margin-bottom: 5px;
  color: #000;
}
main#Contact .overscroll ul > li p {
  font-size: 14px;
  line-height: 1.42;
}
main#Contact .overscroll ul > li > ol {
  margin-top: 5px;
}
main#Contact .overscroll ul > li > ol li {
  text-indent: -1.25em;
  padding-left: 1.25em;
}
main#Contact .overscroll ul > li:first-child strong {
  margin-bottom: 20px;
}
main#Contact .overscroll ul > li:last-child {
  margin-bottom: 0;
}
main#Contact .submit_area {
  padding: 60px 0 102px 0;
  text-align: center;
}
main#Contact .submit_area span {

}
main#Contact .submit_area span input[type=submit] {
  font-size: 18px;
  line-height: 1.4;
  color: #000;
  cursor: pointer;
  width: 230px;
  height: 60px;
  box-sizing: border-box;
  border:none;
  padding:0 20px 0 0;
  border-radius: 30px;
  background: url(../images/contact/ar01.svg) no-repeat right 30px top 50%;
  background-color: #fbbf12;
  transition: 0.5s;
}

main#Contact .submit_area span input[type=submit]:hover {
  opacity: 0.6;
}

main#Contact .submit_area span:hover {
  background: none;
}
main#Contact .submit_area span:hover input[type=submit] {
  color: #000;
}
main#Contact .submit_area ul.koumoku {
  max-width: 590px;
  margin: 20px auto 0;
}
main#Contact .submit_area ul.koumoku li {
  font-size: 18px;
  line-height: 1.4;
  color: #000;
  width: 262px;
  border-radius: 30px;
  box-sizing: border-box;
  font-feature-settings: "palt";
  position: relative;
  display: inline-block;
  text-align: center;
  box-sizing: border-box;
  transition: all 0.3s ease;
}
main#Contact .submit_area ul.koumoku li input[type=submit] {
  font-size: 18px;
  line-height: 1.4;
  color: #000;
  cursor: pointer;
  width: 230px;
  height: 60px;
  box-sizing: border-box;
  border-radius: 30px;
  background: url(../images/contact/ar01.svg) no-repeat right 30px top 50%;
  background-color: #fbbf12;
  transition: 0.5s;
}
main#Contact .submit_area ul.koumoku li input[type=submit] {
  font-size: 18px;
  line-height: 1.4;
  color: #000;
  cursor: pointer;
  width: 230px;
  height: 60px;
  box-sizing: border-box;
  border-radius: 30px;
  background: url(../images/contact/ar01.svg) no-repeat right 30px top 50%;
  background-color: #fbbf12;
  transition: 0.5s;
}
main#Contact .submit_area ul.koumoku li:hover {
  opacity: 0.6;
}
main#Contact .submit_area ul.koumoku li:hover input[type=submit] {
  color: #000;
}
main#Contact .submit_area ul.koumoku li:hover svg path {
  fill: #000;
}
main#Contact .btn_back {
  text-align: center;
}
main#Contact .btn_back input {
  background: url(../images/contact/ar02.svg) no-repeat left 30px top 50% !important;
  background-size: 13px 13px !important;
  background-color: #eeeeee !important;
  transition: 0.5s;
}
main#Contact .contact_back {
  padding: 45px 0 120px 0;
  text-align: center;
}
main#Contact .contact_back a {
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: 0.13em;
  color: #000;
  width: 262px;
  border-radius: 30px;
  background: #fbcb41;
  box-sizing: border-box;
  font-feature-settings: "palt";
  position: relative;
  display: inline-block;
  text-align: center;
  box-sizing: border-box;
  transition: all 0.3s ease;
  height: 58px;
  padding: 15px 15px 14px;
}
main#Contact .contact_back a:hover {
  opacity: 0.7;
}

/*==================================
  Contact
==================================*/
main#Contact .container {
  margin: auto;
}
main#Contact .container p > a {
  background: linear-gradient(#000, #000) 0 100%/0 1px no-repeat;
  background-size: 100% 1px;
  padding-bottom: 2px;
  display: inline;
}
main#Contact .container p > a:hover {
  color: #704f00;
  background: linear-gradient(#704f00, #704f00) 0 100%/0 1px no-repeat;
  background-size: 100% 1px;
}
main#Contact .agree_area {
  margin: 30px 0 0;
  text-align: center;
}
main#Contact .need {
  color: #cc0303;
}
main#Contact .check-list {
  padding-top: 5px;
  padding-left: 0;
}
main#Contact .check-list li {
  display: inline-block;
}
main#Contact .form_wrap > p {
  margin-top: 0 !important;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.03em;
  font-weight: 500;
}
main#Contact.sfm2 td p {
  overflow-wrap: break-word;
}
main#Contact div.nml_tbl form#sfm-form {
  width: 920px;
  margin: 0 auto;
}
main#Contact div.nml_tbl form#sfm-form p.kome {
  text-align: center;
  font-weight: 300;
}
main#Contact span.red {
  color: #c12222;
}
main#Contact div.nml_tbl {
  width: 980px;
  padding: 0 20px;
  margin: 0 auto;
}
main#Contact div.nml_tbl h1 {
  text-align: center;
  margin-top: 110px;
  margin-bottom: 60px;
  padding-bottom: 36px;
}

main#Contact div.nml_tbl .cbox {
  background-color: #f2f2f2;
  padding:56px;
  border-radius: 20px;
  margin:0 0 85px 0;
  text-align: center;
}

main#Contact div.nml_tbl .cbox p.tl {
  text-align: center;
  font-size:26px;
  font-weight:bold;
  padding:0 0 30px 0;
}

main#Contact div.nml_tbl .cbox p.tel {
  display: inline-block;
  padding:0 0 0 80px;
  margin:0 auto;
  background: url(../images/contact/ic01.svg) no-repeat 0 0;
}

main#Contact div.nml_tbl .cbox p.tel a {
  display: inline-block;
  font-size:48px;
  font-weight:800;
  font-family: 'Sen', sans-serif;
  line-height: 1.3;
}

main#Contact div.nml_tbl .cbox p.tel span {
  display: block;
  font-size:20px;
  text-align: left;
  padding:0 0 0 10px;
  font-weight:bold;
}

main#Contact div.nml_tbl p.tit2 {
  text-align:center;
}

main#Contact div.nml_tbl p.tit2 span {
  display: inline-block;
  padding:10px 0 60px 80px;
  margin:0 auto;
  font-size:26px;
  font-weight:bold;
  background: url(../images/contact/ic02.svg) no-repeat 0 0;
}

main#Contact div.nml_tbl form#sfm-form table {
  width: 100%;
  margin: 5px 0 0 0;
  border-top: #707070 1px solid;
}
main#Contact div.nml_tbl form#sfm-form table tr {
  border-bottom: #707070 1px solid;
}
main#Contact div.nml_tbl form#sfm-form table tbody tr th {
  width: 280px;
  text-align: right;
  padding: 20px 35px 20px 0;
  vertical-align: middle;
}
main#Contact div.nml_tbl form#sfm-form table tbody tr td {
  padding: 20px 0;
  font-size: 20px;
}
main#Contact div.nml_tbl form#sfm-form table tbody tr th span.form_head {
  font-size: 20px;
  font-weight: 400;
}
main#Contact div.nml_tbl form#sfm-form table tbody tr td textarea#message,
main#Contact div.nml_tbl form#sfm-form table tbody tr td,
main#Contact div.nml_tbl form#sfm-form table tbody tr td input {
  font-size: 20px;
  font-weight: 300;
}

main#Contact div.nml_tbl form#sfm-form table tbody tr td a.btn {
  background: #a4a4a5;
  font-size: 18px;
  padding: 6px 12px;
  margin-left: 10px;
  color: #fff;
  text-decoration: none;
}
main#Contact div.nml_tbl form#sfm-form table tbody tr td a:hover {
  color: #fff;
  text-decoration: underline;
}

/*==========================================
  Common
==========================================*/

a {
	color: #333;
	text-decoration: none;
	transition: all 0.5s !important;
	-moz-transition: all 0.5s !important; /* Firefox */
	-webkit-transition: all 0.5s !important; /* Chrome&Safari */
}

a:hover {
	opacity: .7;
	text-decoration: none;
	transition: all 0.5s !important;
	-moz-transition: all 0.5s !important; /* Firefox */
	-webkit-transition: all 0.5s !important; /* Chrome&Safari */
}

.op img,
.op input {
	-webkit-transition: opacity 0.5s ease-out;
	-moz-transition: opacity 0.5s ease-out;
	-ms-transition: opacity 0.5s ease-out;
	transition: opacity 0.5s ease-out;	
}
.op:hover img,
.op:hover input {
	opacity: .7;
	-webkit-opacity: .7;
	-moz-opacity: .7;
	filter: alpha(opacity=60);	/* IE lt 8 */
	-ms-filter: "alpha(opacity=70)"; /* IE 8 */
	-webkit-transition: opacity 0.5s ease-out;
	-moz-transition: opacity 0.5s ease-out;
	-ms-transition: opacity 0.5s ease-out;
	transition: opacity 0.5s ease-out;
}
.inner {
	max-width: 1200px;
	width: 100%;
	padding: 0 50px;
	margin: 0 auto;
}
/*==========================================
  Layout
==========================================*/
/*==========================================
  Teaser
==========================================*/
/* .teaser_in {
	width: 100%;
	padding-top: 17.56%;
	position: relative;
} */
.teaser {
	margin-top: 120px;
	position: relative;
  height: 240px;
  display: flex;
  align-items: center;
  background: url(/images/about/about_kv.jpg) center center no-repeat;
  background-size: cover;
}

.teaser_tit span {
	display: block;
}
.teaser_tit span:first-child {
	font-size: 40px;
	font-weight: 500;
	line-height: 53px;
	color: #fff;
}
.teaser_tit span:last-child {
	margin-top: 9px;
	font-size: 26px;
	font-weight: bold;
	line-height: 35px;
	color: #fff;
}
/* header
==================================*/
.header_in {
	height: 120px;
	width: 100%;
  max-width: 1200px;
  padding: 0 50px;
  box-sizing: border-box;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.header_in .logo a {
	display: block;
	width: 251px;
}
.header_in nav {
	text-align: right;
}
.header_in .logo img {
	width: 100%;
}
.header_in .nav_ul {
	display: flex;
  padding-right: 60px;
	/* padding-right: 21px; */
}
.header_in .nav_ul a {
	display: block;
  margin-left: 73px;
	position: relative;
}
.header_in .nav_ul a span {
	display: block;
	font-size: 14px;
	color: #707070;
	line-height: 1.714;
	font-weight: bold;
	text-align: center;
}
.header_in .nav_ul a span:last-child {
	display: block;
	font-size: 11px;
	color: #707070;
	line-height: 1.36;
	font-weight: 500;
	letter-spacing: 0.06em;
	margin-top: 2px;
}

.btn_menu {
  display: none;
}
@media (max-width: 1000px) {
	.header_in .nav_ul a {
    margin-left: 35px;
	}
}

/*==================================
  Footer
==================================*/
.footer {
  background: #002647;
	padding: 77px 0 53px;
}
.footer_in {
	display: flex;
	position: relative;
}

.footer_info {
  padding-left: 90px;
}

.footer_info .logo a {
	display: block;
	width: 311px;
}
.footer_ul {
	margin-top: 30px;
	padding-left: 72px;
}
.footer_ul li {
	color: #eee;
	font-size: 12px;
	font-weight: 500;
	line-height: 1.33;
}
.footer_ul li+li {
	margin-top: 10px;
}

.footer_ul li a {
  color: #eee;
}

.footer_copy {
	position: absolute;
	right: 0;
	bottom: 0;
}
.footer_copy .copy {
	color: #eee;
	font-size: 12px;
	font-weight: 500;
	line-height: 1.33;
}

/*==========================================
  Top
==========================================*/
.tit_area h2 {
	font-size: 40px;
	font-weight: 500;
	line-height: 1.37;
	color: #333333;
}
.tit_area .tit02 {
	margin-top: 9px;
	font-size: 26px;
	font-weight: bold;
	line-height: 1.23;
}
/* main_top
==================================*/
.main_top {
	position: relative;
	margin-top: 120px;
	width: 100%;
}
.main_kv img {
	width: 100%;
}
.main_in {
	position: absolute;
	left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 100%;
  max-width: 71.742vw;
  padding-top: 15.666vw;
	z-index: 3;
}
.main_logo {
	width: 47.657vw;
}
.main_logo img {
	width: 100%;
}
.main_txt {
	color: #fff;
	margin-top: 2.708vw;
	font-size: 2.708vw;
	font-weight: bold;
	line-height: 1.7;
	text-shadow: 0 0 2.196vw #000E5A;
}

@media (min-width: 1366px) {
  .main_in {
    max-width: 980px;
    padding-top: 214px;
  }

  .main_logo {
    width: 651px;
  }

  .main_txt {
    margin-top: 37px;
    font-size: 37px;
    text-shadow: 0 0 30px #000E5A;
  }

  .main_kv img {
    height: calc(100vh - 120px);
    object-fit: cover;
  }
}

.top_section01 {
	margin-top: 160px;
}
.top_about_info {
	display: flex;
  max-width: 980px;
  margin: 0 auto;
}
.top_about_info .tit_area {
	padding-left: 119px;
	margin-top: 49px;
}
.top_about_info .area01 {
	width: 538px;
}
.top_about_info .area01 .img_p {
	width: 100%;
	padding-top: 67.9%;
	position: relative;
	min-width: 648px;
}
.top_about_info .area01 .img_p img {
	position: absolute;
	left: -198px;
	top: 82px;
	z-index: 3;
	width: 100%;
	height: 100%;
	min-height: 440px;
}
.top_about_info .area02 {
	width: calc(100% - 538px);
}
.top_about_info .area02 .txt_p {
	font-size: 16px;
	font-weight: 500;
	line-height: 3.25;
	color: #333333;
}
.top_about_info .btn_link {
	margin-top: 75px;
}

@media (max-width: 1000px) {
  .top_about_info .area01 {
    width: 438px;
  }

  .top_about_info .tit_area {
    left: 19px;
  }

  .top_about_info .area02 {
    width: calc(100% - 438px);
  }

  .top_about_info .area01 .img_p img {
    left: -298px;
  }
}

.btn_link a {
	display: inline-block;
	padding: 0 30px;
	width: 230px;
	line-height: 60px;
	font-size: 22px;
	font-weight: 500;
	color: #FBBF12;
	background: #002647;
	border-radius: 30px;
	position: relative;
}
.btn_link a::after {
	content: '';
	position: absolute;
	right: 30px;
	top: 50%;
	border-left: 11px solid #FBBF12;
	border-right: 0;
	border-top: 6px solid transparent;
	border-bottom: 6px solid transparent;
	width: 0;
	height: 0;
	transform: translateY(-50%);
}
.top_service {
	margin-top: 92px;
	background: #002647;
	padding: 233px 0 247px;
}

.service_inner {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}

.service_inner .tit_p {
	color: #fff;
	font-size: 40px;
	font-weight: 500;
	line-height: 1.37;
	text-align: center;
}
.service_ul01 {
	margin-top: 63px;
	display: flex;
	justify-content: center;
	margin-left: -60px;
}
.service_ul01 li {
	width: calc(16.66% - 60px);
	margin-left: 60px;
}
.service_ul01 li .img_p img {
	width: 100%;
}
.service_ul01 li .txt_p {
	color: #fff;
	line-height: 1.31;
	font-weight: bold;
	font-size: 16px;
	text-align: center;
  width: calc(100% + 40px);
  margin: 9px -20px 0;
}
.service_ul02 {
	margin-top: 150px;
	position: relative;
	z-index: 3;
}
.service_ul02 li {
	display: flex;
	position: relative;
  height: 512px;
  background: #EFEFEF;
  width: 100%;
}

.service_ul02 li:nth-child(even) {
	flex-direction: row-reverse;
}

.service_ul02 li:nth-child(2) {
	margin-top: 211px;
}

.service_ul02 li:nth-child(3) {
  margin-top: 135px;
}
.service_box {
  width: calc(100% - 628px);
  padding: 138px 30px 0 60px;
}

.service_ul02 li:nth-child(2) .service_box  {
  padding: 122px 90px 0 60px;
  width: calc(100% - 611px);
}
.service_ul02 li:nth-child(3) .service_box {
  padding-top: 110px;
}

.service_box .tit_p {
	color: #333333;
	font-size: 22px;
	font-weight: bold;
	line-height: 1.5;
	text-align: left;
}
.service_box .txt_p {
	color: #333333;
	font-size: 16px;
	line-height: 2;
	font-weight: 500;
	margin-top: 14px;
}

.service_ul02 .img_p span {
  display: block;
  position: relative;
  width: 100%;
}

.service_ul02 li:first-child .img_p {
  width: 611px;
  margin: -53px 17px 0 0;
}

.service_ul02 li:first-child .img_p span {
	padding-top: 111.129%;
}

.service_ul02 li:nth-child(2) .img_p {
	width: 601px;
	margin: -105px 0 0 10px;
}

.service_ul02 li:nth-child(2) .img_p span {
	padding-top: 109.65%;
}

.service_ul02 li:nth-child(3) .img_p {
	width: 607px;
	margin: -61px 21px 0 0;
}
.service_ul02 li:nth-child(3) .img_p span {
	padding-top: 105.27%;
}
.service_ul02 li .img_p img {
	position: absolute;
	left: 0;
	top: 0;
	z-index: 3;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@media (max-width: 1100px) {
  .service_box {
    width: 50%;
  }
  .service_ul02 li:nth-child(2) .service_box  {
    width: 50%;
  }

  .service_ul02 li:first-child .img_p {
    width: 49%;
    margin: -53px 1% 0 0;
  }

  .service_ul02 li:nth-child(2) .img_p {
    width: 49%;
    margin: -105px 0 0 1%;
  }

  .service_ul02 li:nth-child(3) .img_p {
    width: 49%;
    margin: -61px 1% 0 0;
  }
}

@media (max-width: 1000px) {
  .service_ul02 li {
    height: 412px;
  }
}

.top_section02 .top_work {
  width: 100%;
  max-width: 980px;
  margin: 160px auto 0;
}
.work_list {
	margin-top: 56px;
}
.work_ul li+li {
	margin-top: 75px;
}

.work_list .img_p {
  border: 1px solid #EFEFEF;
}

.work_ul .work_item {
	margin-top: 20px;
  display: flex;
  align-items: center;
	position: relative;
}
.work_ul .work_item::before {
	content: '';
	width: 80px;
	height: 80px;
	color: #fff;
	font-family: 'Avenir';
	font-size: 18px;
	font-weight: 500;
	letter-spacing: 0.06em;
	line-height: 1.38;
	display: flex;
	align-items: center;
	justify-content: center;
  margin-right: 22px;
}
.work_ul .web::before {
	content: 'WEB';
	background: #87C3D1;
}
.work_ul .sign::before {
	content: 'SIGN';
	background: #D1AC87;
} 
.work_ul .dtp::before  {
	content: 'DTP';
	background: #AED0A0;
}
.work_ul .work_item span {
	display: block;
	font-size: 16px;
	font-weight: 500;
	line-height: 2;
	color: #333333;
}
.work_list .btn_link {
	text-align: center;
	margin-top: 80px;
}
.work_list .btn_link a {
	text-align: left;
}
.contact {
	margin-top: 120px;
	background: #EFEFEF;
	padding: 95px 0 90px;
}
.contact_area .tit_p {
	color: #002647;
	font-size: 26px;
	line-height: 1.34;
	font-weight: bold;
	text-align: center;
	position: relative;
	padding-bottom: 26px;
}
.contact_area .tit_p::after {
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0;
	z-index: 3;
	height: 6px;
	width: 60px;
	background: #FBBF12;
	transform: translateX(-50%);
}
.contact_list {
	margin-top: 50px;
	padding: 0 42px 0 26px;
}
.contact_ul {
	display: flex;
	margin-left: -82px;
}
.contact_ul li {
	width: calc(50% - 82px);
	margin-left: 82px;
}
.contact_ul .tel {
	padding-left: 78px;
}
.contact_ul .tel_p a {
	font-size: 48px;
	font-weight: 900;
	color: #002647;
	line-height: 1.37;
	letter-spacing: 0.04em;
	position: relative;
}
.contact_ul .tel_p a::before {
	content: '';
	position: absolute;
	left: -78px;
	top: 0;
	z-index: 3;
	width: 100%;
	height: 100%;
	background: url('../images/common/icon_tel.svg')left center no-repeat;
	background-size: auto;
}
.contact_ul .tel_txt {
	font-size: 20px;
	font-weight: bold;
	color: #002647;
	letter-spacing: 0.06em;
	line-height: 1.35;
	margin-top: -4px;
}
.contact_ul .email_p a {
	width: 415px;
	height: 60px;
	background: #002647;
	border-radius: 30px;
	display: flex;
	padding-left: 87px;
	align-items: center;
	font-size: 22px;
	font-weight: bold;
	line-height: 1.36;
	color: #fff;
	position: relative;
}
.contact_ul .email_p a::before {
	content: '';
	position: absolute;
	left: 31px;
	top: 0;
	z-index: 3;
	width: 100%;
	height: 100%;
	background: url("../images/common/icon_email.svg")left center no-repeat;
	background-size: auto;
}
.contact_ul .email_p a::after {
	content: '';
	position: absolute;
	right: 30px;
	top: 50%;
	transform: translateY(-50%);
	border-left: 13px solid #fff;
	border-right: 0;
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
	width: 0;
	height: 0;
}
.map_iframe {
	width: 100%;
	position: relative;
	padding-top: 37.7%;
}
.map_iframe iframe {
	position: absolute;
	left: 0;
	top: 0;
	z-index: 3;
	width: 100%;
	/* min-height: 515px; */
	height: 100%;
}
@media (max-width: 1000px) {
	.contact_list {
		padding: 0 12px 0 20px;
	}
	.contact_ul {
		display: flex;
		margin-left: -60px;
	}
	.contact_ul li {
		width: 50%;
		margin-left: 20px;
	}
	.contact_ul .tel_p a {
		font-size: 45px;
	}
	.contact_ul .email_p a {
		width: 380px;
		font-size: 20px;
	}
}

/*==========================================
  About
==========================================*/
.about_section01 {
	margin-top: 140px;
}
.section_tit {
	padding-bottom: 36px;
	position: relative;
	text-align: center;
}
.section_tit::after{
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0;
	z-index: 3;
	transform: translateX(-50%);
	width: 60px;
	height: 6px;
	background: #FBBF12;
}
.section_tit span {
	display: block;
	color: #333333;
}
.section_tit span:first-child {
	font-size: 40px;
	font-weight: 500;
	line-height: 53px;
}
.section_tit span:last-child {
	font-size: 26px;
	font-weight: bold;
	line-height: 35px;
}

.about_top {
	display: flex;
	align-items: center;
}
.about_logo {
	width: 298px;
	margin-left: 32px;
}
.about_logo img {
	width: 100%;
}
.about_top .txt_p {
	width: calc(100% - 518px);
	margin-left: 180px;
	font-size: 16px;
	font-weight: 500;
	line-height: 3.25;
}
.about_section02 {
	margin-top: 139px;
}
.about_ul .about_item {
  background: #EFEFEF;
  overflow: hidden;
}

.about_ul .about_item:nth-child(even) {
  background: #fff;
}

.about_ul .about_item .about_area {
  padding: 0 0 0 39.09%;
  position: relative;
}

.about_ul .about_item:nth-child(even) .about_area {
  padding: 0 39.09% 0 0;
}

.about_ul .img_p {
	width: 51.18%;
  position: absolute;
  height: 100%;
  right: 60.91%;
  top: 0;
  z-index: 2;
}

.about_ul .about_item:nth-child(even) .img_p {
  left: 60.91%;
  right: unset;
}

.about_ul .img_p img {
	position: absolute;
	top: 0;
  left: 0;
	z-index: 3;
  width: 100%;
	height: 100%;
	object-fit: cover;
}

.about_ul .about_box {
  padding: 120px 0;
}
.about_box .tit_p {
	font-size: 28px;
	font-weight: bold;
	line-height: 37px;
	padding-bottom: 46px;
	position: relative;
	text-align: center;
	color: #333333;
}
.about_box .tit_p::after {
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	z-index: 3;
	background: #FBBF12;
	width: 60px;
	height: 6px;
}
.about_box .txt_p p {
	margin-top: 50px;
	font-size: 16px;
	font-weight: 500;
	line-height: 2;
	color: #333333;
  display: flex;
  justify-content: center;
}
.about_box_ul {
	max-width: 321px;
	margin: 66px auto 0;
	display: flex;
	justify-content: space-between;
}

.label_area {
	margin-top: 43px;
  padding: 0 95px;
}

.label_area.label03 {
  padding: 0 15px;
}

.label_ul {
	display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.label_ul li {
	border: 1px solid #707070;
	white-space: nowrap;
	font-size: 14px;
	font-weight: 500;
	line-height: 30px;
  margin: 10px 5px 0;
  text-align: center;
  padding: 0 20px;
  background: #fff;
}

.about_section03 {
	margin-top: 117px;
}

.flow_area {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}

.flow_area .flow_txt {
	margin-top: 47px;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.5;
	color: #333333;
	text-align: center;
}
.flow_ul {
	margin-top: 78px;
}
.flow_ul li {
	display: flex;
	align-items: center;
	padding: 0 81px;
}
.flow_ul li+li {
	margin-top: 45px;
}
.flow_ul .img_p {
	width: 192px;
	height: 192px;
	border-radius: 100%;
}
.flow_ul .img_p span {
	display: block;
	position: relative;
	width: 100%;
	padding-top: 100%;
}
.flow_ul .img_p img {
	position: absolute;
	left: 0;
	top: 0;
	z-index: 3;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.flow_info {
	width: calc(100% - 229px);
	margin-left: 37px;
	color: #333333;
}
.flow_info .tit_p span:last-child {
	font-size: 22px;
	line-height: 1.5;
	font-weight: bold;
}
.flow_info .tit_p .num {
	font-size: 28px;
	line-height: 1.35;
	font-weight: 900;
	margin-right: 19px;
}
.flow_info .txt_p {
	margin-top: 13px;
	font-size: 16px;
	font-weight: 500;
	line-height: 2;
}
.about_section04 {
	margin-top: 129px;
	padding: 110px 0 120px;
	background: #EFEFEF;
}
.company_in{
	margin-top: 44px;
	padding: 28px 80px 64px 90px;
	background: #fff;
	border-radius: 30px;
}
.company_in dl {
	padding: 52px 0 29px;
	display: flex;
}
.company_in dl+dl {
	border-top: #707070 solid 1px;
}
.company_in dt {
	width: 152px;
}
.company_in dd {
	width: calc(100% - 152px);
}
.company_in dt,
.company_in dd {
	font-size: 24px;
	font-weight: 500;
	line-height: 1.5;
}
.about_contact {
	margin-top: 0;
}
.company_in dd a {
	margin-left: 22px;
  display: inline-block;
}

.company_in dd a.tel {
  margin-left: 0;
}


@media (max-width: 1100px) {
  .about_top .txt_p {
    width: calc(100% - 468px);
    margin-left: 130px;
  }
}

@media (max-width: 1000px) {
  .label_area {
    padding: 0 15px;
  }

  .flow_ul li {
    padding: 0;
  }
}

/*==========================================
  Works
==========================================*/
.works_area .section_tit {
	margin-top: 110px;
}
.works_section01 {
	padding-bottom: 80px;
}
.works_section01 .work_ul+.work_ul {
	margin-top: 115px;
}
.works_section01 .work_ul li+li {
	margin-top: 115px;
}