/*
    common---------------
    */
* {
  font-family: "Open Sans";
  font-weight: 100;
}

html,
body {
  overflow-x: hidden !important;
}

.content {
  background: #F0F0F0;
  padding-bottom: 35px;
}

.mt_20 {
  margin-top: 20px;
}

.mt_30 {
  margin-top: 30px;
}


img {
  width: 100%;
  height: auto;
}

p {
  line-height: 1.7em;
}

.flex_box {
  display: flex;
  flex-wrap: wrap;
}

/*外余白*/
.outer_frame {
  max-width: 950px;
  margin-right: auto;
  margin-left: auto;
}

/*表示切り替え*/
.pc_only {
  display: block !important;
}

.sp_only {
  display: none !important;
}

@media only screen and (max-width: 768px) {
  .pc_only {
    display: none !important;
  }

  .sp_only {
    display: block !important;
  }

  .outer_frame {
    padding: 10px;
  }
}

/*TOPに戻る*/
#page_top {
  width: 50px;
  height: 50px;
  background: url(../img/arr_top.png) no-repeat;
  background-size: contain;
  position: fixed;
  right: 10px;
  bottom: 85px;
  opacity: 0.6;
  border-radius: 50%;
}

#page_top a {
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  text-decoration: none;
}

.radius_btn a {
  padding: 10px 25px;
  border-radius: 25px;
  box-shadow: -5px -5px 10px 0px rgba(255, 255, 255, 0.5), 5px 5px 10px 0px rgba(0, 0, 0, 0.3);
  transition: .4s;
}

.radius_btn a:hover {
  *box-shadow: 0 0 10px rgba(0, 0, 0, 0);
  background: #4A9B71;
}

/*
    header---------------
    */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 40px;
  box-sizing: border-box;
}

.logo img {
  width: 230px;
}

.pc_nav .nav_list {
  display: flex;
  background: #F0F0F0;
  border-radius: 25px;
  box-shadow: -5px -5px 10px 0px rgba(255, 255, 255, 0.5), 5px 5px 10px 0px rgba(0, 0, 0, 0.3);
}

.pc_nav .nav_list li {
  padding: 15px 30px;
}

.pc_nav .nav_list li a {
  font-size: .8em;
}

.nav_list li a:hover {
  opacity: .6;
}

.drawer_hidden {
  display: none;
}

/* headerの色を変える */
.header.change-color {
  background-color: rgba(255, 255, 255, 0.6);
}

@media screen and (min-width:768px) {
  .nav {
    display: none;
  }
}

@media screen and (max-width:768px) {
  .header {
    padding: 20px;
  }

  header .logo {
    z-index: 100;
  }

  header .logo img {
    width: 150px;
  }

  .nav_item {
    padding-top: 15px;
  }

  .nav_item a {
    font-size: 2em;
  }

  /* ハンバーガーアイコンの設置スペース */
  .drawer_open {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 50px;
    top: 40px;
    z-index: 100;
    /* 重なり順を一番上にする */
    cursor: pointer;
  }

  /* ハンバーガーメニューのアイコン */
  .drawer_open span,
  .drawer_open span:before,
  .drawer_open span:after {
    content: '';
    display: block;
    height: 3px;
    width: 30px;
    border-radius: 3px;
    background: #333;
    transition: 0.5s;
    position: absolute;
  }

  /* 三本位置調整 */
  .drawer_open span:before {
    bottom: 8px;
  }

  .drawer_open span:after {
    top: 8px;
  }

  /* アイコンがクリックされたら真ん中の線を透明にする */
  #drawer_input:checked~.drawer_open span {
    background: rgba(255, 255, 255, 0);
  }

  /* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
  #drawer_input:checked~.drawer_open span::before {
    bottom: 0;
    transform: rotate(45deg);
  }

  #drawer_input:checked~.drawer_open span::after {
    top: 0;
    transform: rotate(-45deg);
  }

  /* メニューのデザイン*/
  .nav_content {
    width: 100%;
    height: 100%;
    position: fixed;
    bottom: 100%;
    left: 0%;
    z-index: 99;
    background: #fff;
    transition: .5s;
    text-align: center;
    padding-top: 90px;
  }
}

