﻿@charset "UTF-8";
/*==============================================================

	1. base

================================================================*/
html,
body,
a,
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,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font: inherit;
  font-size: 100%;
  text-align: left;
  line-height: inherit;
  vertical-align: baseline;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  background: #fff;
  line-height: 1;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

form label,
form button {
  cursor: pointer;
}

img {
  vertical-align: bottom;
  border: none;
  max-width: 100%;
  height: auto;
}

video {
  border: none;
  max-width: 100%;
  height: auto;
}

iframe {
  border: none;
}

blockquote,
q {
  quotes: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  font-weight: normal;
  font-size: 100%;
}

input,
button,
textarea,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

textarea {
  resize: none;
}

input:focus,
button:focus,
textarea:focus,
select:focus {
  outline: none;
}

/*==============================================================

	2. common

================================================================*/
/*--------------------------------------------------------------
	■A.文字
--------------------------------------------------------------*/
body {
  background-color: #F4F4F4;
  margin: 0px auto;
  padding: 0px;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "游ゴシック Medium", YuGothic, YuGothicM, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  color: #000;
  line-height: 1.6;
}

strong {
  font-weight: 700;
}

h1,
h2 {
  font-family: "din condensed", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "游ゴシック Medium", YuGothic, YuGothicM, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

h3,
h4,
h5,
h6 {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "游ゴシック Medium", YuGothic, YuGothicM, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 300;
}

/*--------------------------------------------------------------
	■B.リンク
--------------------------------------------------------------*/
a {
  color: #000;
  outline: none;
  border-style: none;
  text-decoration: none;
  transition: all 0.1s ease 0s;
  -moz-transition: all 0.1s ease 0s;
  -webkit-transition: all 0.1s ease 0s;
  -o-transition: all 0.1s ease 0s;
  -ms-transition: all 0.1s ease 0s;
  cursor: pointer;
}

@media screen and (min-width: 641px) {
  a:hover {
    opacity: 0.8;
    transition: all 0.1s ease 0s;
    -moz-transition: all 0.1s ease 0s;
    -webkit-transition: all 0.1s ease 0s;
    -o-transition: all 0.1s ease 0s;
    -ms-transition: all 0.1s ease 0s;
  }
}

/*--------------------------------------------------------------
	■C.共通定義
--------------------------------------------------------------*/
.container {
  position: relative;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

@media screen and (min-width: 1081px) {
  .container {
    padding: 0px 10px 40px 10px;
  }
}

@media screen and (max-width: 1080px) and (min-width: 769px) {
  .container {
    padding: 0 80px;
  }
}

@media screen and (max-width: 768px) and (min-width: 641px) {
  .container {
    padding: 0 40px;
  }
}

@media screen and (max-width: 640px) {
  .container {
    padding: 0 5px;
  }
}

@media screen and (min-width: 769px) {
  .pc_none {
    display: none !important;
  }
}

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

@media screen and (max-width: 640px) {
  .sp_none {
    display: none !important;
  }
}

/*　ハンバーガーメニューボタン　*/
.hamburger {
  display : block;
  position: fixed;
  z-index : 3;
  right : 20px;
  top   : 20px;
  width : 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;
}
.hamburger span {
  display : block;
  position: absolute;
  width   : 30px;
  height  : 2px ;
  left    : 6px;
  background : #BBBBBB;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition   : 0.3s ease-in-out;
  transition        : 0.3s ease-in-out;
}
.hamburger span:nth-child(1) {
  top: 10px;
}
.hamburger span:nth-child(2) {
  top: 20px;
}
.hamburger span:nth-child(3) {
  top: 30px;
}

/* スマホメニューを開いてる時のボタン */
.hamburger.active span:nth-child(1) {
  top : 16px;
  left: 6px;
  background :#fff;
  -webkit-transform: rotate(-45deg);
  -moz-transform   : rotate(-45deg);
  transform        : rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 16px;
  background :#fff;
  -webkit-transform: rotate(45deg);
  -moz-transform   : rotate(45deg);
  transform        : rotate(45deg);
}

/* メニュー背景　*/
nav.globalMenuSp {
  position: fixed;
  z-index : 2;
  top  : 0;
  left : 0;
  color: #fff;
  background: rgb(188, 187, 190);
  text-align: center;
  width: 100%;
  display: none;
}

nav.globalMenuSp ul {
  margin: 0 auto;
  padding: 0;
  width: 100%;
}

nav.globalMenuSp ul li {
  list-style-type: none;
  padding: 0;
  width: 100%;
  transition: .4s all;
}
nav.globalMenuSp ul li:last-child {
  padding-bottom: 0;
}
nav.globalMenuSp ul li:hover{
  background :#ddd;
}

nav.globalMenuSp ul li a {
  display: block;
  color: #fff;
  padding: 1em 0;
  text-decoration :none;
}

/* クリックでjQueryで追加・削除 */
nav.globalMenuSp.active {
  display: block;
  padding:10px 100px 10px 100px;
}

.btn {
  overflow: hidden;
  position: relative;
  background-color: #F2F2F2;
  -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.4);
          box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.4);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 220px;
  color: #000;
  font-weight: 500;
  font-size: 14px;
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding: 0 40px;
  border-radius: 5px;
}

@media screen and (min-width: 769px) {
  .btn {
    height: 50px;
  }
}

@media screen and (max-width: 768px) {
  .btn {
    height: 60px;
    width: 240px;
  }
}

.btn i {
  position: absolute;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #000;
  z-index: 2;
}

.btn span {
  position: relative;
  z-index: 2;
}

.btn::after {
  -webkit-transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  content: ' ';
  background-color: #E12A43;
  position: absolute;
  top: -150%;
  left: -50%;
  width: 0;
  height: 400%;
  color: #fff;
}

.btn:hover {
  opacity: 0.5;
  color: #fff;
}

.btn:hover i {
  color: #fff;
}

.btn:hover::after {
  width: 200%;
}

.btn_w {
  -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.4);
          box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.4);
  overflow: hidden;
  position: relative;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 220px;
  color: #E12A43;
  font-weight: 600;
  padding: 0 40px;
  position: relative;
  border-radius: 5px;
  font-size: 14px;
}

@media screen and (min-width: 769px) {
  .btn_w {
    height: 50px;
  }
}

@media screen and (max-width: 768px) {
  .btn_w {
    height: 80px;
    font-size: 14px;
  }
}

.btn_w i {
  position: absolute;
  z-index: 2;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #E12A43;
}

.btn_w .fa-long-arrow-alt-left {
  position: absolute;
  z-index: 2;
  left: 15px;
}

.btn_w span {
  position: relative;
  z-index: 2;
}

.btn_w::after {
  -webkit-transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  content: ' ';
  background-color: #E12A43;
  position: absolute;
  top: -150%;
  left: -50%;
  width: 0;
  height: 400%;
}

.btn_w:hover {
  opacity: 1;
  color: #fff !important;
}

.btn_w:hover i {
  color: #fff;
}

.btn_w:hover::after {
  width: 200%;
}