.nav_list {
  list-style: none;
}

.nav_item a {
  color: #806464;
  text-decoration: none;
}

/* アイコンがクリックされたらメニューを表示 */
#drawer_input:checked~.nav_content {
  bottom: 0;
}

footer .footer_text {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 20px;
}

footer .nav_list {
  background: #BFBFBF;
  justify-content: center;
}

footer .nav_list li {
  color: #000;
  padding: 10px 15px;
}

footer .footer_text img {
  width: 5%;
  margin: auto;
}

@media screen and (max-width:768px) {
  footer .nav_list {
    display: none;
  }

  footer #copyright {
    font-size: .5em;
  }
}

/*
    news---------------
    */
.news .news_list {
  margin: 30px;
}

.news .news_list>li {
  border-bottom: #707070 1px solid;
  padding: 10px;
}

.news .news_list .news_ttl {
  margin-top: 10px;
  font-size: 1.2em;
  display: block;
  line-height: 1.4em;
}


.news .news_list .post-categories li {
  padding: 0 10px;
}

/*
    TOP---------------
    */

#top .slide_top {
  position: relative;
}

#top .slide_top .top_ttl {
  position: absolute;
  bottom: 30px;
  width: 45%;
  right: 10px;
  z-index: 2;
}

#top .slide_top .scroll {
  position: absolute;
  bottom: 35px;
  width: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: arrowmove 1s ease-in-out infinite;
}

#top h2 {
  width: 50%;
  padding: 20px 0 50px;
}

#top h3 {
  font-size: 2.2em;
  padding-bottom: 20px;
  font-weight: 600;
}

#top h4 {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 4.5em;
  line-height: .8em;
  text-align: center;
}

#top h4 small,
#top h5 small {
  font-size: .3em;
}

#top h5 {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 4em;
  line-height: .8em;
}

#top .bisiness_list img {
  width: 25%;
}

#top .bisiness_list p {
  color: #797979;
}

#top .bisiness_img {
  position: relative;
}

#top .bisiness_img p {
  padding: 30px;
  color: #F0F0F0;
  text-align: justify;
}

#top .bisiness_img p span {
  display: block;
  font-size: 1.5em;
  margin-bottom: 40px;
}

#top .bisiness_img .case_btn {
  text-align: center;
  background: #F0F0F0;
  opacity: .9;
  border-radius: 18px;
  padding: 15px;
  font-size: 20px;
  transition: 0.2s;
  display: block;
  width: 40%;
  margin: 30px auto;
}

#top .bisiness_img .case_btn:hover {
  background: #46975B;
  color: #F0F0F0;
}

#top .bisiness_list:hover+.bisiness_img {
  display: block;
  background-color: #707070;
}

#top .about {
  background-image: url('../img/about_bk.png');
  background-attachment: fixed;
  background-size: 60%;
  background-repeat: no-repeat;
  background-position: center;
  padding: 20px 0;
}

#top .about li {
  margin-top: 55px;
}

#top .about li small {
  font-size: .4em;
}

#top .about li .about_ttl {
  width: 35%;
  border-top: solid 1px #707070;
  border-bottom: solid 1px #707070;
  margin: 0 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#top .about li a {
  display: contents;
}

#top .about li .about_ttl p {
  font-size: 2em;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  text-align: center;
  line-height: 1.2em;
}

#top .about li .about_img {
  width: 60%;
  position: relative;
}

#top .about li .about_img::after {
  content: "";
  background: url(../img/arr_2.png);
  background-size: cover;
  position: absolute;
  width: 45px;
  height: 45px;
  top: 50%;
  transform: translateX(0%) translateY(-50%);
  right: -20px;
  transition: 0.3s ease-in-out;
}

#top .about li:hover .about_ttl {
  background: #a5a5a522;
}

#top .about li:hover .about_img::after {
  background: url(../img/arr_2_hover.png);
  background-size: cover;
  transform: translateX(15%) translateY(-50%);
}

#top .recruit .text_box {
  background: #49565E;
  width: 90%;
  color: #fff;
  margin: 0 0 0 auto;
  padding: 100px 25px 100px 25px;
  justify-content: center;
}

#top .recruit .text_box h5 {
  width: 30%;
}

#top .recruit .text_box p span {
  font-size: 2em;
}

#top .recruit .radius_btn {
  text-align: end;
  padding: 20px;
  width: 100%;
}

#top .contact a {
  background: #fff;
  padding: 15px;
  margin-bottom: 30px;
  display: block;
  position: relative;
  transition: 0.3s ease-in-out;
}

#top .contact .contact_ttl {
  font-size: 3em;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  text-align: center;
  line-height: 1em;
}

#top .contact .contact_ttl small {
  font-size: .3em;
}

/*タブの切り替え*/
@media only screen and (min-width: 768px) {
  #top .cp_tab .active {
    background-color: #ccdece;
  }

  #top .bisiness_list {
    width: 35%;
    height: 155px;
    border: #707070 solid .5px;
    background: #F8F8F8;
    padding: 25px;
    color: #797979;
    font-size: 1.1em;
    position: relative;
  }

  #top .bisiness_list::after {
    content: "";
    background: url(../img/arr_1.png);
    background-size: cover;
    position: absolute;
    width: 45px;
    height: 45px;
    bottom: 25px;
    right: 35px;
  }

  #top .bisiness_list:hover:after {
    background: url(../img/arr_1_hover.png);
    background-size: cover;
  }

  .cp_tab {
    position: relative;
  }

  .cp_tab .cp_tabpanel {
    display: none;
  }

  .cp_tab>input:first-child:checked~.cp_tabpanels>.cp_tabpanel:first-child,
  .cp_tab>input:nth-child(3):checked~.cp_tabpanels>.cp_tabpanel:nth-child(2),
  .cp_tab>input:nth-child(5):checked~.cp_tabpanels>.cp_tabpanel:nth-child(3) {
    display: block;
  }

  .cp_tab .cp_tabpanels {
    position: absolute;
    top: 3px;
    width: 65%;
    right: 0;
    display: block;
    height: 320px;
  }

  .cp_tab>input+label {
    position: relative;
    z-index: 100;
    top: -15px;
    left: 1px;
    display: block;
    width: 10em;
    margin-bottom: -20px;
    padding: 15px;
    cursor: pointer;
    border: 1px solid #cccccc;
    border-right: 0;
  }

  .cp_tab .cp_tabpanel {
    border-left: 1px solid #cccccc;
  }

  .business .bisiness_img {
    background: url(../img/business_2.png);
    background-size: cover;
    height: 463px;
  }

  #top .business .bisiness_img:nth-child(2) {
    background: url(../img/business_1.png);
    background-size: cover;
  }

  #top .business .bisiness_img:nth-child(3) {
    background: url(../img/business_3.png);
    background-size: cover;
  }
}

#top .business .bisiness_img {
  background: url(../img/business_2.png);
  background-size: cover;
}

#top .business li:nth-child(2) .bisiness_img {
  background: url(../img/business_1.png);
  background-size: cover;
}

#top .business li:nth-child(3) .bisiness_img {
  background: url(../img/business_3.png);
  background-size: cover;
}