.pager {
  margin: 0 auto 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.pager .btn_w {
  width: 95px;
  height: 48px;
  background-image: none;
  padding: 0 5px;
  margin: 0 20px;
}

.pager .btn_01 span {
  margin-left: 10px;
}

.pager .btn_02 span {
  margin-right: 10px;
}

.ggmap {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}

.ggmap iframe,
.ggmap object,
.ggmap embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.contact {
  background-color: #F4F4F4;
  position: relative;
}

.contact::before {
  content: "";
  display: block;
  height: 18vw;
  position: absolute;
  right: 0;
  left: 0;
  background-image: url(../images/naname/white_light.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.contact .container {
  padding: 350px 40px 100px 10%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .contact .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 240px 60px 0 60px;
  }
}

@media screen and (max-width: 640px) {
  .contact .container {
    padding: 60px 35px 0 35px;
  }
}

@media screen and (min-width: 769px) {
  .contact .container .contact_text {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin-right: 60px;
  }
}

@media screen and (max-width: 768px) {
  .contact .container .contact_text {
    width: 100%;
  }
}

.contact .container .contact_text h2 {
  margin-bottom: 20px;
}

@media screen and (max-width: 640px) {
  .contact .container .contact_text h2 {
    width: 243px;
  }
}

.contact .container .contact_text p {
  font-size: 16px;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .contact .container .contact_text p {
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 640px) {
  .contact .container .contact_text p {
    margin-top: 20px;
  }
}

.contact .container form {
  width: 100%;
}

.contact .container form .form {
  width: 100%;
}

.contact .container form .form .form_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  .contact .container form .form .form_item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: left;
        -ms-flex-align: left;
            align-items: left;
  }
}

.contact .container form .form .form_item_label {
  width: 180px;
  margin-right: 60px;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .contact .container form .form .form_item_label {
    width: 100%;
    margin: 0 60px;
  }
}

.contact .container form .form .form_item_input_box {
  width: 100%;
}

.contact .container form .form .form_item_input_box .form_item_input_e-mail {
  width: 100%;
  height: 40px;
  padding-left: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 8px;
  border: 1px solid #000;
}

.contact .container form .form .form_item_input_box .form_item_input_e-mail::-webkit-input-placeholder {
  color: #A8AFB5;
}

.contact .container form .form .form_item_input_box .form_item_input_e-mail:-ms-input-placeholder {
  color: #A8AFB5;
}

.contact .container form .form .form_item_input_box .form_item_input_e-mail::-ms-input-placeholder {
  color: #A8AFB5;
}

.contact .container form .form .form_item_input_box .form_item_input_e-mail::placeholder {
  color: #A8AFB5;
}

.contact .container form .form .form_item_pull {
  width: 100%;
  height: 40px;
  padding-left: 10px;
  padding-right: 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 8px;
  border: 1px solid #000;
  background-image: url("../images/common/arrow_b_down.png.png");
  background-repeat: no-repeat;
  background-position: right 20px top 17px;
  background-size: auto;
}

.contact .container form .form .form_item_pull.placeholder {
  color: #A8AFB5;
}

.contact .container form .form .form_item_pull option {
  color: #000;
}

.contact .container form .form .form_item .form_item_textarea {
  width: 100%;
  height: 100px;
  padding-left: 10px;
  padding-top: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 8px;
  border: 1px solid #000;
}

.contact .container form .form .form_item .form_item_textarea::-webkit-input-placeholder {
  color: #A8AFB5;
}

.contact .container form .form .form_item .form_item_textarea:-ms-input-placeholder {
  color: #A8AFB5;
}

.contact .container form .form .form_item .form_item_textarea::-ms-input-placeholder {
  color: #A8AFB5;
}

.contact .container form .form .form_item .form_item_textarea::placeholder {
  color: #A8AFB5;
}

.contact .container form .form .form_privacy {
  position: relative;
  margin-bottom: 40px;
}

.contact .container form .form .form_privacy a {
  text-decoration: underline;
}

.contact .container form .form .form_privacy_txt {
  position: absolute;
  top: 0;
  left: 1.8em;
}

.contact .container form .form input[type="submit"] {
  background-color: #E12A43;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 220px;
  color: #fff;
  font-weight: 600;
  padding: 0 40px;
  border-radius: 5px;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

@media screen and (min-width: 769px) {
  .contact .container form .form input[type="submit"] {
    height: 50px;
  }
}

@media screen and (max-width: 768px) {
  .contact .container form .form input[type="submit"] {
    height: 60px;
    font-size: 14px;
    margin: 0 auto;
  }
}

.contact .container form .form input[type="submit"]:hover {
  opacity: 0.8;
  transition: all 0.1s ease 0s;
  -moz-transition: all 0.1s ease 0s;
  -webkit-transition: all 0.1s ease 0s;
  -o-transition: all 0.1s ease 0s;
  -ms-transition: all 0.1s ease 0s;
}

.contact .container form .form input[type="button"] {
  margin-top: 20px;
  background-color: #A8AFB5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 220px;
  color: #000;
  font-weight: 600;
  padding: 0 40px;
  border-radius: 5px;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

@media screen and (min-width: 769px) {
  .contact .container form .form input[type="button"] {
    height: 50px;
  }
}

@media screen and (max-width: 768px) {
  .contact .container form .form input[type="button"] {
    height: 60px;
    font-size: 14px;
    margin: 0 auto;
  }
}

.contact .container form .form input[type="button"]:hover {
  opacity: 0.8;
  transition: all 0.1s ease 0s;
  -moz-transition: all 0.1s ease 0s;
  -webkit-transition: all 0.1s ease 0s;
  -o-transition: all 0.1s ease 0s;
  -ms-transition: all 0.1s ease 0s;
}

.contact.page::before {
  display: none;
}

.contact.page .container {
  padding: 200px 40px 100px 10%;
}

.contact .wpcf7-form .wpcf7-list-item {
  margin: 0;
}

.contact .wpcf7-form .wpcf7-list-item-label {
  display: none;
}

.contact .wpcf7-form .wpcf7-not-valid-tip {
  color: #E12A43;
}

.contact .wpcf7-form .ajax-loader {
  display: none;
}

.contact .wpcf7-form .wpcf7-response-output {
  padding: 0;
  border: none !important;
  margin: 0;
}

.contact .wpcf7-form .wpcf7c-conf {
  background-color: #DBDBDB;
}

.contact .mw_wp_form_input .submit {
  display: none;
}

.contact .mw_wp_form_input .error {
  background-color: transparent;
  color: #E12A43;
}

.contact .mw_wp_form_input .mwform-checkbox-field-text {
  display: none;
}

/*--------------------------------------------------------------
	■D.formパーツ補正
--------------------------------------------------------------*/
input[type="radio"] {
  -webkit-appearance: radio;
  -moz-appearance: radio;
  appearance: radio;
  width: auto;
  height: auto;
}

input[type="checkbox"] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
  appearance: checkbox;
  width: auto;
  height: auto;
}

/*--------------------------------------------------------------
	■E.ブレイクポイントで切り替わるもの
--------------------------------------------------------------*/
@media screen and (min-width: 769px) {
  .tb_br {
    display: none;
  }
}

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

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

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

/*==============================================================

	3. layout

================================================================*/
/*--------------------------------------------------------------
	header
--------------------------------------------------------------*/
/* .index .hd */
.top .hd {
  width: 100%;
  z-index: 99;
  position: relative;
  height: 100vh;
}

@media screen and (max-width: 768px) {
  .top .hd {
    background-color: #fff;
  }
}

@media screen and (max-width: 640px) {
  .top .hd {
    max-height: 667px;
  }
}

.top .hd .main_visual {
  width: 100%;
  position: relative;
}

@media screen and (min-width: 769px) {
  .top .hd .main_visual {
    height: calc(100vh - 100px);
  }
}

@media screen and (max-width: 768px) {
  .top .hd .main_visual {
    height: 90vh;
  }
}

@media screen and (max-width: 640px) {
  .top .hd .main_visual {
    max-height: 601px;
  }
}

.top .hd .main_visual .handshake {
  display: none;
  position: absolute;
  z-index: 3;
  left: 0;
  width: 100%;
  list-style: none;
}

@media screen and (min-width: 769px) {
  .top .hd .main_visual .handshake {
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    height: 75%;
  }
}

@media screen and (max-width: 768px) {
  .top .hd .main_visual .handshake {
    bottom: 16vh;
    height: 50%;
  }
}

@media screen and (max-width: 640px) {
  .top .hd .main_visual .handshake {
    height: 36%;
  }
}

.top .hd .main_visual .handshake li {
  height: 100%;
}

.top .hd .main_visual .handshake_inner {
  width: 55%;
  height: 100%;
  -webkit-box-shadow: 0 3px 16px 0 rgba(0, 0, 0, 0);
          box-shadow: 0 3px 16px 0 rgba(0, 0, 0, 0);
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}

@media screen and (max-width: 768px) {
  .top .hd .main_visual .handshake_inner {
    width: 90%;
  }
}

.top .hd .main_visual .handshake img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.top .hd .main_visual .active .handshake_inner {
  -webkit-box-shadow: 0 3px 16px 0 rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 16px 0 rgba(0, 0, 0, 0.16);
}

.top .hd .main_visual .n {
  position: absolute;
  z-index: 1;
  right: 0;
  background-color: #fff;
  background-image: url("../images/index/n.png");
  background-position: right center;
  background-size: auto 100%;
  background-repeat: no-repeat;
}

@media screen and (min-width: 769px) {
  .top .hd .main_visual .n {
    width: 75%;
    height: 75%;
    top: 0;
  }
}

@media screen and (max-width: 768px) {
  .top .hd .main_visual .n {
    width: 100%;
    height: 50%;
    top: 50px;
  }
}

.top .hd .main_visual .n img {
  -o-object-fit: cover;
     object-fit: cover;
}

.top .hd .main_visual .red {
  position: absolute;
  z-index: 0;
  bottom: 0;
  left: 0;
  background-color: #E12A43;
  height: 75vh;
}

@media screen and (max-width: 768px) {
  .top .hd .main_visual .red {
    bottom: 5vh;
  }
}

@media screen and (min-width: 641px) {
  .top .hd .main_visual .red {
    width: 70%;
  }
}

@media screen and (max-width: 640px) {
  .top .hd .main_visual .red {
    width: 95%;
    max-height: 500px;
  }
}

.top .hd .main_visual .black_box {
  position: absolute;
  z-index: 4;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 12px 40px 12px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #fff;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #000;
}

@media screen and (min-width: 769px) {
  .top .hd .main_visual .black_box {
    width: 40%;
    bottom: 6%;
  }
}

@media screen and (max-width: 768px) {
  .top .hd .main_visual .black_box {
    bottom: 0;
    width: 91.5%;
  }
}

.top .hd .main_visual .black_box_news {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.top .hd .main_visual .black_box_news img {
  margin-right: 20px;
  height: 20px;
  width: auto;
}

.top .hd .main_visual .black_box .text {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "游ゴシック Medium", YuGothic, YuGothicM, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 12px;
  overflow: hidden;
}

.top .hd .main_visual .black_box .text p {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.top .hd .main_visual .black_box .text a {
  color: #fff;
}

.top .hd .main_visual_text {
  display: none;
  position: absolute;
  z-index: 2;
  font-weight: 700;
  list-style: none;
  width: 100%;
  left: 0;
}

@media screen and (min-width: 769px) {
  .top .hd .main_visual_text {
    top: 25vh;
  }
  .top .hd .main_visual_text .large {
    font-size: 32px;
  }
  .top .hd .main_visual_text .small {
    font-size: 16px;
  }
  .top .hd .main_visual_text li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

@media screen and (max-width: 768px) {
  .top .hd .main_visual_text {
    top: 16%;
  }
  .top .hd .main_visual_text .large {
    font-size: 32px;
  }
  .top .hd .main_visual_text .small {
    font-size: 16px;
  }
}

@media screen and (max-width: 640px) {
  .top .hd .main_visual_text {
    font-size: 26px;
  }
  .top .hd .main_visual_text .large {
    font-size: 26px;
  }
  .top .hd .main_visual_text .small {
    font-size: 14px;
  }
}

@media screen and (min-width: 769px) {
  .top .hd .main_visual_text_inner {
    padding-right: 60px;
  }
}

@media screen and (max-width: 768px) {
  .top .hd .main_visual_text_inner {
    padding-left: 10vw;
  }
}

@media screen and (max-width: 640px) {
  .top .hd .main_visual_text_inner {
    padding-left: 25px;
  }
}

.top .hd .main_visual .main_visual_text_02 {
  right: 150px;
}

.top .hd .main_visual .main_visual_text_02 span {
  font-size: 1.2vw;
  line-height: 1.2;
}

.top .hd .global_navi {
  position: absolute;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #fff;
  padding-top: 30px;
  padding-right: auto;
  padding-left: auto;
  padding-bottom: 30px;
  max-width: none;
  width: 100%;
  height: 100px;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .top .hd .global_navi {
    height: 10vh;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    background-color: #F4F4F4;
  }
}

@media screen and (max-width: 640px) {
  .top .hd .global_navi {
    height: 10vh;
    max-height: 66px;
  }
}

.top .hd .global_navi h1 {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: 40px;
}

.top .hd .global_navi .hd_nav {
  width: 90%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 15px;
  position: relative;
}

.top .hd .global_navi ul {
  margin-left: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.top .hd .global_navi ul li {
  padding: 0 8px;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .top .hd .global_navi ul li {
    padding: 0 8px;
  }
}

.top .hd .global_navi ul li a:hover {
  opacity: 1;
  color: #E12A43;
}

@media screen and (max-width: 768px) {
  .top .hd .global_navi .text_ul {
    display: none;
  }
}

.top .hd .global_navi .icon_ul {
  margin-right: 32px;
}

@media screen and (max-width: 768px) {
  .top .hd .global_navi .icon_ul {
    position: absolute;
    right: 0;
  }
}

@media screen and (min-width: 769px) {
  .top .hd_btn {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .top .hd_btn {
    position: fixed;
    z-index: 999;
    top: 28px;
    right: 40px;
  }
}

@media screen and (max-width: 640px) {
  .top .hd_btn {
    right: 16px;
  }
}

.top .hd_bg {
  position: absolute;
  z-index: 0;
  width: 100%;
}

@media screen and (min-width: 769px) {
  .top .hd_bg {
    height: 100vh;
  }
}

@media screen and (max-width: 768px) {
  .top .hd_bg {
    height: 350px;
  }
}

.top .hd_bg .container {
  height: 100%;
}

.top .hd_bg_inner {
  background-color: #fff;
  height: 100%;
}

@media screen and (min-width: 769px) {
  .top .hd_bg_inner {
    margin-left: 95px;
  }
}

@media screen and (max-width: 768px) {
  .top .hd_bg_inner {
    margin-left: 64px;
  }
}

@media screen and (min-width: 769px) {
  #global_navi.fixed {
    left: 0;
    position: fixed;
    top: 0;
    z-index: 99;
  }
}

.underlayer .hd .global_navi {
  position: fixed;
  z-index: 99;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #fff;
  max-width: none;
  width: 100%;
  font-weight: 500;
}

@media screen and (min-width: 769px) {
  .underlayer .hd .global_navi {
    padding: 10px 0;
  }
}

@media screen and (max-width: 768px) {
  .underlayer .hd .global_navi {
    padding: 12px 0;
  }
}

.underlayer .hd .global_navi h1 {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: 40px;
}

.underlayer .hd .global_navi h1 img {
  width: 100%;
}

@media screen and (max-width: 768px){
  .underlayer .hd .global_navi h1 img {
  width: 184px;
  }
}


.underlayer .hd .global_navi .hd_nav {
  width: 90%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 15px;
}

@media screen and (max-width: 768px) {
  .underlayer .hd .global_navi .hd_nav {
    display: none;
  }
}

.underlayer .hd .global_navi .hd_nav ul {
  margin-left: 30px;
}

@media screen and (min-width: 769px) {
  .underlayer .hd .global_navi .hd_nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (min-width: 769px) {
  .underlayer .hd .global_navi .hd_nav ul li {
    padding: 0 15px;
  }
}

.underlayer .hd .global_navi .hd_nav ul li a {
  position: relative;
}

.underlayer .hd .global_navi .hd_nav ul li a:hover {
  opacity: 1;
  color: #E12A43;
}

.underlayer .hd .global_navi .hd_nav ul li a:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  width: 0px;
  height: 2px;
  margin: 0 auto;
}

.underlayer .hd .global_navi .hd_nav ul li a.active {
  color: #E12A43;
}

.underlayer .hd .global_navi .hd_nav ul li a.active:after {
  width: 100%;
  background-color: #E12A43;
  -webkit-transition: width 0.2s ease 0s;
  transition: width 0.2s ease 0s;
}

.underlayer .hd .global_navi .hd_nav .icon_ul {
  margin-right: 32px;
}

@media screen and (min-width: 769px) {
  .underlayer .hd .global_navi .hd_nav .icon_ul li {
    padding: 0 8px;
  }
}

@media screen and (min-width: 769px) {
  .underlayer .hd_btn {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .underlayer .hd_btn {
    position: fixed;
    z-index: 999;
    top: 28px;
    right: 40px;
  }
}

@media screen and (max-width: 640px) {
  .underlayer .hd_btn {
    right: 16px;
  }
}

.underlayer .hd_bg {
  position: absolute;
  z-index: 0;
  width: 100%;
}

@media screen and (min-width: 769px) {
  .underlayer .hd_bg {
    height: 100vh;
  }
}

@media screen and (max-width: 768px) {
  .underlayer .hd_bg {
    height: 350px;
  }
}

.underlayer .hd_bg .container {
  height: 100%;
}

.underlayer .hd_bg_inner {
  background-color: #fff;
  height: 100%;
}

@media screen and (min-width: 769px) {
  .underlayer .hd_bg_inner {
    margin-left: 95px;
  }
}

@media screen and (max-width: 768px) {
  .underlayer .hd_bg_inner {
    margin-left: 64px;
  }
}

.page_title {
  color: #fff;
  position: relative;
  overflow: hidden;
}

@media screen and (min-width: 769px) {
  .page_title {
    margin-top: 104px;
    padding-bottom: 15vw;
  }
}

@media screen and (max-width: 768px) {
  .page_title {
    margin-top: 70px;
    padding-bottom: 20vw;
  }
}

@media screen and (max-width: 640px) {
  .page_title {
    padding-bottom: 30vw;
  }
}

.page_title .container {
  padding-top: 60px;
}

@media screen and (max-width: 640px) {
  .page_title .container {
    padding-top: 0;
  }
}

.page_title .container h2 {
  position: relative;
}

@media screen and (min-width: 769px) {
  .page_title .container h2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}

.page_title .container h2:after {
  content: 'NewITについて';
  font-size: 16px;
  font-weight: 700;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "游ゴシック Medium", YuGothic, YuGothicM, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  display: block;
}

@media screen and (min-width: 769px) {
  .page_title .container h2:after {
    margin-left: 20px;
  }
}

@media screen and (max-width: 768px) {
  .page_title .container h2:after {
    margin-top: 10px;
  }
}

.page_title .container p {
  margin-top: 20px;
  font-weight: 400;
}

/* SPメニュー */
.hd_nav-sp {
  display: none;
}

@media screen and (min-width: 769px) {
  .hd_nav-sp {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .hd_nav-sp {
    position: fixed;
    z-index: 101;
    top: 0;
    left: 0;
    background-color: #fff;
    width: 100%;
  }
  .hd_nav-sp .text_ul {
    padding-top: 58px;
    padding-bottom: 40px;
  }
  .hd_nav-sp .text_ul li {
    text-align: center;
  }
  .hd_nav-sp .text_ul li a {
    position: relative;
    display: inline-block;
    padding: 12px 0;
  }
  .hd_nav-sp .text_ul li a:hover {
    opacity: 1;
    color: #E12A43;
  }
  .hd_nav-sp .text_ul li a:after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    width: 0px;
    height: 2px;
    margin: 0 auto;
  }
  .hd_nav-sp .text_ul li a.active {
    font-weight: 500;
    color: #E12A43;
  }
  .hd_nav-sp .text_ul li a.active:after {
    width: 100%;
    background-color: #E12A43;
  }
  .hd_nav-sp .icon_ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-bottom: 80px;
  }
  .hd_nav-sp .icon_ul li {
    padding: 0 7px;
  }
}

/* ハンバーガーメニュー */
.menu-trigger,
.menu-trigger span {
  display: inline-block;
  -webkit-transition: all .2s;
  transition: all .2s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.menu-trigger {
  position: relative;
  width: 24px;
  height: 17px;
}

.menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #000;
}

.menu-trigger span:nth-of-type(1) {
  top: 0;
}

.menu-trigger span:nth-of-type(2) {
  top: 7px;
}

.menu-trigger span:nth-of-type(3) {
  bottom: 0;
}

.menu-trigger.active span:nth-of-type(1) {
  -webkit-transform: translateY(7px) rotate(-45deg);
  transform: translateY(7px) rotate(-45deg);
}

.menu-trigger.active span:nth-of-type(2) {
  left: 50%;
  opacity: 0;
  -webkit-animation: active-menu-bar02 .6s forwards;
  animation: active-menu-bar02 .6s forwards;
}

@-webkit-keyframes active-menu-bar02 {
  100% {
    height: 0;
  }
}

@keyframes active-menu-bar02 {
  100% {
    height: 0;
  }
}

.menu-trigger.active span:nth-of-type(3) {
  -webkit-transform: translateY(-7px) rotate(45deg);
  transform: translateY(-7px) rotate(45deg);
}

/*--------------------------------------------------------------
	footer
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  .ft {
    background-color: #fff;
  }
}

/* ナビゲーション */
.ft .nav {
  padding: 0 40px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .ft .nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 40px;
    padding: 30px 40px 20px;
  }
}

@media screen and (max-width: 640px) {
  .ft .nav {
    padding: 30px 25px 20px;
  }
}

.ft .nav_text p {
  margin-bottom: 2px;
}

@media screen and (max-width: 768px) {
  .ft .nav_text p {
    margin-bottom: 0;
  }
}

.ft .nav_text .name {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 2px;
}

.ft .nav_contents {
  position: relative;
  height: 80px;
}

@media screen and (max-width: 768px) {
  .ft .nav_contents {
    margin-top: 30px;
    height: auto;
  }
}

.ft .nav_contents .nav_ul {
  font-size: 12px;
  margin-top: 5px;
  margin-bottom: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .ft .nav_contents .nav_ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.ft .nav_contents .nav_ul li {
  margin: 0 10px;
}

@media screen and (max-width: 768px) {
  .ft .nav_contents .nav_ul li {
    margin: 5px 0 0;
  }
  .ft .nav_contents .nav_ul li:nth-child(1) {
    margin: 0;
  }
}

.ft .nav_contents .icon_ul {
  position: absolute;
  bottom: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 768px) {
  .ft .nav_contents .icon_ul {
    bottom: 6px;
  }
}

.ft .nav_contents .icon_ul li {
  margin: 0 8px;
}

/* コピー */
.ft .copy {
  background-color: #000;
  color: #fff;
  height: 40px;
}

.ft .copy_txt {
  text-align: center;
  line-height: 40px;
}

@media screen and (min-width: 769px) {
  .ft .copy_txt {
    font-size: 10px;
  }
}

@media screen and (max-width: 768px) {
  .ft .copy_txt {
    font-size: 8px;
  }
}

.ft .copy_arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media screen and (min-width: 1081px) {
  .ft .copy_arrow {
    right: 120px;
  }
}

@media screen and (max-width: 1080px) and (min-width: 769px) {
  .ft .copy_arrow {
    right: 80px;
  }
}

@media screen and (max-width: 768px) and (min-width: 641px) {
  .ft .copy_arrow {
    right: 40px;
  }
}

@media screen and (max-width: 640px) {
  .ft .copy_arrow {
    right: 16px;
  }
}

.ft .copy_arrow img {
  width: 40px;
  height: 40px;
}

.gray_ft {
  padding-top: 30px;
}

.gray_ft .nav {
  background-color: #F4F4F4;
}

@media screen and (max-width: 768px) {
  .gray_ft .nav {
    margin-top: 0;
  }
}

/*--------------------------------------------------------------
	index
--------------------------------------------------------------*/
.index {
  position: relative;
  z-index: 1;
}

.index h2 {
  position: relative;
}

@media screen and (min-width: 769px) {
  .index h2 {
    margin-top: 60px;
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 768px) {
  .index h2 {
    margin-top: 40px;
    margin-bottom: 70px;
    height: 66px;
  }
  .index h2 img {
    width: auto;
    height: 66px;
    display: block;
  }
}

@media screen and (max-width: 768px) and (max-width: 768px) {
  .index h2 img {
    margin-bottom: 20px;
  }
}

.index h2::after {
  font-size: 16px;
  font-weight: 700;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "游ゴシック Medium", YuGothic, YuGothicM, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

@media screen and (min-width: 769px) {
  .index h2::after {
    margin-left: 20px;
    white-space: nowrap;
    position: absolute;
    left: auto;
    bottom: 0;
  }
}

@media screen and (max-width: 768px) {
  .index h2::after {
    white-space: pre;
  }
}

.index .section_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-left: 10%;
  padding-top: 100px;
}

@media screen and (max-width: 768px) {
  .index .section_box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    margin: 0 60px;
    padding-top: 60px;
  }
}

@media screen and (max-width: 640px) {
  .index .section_box {
    margin: 0 35px;
  }
}

.index .section_box .section_text {
  margin-right: -300px;
  z-index: 2;
}

@media screen and (max-width: 768px) {
  .index .section_box .section_text {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-right: 0;
  }
}

.index .section_box .section_text .introduce {
  font-size: 16px;
  margin-bottom: 30px;
}

.index .section_box .section_text .sub_title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
  .index .section_box .section_text .sub_title {
    font-size: 20px;
    margin-bottom: 20px;
  }
}

.index .section_box .section_text .white_box {
  position: relative;
  background-color: #fff;
  -webkit-box-shadow: 0 3px 23px 0 rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 23px 0 rgba(0, 0, 0, 0.16);
  padding: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px;
  height: 120px;
}

.index .section_box .section_text .white_box .number {
  margin-right: 40px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.index .section_box .section_text .white_box .text {
  font-size: 18px;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .index .section_box .section_text .white_box .text {
    font-size: 14px;
  }
}

.index .section_box .section_text .white_box:after {
  content: "";
  position: absolute;
  width: 0;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.16);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.index .section_box .section_text .white_box:hover {
  -webkit-box-shadow: 0 3px 23px 0 rgba(0, 0, 0, 0.3);
          box-shadow: 0 3px 23px 0 rgba(0, 0, 0, 0.3);
  cursor: pointer;
}

.index .section_box .section_text .white_box:hover:after {
  width: 100%;
}

.index .section_box .section_text .btn {
  margin-top: 40px;
  font-size: 14px;
}

@media screen and (max-width: 768px) {
  .index .section_box .section_text .btn {
    margin-top: 30px;
  }
}

.index .section_box .section_image {
  width: 70%;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .index .section_box .section_image {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 100%;
    margin: 0 auto;
  }
}

.index .section_box .section_image img {
  width: 100%;
}

@media screen and (min-width: 769px) {
  .about h2 {
    margin-top: 0;
  }
}

.about h2::after {
  content: 'NewITについて';
}

.index .section_box_02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 100px;
  margin-right: 10%;
}

@media screen and (max-width: 768px) {
  .index .section_box_02 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    margin: 0 60px;
    padding-top: 60px;
  }
}

@media screen and (max-width: 640px) {
  .index .section_box_02 {
    margin: 0 25px;
    padding-top: 0;
  }
}

.index .section_box_02 .section_image {
  width: 70%;
  z-index: 1;
  margin-top: 60px;
}

@media screen and (max-width: 768px) {
  .index .section_box_02 .section_image {
    width: 100%;
  }
}

.index .section_box_02 .section_image img {
  width: 100%;
}

.index .section_box_02 .section_text {
  margin-left: -300px;
  z-index: 2;
}

@media screen and (max-width: 768px) {
  .index .section_box_02 .section_text {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-left: 0;
    margin-top: 40px;
  }
}

@media screen and (max-width: 640px) {
  .index .section_box_02 .section_text {
    margin-top: 0;
  }
}

.index .section_box_02 .section_text .introduce {
  font-size: 16px;
  margin-bottom: 30px;
}

.index .section_box_02 .section_text .white_box {
  position: relative;
  background-color: #fff;
  -webkit-box-shadow: 0 3px 23px 0 rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 23px 0 rgba(0, 0, 0, 0.16);
  padding: 15px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px;
  width: 450px;
}

@media screen and (max-width: 768px) {
  .index .section_box_02 .section_text .white_box {
    padding: 10px 20px;
    width: 100%;
    height: 60px;
  }
}

@media screen and (max-width: 768px) {
  .index .section_box_02 .section_text .white_box .number {
    margin-bottom: 20px;
  }
}

.index .section_box_02 .section_text .white_box img {
  margin-right: 30px;
}

.index .section_box_02 .section_text .white_box .text {
  font-size: 18px;
  font-weight: 700;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.index .section_box_02 .section_text .white_box:after {
  content: "";
  position: absolute;
  width: 0;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.16);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.index .section_box_02 .section_text .white_box:hover {
  -webkit-box-shadow: 0 3px 23px 0 rgba(0, 0, 0, 0.3);
          box-shadow: 0 3px 23px 0 rgba(0, 0, 0, 0.3);
  cursor: pointer;
}

.index .section_box_02 .section_text .white_box:hover .text {
  letter-spacing: 2px;
}

.index .section_box_02 .section_text .white_box:hover:after {
  width: 100%;
}

.index .section_box_02 .section_text .btn {
  margin-top: 40px;
}

@media screen and (max-width: 768px) {
  .index .section_box_02 .section_text .btn {
    margin-top: 30px;
  }
}

.index .service h2 {
  font-size: 100%;
}

@media screen and (min-width: 769px) {
  .index .service h2 {
    margin-top: 0;
  }
}

.index .service h2::after {
  content: 'サービス';
}

.index .solutions {
  position: relative;
}

@media screen and (max-width: 640px) {
  .index .solutions {
    padding-bottom: 60px;
  }
}

@media screen and (min-width: 769px) {
  .index .solutions .section_text h2 {
    margin-top: 0;
  }
}

.index .solutions .section_text h2::after {
  content: 'ソリューション';
}

.index .solutions .section_text .white_box {
  position: relative;
  width: 420px;
}

@media screen and (max-width: 768px) {
  .index .solutions .section_text .white_box {
    width: 100%;
  }
}

.index .solutions .section_text .white_box .solutions_inner {
  width: 100%;
}

.index .solutions .section_text .white_box .solutions_text {
  font-size: 22px;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "游ゴシック Medium", YuGothic, YuGothicM, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

@media screen and (max-width: 768px) {
  .index .solutions .section_text .white_box .solutions_text {
    margin-top: 0;
  }
}

@media screen and (max-width: 640px) {
  .index .solutions .section_text .white_box .solutions_text {
    font-size: 20px;
    margin-top: 10px;
  }
}

.index .solutions .section_text .white_box .solutions_text span {
  border: 1px solid #000;
  display: inline-block;
  margin-left: 1em;
  padding: 0.1em 0.3em;
  position: relative;
  bottom: 0.2em;
}

@media screen and (min-width: 641px) {
  .index .solutions .section_text .white_box .solutions_text span {
    font-size: 12px;
  }
}

@media screen and (max-width: 640px) {
  .index .solutions .section_text .white_box .solutions_text span {
    font-size: 9px;
  }
}

.index .solutions .section_text .white_box .solutions_text_02 {
  font-size: 14px;
  font-weight: 300;
}

@media screen and (max-width: 768px) {
  .index .solutions .section_text .white_box .solutions_text_02 {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 640px) {
  .index .solutions .section_text .white_box .solutions_text_02 {
    font-size: 11px;
    margin-bottom: 10px;
  }
}

.index .solutions .section_text .white_box:after {
  content: "";
  position: absolute;
  width: 0;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.16);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.index .solutions .section_text .white_box:hover {
  -webkit-box-shadow: 0 3px 23px 0 rgba(0, 0, 0, 0.3);
          box-shadow: 0 3px 23px 0 rgba(0, 0, 0, 0.3);
  cursor: pointer;
}

.index .solutions .section_text .white_box:hover .solutions_text {
  letter-spacing: 2px;
}

.index .solutions .section_text .white_box:hover:after {
  width: 100%;
}

.index .solutions .section_image_02 {
  width: 70%;
  margin-top: 120px;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .index .solutions .section_image_02 {
    width: 100%;
    margin-top: 0;
  }
}

.index .solutions .section_image_02 img {
  width: 100%;
}

.index .work_wrapper {
  overflow: hidden;
  background-color: #DBDBDB;
  position: relative;
}

.index .work_wrapper::before {
  content: "";
  display: block;
  height: 18vw;
  position: absolute;
  right: 0;
  left: 0;
  background-image: url(../images/naname/light_dark.png);
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: -1px;
}

.index .work_wrapper .work {
  padding: 400px 0 150px;
}

@media screen and (max-width: 768px) {
  .index .work_wrapper .work {
    padding: 200px 0 80px;
  }
}

@media screen and (max-width: 640px) {
  .index .work_wrapper .work {
    padding: 80px 0 60px;
  }
}

.index .work_wrapper .work_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 10%;
  margin-right: 40px;
}

@media screen and (max-width: 768px) {
  .index .work_wrapper .work_box {
    display: block;
    margin-left: 60px;
    margin-right: 60px;
  }
}

@media screen and (max-width: 640px) {
  .index .work_wrapper .work_box {
    margin-left: 35px;
    margin-right: 35px;
  }
}

@media screen and (min-width: 769px) {
  .index .work_wrapper .work_box_text h2 {
    margin-top: 0;
  }
}

.index .work_wrapper .work_box_text h2::after {
  content: '実績';
}

.index .work_wrapper .work_box_text p {
  font-size: 16px;
  margin-bottom: 40px;
}

.index .work_wrapper .work_box_img {
  margin-left: 50px;
  /*カルーセル*/
}

@media screen and (min-width: 769px) {
  .index .work_wrapper .work_box_img {
    padding-right: 40px;
    width: calc(100% - 400px);
  }
}

@media screen and (max-width: 768px) {
  .index .work_wrapper .work_box_img {
    margin-left: 0;
    margin-bottom: 40px;
  }
}

.index .work_wrapper .work_box_img ul a {
  display: block;
}

.index .work_wrapper .work_box_img ul .work_img {
  background-color: #fff;
  width: 100%;
  padding: 30px 30px 20px;
  text-align: center;
}

@media screen and (min-width: 769px) {
  .index .work_wrapper .work_box_img ul .work_img {
    width: 460px;
  }
}

.index .work_wrapper .work_box_img ul .work_img img {
  display: block;
  margin: 0 auto;
  margin-bottom: 10px;
  max-width: 100%;
  width: auto;
  height: auto;
}

.index .work_wrapper .work_box_img ul .work_img p {
  font-size: 12px;
  text-align: center;
}

.index .work_wrapper .work_box_img .owl-nav button {
  width: 28px;
  height: 28px;
  color: transparent;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.index .work_wrapper .work_box_img .owl-nav .owl-prev {
  background-image: url("../images/common/pager_icon.png");
  left: -14px;
}

.index .work_wrapper .work_box_img .owl-nav .owl-next {
  background-image: url("../images/common/pager_icon_02.png");
  right: -14px;
}

.index .new {
  padding: 0 15% 0 10%;
  background-color: #F4F4F4;
  position: relative;
}

@media screen and (max-width: 768px) {
  .index .new {
    padding: 0;
  }
}

@media screen and (max-width: 640px) {
  .index .new {
    padding-bottom: 60px;
  }
}

.index .new::before {
  content: "";
  display: block;
  height: 18vw;
  position: absolute;
  right: 0;
  left: 0;
  background-image: url(../images/naname/dark_white.png);
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: -1px;
}

.index .new_wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 200px;
}

@media screen and (max-width: 768px) {
  .index .new_wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0 60px;
  }
}

@media screen and (max-width: 640px) {
  .index .new_wrapper {
    margin: 0 35px;
    padding-top: 60px;
  }
}

.index .new_wrapper_img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (min-width: 769px) {
  .index .new_wrapper_img {
    width: 60%;
  }
}

@media screen and (max-width: 768px) {
  .index .new_wrapper_img {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    padding-bottom: 20px;
  }
}

@media screen and (min-width: 769px) {
  .index .new_wrapper_img_box {
    margin: 25px 0 0 0;
  }
  .index .new_wrapper_img_box:nth-child(1) {
    margin: 0;
  }
}

@media screen and (max-width: 768px) {
  .index .new_wrapper_img_box {
    margin: 0 0 20px 0;
  }
}

.index .new_wrapper_img_box a {
  display: block;
}

.index .new_wrapper_img_box img {
  width: 100%;
  margin-bottom: 5px;
}

@media screen and (max-width: 768px) {
  .index .new_wrapper_img_box img {
    margin-bottom: 20px;
  }
}

.index .new_wrapper_img_box .title {
  font-weight: 700;
  margin-bottom: 5px;
}

@media screen and (max-width: 768px) {
  .index .new_wrapper_img_box .title {
    margin-bottom: 10px;
  }
}

.index .new_wrapper_img_box .text {
  font-size: 12px;
}

@media screen and (max-width: 768px) {
  .index .new_wrapper_img .btn {
    margin-top: 20px;
  }
}

.index .new_wrapper_text {
  margin-bottom: 6px;
}

@media screen and (min-width: 769px) {
  .index .new_wrapper_text {
    width: 30%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

@media screen and (max-width: 768px) {
  .index .new_wrapper_text {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 100%;
  }
}

@media screen and (min-width: 769px) {
  .index .new_wrapper_text h2 {
    margin-top: 0;
  }
}

.index .new_wrapper_text h2::after {
  content: 'お知らせ';
}

.index .new_wrapper_text p {
  font-size: 16px;
  margin-bottom: 40px;
}

/*--------------------------------------------------------------
	company
--------------------------------------------------------------*/
.company {
  position: relative;
  z-index: 1;
}

.company h2 {
  font-size: 120px;
  font-weight: 700;
  line-height: 1;
}

@media screen and (max-width: 640px) {
  .company h2 {
    width: 182px;
  }
}

.company h3::after {
  font-weight: 700;
}

@media screen and (min-width: 769px) {
  .company h3::after {
    margin-left: 20px;
  }
}

@media screen and (max-width: 768px) {
  .company h3::after {
    margin-top: 20px;
    display: block;
  }
}

.company .page_title {
  background-image: url(../images/naname/red.png);
  background-position: bottom left;
  background-repeat: no-repeat;
  background-color: #E12A43;
}

.company .introduce {
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-top: 90px;
}

@media screen and (max-width: 768px) {
  .company .introduce {
    padding-bottom: 0px;
    padding-right: 60px;
    padding-left: 60px;
  }
}

@media screen and (max-width: 640px) {
  .company .introduce {
    padding-right: 35px;
    padding-left: 35px;
  }
}

.company .introduce_title {
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
  padding-left: 140px;
  padding-right: 140px;
}

@media screen and (max-width: 768px) {
  .company .introduce_title {
    text-align: center;
    font-size: 20px;
    padding-left: 0px;
    padding-right: 0px;
  }
}

.company .introduce .introduce_number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .company .introduce .introduce_number {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.company .introduce .introduce_number .white_box {
  background-color: #fff;
  -webkit-box-shadow: 0 3px 23px 0 #DBDBDB;
          box-shadow: 0 3px 23px 0 #DBDBDB;
  padding: 10px 10px 10px 20px;
  margin-bottom: 40px;
  width: 47%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 768px) {
  .company .introduce .introduce_number .white_box {
    width: 100% !important;
    margin-left: 0px !important;
    margin-right: 0px !important;
  }
}

.company .introduce .introduce_number .white_box .white_box_contants {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
}

@media screen and (max-width: 640px) {
  .company .introduce .introduce_number .white_box .white_box_contants {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.company .introduce .introduce_number .white_box .white_box_contants .number {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 40px;
}

@media screen and (max-width: 640px) {
  .company .introduce .introduce_number .white_box .white_box_contants .number {
    margin-right: 10px;
  }
}

.company .introduce .introduce_number .white_box .white_box_contants .text {
  font-size: 18px;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .company .introduce .introduce_number .white_box .white_box_contants .text {
    font-size: 14px;
  }
}

@media screen and (max-width: 640px) {
  .company .introduce .introduce_number .white_box .white_box_contants .text {
    margin-top: 0;
  }
}

.company .introduce .introduce_sentence p {
  margin-bottom: 30px;
}

.company .profile {
  background-color: #fff;
  position: relative;
}

.company .profile::before {
  content: "";
  display: block;
  height: 18vw;
  position: absolute;
  right: 0;
  left: 0;
  background-repeat: no-repeat;
  background-size: cover;
}

.company .profile .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (min-width: 769px) {
  .company .profile .container {
  }
}

@media screen and (max-width: 768px) {
  .company .profile .container {
    padding-top: 150px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: unset;
        -ms-flex-align: unset;
            align-items: unset;
    padding-bottom: 60px;
    padding-right: 60px;
    padding-left: 60px;
  }
}

@media screen and (max-width: 640px) {
  .company .profile .container {
    padding-top: 25px;
    padding-right: 35px;
    padding-left: 35px;
  }
}

.company .profile .container table {
  width: 60%;
  margin-top: 40px;
  font-size: 16px;
}

@media screen and (max-width: 768px) {
  .company .profile .container table {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 100%;
  }
}

.company .profile .container table tr {
  width: 100%;
  border-top: solid 1px #000;
  border-bottom: solid 1px #000;
}

.company .profile .container table tr th {
  width: 80%;
  padding: 5px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  vertical-align: middle;
}

.company .profile .container table tr td {
  width: 20%;
  padding: 5px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  .company .profile .container h3 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

.company .member {
  padding-bottom: 60px;
  position: relative;
}

.company .member::before {
  content: "";
  display: block;
  height: 18vw;
  position: absolute;
  right: 0;
  left: 0;
  background-image: url(../images/naname/white_light.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.company .member .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (min-width: 769px) {
  .company .member .container {
    padding-top: 300px;
  }
}

@media screen and (max-width: 768px) {
  .company .member .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: unset;
        -ms-flex-align: unset;
            align-items: unset;
    padding-top: 200px;
    padding-right: 60px;
    padding-left: 60px;
  }
}

@media screen and (max-width: 640px) {
  .company .member .container {
    padding-top: 100px;
    padding-right: 35px;
    padding-left: 35px;
  }
}

.company .member .container .member_text {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.company .member .container .member_text h3:after {
  content: '役員紹介';
}

.company .member .container .member_img_first {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-bottom: 50px;
}

@media screen and (max-width: 768px) {
  .company .member .container .member_img_first {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: unset;
        -ms-flex-align: unset;
            align-items: unset;
    margin-bottom: 0;
  }
}

.company .member .container .member_img_first .member_box {
  margin-left: 25px;
  text-align: center;
  width: 200px;
  font-size: 10px;
}

@media screen and (max-width: 768px) {
  .company .member .container .member_img_first .member_box {
    margin: 40px auto 0;
  }
}

.company .member .container .member_img_first .member_box img {
  margin-bottom: 15px;
}

.company .member .container .member_img_first .member_box .name {
  font-size: 20px;
  font-weight: 700;
  /* margin-bottom: 10px; */
  text-align: center;
}

.company .member .container .member_img_first .member_box .name_kana {
  font-size: 10px;
  text-align: center;
}

.company .member .container .member_img_first .member_box .part {
  margin-top: 10px;
  font-size: 14px;
  text-align: center;
}

.company .access {
  background-color: #fff;
  padding-top: 60px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .company .access {
    padding-bottom: 30px;
  }
}

.company .access::before {
  content: "";
  display: block;
  height: 18vw;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  background-image: url(../images/naname/light_white.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.company .access .access_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 120px;
}

@media screen and (max-width: 768px) {
  .company .access .access_box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: unset;
        -ms-flex-align: unset;
            align-items: unset;
    padding-top: 100px;
  }
}

@media screen and (max-width: 640px) {
  .company .access .access_box {
    padding-top: 60px;
  }
}

.company .access .access_box iframe {
  width: 60%;
  margin-right: 100px;
}

@media screen and (max-width: 768px) {
  .company .access .access_box iframe {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 88%;
    margin: 40px auto;
  }
}

@media screen and (max-width: 768px) {
  .company .access .access_box .access_text {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin: 0 60px;
  }
}

@media screen and (max-width: 640px) {
  .company .access .access_box .access_text {
    margin: 0 35px;
  }
}

.company .access .access_box .access_text h3 {
  margin-bottom: 30px;
}

.company .access .access_box .access_text h3:after {
  content: 'アクセス';
}

.company .access .access_box .access_text .number::before {
  content: url(../images/company/access_icon.png);
  display: inline-block;
  width: 14px;
  height: 22px;
  position: relative;
  bottom: -4px;
  margin-right: 4px;
}

/*--------------------------------------------------------------
	service
--------------------------------------------------------------*/
.service {
  position: relative;
  z-index: 1;
}

.service h2 {
  font-size: 120px;
  font-weight: 700;
  line-height: 1;
}

.service h3 {
  font-size: 70px;
  font-family: "din condensed", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "游ゴシック Medium", YuGothic, YuGothicM, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  line-height: 1;
}

.service .page_title {
  background-image: url(../images/naname/red.png);
  background-position: bottom left;
  background-repeat: no-repeat;
  background-color: #E12A43;
}

.service .page_title h2:after {
  content: 'サービス';
}

.service .vietnam {
  padding-top: 120px;
  margin-top: 0px;
}
.service .apli, .system {
  padding-top: 0px;
  margin-top: 0px;
}

@media screen and (max-width: 768px) {
  .service .apli, .system, .vietnam {
    padding-bottom: 80px;
  }
}

@media screen and (max-width: 640px) {
  .service .apli, .system, .vietnam {
    padding-right: 10px;
    padding-left: 10px;
  }
}

.service .apli .white_box, .system .white_box, .vietnam .white_box {
  background-color: #fff;
  -webkit-box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.2);
  padding: 15px 20px;
  margin: 0 auto 40px;
  width: 80%;
}

@media screen and (max-width: 768px) {
  .service .apli .white_box, .system .white_box, .vietnam .white_box {
    margin: 0 auto 30px;
    width: 100%;
  }
}

.service .apli .white_box_content, .system .white_box_content, .vietnam .white_box_content {
  text-align: center;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.service .apli .white_box_content img, .system .white_box_content img, .vietnam .white_box_content img {
  margin-right: 20px;
}

.service .apli .white_box_content .text, .system .white_box_content .text, .vietnam .white_box_content .text {
  font-size: 22px;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .service .apli .white_box_content .text, .system .white_box_content .text, .vietnam .white_box_content .text {
    font-size: 17px;
  }
}

.service .apli .section_sentence, .system .section_sentence, .vietnam .section_sentence {
  font-size: 17px;
  text-align: center;
  font-weight: 500;
  margin-bottom: 5px;
  padding-left: 140px;
  padding-right: 140px;
}

@media screen and (max-width: 768px) {
  .service .apli .section_sentence, .system .section_sentence, .vietnam .section_sentence {
    font-size: 16px;
    margin-bottom: 0;
    padding-left: 20px;
    padding-right: 20px;
  }
}

.service .apli .section_circle, .system .section_circle, .vietnam .section_circle {
  margin: 0 auto;
  width: 100%;
  max-width: 800px;
}

@media screen and (min-width: 769px) {
  .service .apli .section_circle, .system .section_circle, .vietnam .section_circle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.service .apli .section_circle_box, .system .section_circle_box, .vietnam .section_circle_box {
  text-align: center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

@media screen and (min-width: 769px) {
  .service .apli .section_circle_box, .system .section_circle_box, .vietnam .section_circle_box {
    width: 33.33%;
  }
}

@media screen and (max-width: 768px) {
  .service .apli .section_circle_box, .system .section_circle_box, .vietnam .section_circle_box {
    width: 100%;
    margin-top: 40px;
  }
}

.service .apli .section_circle_box .number, .system .section_circle_box .number, .vietnam .section_circle_box .number {
  font-size: 80px;
  font-family: "din condensed", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "游ゴシック Medium", YuGothic, YuGothicM, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  padding: 0;
}

.service .apli .section_circle_box img, .system .section_circle_box img, .vietnam .section_circle_box img {
  margin-bottom: 20px;
}

.service .apli .section_circle_box img.one, .system .section_circle_box img.one, .vietnam .section_circle_box img.one {
  position: relative;
  left: -4px;
}

.service .apli .section_circle_box .sentence, .system .section_circle_box .sentence, .vietnam .section_circle_box .sentence {
  text-align: center;
  padding-left: 40px;
  padding-right: 40px;
}

.service .apli .section_circle_box .sentence_02, .system .section_circle_box .sentence_02, .vietnam .section_circle_box .sentence_02 {
  margin-top: 20px;
}

.service .skill {
  position: relative;
}

.service .skill::before {
  content: "";
  display: block;
  height: 18vw;
  position: absolute;
  right: 0;
  left: 0;
  background-repeat: no-repeat;
  background-size: cover;
}

.service .skill .container {
  padding-top: 120px;
  width: 80%;
  background: white;
}

@media screen and (max-width: 768px) {
  .service .skill .container {
    padding-bottom: 0;
    width: 100%;
    background: white;
  }
}

@media screen and (max-width: 768px) {
  .service .skill .container {
    padding: 70px 10px 20px 10px;
  }
}

.service .skill .container h3 {
  margin-bottom: 50px;
}

@media screen and (max-width: 768px) {
  .service .skill .container h3 {
    margin-bottom: 0;
  }
}

.service .skill .container h3:after {
  font-size: 16px;
  font-weight: 700;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "游ゴシック Medium", YuGothic, YuGothicM, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  margin-left: 20px;
}

@media screen and (max-width: 768px) {
  .service .skill .container h3:after {
    white-space: pre;
    position: relative;
    top: -20px;
  }
}

@media screen and (max-width: 640px) {
  .service .skill .container h3:after {
    top: -25px;
  }
}

.service .skill .container .skill_box {
  display: grid;
  grid-template-columns: repeat(5, 20%);
  row-gap: 20px;
}

@media screen and (max-width: 768px) {
  .service .skill .container .skill_box {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.service .skill .container .skill_box img {
  height: auto;
  width: auto;
  margin: auto;
}

.service .skill .container .feedback-slider-item {
	position: relative;
	padding: 60px 10px 30px 10px;
	margin-top: -40px;
}

.service .skill .container .item-name {
  font-size: 34px;
  font-family: "din condensed", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "游ゴシック Medium", YuGothic, YuGothicM, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  line-height: 1;
  margin-top: 25px;
  margin-bottom: 30px;
}

.service .skill .container .feedback-slider-item:after {
	content: "";
	position: absolute;
	left: 20px;
	right: 20px;
	bottom: 10px;
	top: 103px;
	border-radius: 10px;
  -webkit-box-shadow: 0 3px 20px 0 rgb(0 0 0 / 20%);
  box-shadow: 0 3px 20px 0 rgb(0 0 0 / 20%);
	z-index: -1;
}

.service .skill .container .customer-feedback .owl-nav {
  position: absolute;
  top: calc(50% + 14px);
  width: 100%;
}


.service .skill .container .customer-feedback .owl-nav [class*="owl-"] {
  width: 30px;
  height: 30px;
}

.service .skill .container .customer-feedback .owl-nav [class*="owl-"] {
	position: absolute;
	transition: all 0.2s ease-in;
}

.service .skill .container .customer-feedback .owl-nav i {
	background-color: transparent;
	color: #E12A43;
	font-size: 25px;
}

.service .skill .container .customer-feedback .owl-prev {
	left: -20px;
}

.service .skill .container .customer-feedback .owl-next {
	right: -20px;
}

/* DOTS */
.service .skill .container .customer-feedback .owl-dots {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
}
.service .skill .container .customer-feedback .owl-dot {
	display: inline-block;
}

.service .skill .container .customer-feedback .owl-dots .owl-dot span {
	width: 11px;
	height: 11px;
	margin: 0 5px;
	background: #fff;
	border: 1px solid #E12A43;
	display: block;
	-webkit-backface-visibility: visible;
	-webkit-transition: all 200ms ease;
	transition: all 200ms ease;
	border-radius: 50%;
}

.service .skill .container .customer-feedback .owl-dots .owl-dot.active span {
	background-color: #E12A43;
}

@media screen and (max-width: 767px) {
	.service .skill .container .feedback-slider-item:after {
		left: 30px;
		right: 30px;
	}
	.service .skill .container .customer-feedback .owl-nav [class*="owl-"] {
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		bottom: auto;
	}
	.service .skill .container .customer-feedback .owl-prev {
		left: 0;
	}
	.service .skill .container .customer-feedback .owl-next {
		right: 0;
	}
  .service .skill .container .skill_box {
    display: flex;
    grid-template-columns: repeat(1, 100%);
    row-gap: 20px;
  }
}

/*--------------------------------------------------------------
	solution
--------------------------------------------------------------*/
.solution {
  position: relative;
  z-index: 1;
}

.solution h2 {
  font-size: 120px;
  font-weight: 700;
  line-height: 1;
}

.solution h3 {
  font-size: 70px;
  font-family: "din condensed", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "游ゴシック Medium", YuGothic, YuGothicM, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  line-height: 1;
}

.solution .page_title {
  background-image: url(../images/naname/red.png);
  background-position: bottom left;
  background-repeat: no-repeat;
  background-color: #E12A43;
}

.solution .page_title h2:after {
  content: 'ソリューション';
}

.solution .introduce {
  padding-top: 120px;
  margin-top: -80px;
  padding-bottom: 60px;
}

@media screen and (max-width: 768px) {
  .solution .introduce {
    padding: 0 60px 20px;
  }
}

@media screen and (max-width: 640px) {
  .solution .introduce {
    padding-right: 35px;
    padding-left: 35px;
  }
}

.solution .introduce_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .solution .introduce_wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.solution .introduce_wrapper_box {
  background-color: #fff;
  -webkit-box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.2);
  width: 30%;
  padding: 30px 50px 20px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .solution .introduce_wrapper_box {
    width: 100%;
    margin-bottom: 40px;
  }
}

.solution .introduce_wrapper_box .introduce_title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}

.solution .introduce_wrapper_box .introduce_title span {
  border: 1px solid #000;
  display: inline-block;
  padding: 0.1em 0.3em;
  position: relative;
  bottom: 0.2em;
}

@media screen and (min-width: 641px) {
  .solution .introduce_wrapper_box .introduce_title span {
    font-size: 12px;
  }
}

@media screen and (max-width: 640px) {
  .solution .introduce_wrapper_box .introduce_title span {
    font-size: 9px;
  }
}

.solution .introduce_wrapper_box .line_red {
  width: 100%;
  height: 3px;
  margin-bottom: 20px;
}

.solution .introduce_wrapper_box .text {
  margin-bottom: 20px;
  text-align: center;
}

.solution .detail {
  background-color: #fff;
  padding-bottom: 60px;
  position: relative;
}

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

@media screen and (max-width: 640px) {
  .solution .detail {
    padding-right: 10px;
    padding-left: 10px;
    padding-bottom: 1px;
  }
}

.solution .detail::before {
  content: "";
  display: block;
  height: 18vw;
  position: absolute;
  right: 0;
  left: 0;
  background-repeat: no-repeat;
  background-size: cover;
}

.solution .detail_box {
  padding-top: 240px;
}

@media screen and (max-width: 640px) {
  .solution .detail_box {
    padding-top: 120px;
  }
}

.solution .detail_box .white_box p {
  width: 600px;
  -webkit-box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.2);
  padding: 15px 20px;
  margin: 0 auto 40px;
  text-align: center;
  vertical-align: middle;
  font-size: 22px;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .solution .detail_box .white_box p {
    width: 100%;
  }
}

.solution .detail_box .white_box p .text {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 300;
  text-align: center;
  display: block;
}

.solution .detail_box .white_box p .label {
  border: 1px solid #000;
  display: inline-block;
  margin-left: 1em;
  padding: 0.1em 0.3em;
  position: relative;
  bottom: 0.2em;
}

@media screen and (min-width: 641px) {
  .solution .detail_box .white_box p .label {
    font-size: 12px;
  }
}

@media screen and (max-width: 640px) {
  .solution .detail_box .white_box p .label {
    font-size: 9px;
  }
}

.solution .detail_box .detail_sentence {
  margin-bottom: 40px;
}

.solution .detail_box .detail_schedule {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 50px;
}

@media screen and (max-width: 768px) {
  .solution .detail_box .detail_schedule {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.solution .detail_box .detail_schedule .box {
  background-color: #DBDBDB;
  -webkit-box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.1);
  padding: 5px 10px;
  font-weight: 600;
  border-radius: 5px;
}

@media screen and (max-width: 768px) {
  .solution .detail_box .detail_schedule .box {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
    font-size: 17px;
    padding: 10px 10px;
  }
}

@media screen and (max-width: 768px) {
  .solution .detail_box .detail_schedule img {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 768px) {
  .solution .detail_box .detail_schedule .framework {
    width: 100%;
    text-align: center;
  }
}

.solution .detail_box .detail_schedule .framework_title {
  margin-bottom: 10px;
  text-align: center;
  font-weight: 600;
}

@media screen and (max-width: 768px) {
  .solution .detail_box .detail_schedule .framework_title {
    font-size: 17px;
  }
}

.solution .detail_box .detail_schedule .framework .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .solution .detail_box .detail_schedule .framework .box {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
}

.solution .detail_box .detail_schedule .framework .box_mini_first {
  margin-bottom: 10px;
}

.solution .detail_box .detail_schedule .framework .box_mini_second {
  background-color: #E12A43;
  padding: 10px;
  color: #fff;
  width: 60px;
  text-align: center;
  margin: 10px auto;
  border-radius: 4px;
}

@media screen and (max-width: 768px) {
  .solution .detail_box .detail_schedule .framework .box_mini_second {
    width: auto;
  }
}

.solution .detail_box .detail_schedule .framework .box_mini_left {
  margin-right: 10px;
}

.solution .detail_box .detail_schedule .box_black {
  background-color: #000;
  color: #fff;
}

.solution .detail_box .detail_benefit .text_01 {
  font-family: "din condensed", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "游ゴシック Medium", YuGothic, YuGothicM, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 30px;
  font-weight: 700;
  text-align: center;
}

.solution .detail_box .detail_benefit .text_02 {
  font-size: 18px;
  text-align: center;
  margin-bottom: 30px;
  font-weight: 600;
}

.solution .detail_box .detail_circle {
  width: 100%;
  margin: 0 auto;
}

@media screen and (min-width: 769px) {
  .solution .detail_box .detail_circle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.solution .detail_box .detail_circle_box {
  text-align: center;
  height: 310px;
  background-image: url(../images/solution/circle_02.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  padding-top: 60px;
  padding-left: 20px;
  position: relative;
  left: -20px;
}

@media screen and (min-width: 769px) {
  .solution .detail_box .detail_circle_box {
    width: 33.33%;
  }
}

@media screen and (max-width: 768px) {
  .solution .detail_box .detail_circle_box {
    margin-bottom: 40px;
    width: 100%;
  }
}

.solution .detail_box .detail_circle_box_title {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 30px;
}

.solution .detail_box .detail_circle_box .sentence {
  text-align: center;
}

/*--------------------------------------------------------------
	works
--------------------------------------------------------------*/
.works {
  position: relative;
  z-index: 1;
  background-color: #fff;
  background-image: url(../images/works/bg_img.png);
  background-repeat: no-repeat;
}

@media screen and (min-width: 769px) {
  .works {
    background-position: right 40px top 50vw;
    background-size: 487px 672px;
  }
}

@media screen and (max-width: 768px) {
  .works {
    background-position: right 40px top 800px;
    background-size: 70%;
  }
}

@media screen and (max-width: 640px) {
  .works {
    background-position: right 40px top 700px;
  }
}

.works h2 {
  font-size: 120px;
  font-weight: 700;
  line-height: 1;
}

.works h3 {
  font-size: 70px;
  font-family: "din condensed", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "游ゴシック Medium", YuGothic, YuGothicM, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  line-height: 1;
}

.works .page_title {
  background-image: url(../images/naname/works.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom left;
}

.works .page_title h2:after {
  content: '実績';
}

.works .category {
  padding-bottom: 30px;
}

@media screen and (max-width: 768px) {
  .works .category {
    padding-right: 60px;
    padding-left: 60px;
  }
}

@media screen and (max-width: 640px) {
  .works .category {
    padding-right: 35px;
    padding-left: 35px;
  }
}

.works .category p {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .works .category p {
    font-size: 20px;
  }
}

.works .category_btn {
  margin: 0 auto;
  font-size: 16px;
  font-weight: 700;
}

@media screen and (min-width: 769px) {
  .works .category_btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 752px;
  }
}

@media screen and (max-width: 768px) {
  .works .category_btn {
    width: 100%;
  }
}

.works .category_btn .btn_red {
  color: #fff;
  background-color: #E12A43;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 15px;
  -webkit-box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.2);
  margin-bottom: 30px;
}

@media screen and (min-width: 769px) {
  .works .category_btn .btn_red {
    width: 148px;
    height: 50px;
    margin-left: 20px;
    margin-right: 20px;
  }
}

@media screen and (max-width: 768px) {
  .works .category_btn .btn_red {
    width: 100%;
    height: 60px;
  }
}

.works .category_btn .btn_w {
  text-align: center;
  padding: 0 15px;
  background-image: none;
  border-radius: 0;
  -webkit-box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.2);
  margin-bottom: 30px;
}

@media screen and (min-width: 769px) {
  .works .category_btn .btn_w {
    width: 148px;
    margin-left: 20px;
    margin-right: 20px;
  }
}

@media screen and (max-width: 768px) {
  .works .category_btn .btn_w {
    width: 100%;
    height: 60px;
  }
}

@media screen and (max-width: 768px) {
  .works .screen {
    padding-right: 60px;
    padding-left: 60px;
  }
}

@media screen and (max-width: 640px) {
  .works .screen {
    padding-right: 35px;
    padding-left: 35px;
  }
}

.works .screen_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 300px;
}

@media screen and (max-width: 768px) {
  .works .screen_wrapper {
    margin-bottom: 0;
    display: block;
  }
}

.works .screen_wrapper_box {
  height: 440px;
  background-color: #fff;
  width: 47%;
  padding: 70px;
  position: relative;
  margin-bottom: 150px;
  border-radius: 5px;
  -webkit-box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 768px) {
  .works .screen_wrapper_box {
    width: 100%;
    margin-bottom: 80px;
  }
}

@media screen and (max-width: 640px) {
  .works .screen_wrapper_box {
    padding: 70px 20px;
    height: 400px;
  }
}

.works .screen_wrapper_box .icon {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.works .screen_wrapper_box .icon span {
  display: block;
  background-color: #E12A43;
  color: #fff;
  padding: 0 16px;
  height: 20px;
  line-height: 20px;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  margin-left: 10px;
}

.works .screen_wrapper_box .icon span:nth-child(1) {
  margin-left: 0;
  border-top-left-radius: 5px;
}

.works .screen_wrapper_box .screen_client {
  position: absolute;
  bottom: -30px;
  left: 0;
  background-color: #000;
  width: 85%;
  height: 70px;
  color: #fff;
  padding-left: 30px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #000;
  padding-left: 30px;
  padding-top: 12px;
  font-size: 12px;
  font-weight: 300;
  background-image: url("../images/works/arrow_white.png");
  background-repeat: no-repeat;
  background-position: right 15px center;
  -webkit-box-shadow: 0 2px 8px gray;
          box-shadow: 0 2px 8px gray;
}

.works .screen_wrapper_box .screen_client span {
  font-weight: 700;
  font-size: 14px;
  padding-bottom: 3px;
  border-bottom: 1px solid #fff;
}

@media screen and (max-width: 768px) {
  .works .screen_wrapper_box img {
    margin: 0 auto;
    display: block;
    vertical-align: middle;
  }
}

.works .screen_wrapper_box:nth-child(even) {
  position: relative;
  top: 300px;
  right: 0;
}

@media screen and (max-width: 768px) {
  .works .screen_wrapper_box:nth-child(even) {
    top: 0;
  }
}

/*--------------------------------------------------------------
	works_detail
--------------------------------------------------------------*/
.works_detail {
  position: relative;
  z-index: 1;
  background-color: #fff;
}

.works_detail h2 {
  font-size: 120px;
  font-weight: 700;
  line-height: 1;
}

.works_detail h3 {
  font-size: 70px;
  font-family: "din condensed", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "游ゴシック Medium", YuGothic, YuGothicM, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  line-height: 1;
}

.works_detail .page_title {
  background-image: url(../images/naname/works.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom left;
}

.works_detail .page_title h2:after {
  content: '実績';
}

.works_detail .article {
  padding-top: 60px;
  padding-bottom: 60px;
}

@media screen and (min-width: 769px) {
  .works_detail .article {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

@media screen and (max-width: 768px) {
  .works_detail .article {
    padding-right: 60px;
    padding-left: 60px;
  }
}

@media screen and (max-width: 640px) {
  .works_detail .article {
    padding-right: 35px;
    padding-left: 35px;
  }
}

.works_detail .article_img {
  width: 60%;
  -webkit-box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.2);
  text-align: center;
  padding: 40px 80px;
  vertical-align: middle;
}

@media screen and (max-width: 768px) {
  .works_detail .article_img {
    width: 100%;
  }
}

@media screen and (max-width: 640px) {
  .works_detail .article_img {
    padding: 70px 20px;
  }
}

.works_detail .article_img img {
  text-align: center;
  width: 100%;
  vertical-align: middle;
}

.works_detail .article_text {
  width: 30%;
}

@media screen and (max-width: 768px) {
  .works_detail .article_text {
    width: 100%;
    margin-top: 30px;
  }
}

.works_detail .article_text .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
}

.works_detail .article_text .icon span {
  display: block;
  background-color: #E12A43;
  color: #fff;
  padding: 0 16px;
  height: 20px;
  line-height: 20px;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  margin-left: 10px;
}

.works_detail .article_text .icon span:nth-child(1) {
  margin-left: 0;
}

.works_detail .article_text .article_title {
  font-size: 18px;
  margin-bottom: 20px;
}

.works_detail .article_text .client {
  font-weight: 700;
  margin-bottom: 10px;
}

.works_detail .article_text .sentence p {
  margin-top: 10px;
}

.works_detail .article_text .sentence ul {
  margin: 15px 0;
  padding-left: 1.2rem;
  list-style: disc;
}

.works_detail .article_text .sentence ol {
  margin: 15px 0;
  padding-left: 1.2rem;
  list-style: decimal;
}

.works_detail .article_text .sentence a {
  text-decoration: underline;
}

.works_detail .article_text .sentence blockquote {
  margin: 15px 0;
  background-color: #F4F4F4;
  padding: 5px 15px 15px;
  font-style: italic;
}

.works_detail .pager {
  margin: 0 auto 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 230px;
}

.works_detail .pager .btn {
  width: 95px;
  height: 48px;
  background-color: #fff;
  color: #E12A43;
  background-image: none;
  font-size: 16px;
  font-weight: 700;
}

.works_detail .pager .btn_prev::before {
  content: url(../images/works/pager_icon.png);
  margin-right: 10px;
  margin-top: 6px;
}

.works_detail .pager .btn_next::after {
  content: url(../images/works/pager_icon_02.png);
  margin-left: 10px;
  margin-top: 6px;
}

/*--------------------------------------------------------------
	news_detail
--------------------------------------------------------------*/
.news_detail {
  position: relative;
  z-index: 1;
  background-color: #fff;
}

.news_detail h2 {
  font-size: 120px;
  font-weight: 700;
  line-height: 1;
}

.news_detail h3 {
  font-size: 70px;
  font-family: "din condensed", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "游ゴシック Medium", YuGothic, YuGothicM, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  line-height: 1;
}

.news_detail .page_title {
  color: #fff;
  background-image: url(../images/naname/news.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom left;
}

.news_detail .page_title h2:after {
  content: 'お知らせ';
}

.news_detail .article {
  margin-top: 60px;
  margin-bottom: 60px;
}

@media screen and (max-width: 768px) {
  .news_detail .article {
    padding-right: 60px;
    padding-left: 60px;
  }
}

@media screen and (max-width: 640px) {
  .news_detail .article {
    padding-right: 35px;
    padding-left: 35px;
  }
}

.news_detail .article_text .article_title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}

.news_detail .article_text .article_detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 20px;
}

.news_detail .article_text .article_detail .date {
  font-size: 12px;
}

.news_detail .article_text .article_detail .button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /*WP ULike*/
}

.news_detail .article_text .article_detail .button .heart {
  font-weight: 700;
  color: #E12A43;
}

.news_detail .article_text .article_detail .button .heart img {
  margin-right: 4px;
  margin-bottom: 3px;
}

.news_detail .article_text .article_detail .button .share {
  width: 50px;
  height: 20px;
  background-color: #000;
  color: #fff;
  text-align: center;
  line-height: 20px;
  font-size: 10px;
  border-radius: 5px;
  margin-left: 10px;
  font-weight: 700;
}

.news_detail .article_text .article_detail .button .wpulike {
  margin: 0;
  padding: 0;
}

.news_detail .article_text .article_detail .button .wpulike-heart .wp_ulike_general_class {
  padding: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  display: block;
}

.news_detail .article_text .article_detail .button .wp_ulike_btn {
  width: 16px;
  height: 14px;
  padding: 0;
}

.news_detail .article_text .article_detail .button .wp_ulike_btn::after {
  width: 16px;
  height: 14px;
  background-size: contain;
  background-repeat: no-repeat;
}

.news_detail .article_text .article_detail .button .wpulike-heart .wp_ulike_put_image.wp_ulike_btn_is_active::after {
  -webkit-filter: none;
          filter: none;
}

.news_detail .article_text .article_detail .button .wpulike-heart .count-box {
  line-height: normal;
  padding: 0 0 0 4px;
  color: #E12A43;
}

.news_detail .article_text .sentence p {
  margin-top: 10px;
}

.news_detail .article_text .sentence ul {
  margin: 15px 0;
  padding-left: 1.2rem;
  list-style: disc;
}

.news_detail .article_text .sentence ol {
  margin: 15px 0;
  padding-left: 1.2rem;
  list-style: decimal;
}

.news_detail .article_text .sentence a {
  text-decoration: underline;
}

.news_detail .article_text .sentence blockquote {
  margin: 15px 0;
  background-color: #F4F4F4;
  padding: 5px 15px 15px;
  font-style: italic;
}

/*--------------------------------------------------------------
	news_02
--------------------------------------------------------------*/
.news_02 {
  position: relative;
  z-index: 1;
  background-color: #fff;
}

.news_02 h2 {
  font-size: 120px;
  font-weight: 700;
  line-height: 1;
}

.news_02 .page_title {
  color: #fff;
  background-image: url(../images/naname/news.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom left;
}

.news_02 .page_title h2:after {
  content: 'お知らせ';
}

.news_02 .news_list {
  margin-bottom: 80px;
}

@media screen and (max-width: 768px) {
  .news_02 .news_list {
    padding-right: 60px;
    padding-left: 60px;
  }
}

@media screen and (max-width: 640px) {
  .news_02 .news_list {
    padding-right: 35px;
    padding-left: 35px;
    margin-bottom: 30px;
  }
}

.news_02 .news_list .news_list_title {
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 50px;
  text-align: center;
}

@media screen and (min-width: 769px) {
  .news_02 .news_list .news_list_title {
    font-size: 22px;
  }
}

@media screen and (max-width: 768px) {
  .news_02 .news_list .news_list_title {
    font-size: 20px;
  }
}

.news_02 .news_list .news_list_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (max-width: 768px) {
  .news_02 .news_list .news_list_wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.news_02 .news_list .news_list_wrapper_box {
  margin-bottom: 50px;
}

@media screen and (min-width: 769px) {
  .news_02 .news_list .news_list_wrapper_box {
    width: 45%;
  }
}

@media screen and (max-width: 768px) {
  .news_02 .news_list .news_list_wrapper_box {
    width: 100%;
  }
}

.news_02 .news_list .news_list_wrapper_box .list_title {
  font-weight: 700;
  margin-bottom: 10px;
}

.news_02 .news_list .news_list_wrapper_box .date {
  font-size: 12px;
  margin-bottom: 10px;
}

.news_02 .news_list .news_list_wrapper_box .sentence {
  font-size: 12px;
  margin-bottom: 20px;
  height: 3.2em;
  overflow: hidden;
}

.news_02 .news_list .news_list_wrapper_box .sentence p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.news_02 .news_list .news_list_wrapper_box .btn {
  width: 180px;
}

@media screen and (max-width: 768px) {
  .news_02 .news_list .news_list_wrapper_box .btn {
    margin: 0 auto;
  }
}

/*--------------------------------------------------------------
	contacts
--------------------------------------------------------------*/
.contacts {
  position: relative;
  z-index: 1;
  background-color: #fff;
}

.contacts h2 {
  font-size: 120px;
  font-weight: 700;
  line-height: 1;
}

.contacts h3 {
  font-size: 70px;
  font-family: "din condensed", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "游ゴシック Medium", YuGothic, YuGothicM, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  line-height: 1;
}

.contacts .page_title {
  color: #000;
  background-image: url(../images/naname/contact.png);
  background-position: bottom left;
  background-repeat: no-repeat;
  background-color: #F4F4F4;
  padding-bottom: 25vw;
}

.contacts .page_title h2:after {
  content: 'お問い合わせ';
}

@media screen and (min-width: 769px) {
  .contacts .content {
    padding-bottom: 100px;
  }
}

@media screen and (max-width: 768px) {
  .contacts .content {
    padding-top: 60px;
    padding-right: 60px;
    padding-left: 60px;
    padding-bottom: 100px;
  }
}

@media screen and (max-width: 640px) {
  .contacts .content {
    padding-right: 35px;
    padding-left: 35px;
    padding-top: 0;
    padding-bottom: 50px;
  }
}

.contacts .content_message {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 50px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .contacts .content_message {
    font-size: 20px;
    margin-bottom: 30px;
  }
}

.contacts .content .form {
  margin: 0 auto;
  max-width: 800px;
  border-radius: 5px;
  -webkit-box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.16);
}

@media screen and (min-width: 769px) {
  .contacts .content .form {
    padding: 80px 90px;
  }
}

@media screen and (max-width: 768px) {
  .contacts .content .form {
    padding: 30px 20px;
  }
}

@media screen and (min-width: 769px) {
  .contacts .content .form_item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 60px;
  }
}

@media screen and (max-width: 768px) {
  .contacts .content .form_item {
    margin-top: 20px;
  }
}

.contacts .content .form_item:nth-child(1) {
  margin-top: 0;
}

.contacts .content .form_item_label {
  font-weight: 500;
}

@media screen and (min-width: 769px) {
  .contacts .content .form_item_label {
    width: 160px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

.contacts .content .form_item_box {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .contacts .content .form_item_box {
    margin-top: 0;
  }
}

.contacts .content .form_privacy {
  display: none;
}

.contacts .content .submit {
  margin: 40px auto 0;
  background-color: #E12A43;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 220px;
  color: #fff;
  font-weight: 600;
  padding: 0 40px;
  border-radius: 5px;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.contacts .content .cancel{
  margin: auto;
  opacity: 0.8;
}

@media screen and (min-width: 769px) {
  .contacts .content .submit,
  .contacts .content .cancel {
    height: 50px;
  }
}

@media screen and (max-width: 768px) {
  .contacts .content .submit,
  .contacts .content .cancel {
    height: 60px;
    font-size: 14px;
  }
}

.contacts .content .submit:hover {
  opacity: 0.8;
  transition: all 0.1s ease 0s;
  -moz-transition: all 0.1s ease 0s;
  -webkit-transition: all 0.1s ease 0s;
  -o-transition: all 0.1s ease 0s;
  -ms-transition: all 0.1s ease 0s;
}
.contacts .content .cancel:hover {
  color: #000;
}

@media screen and (min-width: 769px) {
  .contacts + .ft {
    padding-top: 40px;
  }
}

@media screen and (max-width: 768px) {
  .contacts + .ft {
    padding-top: 30px;
    background-color: #F4F4F4;
  }
}

@media screen and (max-width: 768px) {
  .contacts + .ft .nav {
    margin-top: 0;
  }
}

/*--------------------------------------------------------------
	thanks
--------------------------------------------------------------*/
.thanks {
  position: relative;
  z-index: 1;
  background-color: #fff;
}

.thanks h2 {
  font-size: 120px;
  font-weight: 700;
  line-height: 1;
}

.thanks h3 {
  font-size: 70px;
  font-family: "din condensed", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "游ゴシック Medium", YuGothic, YuGothicM, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  line-height: 1;
}

.thanks .page_title {
  color: #000;
  background-image: url(../images/naname/contact.png);
  background-position: bottom left;
  background-repeat: no-repeat;
}

.thanks .page_title h2:after {
  content: 'お問い合わせ';
}

.thanks .content {
  padding-bottom: 130px;
}

@media screen and (max-width: 640px) {
  .thanks .content {
    padding-bottom: 30px;
  }
}

.thanks .content .text_01 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .thanks .content .text_01 {
    font-size: 20px;
  }
}

.thanks .content .text_02 {
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 20px;
}

@media screen and (max-width: 640px) {
  .thanks .content .text_02 {
    margin-bottom: 30px;
  }
}

.thanks .content .text_03 {
  text-align: center;
  margin-bottom: 80px;
}

@media screen and (max-width: 640px) {
  .thanks .content .text_03 {
    margin-bottom: 30px;
  }
}

.thanks .content .btn {
  margin: 0 auto;
  background-color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 220px;
  color: #fff;
  font-weight: 600;
  padding: 0 40px;
  border-radius: 5px;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

@media screen and (min-width: 769px) {
  .thanks .content .btn {
    height: 50px;
  }
}

@media screen and (max-width: 768px) {
  .thanks .content .btn {
    height: 60px;
    font-size: 14px;
  }
}

@media screen and (min-width: 769px) {
  .thanks + .ft {
    padding-top: 40px;
  }
}

@media screen and (max-width: 768px) {
  .thanks + .ft {
    padding-top: 30px;
    background-color: #F4F4F4;
  }
}

@media screen and (max-width: 768px) {
  .thanks + .ft .nav {
    margin-top: 0;
  }
}

/*--------------------------------------------------------------
	error
--------------------------------------------------------------*/
.error {
  position: relative;
  z-index: 1;
  background-color: #fff;
}

.error h2 {
  font-size: 120px;
  font-weight: 700;
  line-height: 1;
}

.error h3 {
  font-size: 70px;
  font-family: "din condensed", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "游ゴシック Medium", YuGothic, YuGothicM, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  line-height: 1;
}

.error .page_title {
  color: #fff;
  background-image: url(../images/naname/404.png);
  background-position: bottom left;
  background-repeat: no-repeat;
  background-color: #6F6F6F;
  padding-bottom: 25vw;
}

.error .page_title h2:after {
  content: '404エラー';
}

.error .content {
  padding-bottom: 130px;
}

@media screen and (max-width: 640px) {
  .error .content {
    padding-bottom: 30px;
  }
}

.error .content .text_01 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 80px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .error .content .text_01 {
    font-size: 20px;
  }
}

.error .content .btn {
  margin: 0 auto;
  background-color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 220px;
  color: #fff;
  font-weight: 600;
  padding: 0 40px;
  border-radius: 5px;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

@media screen and (min-width: 769px) {
  .error .content .btn {
    height: 50px;
  }
}

@media screen and (max-width: 768px) {
  .error .content .btn {
    height: 60px;
    font-size: 14px;
  }
}

.error .content .btn i {
  color: #fff;
}

@media screen and (min-width: 769px) {
  .error + .ft {
    padding-top: 40px;
  }
}

@media screen and (max-width: 768px) {
  .error + .ft {
    padding-top: 30px;
    background-color: #F4F4F4;
  }
}

@media screen and (max-width: 768px) {
  .error + .ft .nav {
    margin-top: 0;
  }
}

/*--------------------------------------------------------------
	load
--------------------------------------------------------------*/
/* TOP */
#load-top {
  position: fixed;
  z-index: 9998;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  top: 0;
  left: 100%;
  display: block;
  -webkit-transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) 2.2s;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) 2.2s;
}

#load-top::after {
  content: ' ';
  position: absolute;
  z-index: 2;
  width: 0;
  height: 100%;
  background-color: #E12A43;
  top: 0;
  left: 0;
  -webkit-transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) 1.8s;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) 1.8s;
}

#load-top .logo {
  position: fixed;
  z-index: 1;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

#load-top .logo img {
  width: auto;
}

@media screen and (min-width: 769px) {
  #load-top .logo img {
    height: 56px;
  }
}

@media screen and (max-width: 768px) {
  #load-top .logo img {
    height: 48px;
  }
}

@media screen and (max-width: 640px) {
  #load-top .logo img {
    height: 36px;
  }
}

#load-top .logo::after {
  content: ' ';
  position: absolute;
  top: 0;
  right: 0;
  background-color: #fff;
  z-index: 1;
  width: 0;
  height: 100%;
  -webkit-transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

#load-top .logo.is-slide::after {
  width: 100%;
}

#load-top.is-slide {
  left: 0;
}

#load-top.over::after {
  width: 100%;
}

/* TOP以外 */
#load {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 9998;
  pointer-events: none;
  left: 100%;
  -webkit-transition: left 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: left 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

#load.is-slide {
  left: 0;
}

/* 画面遷移 */
#transition {
  content: '';
  position: fixed;
  top: 0;
  width: 100%;
  height: 100vh;
  background-color: #E12A43;
  z-index: 9998;
  pointer-events: none;
  right: 100%;
  -webkit-transition: right 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: right 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

#transition::after {
  content: ' ';
  position: fixed;
  height: 100vh;
  width: 100%;
  top: 0;
  background-color: #fff;
  z-index: 9999;
  pointer-events: none;
  right: 100%;
  -webkit-transition: right 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) 0.4s;
  transition: right 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) 0.4s;
}

#transition.is-slide-in {
  right: 0;
}

#transition.is-slide-in::after {
  right: 0;
}

.rowpolicy {
  padding: 5px 5px 5px 30px;
}
.Fontpolicy{
	font-size:7px;
}

.ft .nav .nav_contents a {
  color: white;
}

.ft .nav .nav_contents a:link, .ft .nav .nav_contents a:visited, .ft .nav .nav_contents a:hover, .ft .nav .nav_contents a:active {
  color: white;
}

/*# sourceMappingURL=style.css.map */