/*PC*/
@media only screen and (min-width: 768px) {
  @keyframes arrowmove {
    0% {
      bottom: 3%;
    }

    50% {
      bottom: 5%;
    }

    100% {
      bottom: 3%;
    }
  }

  #top .recruit img {
    position: absolute;
    width: 70%;
    left: 0;
    top: -5%;
  }

  #top .vision_text:first-child {
    background: url(../img/vision_img.png) no-repeat;
    background-position: 105% 100%;
    background-size: 30%;
  }

  #top .vision_text:first-child p {
    width: 60%;
  }

  #top .recruit {
    position: relative;
    padding-top: 23%;
    margin-top: 100px;
  }

  #top .recruit .text_box .text {
    width: 45%;
    font-size: 1.2em;
  }

  .contact a:hover {
    color: #46975B;
  }

  .contact a:before,
  .contact a:after {
    box-sizing: inherit;
    content: "";
    position: absolute;
    border: 2px solid transparent;
    width: 0;
    height: 0;
  }

  .contact a:before {
    top: 0;
    left: 0;
  }

  .contact a:after {
    bottom: 0;
    right: 0;
  }

  .contact a:hover:before,
  .contact a:hover:after {
    width: 100%;
    height: 100%;
  }

  .contact a:hover:before {
    border-top-color: #46975B;
    border-right-color: #46975B;
    transition: width 0.15s ease-out, height 0.15s ease-out 0.15s;
  }

  .contact a:hover:after {
    border-bottom-color: #46975B;
    border-left-color: #46975B;
    transition: border-color 0s ease-out 0.2s, width 0.15s ease-out 0.2s, height 0.15s ease-out 0.3s;
  }
}

/*SP*/
@media only screen and (max-width: 768px) {
  @keyframes arrowmove {
    0% {
      bottom: -6%;
    }

    50% {
      bottom: -10%;
    }

    100% {
      bottom: -6%;
    }
  }

  #top h2 {
    width: 80%;
    padding: 20px 0;
  }

  #top h3 {
    font-size: 1.5em;
  }

  #top h4 {
    font-size: 3em;
  }

  #top h5 {
    font-size: 2.5em;
    line-height: .6em;
  }

  #top .slide_top .scroll {
    bottom: -30px;
    width: 25px;
  }

  #top .vision {
    margin-top: 20px;
  }

  #top .vision .vision_text:nth-child(2) {
    padding-bottom: 80%;
    background: url(../img/vision_img.png);
    background-position: 150% 100%;
    background-repeat: no-repeat;
    background-size: 80%;
  }

  #top .business .sp_only li:not(:first-child) {
    margin-top: 20px;
    padding-top: 20px;
    border-top: #D5D5D5 1px solid;
  }

  #top .bisiness_img {
    width: 90%;
    margin: 20px 0 0 auto;
    min-height: 350px;
  }

  #top .bisiness_img p {
    padding: 20px;
  }

  #top .bisiness_img p span {
    font-size: 1.3em;
    margin-bottom: 15px;
  }

  #top .bisiness_list {
    width: 90%;
    margin: 0 0 0 auto;
    align-items: center;
  }

  #top .bisiness_list p {
    margin-left: 15px;
    font-size: 1.4em;
    line-height: 1.3em;
    width: 65%;
  }

  #top .bisiness_list img {
    width: 18%;
  }

  #top .about ul {
    background: rgba(230, 230, 230, 0.5);
    padding: 20px 10px;
  }

  #top .about li:nth-child(1) {
    margin-top: 0;
  }

  #top .about li:nth-child(2) {
    margin-top: 35px;
  }

  #top .about li .about_ttl {
    width: 100%;
    border: none;
    font-size: .7em;
  }

  #top .about li .about_img {
    width: 80%;
    margin: auto;
  }

  #top .about li .about_img::after {
    width: 40px;
    height: 40px;
    right: -25px;
  }

  #top .about li:nth-child(2) .about_img {
    order: 2;
  }

  #top .about li:nth-child(2) .about_ttl {
    order: 1;
  }

  #top .recruit .text_box {
    width: 100%;
    display: block;
    padding: 15px;
  }

  #top .recruit .text_box .text {
    margin-top: 25px;
  }

  #top .recruit .text_box p span {
    font-size: 1.2em;
  }

  #top .recruit .radius_btn {
    text-align: center;
  }
}

/*
    固定ページテンプレ---------------
    */

.breadcrumb_list {
  display: flex;
  position: absolute;
  top: 20%;
  left: 30px;
}

.breadcrumb_list .breadcrumb_item {
  padding: 0 15px;
  position: relative;
}

.breadcrumb_list .breadcrumb_item:not(:first-child)::after {
  content: ">";
  position: absolute;
  top: 50%;
  left: -5px;
  transform: translateY(-50%);
}

.page_img {
  position: relative;
}

.page_img .page_ttl {
  position: absolute;
  top: 50%;
  left: 40px;
  font-size: 7em;
  line-height: 1.5em;
  transform: translateY(-50%);
  font-family: 'Zen Kaku Gothic New', sans-serif;
}

.page_img .page_ttl small {
  font-size: .2em;
}

.message_text {
  border-radius: 20px;
  font-size: 1.2em;
  padding: 35px;
  margin: 50px 0;
  box-shadow: -5px -5px 10px 0px rgba(255, 255, 255, 0.5), 5px 5px 10px 0px rgba(0, 0, 0, 0.3);
}

.sab_ttl {
  margin-top: 45px;
  font-weight: 600;
  border-left: 5px solid #707070;
  padding-left: 1em;
}

div.screen-reader-response ul {
  display: none;
}

.wpcf7-not-valid-tip {
  display: block;
  color: #4A9B71;
  font-size: .8em;
}

.scroll_box {
  width: 100%;
  padding: 15px;
  background: #fff;
  height: 200px;
  border: solid 1px;
  overflow-y: scroll;
  margin-bottom: 10px;
}

.scroll_box p {
  margin-bottom: 1em;
}

#contact input, #contact optgroup, #contact select, textarea {
  background: #fff;
  padding: 10px;
}

/* チェックボックスデザイン */
#contact .form input[type="checkbox"] {
  cursor: pointer;
  vertical-align: middle;
  background: none;
  position: relative;
  padding-left: 1.5em;
}

.form input[type="checkbox"]::before,
.form input[type="checkbox"]::after {
  content: "";
  display: block;
  position: absolute;
}

.form input[type="checkbox"]::before {
  background-color: #fff;
  border-radius: 0%;
  border: 1px solid #666464;
  width: 20px;
  /*チェックボックスの横幅*/
  height: 20px;
  /*チェックボックスの縦幅*/
  transform: translateY(-50%);
  top: 50%;
  left: 5px;
}

.form input[type="checkbox"]::after {
  border-bottom: 3px solid #666464;
  /*チェックの太さ*/
  border-left: 3px solid #666464;
  /*チェックの太さ*/
  opacity: 0;
  /*チェック前は非表示*/
  height: 6px;
  /*チェックの高さ*/
  width: 11px;
  /*チェックの横幅*/
  transform: rotate(-45deg);
  top: 5px;
  /*チェック時の位置調整*/
  left: 10px;
  /*チェック時の位置調整*/
}

.form input[type="checkbox"]:checked::after {
  opacity: 1;
  /*チェック後表示*/
}

/*SP*/
@media only screen and (max-width: 768px) {
  .page_img .page_ttl {
    font-size: 2em;
    line-height: 1em;
  }

  .breadcrumb_list .breadcrumb_item {
    display: none;
  }
}

/*
    GREETING---------------
    */

#greeting .company_name {
  font-size: 1.2em;
  padding-top: 40px;
  text-align: end;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 500;
}

#greeting .company_name span {
  font-size: 1.2rem;
}

/*SP*/
@media only screen and (max-width: 768px) {
  #greeting .company_name {
    font-size: 1.2em;
  }
}

/*
    COMPANY---------------
    */
#company dl {
  border-bottom: 1px solid #707070;
  padding: 25px 0;
  display: flex;
  flex-wrap: wrap;
  line-height: 1.5em;
}

#company dl dt {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  min-width: 12em;
  font-weight: 600;
}

#company dl dd {
  font-family: 'Zen Kaku Gothic New', sans-serif;
}

#company .outer_frame {
  margin-top: 65px;
}

#company iframe {
  width: 100%;
  min-height: 300px;
  margin-top: 35px;
}

/*SP*/
@media only screen and (max-width: 768px) {
  #company dl {
    padding: 25px 15px;
  }

  #company dl dt {
    width: 100%;
    margin-bottom: 10px
  }

  #company .outer_frame {
    margin-top: 0px;
  }
}

/*
    RECRUIT---------------
    */
#recruit .generation_box {
  justify-content: space-between;
}

#recruit .generation_box li {
  width: 32%;
}

#recruit .generation_box .generation {
  background: #fff;
  padding: 15px;
  text-align: center;
  margin-bottom: 10px;
  border: #707070 solid 1px;
}

#recruit .generation_box .feature {
  background: #fff;
  padding: 15px;
  min-height: 15em;
  border: #707070 solid 1px;
}

#recruit .generation_box .feature span {
  font-weight: 600;
  font-size: 1.3em;
  padding: 10px 0;
  display: block;
}

#recruit .terms dl {
  display: flex;
  flex-wrap: wrap;
}

#recruit .terms dl dt {
  background: #E5E5E5;
  border: #C1C1C1 solid 1px;
  width: 25%;
  padding: 10px;
}

#recruit .terms dl dd {
  background: #fff;
  border: #C1C1C1 solid 1px;
  padding: 10px;
  width: 75%;
}

#recruit .terms_ttl {
  background: #E5E5E5;
  border: #C1C1C1 solid 1px;
  padding: 10px;
  font-weight: 600;
}

#recruit .radius_btn {
  width: 40%;
  margin: 30px auto;
}

#recruit .radius_btn a {
  padding: 10px 25px;
  display: block;
  text-align: center;
  color: #fff;
  background: #4A9B71;
  border-radius: 25px;
  box-shadow: -5px -5px 10px 0px rgba(255, 255, 255, 0.5), 5px 5px 10px 0px rgba(0, 0, 0, 0.3);
  transition: .4s;
}

#recruit .radius_btn a:hover {
  background: #fff;
  color: #4A9B71;
  box-shadow: -5px -5px 5px 0px rgba(255, 255, 255, 0.5), 5px 5px 5px 0px rgba(0, 0, 0, 0.3);
}

/*SP*/
@media only screen and (max-width: 768px) {
  #recruit .generation_box li {
    width: 100%;
    margin-top: 25px;
  }

  #recruit .terms dl dt, #recruit .terms dl dd {
    width: 100%;
  }
}

/*
    PRIVACY POLICY---------------
    */
#privacypolicy .outer_frame {
  margin: 65px auto 65px;
}

/*
    CONTACT---------------
    */

#contact .outer_frame .text_center {
  text-align: center;
  margin: 50px auto;
  font-size: 1.2em;
}

#contact .form dl {
  display: flex;
  margin: 40px auto;
  flex-wrap: wrap;
}

#contact .form dl dt {
  width: 20%;
  padding: 10px 0;
}

#contact .form dl dd {
  width: 80%;
}

#contact .form dl dd input, #contact .form dl dd textarea {
  width: 100%;
}

#contact .form dl .required p {
  position: relative;
  display: initial;
  padding-right: 1em;
}

#contact .form dl .required p:after {
  position: absolute;
  content: " * ";
  top: 0;
  right: 0;
  color: #4A9B71;
}

select:invalid {
  color: #bbb;
}

select option:first-child {
  color: #bbb;
}

#contact .form dl .content_select p {
  position: relative;
}

#contact .form dl .content_select select {
  padding-left: 3em;
}

#contact .form dl .content_select p:after {
  content: "";
  position: absolute;
  left: 15px;
  top: 20px;
  width: 0.8em;
  height: 0.8em;
  border-top: 2px solid #000;
  border-left: 2px solid #000;
  pointer-events: none;
  transform: translateY(-50%) rotate(-135deg);
}

#contact .radius_btn {
  width: 40%;
  margin: 30px auto;
  text-align: center;
}

#contact .radius_btn input {
  padding: 10px 25px;
  display: block;
  text-align: center;
  color: #fff;
  width: 100%;
  background: #4A9B71;
  border-radius: 25px;
  box-shadow: -5px -5px 10px 0px rgba(255, 255, 255, 0.5), 5px 5px 10px 0px rgba(0, 0, 0, 0.3);
  transition: .4s;
}

#contact .radius_btn input:hover {
  background: #fff;
  color: #4A9B71;
  box-shadow: -5px -5px 5px 0px rgba(255, 255, 255, 0.5), 5px 5px 5px 0px rgba(0, 0, 0, 0.3);
}

#contact .form dl dd .experience {
  width: 3em;
  margin-right: 1em;
}

#contact .confirm p:after {
  content: none !important;
}

#contact .confirm .form dl dd p {
  padding: 10px;
}

/*SP*/
@media only screen and (max-width: 768px) {
  #contact .form dl dt, #contact .form dl dd {
    width: 100%;
    margin-bottom: 10px;
  }

  #contact .outer_frame .text_center {
    font-size: 1em;
  }
}

p.company_name {
  line-height: 1em;
}

#case .outer_frame {
  margin-top: 50px;
}

#case .page_img {
  background: #e5e5e5;
  height: 360px;
}

#case .page_img .page_ttl {
  font-size: 4em;
}

#case #case_list {
  display: flex;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 60px auto;
  justify-content: space-between;
}

#case #case_list li {
  width: 30%;
  margin-bottom: 25px;
  background: #fff;
  padding: 15px;
  text-align: center;
  margin-bottom: 10px;
  border: #707070 solid 1px;
}

#case .blog_ttl {
  font-size: 1em;
  text-align: center;
  margin: 30px 0px 10px;
}

#case .blog_text {
  font-size: 13px;
}

#case .case_btn {
  background: #333;
  color: #fff;
  padding: 10px;
  text-align: center;
  border-radius: 20px;
  display: block;
  width: 12em;
  margin: 30px auto;
}

#case .case_btn:hover {
  opacity: .8;
}

/*SP*/
@media only screen and (max-width: 768px) {
  #case #case_list {
    padding: 10px;
  }

  #case .page_img .page_ttl {
    font-size: 2em;
  }

  #case .page_img {
    height: 200px;
  }

  #case #case_list li {
    width: 100%;
  }
}

#partners_container {
  width: 95%;
  margin: 0 auto;
}

#partners_container h2 {
  font-size: 35px;
  text-align: center;
  color: #0071c1;
  padding: 0 0 5px;
  margin: 30px auto;
  font-weight: bold;
}

@media screen and (max-width:768px) {
  #partners_container h2 {
    font-size: 28px;
  }
}

#partners_container h2 span {
  background: linear-gradient(transparent 96%, #0071c1 4%);
  padding: 0 0 5px;
}

#partners_container ul {
  list-style: none;
  display: flex;
  max-width: 700px;
  margin: 0 auto;
  padding: 15px 0;
  justify-content: center;
  gap: 30px;
}

@media screen and (max-width:768px) {
  #partners_container ul {
    display: block;

  }
}

#partners_container ul li {
  width: 50%;
  text-align: center;
}

@media screen and (max-width:768px) {
  #partners_container ul li {
    width: 100%;
    margin: 0 auto 15px;
    max-width: 420px;
    text-align: center;
  }
}

#partners_container ul li p {
  font-size: 14px;
  margin: 0 0 5px;
}

#partners_container ul li a {
  display: inline-block;
  width: 100%;
}

#partners_container ul li a img {
  width: 100%;
}

#cwp_banner {
  width: 95%;
  max-width: 460px;
  margin: 50px auto;
}

#cwp_banner a {
  display: inline-block;
  width: 100%;
}

#cwp_banner a img {
  width: 100%;
}

@media screen and (max-width:768px) {
  #cwp_banner {
    max-width: 420px;
  }
}