@charset "UTF-8";

/* normalize, 変数(for Sass) */

/*===========
 Basic color
===========*/

/*===========
 main color for this site.
===========*/

/*===========
 etc color for this site.
===========*/

/*===========
 un use
===========*/

@-webkit-keyframes topanimation {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(1) !important;
    transform: scale(1) !important;
  }
}

@keyframes topanimation {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(1) !important;
    transform: scale(1) !important;
  }
}

html {
  font-family: sans-serif;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  margin: 0;
  letter-spacing: 0.05em;
  background-color: #e0e4e6 !important;
}

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

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden],
template {
  display: none;
}

a {
  background-color: transparent;
}

a:active,
a:hover {
  outline: 0;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b,
strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

mark {
  background: #ff0;
  color: #000;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 1em 40px;
}

hr {
  box-sizing: content-box;
  height: 0;
}

pre {
  overflow: auto;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

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

td,
th {
  padding: 0;
}

@font-face {
  font-family: "CONDENSEicon";
  src: url(../fonts/CONDENSEicon.eot) format("eot"), url(../fonts/CONDENSEicon.woff) format("woff"), url(../fonts/CONDENSEicon.ttf) format("truetype"), url(../fonts/CONDENSEicon.otf) format("opentype");
}

/* mixin(for Sass) */

/* ベースの要素スタイル */

html {
  box-sizing: border-box;
}

*,
*:before,
*:after {
  /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
  box-sizing: border-box;
}

body {
  background: #ffffff;
  /* Fallback for when there is no custom background color defined. */
}

blockquote,
q {
  quotes: "" "";
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
}

hr {
  background-color: #ccc;
  border: 0;
  height: 1px;
  margin-bottom: 1.5em;
}

img {
  display: inline-block;
  height: auto;
  /* Make sure images are scaled correctly. */
  max-width: 100%;
  /* Adhere to container width. */
  width: 100%;
  vertical-align: middle;
}

figure {
  margin: 1em 0;
  /* Extra wide images within figure tags don't overflow the content area. */
}

/*===================================
module flexbox
====================================*/

.flex-col-sp {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.flex-col-sp_2 > li {
  width: calc(50% - 5px);
}

.flex-col-sp_2_nmargin > li {
  width: 50%;
}

a {
  color: #000000;
  text-decoration: underline;
}

a:hover,
a:focus,
a:active {
  color: #000000;
}

a:focus {
  outline: none;
}

a:hover,
a:active {
  outline: 0;
}

a:hover {
  opacity: 0.6;
}

.link-arrow {
  position: relative;
}

.link-arrow::after {
  margin-left: 5px;
  font-family: "Font Awesome 5 Free";
  content: "\f105";
  display: inline-block;
  font-weight: bold;
}

.link-arrow__left::before {
  content: "▶";
  display: inline-block;
  margin-right: 5px;
  font-size: 12px;
  color: #3ead6d;
}

.link--green {
  color: #3ead6d;
}

.link--green:visited {
  color: #3ead6d;
}

.link--gold {
  color: #836900 !important;
  font-weight: bold;
}

/* ========================
hoverで横線が出てくるやつ
==========================*/

.c-viewlinks {
  margin: 30px 0 0 0;
  text-align: center;
}

.viewlinks {
  display: inline-block;
  position: relative;
  overflow: hidden;
  padding-bottom: 5px;
  font-size: 14px;
}

.viewlinks::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 1px;
  background: linear-gradient(-90deg, #9ed9ed, #d592ff, #ff9993);
  position: absolute;
  left: -100%;
  bottom: 0;
  transition: all 0.2s ease;
}

.viewlinks::after {
  margin-left: 10px;
}

.viewlinks:hover::before {
  left: 0;
}

.js-hover:hover {
  opacity: 1;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
  margin: 0;
  padding: 0;
}

ol > li {
  counter-increment: number;
  position: relative;
}

ol > li:before {
  content: counter(number) ".";
  display: block;
  margin-left: -1em;
  position: absolute;
  top: 0;
  left: 0;
}

dl {
  margin: 0;
}

dl dd {
  margin: 0;
}

ol.numlist {
  padding-left: 1.5em;
}

.dot_list li {
  margin-bottom: 11px;
  position: relative;
  padding-left: 18px;
}

.dot_list li:before {
  content: "・";
  display: inline-block;
  position: absolute;
  top: 0px;
  left: 0px;
}

.orange_point:before {
  content: "-" !important;
  font-weight: bold;
  color: #e8380d;
}

table {
  margin: 0 0 1em;
  table-layout: fixed;
  text-align: center;
  vertical-align: middle;
  width: 100%;
}

th {
  font-weight: normal;
}

.table {
  margin-top: 20px;
  border: 1px solid #f2f2f2;
  text-align: center;
}

.table dl dt {
  background-color: #f7f8f8;
  padding: 10px;
}

.table dl dd {
  padding: 10px;
}

.table--default {
  margin: 0;
}

.table--default dl {
  line-height: 1.8;
}

.table .table-list > li {
  margin-top: 10px;
}

.table .table-list > li:first-child {
  margin-top: 0;
}

.table .table-note {
  display: block;
  position: relative;
  font-size: 10px;
}

.table .table-note::before {
  content: "※";
  display: inline-block;
}

.table-ordered > li {
  width: 100%;
  display: table;
  margin-bottom: 15px;
  border: 1px solid #f7f8f8;
  border-collapse: collapse;
}

.table-ordered > li::before {
  display: none;
}

.table-ordered > li .table-ordered__num {
  display: table-cell;
  width: 35px;
  background-color: #f0f3f8;
  border: 1px solid #f7f8f8;
  color: #f4f9fc;
  font-family: "Times New Roman";
  font-style: italic;
  font-size: 18px;
  text-align: center;
  vertical-align: middle;
}

.table-ordered > li .table-ordered__txt {
  display: table-cell;
  vertical-align: middle;
  padding: 20px 10px;
  border: 1px solid #f7f8f8;
}

.table-ordered > li .table-ordered__txt .table-ordered__title {
  font-size: 14px;
}

.table-ordered > li .table-ordered__txt .table-ordered__txt--last {
  font-weight: bold;
  font-size: 19px;
}

input[type=text] {
  border-radius: 0;
  -webkit-appearance: none;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  border: none;
  border-color: #000000;
  border-radius: 3px;
  background: #000000;
  color: #fff;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
  border-color: #ccc #bbb #aaa;
}

button:active,
button:focus,
input[type="button"]:active,
input[type="button"]:focus,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus {
  border-color: #aaa #bbb #bbb;
  outline: none;
}

.form-submit {
  position: relative;
  width: 100%;
  line-height: 34px;
  padding: 15px;
  display: inline-block;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
}

.submit-btn {
  position: relative;
}

.submit-btn:after {
  content: "";
  display: block;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-family: "Font Awesome 5 Free";
  content: "\f105";
  position: absolute;
  right: 10px;
  font-size: 14px;
  color: #fff;
}

.section-confirmation input[type="submit"],
.section-confirmation input[type="button"] {
  width: 100%;
  padding: 15px 0;
  font-weight: bold;
  font-size: 14px;
}

.section-confirmation input[type="submit"]:hover,
.section-confirmation input[type="button"]:hover {
  opacity: 0.7;
}

.section-confirmation .input-submit {
  position: relative;
  margin-bottom: 10px;
}

.section-confirmation .input-button {
  position: relative;
}

.reset-btn {
  width: 100%;
  display: block;
  padding: 15px 0;
  font-weight: bold;
  font-size: 14px;
  text-align: center;
  border: none;
  border-color: #000000;
  border-radius: 3px;
  background: #000000;
  color: #fff;
}

.reset-btn:hover {
  color: #ffffff;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
  color: #000000;
  border: none;
  padding: 5px 5px;
  border: 1px solid #e9e7e7;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
  color: #111;
}

select {
  height: 37px;
  width: 100%;
}

textarea {
  width: 100%;
  height: 120px;
  resize: vertical;
}

input[type="text"] {
  display: block;
  width: 100%;
}

input.input-year {
  width: 30%;
  display: inline-block;
  margin-right: 10px;
}

input.input-month {
  width: 15%;
  display: inline-block;
  margin: 0 10px;
}

input.input-day {
  width: 15%;
  display: inline-block;
  margin: 0 10px;
}

.radio-input {
  opacity: 0;
  display: none;
}

.radio-input + label {
  padding-left: 20px;
  position: relative;
  margin-right: 10px;
}

.radio-input + label::before {
  content: "";
  display: block;
  position: absolute;
  top: 2px;
  left: 0;
  width: 15px;
  height: 15px;
  border: 1px solid #836900;
  border-radius: 50%;
}

.radio-input:checked + label::after {
  content: "";
  display: block;
  position: absolute;
  top: 5px;
  left: 3px;
  width: 9px;
  height: 9px;
  background: #836900;
  border-radius: 50%;
}

body,
button,
input,
select,
textarea {
  color: #000000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
  margin: 0;
}

p {
  margin: 0;
}

dfn,
cite,
em,
i {
  font-style: italic;
}

blockquote {
  margin: 0 1.5em;
}

address {
  margin: 0 0 1.5em;
}

pre {
  background: #eee;
  font-family: "Courier 10 Pitch", Courier, monospace;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.4;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em;
}

code,
kbd,
tt,
var {
  font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
  font-size: 15px;
  font-size: 0.9375rem;
}

abbr,
acronym {
  border-bottom: 1px dotted #666;
  cursor: help;
}

mark,
ins {
  background: #fff9c0;
  text-decoration: none;
}

big {
  font-size: 125%;
}

.montserrat {
  font-family: "Montserrat", sans-serif;
}

/* ライブラリ */

/** VARIABLES
===================================*/

/** RESET AND LAYOUT
===================================*/

.bxslider-thumb.lazy {
  opacity: 0;
}

.bx-wrapper {
  position: relative;
  padding: 0;
  *zoom: 1;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}

.bx-wrapper img {
  max-width: 100%;
  display: block;
}

.bxslider {
  margin: 0;
  padding: 0;
}

ul.bxslider {
  list-style: none;
}

.bx-viewport {
  /*fix other elements on the page moving (on Chrome)*/
  -webkit-transform: translatez(0);
}

/** THEME
===================================*/

.bx-wrapper {
  background: #fff;
}

.bx-wrapper .bx-pager,
.bx-wrapper .bx-controls-auto {
  position: absolute;
  bottom: -20px;
  width: 100%;
}

/* LOADER */

.bx-wrapper .bx-loading {
  min-height: 50px;
  background: url("../images/libs/bx_loader.gif") center center no-repeat #ffffff;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2000;
}

/* PAGER */

.bx-wrapper .bx-pager {
  text-align: center;
  font-size: .85em;
  font-family: Arial;
  font-weight: bold;
  color: #666;
  padding-top: 20px;
}

.bx-wrapper .bx-pager.bx-default-pager a {
  background: #f7f8f8;
  text-indent: -9999px;
  display: block;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  outline: 0;
  border-radius: 5px;
}

.bx-wrapper .bx-pager.bx-default-pager a:hover,
.bx-wrapper .bx-pager.bx-default-pager a.active,
.bx-wrapper .bx-pager.bx-default-pager a:focus {
  background: #dcdcdc;
}

.bx-wrapper .bx-pager-item,
.bx-wrapper .bx-controls-auto .bx-controls-auto-item {
  display: inline-block;
  vertical-align: bottom;
  *zoom: 1;
  *display: inline;
}

.bx-wrapper .bx-pager-item {
  font-size: 0;
  line-height: 0;
}

/* DIRECTION CONTROLS (NEXT / PREV) */

.bx-wrapper .bx-prev {
  left: 10px;
  background: url("../images/libs/bxSlider/controls.png") no-repeat 0 -32px;
}

.bx-wrapper .bx-prev:hover,
.bx-wrapper .bx-prev:focus {
  background-position: 0 0;
}

.bx-wrapper .bx-next {
  right: 10px;
  background: url("../images/libs/bxSlider/controls.png") no-repeat -43px -32px;
}

.bx-wrapper .bx-next:hover,
.bx-wrapper .bx-next:focus {
  background-position: -43px 0;
}

.bx-wrapper .bx-controls-direction a {
  position: absolute;
  top: 50%;
  margin-top: -16px;
  outline: 0;
  width: 32px;
  height: 32px;
  text-indent: -9999px;
  z-index: 9999;
}

.bx-wrapper .bx-controls-direction a.disabled {
  display: none;
}

/* AUTO CONTROLS (START / STOP) */

.bx-wrapper .bx-controls-auto {
  text-align: center;
}

.bx-wrapper .bx-controls-auto .bx-start {
  display: block;
  text-indent: -9999px;
  width: 10px;
  height: 11px;
  outline: 0;
  background: url("../images/libs/bxSlider/controls.png") -86px -11px no-repeat;
  margin: 0 3px;
}

.bx-wrapper .bx-controls-auto .bx-start:hover,
.bx-wrapper .bx-controls-auto .bx-start.active,
.bx-wrapper .bx-controls-auto .bx-start:focus {
  background-position: -86px 0;
}

.bx-wrapper .bx-controls-auto .bx-stop {
  display: block;
  text-indent: -9999px;
  width: 9px;
  height: 11px;
  outline: 0;
  background: url("../images/libs/bxSlider/controls.png") -86px -44px no-repeat;
  margin: 0 3px;
}

.bx-wrapper .bx-controls-auto .bx-stop:hover,
.bx-wrapper .bx-controls-auto .bx-stop.active,
.bx-wrapper .bx-controls-auto .bx-stop:focus {
  background-position: -86px -33px;
}

/* PAGER WITH AUTO-CONTROLS HYBRID LAYOUT */

.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-pager {
  text-align: left;
  width: 80%;
}

.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-controls-auto {
  right: 0;
  width: 35px;
}

/* IMAGE CAPTIONS */

.bx-wrapper .bx-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  background: #666;
  background: rgba(80, 80, 80, 0.75);
  width: 100%;
}

.bx-wrapper .bx-caption span {
  color: #fff;
  font-family: Arial;
  display: block;
  font-size: .85em;
  padding: 10px;
}

/* Magnific Popup CSS */

.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
}

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box;
}

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
  display: none;
}

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

.mfp-ajax-cur {
  cursor: progress;
}

.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: zoom-out;
}

.mfp-zoom {
  cursor: pointer;
  cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.mfp-loading.mfp-figure {
  display: none;
}

.mfp-hide {
  display: none !important;
}

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}

.mfp-preloader a {
  color: #CCC;
}

.mfp-preloader a:hover {
  color: #FFF;
}

.mfp-s-ready .mfp-preloader {
  display: none;
}

.mfp-s-error .mfp-content {
  display: none;
}

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}

.mfp-close:hover,
.mfp-close:focus {
  opacity: 1;
}

.mfp-close:active {
  top: 1px;
}

.mfp-close-btn-in .mfp-close {
  color: #333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent;
}

.mfp-arrow:active {
  margin-top: -54px;
}

.mfp-arrow:hover,
.mfp-arrow:focus {
  opacity: 1;
}

.mfp-arrow:before,
.mfp-arrow:after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
}

.mfp-arrow:after {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}

.mfp-arrow:before {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7;
}

.mfp-arrow-left {
  left: 0;
}

.mfp-arrow-left:after {
  border-right: 17px solid #FFF;
  margin-left: 31px;
}

.mfp-arrow-left:before {
  margin-left: 25px;
  border-right: 27px solid #3F3F3F;
}

.mfp-arrow-right {
  right: 0;
}

.mfp-arrow-right:after {
  border-left: 17px solid #FFF;
  margin-left: 39px;
}

.mfp-arrow-right:before {
  border-left: 27px solid #3F3F3F;
}

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
  top: -40px;
}

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

/* Main image in popup */

img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}

/* The shadow behind the image */

.mfp-figure {
  line-height: 0;
}

.mfp-figure:after {
  content: '';
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444;
}

.mfp-figure small {
  color: #BDBDBD;
  display: block;
  font-size: 12px;
  line-height: 14px;
}

.mfp-figure figure {
  margin: 0;
}

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px;
}

.mfp-image-holder .mfp-content {
  max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

/* overlay at start */

.mfp-fade.mfp-bg {
  opacity: 0;
  transition: all 0.3s ease-out;
}

/* overlay animate in */

.mfp-fade.mfp-bg.mfp-ready {
  opacity: 0.8;
}

/* overlay animate out */

.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
}

/* content at start */

.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
  transition: all 0.3s ease-out;
}

/* content animate it */

.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}

/* content animate out */

.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}

/* Slider */

.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: '';
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir='rtl'] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* コンポーネント */

/*=========================
lower pages breadcrumb
==========================*/

.breadcrumb {
  position: absolute;
  display: block;
  max-width: 1220px;
  width: 100%;
  margin: auto !important;
  bottom: 40px;
  left: 0;
  right: 0;
  padding-left: 25px;
  padding-right: 25px;
  z-index: 100;
  font-size: 12px;
  color: #ffffff !important;
}

.breadcrumb span {
  font-family: "Barlow", sans-serif;
  display: inline;
  margin: 0px 2px;
}

.breadcrumb span a {
  text-decoration: none;
  font-family: "Barlow", sans-serif;
  color: #ffffff;
}

.breadcrumb span a::after {
  display: inline-block;
  margin: 0 5px;
}

.c-btn--center {
  text-align: center;
}

.c-btn--col2 {
  text-align: center;
}

.c-btn--col2 .btn {
  width: 250px;
  margin: 5px 0;
}

.btn {
  text-decoration: none;
  font-weight: bold;
  font-family: "Barlow", sans-serif;
  padding-bottom: 0px;
  font-size: 18px;
  letter-spacing: 1px;
  display: block;
  color: #e8380d;
  text-align: center;
}

.btn_more span {
  position: relative;
  margin-left: -40px;
}

.btn_more span:before {
  content: "";
  position: absolute;
  right: -48px;
  width: 35px;
  height: 6px;
  top: 0;
  bottom: 0;
  margin: auto;
  display: block;
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-image: url(../images/common/link_arrow_orange@2x.png);
  transition: .3s;
}

.btn_more span:after {
  content: "";
  position: absolute;
  right: -51px;
  width: 14px;
  height: 14px;
  margin-top: 1px;
  top: 0;
  bottom: 0;
  margin: auto;
  display: block;
  border: solid 1px #e8380d;
  border-radius: 100px;
  transition: .3s;
}

.btn_more span:hover:before {
  right: -54px;
}

.btn_more span:hover:after {
  right: -57px;
  width: 14px;
  height: 14px;
}

.btn_more:hover {
  opacity: 1 !important;
  color: #e8380d !important;
}

.btn_rect[target="_blank"]::after {
  display: inline-block;
  width: 12px;
  height: 11px;
  content: "";
  margin-left: 5px;
  background-image: url(../images/icon/icon_link_wht.svg);
  background-size: 100%;
}

.btn_rect {
  position: relative;
  display: block;
  background-color: rgba(0, 0, 0, 0.95);
  padding: 10px 20px;
  border-bottom: none;
  color: #ffffff !important;
  font-weight: bold;
  font-size: 16px;
  text-decoration: none;
  width: 90%;
  margin: auto;
}

.btn_rect span {
  display: block;
  font-size: 12px;
}

.btn_rect:before {
  content: "";
  position: absolute;
  right: 15px;
  width: 23px;
  height: 5px;
  top: 0;
  bottom: 0;
  margin: auto;
  display: block;
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-image: url(../images/common/btn_arrow@2x.png);
  transition: .3s;
}

.btn_rect:hover {
  color: #ffffff !important;
  opacity: 0.8 !important;
}

.btn_rect:hover:before {
  right: 15px;
}

.page-anchor:after {
  content: "\f078";
}

/* animate */

@-webkit-keyframes circleanime {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  from {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes circleanime {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  from {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/* ====================
 upper footer contact section
=======================*/

.p-common-contact {
  padding: 40px 0;
  background-color: #17acc7;
}

.p-common-contact .btn-contact a {
  display: block;
  position: relative;
  width: 280px;
  margin: 0 auto;
  padding: 20px;
  border: 2px solid #ffffff;
  border-radius: 40px;
  color: #ffffff;
  font-size: 16px;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  transition: ease 0.2s;
}

.p-common-contact .btn-contact a:hover {
  background-color: #ffffff;
  color: #17acc7;
  opacity: 1;
}

.p-common-contact .btn-contact a i {
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.c-flow {
  width: 100%;
  display: table;
  position: relative;
  margin-top: -10px;
}

.c-flow:before {
  width: 1px;
  height: 100%;
  content: "";
  display: block;
  background: linear-gradient(to bottom, #ffffff, transparent);
  position: absolute;
  top: 20px;
  left: 63px;
}

.c-flow dl {
  display: table-row;
}

.c-flow dt {
  display: table-cell;
  position: relative;
  width: 60px;
  padding-top: 10px;
  font-weight: bold;
}

.c-flow dd {
  display: table-cell;
  padding-left: 15px;
  position: relative;
}

.c-flow dd:after {
  content: "";
  position: absolute;
  top: 16px;
  left: 0px;
  width: 8px;
  height: 8px;
  background-color: #ffffff;
  border-radius: 50%;
}

/* ==========================
  section title
=========================== */

.sec-tlt {
  position: relative;
  width: 100%;
  text-align: left;
  font-size: 50px;
  display: inline-block;
  font-family: "Barlow Condensed", sans-serif;
}

.sec-tlt:before {
  content: "";
  width: 30px;
  height: 3px;
  background-color: #000000;
  display: block;
}

.sec-tlt span {
  display: block;
  font-size: 15px;
  line-height: 10px;
  font-family: "Noto Sans JP", sans-serif;
  color: #e8380d;
  font-weight: bold;
  margin-top: -3px;
}

.sec-category {
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
}

.tlt_pt1 {
  text-align: center;
  font-family: "Barlow", sans-serif;
  font-size: 18px;
}

.page-header {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 260px;
  padding: 0px !important;
}

.page-header .l-container {
  background-color: inherit !important;
  box-shadow: unset !important;
  padding: 0px 0px 0px 20px !important;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 190px;
  box-shadow: none !important;
}

.page-header .l-container h2 {
  color: #ffffff;
  padding-left: 26px;
  margin-top: 2px;
}

.page-header .l-container h2 span {
  text-align: left;
  color: #ffffff;
}

.page-header .l-container h2:before {
  display: none;
}

.page-header_mini {
  height: 195px;
}

.page-header_mini .l-container {
  height: 103px;
}

.inner_header_title {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 215px;
}

.inner_header_title_contents {
  padding: 0px 20px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: calc(100% - 30px);
}

.inner_header_title h3 {
  font-size: 34px;
  line-height: 40px;
}

.inner_header_title h3:before {
  display: none;
}

.inner_header_title h3 span {
  font-size: 12px;
  margin-top: 10px;
}

.page_tlt {
  font-size: 19px;
  color: #e8380d;
}

.title-class_2 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 32px;
  line-height: 30px;
  margin-bottom: 10px;
}

.title-class_2 span {
  display: block;
  font-size: 14px;
  position: relative;
}

.title-class_2 span:before {
  content: "";
  width: 8px;
  height: 1px;
  background-color: #000000;
  display: inline-block;
  margin-top: 5px;
  position: relative;
  top: -4px;
  margin-right: 5px;
}

.title-class_3 {
  font-size: 17px;
  margin: 13px 0px;
}

.title-class_4 {
  font-size: 17px !important;
  color: #e8380d;
}

/* ==========================
  lower page contents title
=========================== */

.c-page__intro {
  margin-bottom: 30px;
  letter-spacing: 0;
}

.c-page__intro:after {
  content: "";
  clear: both;
  display: block;
}

.c-page__intro p {
  margin-bottom: 15px;
}

.c-page__intro p:last-child {
  margin-bottom: 0;
}

.c-movie__wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.c-movie__wrap iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

.c-news dl {
  margin-top: 10px;
}

.c-news dl dt {
  font-family: "Crimson Text", serif;
  font-weight: bold;
}

.news-list {
  margin-bottom: 25px;
}

.news-list li {
  padding: 10px 0;
  border-bottom: 1px solid #f2f2f2;
}

.news-list dl dt {
  font-weight: bold;
  color: #3ead6d;
}

.news-list a {
  display: block;
  position: relative;
  padding-right: 20px;
  text-decoration: none;
}

.news-list a i {
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #3ead6d;
}

/*=========================
 pagination
==========================*/

.c-pagination {
  position: relative;
  margin-top: 20px;
  text-align: center;
  background-color: #f2f2f2;
  height: 50px;
  text-align: center;
}

.c-pagination .next,
.c-pagination .prev {
  position: absolute !important;
  height: 50px;
  width: 50px;
  display: inline-block;
  background-color: #000;
  position: relative;
  margin: 0px !important;
  top: 0px;
  background-size: 20px;
  background-position: center;
  background-repeat: no-repeat;
}

.c-pagination .current {
  color: #6a6a6a !important;
}

.c-pagination .next {
  top: 0px !important;
  right: 0px !important;
  background-image: url(../images/icon/icon_arrow_r@2x.png);
}

.c-pagination .prev {
  top: 0px !important;
  left: 0px !important;
  background-image: url(../images/icon/icon_arrow_l@2x.png);
}

.c-pagination .page-numbers {
  position: relative;
  line-height: 53px;
}

.c-pagination .arrow_notlink {
  background-color: #d2d2d2;
  pointer-events: none;
}

.c-pagination a,
.c-pagination span {
  margin: 0 5px;
  text-decoration: none;
  font-family: "Barlow", sans-serif;
}

.c-pagination a:hover,
.c-pagination span:hover {
  color: #000000;
}

.c-pagination-current {
  color: #6a6a6a !important;
}

.pagetop {
  display: none;
  width: 35px;
  position: fixed;
  bottom: 70px;
  right: 35px;
  z-index: 1050;
}

.c-table {
  display: table;
  width: 100%;
  border: 1px solid #192431;
  border-collapse: collapse;
  color: #ffffff;
}

.c-table > dl {
  display: table-row;
}

.c-table > dl > dt {
  width: 120px;
  padding: 10px;
  display: table-cell;
  vertical-align: middle;
  border-bottom: 1px solid #192431;
  font-weight: bold;
}

.c-table > dl > dd {
  display: table-cell;
  padding: 10px;
  border-bottom: 1px solid #192431;
  border-left: 1px solid #192431;
}

.c-table > dl > dd .c-table-title {
  font-family: "Noto Sans JP", sans-serif;
}

.c-table > dl > dd .c-table-list {
  margin-bottom: 25px;
  padding-left: 1.5em;
}

.c-table > dl > dd .c-table-list:last-of-type {
  margin-bottom: 0;
}

.c-table > dl > dd .c-table-list > li {
  margin-bottom: 15px;
  list-style: disc;
}

.c-table > dl > dd .c-table-list > li:last-child {
  margin-bottom: 0;
}

.c-table > dl > dd .c-table-list__nomargin > li {
  margin: 0;
}

.c-table--child {
  width: 100%;
  display: table;
}

.c-table--child dt {
  display: table-cell;
  width: 52px;
}

.c-table--child dd {
  display: table-cell;
}

/* 共通レイアウト(header, footer, etc.) */

/*=========================
common footer
==========================*/

.footer-column {
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  position: relative;
  display: block;
  text-decoration: none;
  padding: 20px 0px 30px 0px !important;
}

.footer-column:before {
  content: "";
  position: absolute;
  right: 26px;
  width: 41px;
  height: 6px;
  top: 0;
  bottom: 0;
  margin: auto;
  display: block;
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-image: url(../../img/segment/link_arrow_s@2x.webp);
  transition: .3s;
}

.footer-column:after {
  content: "";
  position: absolute;
  right: 16px;
  margin-top: 1px;
  width: 26px;
  height: 26px;
  top: 0;
  bottom: 0;
  margin: auto;
  display: block;
  border: solid 1px #ffffff;
  border-radius: 100px;
  transition: .3s;
}

.footer-column:hover:before {
  right: 23px;
}

.footer-column:hover:after {
  right: 13px;
  width: 23px;
  height: 23px;
}

.footer-column a {
  text-decoration: none;
}

.footer-column a:hover {
  opacity: 1 !important;
}

.footer-column_inner h3 {
  color: #ffffff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 40px;
  text-align: center;
}
.footer-column_inner h3::before{
	content: none;
}

.footer-column_inner h3 span {
  font-size: 13px;
  font-family: "Noto Sans JP", sans-serif;
  display: block;
  text-align: center;
}

.footer-column_inner p {
  color: #ffffff;
  text-align: center;
  margin-top: 11px;
  letter-spacing: 0px;
  line-height: 22px;
}

.footer-column_contact {
  background-image: url(../../img/segment/contact_bg_s@2x.webp);
}

.footer-column_recruit {
  background-image: url(../../img//segment/recruit_bg_s@2x.webp);
}

.l-footer {
  text-align: center;
  margin-top: 40px;
  padding-bottom: 30px;
}

.l-footer_inner:after {
  content: "";
  clear: both;
  display: block;
}

.l-footer_logo {
  position: relative;
  top: 10px;
  width: 140px;
  display: block;
  margin: auto;
}

.l-footer-navi {
  margin: 0px auto 25px auto;
  min-width: 280px;
  max-width: 500px;
  padding: 0px 40px;
  text-align: right;
}

.l-footer-navi_content {
  margin-top: 40px;
}

.l-footer-navi li {
  padding-bottom: 6px;
  padding-top: 6px;
  width: 100%;
  text-align: left;
  display: inline-block;
  padding: 0px 5px;
  text-align: center;
}

.l-footer-navi li a {
  text-decoration: none;
  font-family: "Barlow", sans-serif;
  font-size: 14px;
  font-weight: 500;
}

.l-footer-navi_sub {
  text-align: center;
  font-size: 0;
  width: 280px;
  margin: auto;
}

.l-footer-navi_sub li {
  display: inline-block;
  text-align: center;
  font-size: 12px;
  line-height: 1;
}

.l-footer-navi_sub li::after {
  content: "|";
  padding: 0 5px;
  color: #686868;
}

.l-footer-navi_sub li:last-child::after {
  display: none;
}

.l-footer-navi_sub li a {
  color: #686868 !important;
  text-decoration: none;
}

.l-footer .footer-top {
  padding: 45px 0;
  background-size: cover;
  background-position: center;
  text-align: center;
}

.l-footer .l-footer__copy {
  padding: 5px;
  text-align: center;
  margin-top: 20px;
}

.l-footer .l-footer__copy small {
  font-size: 11px;
  letter-spacing: 1px;
  font-family: "Barlow", sans-serif;
  color: #666666;
}

.gnav-btn {
  width: 50px;
  height: 43px;
  text-align: center;
  vertical-align: middle;
  position: absolute;
  top: -2px;
  right: 8px;
  z-index: 10;
  cursor: pointer;
}

.gnav-btn__container {
  position: relative;
  width: 50px;
  height: 43px;
  position: relative;
  display: inline-block;
}

.gnav-btn__container > span {
  position: absolute;
  width: 26px;
  height: 2px;
  left: 50%;
  margin-left: -15px;
  display: block;
  background-color: #000000;
  transition: all .4s;
  border-radius: 10px;
}

.gnav-btn__container > span:first-child {
  top: 15px;
}

.gnav-btn__container > span:nth-child(2) {
  top: 21px;
}

.gnav-btn__container > span:nth-child(3) {
  bottom: 14px;
  width: 13px;
}

.close .gnav-btn__container span:nth-of-type(1) {
  -webkit-transform: translateY(8px) rotate(-45deg);
  transform: translateY(8px) rotate(-45deg);
}

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

.close .gnav-btn__container span:nth-of-type(3) {
  -webkit-transform: translateY(-10px) rotate(45deg);
  transform: translateY(-10px) rotate(45deg);
  width: 26px;
  bottom: 8px;
}

.gnav-txt__close {
  display: none;
}

.menu-open {
  letter-spacing: 0;
}

.menu-open .gnav-txt__close {
  display: block;
  color: #ffffff;
}

.menu-open .gnav-txt__open {
  display: none;
}

/* ハンバーガーアニメーション */

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

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

/*=========================
.sp-navi
==========================*/

.sp-navi {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
  background-image: url(../images/common/sp_menu_bg.png);
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  overflow-y: scroll;
}

.sp-navi .sp-navi-list {
  padding-top: 97px;
  padding-left: 80px;
}

.sp-navi .sp-navi-list > li {
  padding: 12px 0 13px 0px;
}

.sp-navi .sp-navi-list > li a {
  position: relative;
  text-decoration: none;
  font-size: 16px;
  font-family: "Barlow", sans-serif;
  letter-spacing: 2px;
  font-weight: 500;
}

.sp-navi .sp-navi-list > li a:before {
  content: "";
  width: 8px;
  height: 2px;
  background-color: #000000;
  position: absolute;
  top: 50%;
  left: -23px;
  display: block;
}

.sp-navi .sp-navi-list > li a i:first-child {
  margin-right: 15px;
}

.sp-navi .sp-navi-list .sp-navi-logo img {
  width: auto;
}

.sp-navi .sp-subnavi-list {
  text-align: center;
  margin-top: 20px;
}

.sp-navi .sp-subnavi-list > li {
  padding: 10px 0;
}

.sp-navi .sp-subnavi-list > li a {
  text-decoration: none;
  font-weight: normal;
  font-size: 14px;
}

/*=========================
global-navigation
==========================*/

.pc-navi-top .pc-subnavi {
  margin: 12px 0 30px;
}

.pc-navi-top .pc-subnavi > li {
  display: inline-block;
  position: relative;
  font-size: 0;
}

.pc-navi-top .pc-subnavi > li:first-child::before {
  display: none;
}

.pc-navi-top .pc-subnavi > li::before {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  content: "";
  width: 1px;
  height: 14px;
  display: block;
  background-color: #000000;
}

.pc-navi-top .pc-subnavi > li a {
  display: inline-block;
  padding: 0 20px;
  font-size: 13px;
  text-decoration: none;
  font-weight: bold;
}

.pc-navi-bottom .pc-mainnavi {
  display: block;
  float: right;
  margin-top: 30px;
}

.pc-navi-bottom .pc-mainnavi > li {
  display: inline-block;
}

.pc-navi-bottom .pc-mainnavi > li a {
  padding: 0 11px;
  text-decoration: none;
  font-family: "Barlow", sans-serif;
  font-size: 16px;
  position: relative;
  font-weight: 500;
}

.pc-navi-bottom .pc-mainnavi > li a:before,
.pc-navi-bottom .pc-mainnavi > li a:after {
  content: "";
  width: 8px;
  height: 39px;
  display: inline-block;
  position: absolute;
  top: -10px;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  display: none;
}

.pc-navi-bottom .pc-mainnavi > li a:before {
  left: -8px;
  background-image: url(../images/common/active_before@2x.png);
}

.pc-navi-bottom .pc-mainnavi > li a:after {
  right: -3px;
  background-image: url(../images/common/active_after@2x.png);
}

.pc-navi-bottom .pc-navi-login {
  display: none;
}

.pc-navi-bottom .pc-navi-login > li {
  float: left;
}

.pc-navi-bottom .pc-navi-login > li .btn-login {
  width: 114px;
}

.pc-navi-bottom .pc-navi-login > li .btn-login:hover {
  color: #ffffff;
}

.pc-navi-bottom .pc-navi-login > li .btn-trial {
  width: 154px;
}

.pc-navi-bottom .pc-navi-login > li .btn-trial:hover {
  color: #ffffff;
}

.page-template-page-about .navi_about:before {
  display: block !important;
}

.page-template-page-about .navi_about:after {
  display: block !important;
  right: -4px !important;
}

.page-template-page-team .navi_team:before {
  display: block !important;
  left: -4px !important;
}

.page-template-page-team .navi_team:after {
  display: block !important;
  right: -4px !important;
}

.page-template-page-mvv .navi_mvv:before {
  display: block !important;
  left: 0px !important;
}

.page-template-page-mvv .navi_mvv:after {
  display: block !important;
  right: 0px !important;
}

.page-template-page-message .navi_message:before {
  display: block !important;
  left: 0px !important;
}

.page-template-page-message .navi_message:after {
  display: block !important;
  right: 0px !important;
}

.page-template-page-robottransformation .navi_robottransformation:before {
  display: block !important;
  left: 0px !important;
}

.page-template-page-robottransformation .navi_robottransformation:after {
  display: block !important;
  right: 0px !important;
}

.page-template-page-digitalagency .navi_digitalagency:before {
  display: block !important;
  left: 0px !important;
}

.page-template-page-digitalagency .navi_digitalagency:after {
  display: block !important;
  right: 0px !important;
}

.page-template-page-news .navi_news:before,
.single-post .navi_news:before {
  display: block !important;
  left: 0px !important;
}

.page-template-page-news .navi_news:after,
.single-post .navi_news:after {
  display: block !important;
  right: 0px !important;
}

.post-type-archive-column .navi_column:before,
.single-column .navi_column:before {
  display: block !important;
  left: 0px !important;
}

.post-type-archive-column .navi_column:after,
.single-column .navi_column:after {
  display: block !important;
  right: 0px !important;
}

.post-type-archive-member .navi_member:before,
.single-member .navi_member:before {
  display: block !important;
  left: 0px !important;
}

.post-type-archive-member .navi_member:after,
.single-member .navi_member:after {
  display: block !important;
  right: 0px !important;
}

.page-template-page-recruit .navi_recruit:before {
  display: block !important;
  left: 0px !important;
}

.page-template-page-recruit .navi_recruit:after {
  display: block !important;
  right: 0px !important;
}

.page-template-page-contact .navi_contact:before {
  display: block !important;
  left: -3px !important;
}

.page-template-page-contact .navi_contact:after {
  display: block !important;
  right: -11px !important;
}

/*=========================
common header
==========================*/

.l-header {
  width: 100%;
  height: 60px;
  position: fixed;
  top: 0;
  padding: 10px 0;
  z-index: 100000;
}

.l-header .l-container {
  position: relative;
  width: 100%;
  max-width: 100%;
}

.l-header .logo {
  width: 109px;
  margin-top: 0px;
  top: 8px;
  z-index: 1000;
  position: relative;
}

.l-header .logo a {
  display: block;
}

.l-header .logo a img {
  vertical-align: text-top;
}

.l-header.header-fixed {
  background-color: #ffffff;
}

#top {
  position: absolute;
  top: 0px;
  left: 0px;
}

.ex_contact {
  position: absolute;
  top: 15px;
  right: 18px;
  font-size: 13px;
  display: block;
  font-family: "Barlow", sans-serif;
  text-decoration: none;
}

body {
  background-color: #e0e4e6;
}

.l-wrapper {
  overflow: hidden;
  margin: 0 auto;
}

.ancr {
  position: absolute;
  top: -62px;
}

.page .main-block,
.archive .main-block,
.single .main-block {
  margin-top: 60px;
}

.page .main-block .l-container,
.archive .main-block .l-container,
.single .main-block .l-container {
  background-color: #ffffff;
  box-shadow: 0 0 6px #d4d4d4;
  padding: 20px 15px;
}

.page .main-block .l-container_up,
.archive .main-block .l-container_up,
.single .main-block .l-container_up {
  margin-top: -30px;
  z-index: 10;
  position: relative;
}

.page .l-main_content,
.archive .l-main_content,
.single .l-main_content {
  background-position: right 70px;
}

.single .page-header_mini .l-container {
  padding: 20px 0 0 0 !important;
}

.page-sec {
  padding: 0px 20px !important;
  margin-top: -75px;
  position: relative;
  z-index: 10;
}

.l-main_content {
  background-image: url(../../img/segment/bg_s@2x.webp);
  background-size: 100%;
  background-position: right top;
  background-repeat: no-repeat;
  padding-bottom: 40px;
}

.sec-contents {
  padding: 40px 0;
}

.l-container {
  margin: 0 auto;
  padding: 0 15px;
}

.l-container:after {
  content: "";
  clear: both;
  display: block;
}

.l-container_inner {
  padding: 0 15px;
}

.l-container_inner:after {
  content: "";
  clear: both;
  display: block;
}

.articles_list {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 20px;
}

.articles_list_order {
  margin-top: 0px !important;
  padding: 0px 5px;
}

.articles_list li {
  width: 47%;
  margin: 2.5%;
  margin-bottom: 25px;
}

.articles_list li a {
  text-decoration: none;
}

.articles_list li:hover {
  opacity: 0.7;
}

.articles_list_img {
  position: relative;
  width: 100%;
  height: 24vw;
  overflow: hidden;
}

.articles_list_img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  margin: auto;
  width: 120%;
  max-width: inherit;
}

.articles_list_tlt {
  margin: 10px 0px;
  font-size: 14px;
  line-height: 22px;
  margin-top: 10px;
  margin-bottom: 2px;
}

.articles_list_txt {
  font-weight: bold;
  font-size: 10px;
  line-height: 16px;
  margin-top: 4px;
}

.articles_list_date {
  font-weight: bold;
  margin-top: 6px;
  font-size: 2.5vw;
  position: relative;
  font-family: "Barlow", sans-serif;
  font-feature-settings: "palt" 1;
  letter-spacing: 0px;
}

.articles_list_tag {
  display: none;
}

.articles_list_end {
  width: 100%;
  height: 24vw;
  position: absolute;
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.3);
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #ffffff;
  font-size: 10px;
  letter-spacing: 0px;
  font-weight: bold;
}

.articles_list_end_br {
  display: none;
}

.sec-catch_tlt {
  position: relative;
  font-size: 27px;
  color: #e8380d;
  text-align: center;
  padding-bottom: 40px;
  line-height: 40px;
}

.sec-catch_tlt:after {
  content: "";
  width: 1px;
  height: 40px;
  background-color: #e8380d;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -20px;
  margin: auto;
  display: block;
}

.sec-gray_txt {
  text-align: center;
  background-color: #f2f2f2;
  padding: 34px 13px;
}

.sec-gray_txt h4 {
  margin-bottom: 13px;
  font-size: 17px;
}

.sec-gray_txt p {
  letter-spacing: 0px;
  line-height: 28px;
}

.btn-box {
  max-width: 310px;
  margin: auto;
  margin-top: 33px;
}

.inner-contact_box {
  background-color: #f2f2f2;
  padding: 45px 0px;
}

.inner-contact_box .btn-box {
  margin-top: 0px;
}

.l-detail_list_inner {
  width: 100%;
}

.l-detail_list dl {
  margin-bottom: 20px;
}

.l-detail_list dl:last-child {
  margin-bottom: 0px;
}

.l-detail_list dl dt {
  font-size: 15px;
  font-weight: bold;
  position: relative;
}

.l-detail_list dl dt span {
  background-color: #ffffff;
  position: relative;
  z-index: 10;
  padding-right: 20px;
}

.l-detail_list dl dt:before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #e7e3e3;
  position: absolute;
  top: 50%;
  left: 0px;
}

.l-detail_list dl dd {
  font-size: 14px;
  padding: 15px 0px 5px 0px;
}

.page_footer_menu_col {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.page_footer_menu_col_link {
  width: 50%;
  height: 200px;
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  position: relative;
  font-family: "Barlow", sans-serif;
  text-decoration: none;
  font-size: 24px;
  font-weight: 600;
  color: #ffffff !important;
  text-align: center;
}

.page_footer_menu_col_link_txt {
  position: absolute;
  width: 100%;
  height: 200px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.5);
}

.page_footer_menu_col_link:before {
  content: "";
  position: absolute;
  right: 26px;
  width: 41px;
  height: 6px;
  top: 0;
  bottom: 0;
  margin: auto;
  display: block;
  background-size: contain;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-image: url(../../img/segment/link_arrow_s@2x.webp);
  transition: .3s;
  z-index: 10;
}

.page_footer_menu_col_link:after {
  content: "";
  position: absolute;
  right: 16px;
  margin-top: 1px;
  width: 26px;
  height: 26px;
  top: 0;
  bottom: 0;
  margin: auto;
  display: block;
  border: solid 1px #ffffff;
  border-radius: 100px;
  transition: .3s;
  z-index: 10;
}

.page_footer_menu_col_link:hover {
  color: #ffffff !important;
  opacity: 1 !important;
}

.page_footer_menu_col_link_message {
  background-image: url(../images/footer/footer_message.jpg);
}

.page_footer_menu_col_link_member {
  background-image: url(../images/footer/member.png);
}

.page_footer_menu_col_link_digitalagency {
  background-image: url(../images/footer/digitalagency.png);
}

.page_footer_menu_col_link_robottransformation {
  background-image: url(../../img/segment/robottransformation.webp);
}

.page_footer_menu_col_link_about {
  background-image: url(../../img/segment/page_header_02.webp);
}

.sec_txt {
  padding-top: 40px;
  padding-bottom: 32px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.sec_txt_inner {
  max-width: 100% !important;
  width: auto !important;
}

.l-sidebar {
  margin-top: 40px;
}

.l-sidebar .sidebar-contents {
  background-color: #ffffff;
  border-radius: 10px;
  overflow: hidden;
}

.l-sidebar .sidebar-contents .title-accordion {
  display: block;
  position: relative;
  background-color: #ffffff;
  padding: 10px 0 10px 15px;
  cursor: pointer;
  border-radius: 10px;
}

.l-sidebar .sidebar-contents--model .title-accordion img {
  width: 250px;
}

.l-sidebar .sidebar-contents--area {
  margin-top: 20px;
}

.l-sidebar .sidebar-contents--area .title-accordion img {
  width: 237px;
}

.l-sidebar .sidebar-contents .side-title {
  font-size: 19px;
}

.l-sidebar .sidebar-contents .title-accordion {
  position: relative;
}

.l-sidebar .sidebar-contents .title-accordion i {
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #59af26;
}

.l-sidebar .js-accordion-contents {
  display: none;
}

.l-sidebar .sidebar-contents__inner {
  padding: 10px;
}

.l-sidebar .model-list {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: -10px;
}

.l-sidebar .model-list > li {
  margin-top: 10px;
  width: calc(33.33333% - 10px);
}

.l-sidebar .side-area__title {
  background-color: #f7f8f8;
  padding: 5px;
  font-size: 14px;
  color: #e8380d;
}

.l-sidebar .side-area__subtitle {
  margin: 5px;
  color: #e8380d;
}

.l-sidebar .side-area__subtitle:not(:first-of-type) {
  margin-top: 10px;
}

.l-sidebar .side-area__list {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.l-sidebar .side-area__list::after {
  content: "";
  display: block;
  width: calc(33.33333% - 3px);
}

.l-sidebar .side-area__list > li {
  margin-top: 5px;
  width: calc(33.33333% - 3px);
}

.l-sidebar .side-area__list > li a {
  display: block;
  padding: 5px 0;
  text-decoration: none;
  color: #e8380d;
  text-align: center;
  border: 1px solid #e8380d;
  border-radius: 5px;
  font-weight: bold;
  letter-spacing: 0;
}

/* ページごとのスタイル */

/* ====================
 about page
=======================*/

.about .page-header,
.page-template-page-about .page-header {
  background-image: url(../images/about/page_header.jpg);
}

.about .page-header .sec-tlt,
.page-template-page-about .page-header .sec-tlt {
  color: #000000 !important;
}

.about .page-header .sec-tlt span,
.page-template-page-about .page-header .sec-tlt span {
  color: #000000 !important;
}

.about .breadcrumb,
.page-template-page-about .breadcrumb {
  color: #000000 !important;
}

.about .breadcrumb span,
.about .breadcrumb a,
.page-template-page-about .breadcrumb span,
.page-template-page-about .breadcrumb a {
  color: #000000 !important;
}

.about .page-sec,
.page-template-page-about .page-sec {
  padding: 0px !important;
  margin-top: -55px;
}

.about .page-sec .l-container,
.page-template-page-about .page-sec .l-container {
  padding: 25px 0px 0px 0px !important;
  width: calc(100% - 40px);
}

.about .page-sec .l-container_inner,
.page-template-page-about .page-sec .l-container_inner {
  padding: 0px 20px;
}

.about .page-sec .l-container p,
.page-template-page-about .page-sec .l-container p {
  font-size: 14px;
  line-height: 25px;
}

.about .page-sec .sec-contents,
.page-template-page-about .page-sec .sec-contents {
  padding: 24px 0;
}

.about-inner_sec,
.page-template-page-about-inner_sec {
  border-bottom: solid 1px #f2f2f2;
  padding: 30px 0px;
}

.about-inner_sec:first-child,
.page-template-page-about-inner_sec:first-child {
  padding-top: 0px;
}

.about-inner_sec:last-child,
.page-template-page-about-inner_sec:last-child {
  border-bottom: none;
  padding-bottom: 0px;
}

.about-inner_sec_pt2:nth-of-type(1),
.page-template-page-about-inner_sec_pt2:nth-of-type(1) {
  padding-bottom: 30px;
}

.about-first_sec,
.page-template-page-about-first_sec {
  text-align: center;
}

.about-first_sec_focus,
.page-template-page-about-first_sec_focus {
  padding-top: 10px;
  padding-bottom: 0px;
}

.about-first_sec_focus img,
.page-template-page-about-first_sec_focus img {
  width: 90%;
  max-width: 320px;
}

.about-first_sec h3,
.page-template-page-about-first_sec h3 {
  margin-bottom: -14px;
  margin-top: 28px;
  font-size: 17px;
  color: #e8380d;
}

.about-first_sec_txt,
.page-template-page-about-first_sec_txt {
  background-color: #f2f2f2;
  padding-top: 40px;
  padding-bottom: 32px;
  line-height: 26px;
}

.about-first_sec_txt_inner,
.page-template-page-about-first_sec_txt_inner {
  max-width: 500px;
  text-align: left;
  padding: 0px 20px;
  width: 100%;
  margin: auto;
}

.about-vbd_sec .inner_header_title,
.page-template-page-about-vbd_sec .inner_header_title {
  background-image: url(../images/about/policy_header.jpg);
}

.about-vbd_sec .inner_header_title .sec-tlt,
.page-template-page-about-vbd_sec .inner_header_title .sec-tlt {
  color: #ffffff !important;
}

.about-vbd_sec .about-inner_sec:after,
.page-template-page-about-vbd_sec .about-inner_sec:after {
  content: "";
  clear: both;
  display: block;
}

.about-vbd_sec_fig_contents_list,
.page-template-page-about-vbd_sec_fig_contents_list {
  text-align: center;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 30px;
}

.about-vbd_sec_fig_contents_list li,
.page-template-page-about-vbd_sec_fig_contents_list li {
  display: inline-block;
  width: 47%;
  margin-bottom: 3%;
}

.about-vbd_sec_fig_contents_list_dot,
.page-template-page-about-vbd_sec_fig_contents_list_dot {
  margin-top: 20px;
}

.about-vbd_sec_fig_contents .dot_list li,
.page-template-page-about-vbd_sec_fig_contents .dot_list li {
  margin-bottom: 0px;
}

.about-vbd_sec .inner-contact_box,
.page-template-page-about-vbd_sec .inner-contact_box {
  margin-top: 40px;
}

.about-mvv_sec .inner_header_title,
.page-template-page-about-mvv_sec .inner_header_title {
  background-image: url(../images/about/offer_header.jpg);
}

.about-mvv_sec .inner_header_title .sec-tlt,
.page-template-page-about-mvv_sec .inner_header_title .sec-tlt {
  color: #ffffff !important;
}

.about-mvv_sec_hyperautomation_sec,
.page-template-page-about-mvv_sec_hyperautomation_sec {
  border-bottom: none;
  padding-bottom: 0px;
}

.about-mvv_sec .hyperautomation_fig,
.page-template-page-about-mvv_sec .hyperautomation_fig {
  margin: 25px 0px;
}

.about-mvv_sec h5,
.page-template-page-about-mvv_sec h5 {
  font-size: 20px;
}

.about-mvv_sec_function,
.page-template-page-about-mvv_sec_function {
  margin-top: 25px;
  margin-bottom: 15px;
  border-bottom: solid 1px #f2f2f2;
}

.about-mvv_sec_function li,
.page-template-page-about-mvv_sec_function li {
  background-color: #f2f2f2;
  margin-bottom: 30px;
  padding: 30px 20px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.about-mvv_sec_function li:last-child,
.page-template-page-about-mvv_sec_function li:last-child {
  margin-bottom: 0px;
}

.about-mvv_sec_function li p,
.page-template-page-about-mvv_sec_function li p {
  width: 94%;
  padding-left: 30px;
  font-size: 16px !important;
  font-weight: bold;
  line-height: 20px;
  color: #e8380d;
}

.about-mvv_sec_function li:nth-of-type(1) img,
.page-template-page-about-mvv_sec_function li:nth-of-type(1) img {
  width: 73px;
  max-width: inherit;
}

.about-mvv_sec_function li:nth-of-type(2) img,
.page-template-page-about-mvv_sec_function li:nth-of-type(2) img {
  width: 80px;
  max-width: inherit;
}

.about-mvv_sec_function li:nth-of-type(3) img,
.page-template-page-about-mvv_sec_function li:nth-of-type(3) img {
  width: 60px;
  max-width: inherit;
}

.about-mvv_sec_function_img,
.page-template-page-about-mvv_sec_function_img {
  width: 40%;
  text-align: center;
}

.about-mvv_sec_title,
.page-template-page-about-mvv_sec_title {
  margin-top: 20px;
}

.about-mvv_sec .about-inner_sec_pt2:after,
.page-template-page-about-mvv_sec .about-inner_sec_pt2:after {
  content: "";
  clear: both;
  display: block;
}

.about-mvv_sec .about-inner_sec_pt2:first-child,
.page-template-page-about-mvv_sec .about-inner_sec_pt2:first-child {
  border-bottom: solid 1px #f2f2f2;
}

.about-mvv_sec_business,
.page-template-page-about-mvv_sec_business {
  border-bottom: none;
}

.about-mvv_sec_rental,
.page-template-page-about-mvv_sec_rental {
  padding-bottom: 40px !important;
}

.about-message_sec .inner_header_title,
.page-template-page-about-message_sec .inner_header_title {
  background-image: url(../images/about/process_header.jpg);
}

.about-message_sec_list_period,
.page-template-page-about-message_sec_list_period {
  background-color: #f2f2f2;
}

.about-message_sec_list_period h4,
.page-template-page-about-message_sec_list_period h4 {
  font-size: 18px !important;
}

.about-message_sec_list li,
.page-template-page-about-message_sec_list li {
  position: relative;
  text-align: center;
  border: solid 1px #f2f2f2;
  height: 160px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 40px;
  padding: 20px;
}

.about-message_sec_list li h4,
.page-template-page-about-message_sec_list li h4 {
  font-size: 18px;
  color: #e8380d;
}

.about-message_sec_list li p,
.page-template-page-about-message_sec_list li p {
  margin-top: 10px;
}

.about-message_sec_list li:after,
.page-template-page-about-message_sec_list li:after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 20px;
  right: 0;
  left: 0;
  bottom: -34px;
  background-image: url(../images/common/arrow_bottom@2x.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 30px;
}

.about-message_sec_list li:last-child:after,
.page-template-page-about-message_sec_list li:last-child:after {
  display: none;
}

.about-company_sec .inner_header_title,
.page-template-page-about-company_sec .inner_header_title {
  background-image: url(../images/about/company_header_s@2x.png);
}

.about-company_sec .l-detail_list:after,
.page-template-page-about-company_sec .l-detail_list:after {
  content: "";
  clear: both;
  display: block;
}

.about-company_sec .l-detail_list dd a,
.page-template-page-about-company_sec .l-detail_list dd a {
  color: #e8380d;
  text-decoration: none !important;
}

.about-company_sec .gmap,
.page-template-page-about-company_sec .gmap {
  margin-top: 30px;
}

.about-company_sec .gmap iframe,
.page-template-page-about-company_sec .gmap iframe {
  width: 100%;
  height: 215px;
}

.about-company_sec_access,
.page-template-page-about-company_sec_access {
  padding-bottom: 30px;
}

.about-company_sec_access_txt,
.page-template-page-about-company_sec_access_txt {
  margin-top: 30px;
}

.about-company_sec_access_txt a,
.page-template-page-about-company_sec_access_txt a {
  color: #e8380d;
}

/* ====================
 contact page
=======================*/

.contact .page-header,
.page-template-page-contact .page-header {
  background-image: url(../images/contact/page_header_s@2x.png);
}

.contact-first_sec,
.page-template-page-contact-first_sec {
  padding-top: 40px;
  padding-bottom: 0px !important;
  margin-bottom: 40px;
}

.contact-first_sec_txt,
.page-template-page-contact-first_sec_txt {
  margin-top: 20px;
  text-align: left;
  font-weight: bold;
}

.contact-first_sec_txt p,
.page-template-page-contact-first_sec_txt p {
  font-size: 15px;
}

.contact-first_sec_txt span,
.page-template-page-contact-first_sec_txt span {
  font-size: 12px;
  color: #999999;
}

.contact .req,
.page-template-page-contact .req {
  color: #e8380d;
}

.contact .contact-table,
.page-template-page-contact .contact-table {
  margin: auto;
  margin-top: 60px;
}

.contact .contact-table dt,
.page-template-page-contact .contact-table dt {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 8px;
}

.contact .contact-table dl,
.page-template-page-contact .contact-table dl {
  margin-bottom: 20px;
}

.contact .contact-table input,
.page-template-page-contact .contact-table input {
  padding: 20px 12px;
}

.contact .contact-table select,
.page-template-page-contact .contact-table select {
  border: solid 1px #e7e3e3;
}

.contact .contact-table .btn_rect,
.page-template-page-contact .contact-table .btn_rect {
  padding: 4px 20px;
  margin-top: 20px;
}

.contact .contact-table .submit,
.page-template-page-contact .contact-table .submit {
  border: none;
  background-color: unset;
  text-align: left;
}

.contact .contact-table .submit_wrap,
.page-template-page-contact .contact-table .submit_wrap {
  background-color: #f2f2f2;
  text-align: center;
  margin-top: 30px;
  padding: 40px 20px;
}

.contact .contact-table .submit_wrap_check label,
.page-template-page-contact .contact-table .submit_wrap_check label {
  font-weight: bold;
}

.contact .contact-table .submit_wrap_check p,
.page-template-page-contact .contact-table .submit_wrap_check p {
  margin-top: 20px;
  display: inline-block;
}

.contact .contact-table .submit_wrap_check_txt,
.page-template-page-contact .contact-table .submit_wrap_check_txt {
  font-weight: bold;
  display: inline-block;
}

.contact .contact-table .submit_wrap_check_txt a,
.page-template-page-contact .contact-table .submit_wrap_check_txt a {
  color: #e8380d;
}

.contact .contact-table .submit_wrap_check_attention,
.page-template-page-contact .contact-table .submit_wrap_check_attention {
  display: block !important;
}

.contact .contact-table .submit_wrap_check .mwform-checkbox-field span,
.page-template-page-contact .contact-table .submit_wrap_check .mwform-checkbox-field span {
  display: none;
}

.contact .contact-table textarea,
.page-template-page-contact .contact-table textarea {
  height: 300px;
  width: 100%;
  border: solid 1px #e7e3e3;
}

.contact .footer-column_contact,
.page-template-page-contact .footer-column_contact {
  display: none;
}

.contact .l-footer,
.page-template-page-contact .l-footer {
  margin-top: 10px;
}

.op07 {
  opacity: 0.7;
}

.contact-first_sec_txt_input {
  display: none;
}

.contact-first_sec_txt_confirm {
  display: none;
}

.contact .contact-first_sec_txt_input {
  display: block;
}

.confirmation .contact-first_sec_txt_confirm {
  display: block;
}

/* ====================
 digitalagency page
=======================*/

.digitalagency{
	font-family: "Noto Sans JP", sans-serif;	
	font-size: 14px;
}
.digitalagency.en_digi{
	padding-top: 49px;
}
@media screen and (max-width: 768px) {
	.digitalagency.en_digi{
		padding-top: 35px;
	}
}
.digitalagency.en_digi .main-block{
	margin-top: 0;
}

.digitalagency .page-header,
.page-template-page-digitalagency .page-header {
  background-image: url(../../img/segment/page_header.webp);
}

.digitalagency .page-header .l-container,
.page-template-page-digitalagency .page-header .l-container {
  padding: 0px;
}

.digitalagency .page-header .sec-tlt,
.page-template-page-digitalagency .page-header .sec-tlt {
  color: #ffffff !important;
}

.digitalagency .page-header .sec-tlt span,
.page-template-page-digitalagency .page-header .sec-tlt span {
  color: #ffffff !important;
}

.digitalagency .page-sec,
.page-template-page-digitalagency .page-sec {
  padding: 0px !important;
  margin-top: -55px;
}

.digitalagency .page-sec .l-container,
.page-template-page-digitalagency .page-sec .l-container {
  width: calc(100% - 40px);
  padding: 0px !important;
}

.digitalagency .page-sec .l-container_inner,
.page-template-page-digitalagency .page-sec .l-container_inner {
  padding: 0px 20px;
}

.digitalagency .page-sec .l-container p,
.page-template-page-digitalagency .page-sec .l-container p {
  font-size: 14px;
  line-height: 25px;
}

.digitalagency .page-sec .sec-contents,
.page-template-page-digitalagency .page-sec .sec-contents {
  padding: 24px 0;
}

.digitalagency-inner_sec,
.page-template-page-digitalagency-inner_sec {
  border-bottom: solid 1px #f2f2f2;
  padding: 30px 0px;
}

.digitalagency-inner_sec:first-child,
.page-template-page-digitalagency-inner_sec:first-child {
  padding-top: 0px;
}

.digitalagency-inner_sec:last-child,
.page-template-page-digitalagency-inner_sec:last-child {
  border-bottom: none;
  padding-bottom: 0px;
}

.digitalagency-inner_sec_pt2:nth-of-type(1),
.page-template-page-digitalagency-inner_sec_pt2:nth-of-type(1) {
  padding-bottom: 30px;
}

.digitalagency-first_sec,
.page-template-page-digitalagency-first_sec {
  text-align: center;
}

.digitalagency-first_sec_focus,
.page-template-page-digitalagency-first_sec_focus {
  padding-top: 30px;
  padding-bottom: 0px;
}

.digitalagency-first_sec_focus img,
.page-template-page-digitalagency-first_sec_focus img {
  width: 90%;
  max-width: 320px;
}

.digitalagency-first_sec h3,
.page-template-page-digitalagency-first_sec h3 {
  margin-bottom: -14px;
  margin-top: 28px;
  font-size: 17px;
  color: #e8380d;
  line-height: 1.6;
}
.digitalagency-first_sec h3::before,
.page-template-page-digitalagency-first_sec h3::before {
  content: none;
}

.digitalagency-first_sec_txt,
.page-template-page-digitalagency-first_sec_txt {
  background-color: #f2f2f2;
  padding-top: 40px;
  padding-bottom: 32px;
  line-height: 26px;
}

.digitalagency-first_sec_txt_inner,
.page-template-page-digitalagency-first_sec_txt_inner {
  max-width: 500px;
  text-align: left;
  padding: 0px 20px;
  width: 100%;
  margin: auto;
}

.digitalagency-sec,
.page-template-page-digitalagency-sec {
  text-align: center;
}

.digitalagency-sec_focus,
.page-template-page-digitalagency-sec_focus {
  padding-top: 30px;
  padding-bottom: 0px;
}

.digitalagency-sec_focus img,
.page-template-page-digitalagency-sec_focus img {
  width: 90%;
  max-width: 320px;
}

.digitalagency-sec h4,
.page-template-page-digitalagency-sec h4 {
  margin-bottom: -14px;
  margin-top: 28px;
  font-size: 17px;
  color: #e8380d;
}

.digitalagency-sec_txt,
.page-template-page-digitalagency-sec_txt {
  background-color: #f2f2f2;
  padding-top: 40px;
  padding-bottom: 32px;
  line-height: 26px;
  text-align: left;
}

.digitalagency-sec_txt_inner,
.page-template-page-digitalagency-sec_txt_inner {
  max-width: 490px;
  padding: 0px 20px;
  width: 100%;
  margin: auto;
}

.digitalagency-sec_normal_inner,
.page-template-page-digitalagency-sec_normal_inner {
  text-align: left;
  padding: 30px;
}

.digitalagency-sec_normal_inner h4,
.page-template-page-digitalagency-sec_normal_inner h4 {
  margin-bottom: 0px !important;
  margin-top: 0px !important;
}

.digitalagency-sec_normal_inner a,
.page-template-page-digitalagency-sec_normal_inner a {
  color: #e8380d !important;
  text-decoration: none;
}

.digitalagency-sec_normal_inner img,
.page-template-page-digitalagency-sec_normal_inner img {
  max-width: 820px;
  margin: auto;
  display: block;
}

.digitalagency-sec_normal_inner .img_w100,
.page-template-page-digitalagency-sec_normal_inner .img_w100 {
  max-width: 100% !important;
}

.digitalagency-sec_normal_txt,
.page-template-page-digitalagency-sec_normal_txt {
  margin-top: 20px;
  margin-bottom: 60px;
}

.digitalagency-sec_normal_txt_point,
.page-template-page-digitalagency-sec_normal_txt_point {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 20px;
  margin-bottom: 60px;
}

.digitalagency-sec_normal_txt_point li,
.page-template-page-digitalagency-sec_normal_txt_point li {
  width: 32%;
  padding: 60px 20px;
  background-color: #f7f8f8;
}

.digitalagency-sec_normal_txt_point li h5,
.page-template-page-digitalagency-sec_normal_txt_point li h5 {
  font-size: 25px;
  color: #e8380d;
  margin-bottom: 20px;
}

.digitalagency-sec_normal_txt_point li p,
.page-template-page-digitalagency-sec_normal_txt_point li p {
  font-size: 15px;
}

.digitalagency-sec_normal_txt_point li p span,
.page-template-page-digitalagency-sec_normal_txt_point li p span {
  position: relative;
  display: block;
  padding-left: 25px;
  font-weight: bold;
}

.digitalagency-sec_normal_txt_point li p span:before,
.page-template-page-digitalagency-sec_normal_txt_point li p span:before {
  content: "・";
  position: absolute;
  top: 0px;
  left: 5px;
}

.digitalagency_mission_sec .inner_header_title,
.page-template-page-digitalagency_mission_sec .inner_header_title {
  background-image: url(../../img/segment/mission_header.webp);
}

.digitalagency_mission_sec .inner_header_title .sec-tlt,
.page-template-page-digitalagency_mission_sec .inner_header_title .sec-tlt {
  color: #ffffff !important;
}

.digitalagency_business_sec .inner_header_title,
.page-template-page-digitalagency_business_sec .inner_header_title {
  background-image: url(../../img/segment/business_header.webp);
}

.digitalagency_business_sec .l-container,
.page-template-page-digitalagency_business_sec .l-container {
  text-align: left;
}

.digitalagency_clients_sec .inner_header_title,
.page-template-page-digitalagency_clients_sec .inner_header_title {
  background-image: url(../images/digitalagency/clients_header.jpg);
}

.digitalagency_clients_sec .inner_header_title .sec-tlt,
.page-template-page-digitalagency_clients_sec .inner_header_title .sec-tlt {
  color: #ffffff !important;
}

.digitalagency_clients_sec .l-container,
.page-template-page-digitalagency_clients_sec .l-container {
  text-align: left;
}

.home {
  /* ====================
   mainvisual
  =======================*/
}

.home .mainvisual {
  width: 100%;
  height: auto;
  position: relative;
  background-image: url(../images/index/mv_bg_s.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
}

.home .mainvisual-contents {
  height: 100vh;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

.home .mainvisual-contents_inner {
  padding: 10px;
  text-align: center;
  max-width: 470px;
  margin-bottom: 100px;
  width: 90%;
}

.home .mainvisual-contents_inner .btn_rect {
  margin-top: 40px;
}

.home .mainvisual-scroll {
  position: absolute;
  bottom: 63px;
  font-family: "Barlow", sans-serif;
  text-decoration: none;
  color: #000000;
  font-weight: bold;
  font-size: 12px;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
}

.home .mainvisual-scroll span {
  top: 13px;
  position: relative;
}

.home .mainvisual-scroll:before {
  content: "";
  position: absolute;
  bottom: -42px;
  left: 0;
  right: 0;
  margin: auto;
  width: 1px;
  height: 25px;
  background-color: #000000;
  display: block;
  transition: .3s;
}

.home .mainvisual-scroll:after {
  content: "";
  position: absolute;
  bottom: -45px;
  left: 0;
  right: 0;
  margin: auto;
  width: 9px;
  height: 9px;
  border: solid 1px #000000;
  border-radius: 100px;
  display: block;
  transition: .3s;
}

.home .mainvisual-scroll:hover:before {
  bottom: -45px;
}

.home .mainvisual-scroll:hover:after {
  bottom: -50px;
  width: 12px;
  height: 12px;
}

.home-card {
  background-color: #ffffff;
  box-shadow: 0 0 8px 0px #d0d0d0;
}

.home-card_sec {
  padding: 20px 0px;
}

.home-card_sec .sec-tlt {
  font-size: 52px;
  line-height: 68px;
}

.home-card_sec .l-container {
  padding: 0px 25px;
}

.home-card_img {
  overflow: hidden;
  position: relative;
}

.home-card_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-card_txt {
  padding: 40px 20px;
  position: relative;
}

.home-card_txt p {
  margin-top: 3%;
  line-height: 25px;
  letter-spacing: 0px;
}

.home-card_txt a {
  text-align: left;
  margin-top: 40px;
}

.home-card_txt_attention {
  font-size: 15px;
  font-weight: bold;
}

.home-team_sec_profile {
  position: relative;
  margin-top: 15% !important;
  max-width: 320px;
  padding-top: 1px;
}

.home-team_sec_profile p {
  font-size: 17px !important;
  font-weight: bold;
}

.home-team_sec_profile:before {
  content: "";
  width: 23px;
  height: 17px;
  display: block;
  background-image: url(../images/index/comma_up@2x.png);
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  position: absolute;
  top: -25px;
  left: 0px;
}

.home-team_sec_profile:after {
  content: "";
  width: 22px;
  height: 15px;
  display: block;
  background-image: url(../images/index/comma_low@2x.png);
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  position: absolute;
  bottom: -20px;
  right: 0px;
}

.home-team_sec_profile span {
  display: block;
  font-weight: normal;
  font-size: 12px;
  line-height: 19px;
  margin-bottom: 10px;
  margin-top: 12px;
}

.home-team_sec_profile_br {
  display: block;
}

.home-first_sec {
  background-image: url(../images/index/first_s.png);
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  padding: 42vw 10px 30px 10px;
  position: relative;
  overflow: hidden;
}

.home-first_sec h2 {
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 35px;
}

.home-first_sec p {
  color: #ffffff;
  font-size: 14px;
  letter-spacing: 0px;
  line-height: 25px;
  position: relative;
  z-index: 10;
  max-width: 510px;
}

.home-first_sec_fig {
  display: none;
}

.home-about_sec {
  padding-top: 60px;
}

.home-about_sec_first_inner {
  padding: 0px 10px;
}

.home-about_sec_first_inner_txt h3 {
  margin: 20px 0px 20px 0px;
  line-height: 27px;
  letter-spacing: 2px;
}

.home-about_sec_first_inner_txt p {
  line-height: 25px;
  letter-spacing: 0px;
}

.home-about_sec_first_inner_txt a span {
  margin-left: 0px !important;
}

.home-about_sec_first img {
  margin: 11px auto;
  max-width: 320px;
  display: block;
  position: relative;
}

.home_sub_contents .l-container {
  padding: 0px 25px;
}

.home_sub_contents .l-container:after {
  content: "";
  clear: both;
  display: block;
}

.home_sub_contents .btn {
  text-align: center;
}

.home_sub_contents_title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 42px;
  line-height: 9px;
}

.home_sub_contents .articles_list li {
  width: 48%;
  margin: 0px 0px 25px 0px;
}

.home_sub_contents .articles_list_end {
  height: 29vw;
}

.home_sub_contents_list {
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.home_sub_contents_list li {
  /*
      &:first-child{
        @include min-screen($break_point_pc) {
          display: block !important;
        }
      }
      &:last-child{
        @include min-screen($break_point_pc) {
          display: none;
        }
      }
      */
}

.home_sub_contents_list .articles_list_img {
  height: 29vw;
}

.home_sub_contents_list .articles_list_date {
  margin-top: 12px;
  font-size: 14px;
}

.home_sub_contents_list .articles_list_date:before,
.home_sub_contents_list .articles_list_date:after {
  content: "";
  display: inline-block;
  width: 4px;
  height: 15px;
  position: relative;
  top: 2px;
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
}

.home_sub_contents_list .articles_list_date:before {
  background-image: url(../images/event/date_before@2x.png);
  margin-right: 1px;
}

.home_sub_contents_list .articles_list_date:after {
  background-image: url(../images/event/date_after@2x.png);
  margin-left: 1px;
}

.home_sub_contents_list .articles_list_tlt {
  font-weight: normal;
  margin-top: 6px;
}

.home_sub_contents_event_list {
  margin-top: 37px;
}

.home_sub_contents_news_list {
  margin-top: 37px;
}

.home_sub_contents_news_list_data {
  font-size: 14px;
  font-family: "Barlow Condensed", sans-serif;
}

.home_sub_contents_news_list li {
  width: 100% !important;
  margin-bottom: 10px;
}

.home_sub_contents_news_list li a {
  text-decoration: none;
}

.home_sub_contents_news_list li a h3 {
  font-size: 13px;
  line-height: 22px;
  font-weight: normal;
}

/* ====================
 member page
=======================*/

.member .page-header,
.post-type-archive-member .page-header {
  background-image: url(../images/member/page_header.jpg);
}

.member .main-block .l-container,
.post-type-archive-member .main-block .l-container {
  padding: 20px 0px 0px 0px !important;
}

.member .main-block .articles_list li:nth-of-type(even),
.post-type-archive-member .main-block .articles_list li:nth-of-type(even) {
  margin-right: 0px !important;
}

.member .main-block .articles_list li:nth-of-type(odd),
.post-type-archive-member .main-block .articles_list li:nth-of-type(odd) {
  margin-left: 0px !important;
}

.member .main-block .articles_list li:hover,
.post-type-archive-member .main-block .articles_list li:hover {
  opacity: 1 !important;
}

.member .main-block .articles_list li a:hover,
.post-type-archive-member .main-block .articles_list li a:hover {
  color: #e8380d !important;
}

.member .main-block .articles_list_date,
.post-type-archive-member .main-block .articles_list_date {
  font-weight: bold;
  margin-top: 6px;
  font-size: 2.5vw;
  position: relative;
  font-family: "Barlow", sans-serif;
  font-feature-settings: "palt" 1;
  letter-spacing: 0px;
  /*
      &:before, &:after{
        content: "";
        display: inline-block;
        width: 4px;
        height: 15px;
        position: relative;
        top: 4px;
        background-size: cover;
        background-position: center bottom;
        background-repeat: no-repeat;
        @include min-screen($break_point_pc) {
          width: 8px;
          height: 27px;
          background-size: contain;
          top: 6px;
        }
      }
      &:before{
        background-image: url(../images/event/date_before@2x.png);
        margin-right: 1px;
      }
      &:after{
        background-image: url(../images/event/date_after@2x.png);
        margin-left: 1px;
      }
      */
}

.single-event .l-container_inner {
  padding: 0px 15px !important;
}

.single-event_header {
  border-bottom: solid 1px #e7e3e3;
  padding-bottom: 25px;
}

.single-event_header img {
  display: block;
  margin: auto;
  width: 100%;
}

.single-event_header_tlt {
  margin-top: 20px;
}

.single-event_header_tlt_data {
  font-weight: bold;
  margin-top: 6px;
  font-size: 14px;
  position: relative;
  font-family: "Barlow", sans-serif;
  font-feature-settings: "palt" 1;
  letter-spacing: 0.5px;
}

.single-event_header_tlt_data:before,
.single-event_header_tlt_data:after {
  content: "";
  display: inline-block;
  width: 5px;
  height: 19px;
  position: relative;
  top: 4px;
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
}

.single-event_header_tlt_data:before {
  background-image: url(../images/event/date_before@2x.png);
  margin-right: 1px;
}

.single-event_header_tlt_data:after {
  background-image: url(../images/event/date_after@2x.png);
  margin-left: 1px;
}

.single-event_header_tlt h3 {
  margin-top: 10px;
  font-size: 17px;
}

.single-event_header_end {
  background-color: #f2f2f2;
  text-align: center;
  padding: 20px 0px;
  margin-top: 20px;
}

.single-event_header_end p {
  font-weight: bold;
  font-size: 15px;
}

.single-event_header_end p a {
  font-size: 15px;
  color: #e8380d;
}

.single-event_sec {
  padding: 20px 0px;
}

.single-event_sec:after {
  content: "";
  clear: both;
  display: block;
}

.single-event_sec_tlt h3 {
  position: relative;
  font-size: 20px;
  line-height: 20px;
  color: #e8380d;
  margin-bottom: 20px;
}

.single-event_sec_tlt h3 span {
  background-color: #ffffff;
  position: relative;
  z-index: 10;
  padding-right: 15px;
}

.single-event_sec_tlt h3:before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #e7e3e3;
  position: absolute;
  top: 50%;
  left: 0px;
}

.single-event_sec_contents a {
  color: #e8380d;
}

.single-event_sec_contents_txt h4 {
  margin: 10px 0px;
  color: #e8380d;
  font-size: 17px;
}

.single-event_sec_contents_txt h5 {
  margin: 5px 0px;
  font-size: 14px;
}

.single-event_sec_contents_txt p {
  font-size: 15px;
}

.single-event_sec_contents_txt_speakers:after {
  content: "";
  clear: both;
  display: block;
}

.single-event_sec_contents_txt_speakers img {
  width: 220px;
  float: left;
  padding: 0px 30px 0px 0px;
}

.single-event_sec_contents_txt_speakers_txt {
  float: right;
  font-size: 15px;
  width: calc(100% - 220px);
}

.single-event_sec_contents_txt_speakers_txt h4 {
  color: #e8380d;
  font-size: 20px;
  margin-bottom: 7px;
}

.single-event_sec_contents_list {
  border: solid 1px #e7e3e3;
  padding: 20px;
  margin-top: 25px;
}

.single-event_sec_contents_list dl {
  margin-bottom: 20px;
}

.single-event_sec_contents_list dl:last-child {
  margin-bottom: 0px;
}

.single-event_sec_contents_list dl dt {
  font-size: 15px;
  font-weight: bold;
  color: #e8380d;
  margin-bottom: 5px;
  position: relative;
}

.single-event_sec_contents_list dl dt span {
  background-color: #ffffff;
  position: relative;
  z-index: 10;
  padding-right: 20px;
}

.single-event_sec_contents_list dl dt:before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #e7e3e3;
  position: absolute;
  top: 50%;
  left: 0px;
}

.single-event_sec_contents_list dl dd {
  font-size: 14px;
}

.single-event_sec_contents_schedule {
  border: solid 1px #e7e3e3;
}

.single-event_sec_contents_schedule li {
  padding: 20px 10px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
}

.single-event_sec_contents_schedule li:nth-of-type(even) {
  background-color: #f5f5f5;
}

.single-event_sec_contents_schedule_time {
  font-weight: bold;
  width: 90px;
}

.single-event_sec_contents_schedule_txt {
  width: calc(100% - 80px);
}

.single-event_sec_contents_company h4 {
  margin-bottom: 5px !important;
  margin-top: 0px !important;
}

.single-event_sec_contents_company .single-event_sec_contents_txt {
  margin-bottom: 25px;
}

.single-event_sec_contents_company .single-event_sec_contents_txt:last-child {
  margin-bottom: 0px;
}

.single-event_sec_contents_speakers {
  margin-bottom: 35px;
}

.single-event_sec_contents_speakers:last-child {
  margin-bottom: 0px;
}

.single-event_sec_report_date {
  margin-bottom: 10px;
}

.single-event_sec_report .wp-caption {
  width: 100% !important;
}

.single-event_sec_report .wp-caption img {
  margin-bottom: 10px !important;
}

.single-event_sec_report .wp-caption p {
  font-size: 13px !important;
}

.single-event_sec_report h3 {
  color: #e8380d !important;
  font-size: 22px;
}

.single-event .btn-box {
  margin: 20px auto !important;
  width: 100%;
}

.youtube {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.report_style h1 {
  margin: 0 0 28px;
  color: #524a45;
  font-size: 26px;
  letter-spacing: 1px;
}

.report_style h2 {
  font-size: 24px;
  font-weight: 700;
  padding: 0px 0 15px 0;
  margin: 0px 0px 35px 0px;
  clear: both;
  background: 0 0;
  border-bottom: 4px solid #e8380d;
  letter-spacing: 1px;
}

.report_style h3 {
  font-size: 22px;
  clear: both;
  border-left: none;
  padding: 0 0 8px 12px;
  border-left: 4px solid #e8380d;
  border-bottom: 3px double #efefef;
  background: 0 0;
  letter-spacing: 1px;
  margin: 15px 0px 35px 0px;
  color: #000000 !important;
}

.report_style h4,
.report_style h5,
.report_style h6 {
  color: #000000;
  margin: 5px 0px 5px 0px !important;
}

.report_style h4 {
  font-size: 20px !important;
}

.report_style h5 {
  font-size: 17px !important;
}

.report_style h6 {
  font-size: 15px !important;
}

.report_style blockquote {
  background-color: #f9f9f9;
  padding: 15px 20px;
  margin: 0px 0px 20px 0px;
}

.report_style blockquote p {
  margin-bottom: 10px;
}

.report_style ul li {
  list-style: none;
  font-size: 14px;
  text-indent: -1em;
  padding: 5px 0 3px 1em;
}

.report_style ul li:before {
  content: "●";
  color: #e8380d;
  font-size: 12px;
  position: relative;
  top: -1px;
  margin-right: 3px;
}

.report_style p {
  margin-bottom: 20px;
}

.report_style img {
  margin: 10px 0px;
}

.report_style a[target="_blank"]::after {
  display: inline-block;
  width: 12px;
  height: 11px;
  content: "";
  margin-left: 5px;
  background-image: url(../images/icon/icon_link.svg);
  background-size: 100%;
}

/* ====================
 mvv page
=======================*/

.message .team-sec_profile,
.page-template-page-message .team-sec_profile {
  padding-bottom: 0px;
  margin-bottom: 60px;
  border-bottom: none !important;
}

.message .team-sec_profile_txt_discription h4,
.page-template-page-message .team-sec_profile_txt_discription h4 {
  margin-bottom: 0px !important;
}

.message .page-header,
.page-template-page-message .page-header {
  background-image: url(../images/message/page_header.jpg);
}

.message-sec_h5,
.page-template-page-message-sec_h5 {
  font-size: 20px;
  margin-bottom: 20px;
  color: #e8380d;
}

.message-sec_txt_col,
.page-template-page-message-sec_txt_col {
  margin-bottom: 60px;
}

.message-sec_txt_col_2block,
.page-template-page-message-sec_txt_col_2block {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  margin-bottom: 60px;
}

.message-sec_txt_col_2block img,
.page-template-page-message-sec_txt_col_2block img {
  -webkit-align-self: flex-start;
  -ms-flex-item-align: start;
  align-self: flex-start;
}

.message-sec_txt_col_paragraph,
.page-template-page-message-sec_txt_col_paragraph {
  font-size: 15px !important;
  line-height: 30px;
}

/* ====================
 mvv page
=======================*/

.mvv .page-header,
.page-template-page-mvv .page-header {
  background-image: url(../images/mvv/page_header.jpg);
}

.mvv .page-sec,
.page-template-page-mvv .page-sec {
  padding: 0px !important;
  margin-top: -55px;
}

.mvv .page-sec .l-container,
.page-template-page-mvv .page-sec .l-container {
  padding: 25px 0px 0px 0px !important;
  width: calc(100% - 40px);
}

.mvv .page-sec .l-container_inner,
.page-template-page-mvv .page-sec .l-container_inner {
  padding: 0px 20px;
}

.mvv .page-sec .l-container p,
.page-template-page-mvv .page-sec .l-container p {
  font-size: 14px;
  line-height: 25px;
}

.mvv .page-sec .sec-contents,
.page-template-page-mvv .page-sec .sec-contents {
  padding: 24px 0;
}

.mvv-inner_sec,
.page-template-page-mvv-inner_sec {
  border-bottom: solid 1px #f2f2f2;
  padding: 30px 0px;
}

.mvv-inner_sec:first-child,
.page-template-page-mvv-inner_sec:first-child {
  padding-top: 0px;
}

.mvv-inner_sec:last-child,
.page-template-page-mvv-inner_sec:last-child {
  border-bottom: none;
  padding-bottom: 0px;
}

.mvv-inner_sec_pt2:nth-of-type(1),
.page-template-page-mvv-inner_sec_pt2:nth-of-type(1) {
  padding-bottom: 30px;
}

.mvv-first_sec,
.page-template-page-mvv-first_sec {
  text-align: center;
}

.mvv-first_sec_focus,
.page-template-page-mvv-first_sec_focus {
  padding-top: 0px;
  padding-bottom: 20px;
}

.mvv-first_sec_focus img,
.page-template-page-mvv-first_sec_focus img {
  width: 90%;
  max-width: 320px;
}

.mvv-first_sec h3,
.page-template-page-mvv-first_sec h3 {
  margin-bottom: -14px;
  margin-top: 28px;
  font-size: 17px;
  color: #e8380d;
}

.mvv-first_sec_txt,
.page-template-page-mvv-first_sec_txt {
  background-color: #f2f2f2;
  padding-top: 40px;
  padding-bottom: 32px;
  line-height: 26px;
}

.mvv-first_sec_txt_inner,
.page-template-page-mvv-first_sec_txt_inner {
  max-width: 500px;
  text-align: left;
  padding: 0px 20px;
  width: 100%;
  margin: auto;
  text-align: center;
}

.mvv-sec,
.page-template-page-mvv-sec {
  text-align: center;
}

.mvv-sec_focus,
.page-template-page-mvv-sec_focus {
  padding-top: 10px;
  padding-bottom: 0px;
}

.mvv-sec_focus img,
.page-template-page-mvv-sec_focus img {
  width: 90%;
  max-width: 320px;
}

.mvv-sec h4,
.page-template-page-mvv-sec h4 {
  margin-bottom: -14px;
  margin-top: 28px;
  font-size: 17px;
  color: #e8380d;
}

.mvv-sec_txt,
.page-template-page-mvv-sec_txt {
  background-color: #f2f2f2;
  padding-top: 40px;
  padding-bottom: 32px;
  line-height: 26px;
  text-align: left;
}

.mvv-sec_txt_inner,
.page-template-page-mvv-sec_txt_inner {
  max-width: 490px;
  padding: 0px 20px;
  width: 100%;
  margin: auto;
}

.mvv-sec_normal_inner,
.page-template-page-mvv-sec_normal_inner {
  padding: 30px;
}

.mvv_mission_sec .inner_header_title,
.page-template-page-mvv_mission_sec .inner_header_title {
  background-image: url(../images/mvv/mission_header.jpg);
}

.mvv_mission_sec .inner_header_title .sec-tlt,
.page-template-page-mvv_mission_sec .inner_header_title .sec-tlt {
  color: #ffffff !important;
}

.mvv_value_sec .inner_header_title,
.page-template-page-mvv_value_sec .inner_header_title {
  background-image: url(../images/mvv/value_header.jpg);
}

.mvv_value_sec .inner_header_title .sec-tlt,
.page-template-page-mvv_value_sec .inner_header_title .sec-tlt {
  color: #ffffff !important;
}

.mvv_vision_sec .inner_header_title,
.page-template-page-mvv_vision_sec .inner_header_title {
  background-image: url(../images/mvv/vision_header.jpg);
}

.mvv_vision_sec .inner_header_title .sec-tlt,
.page-template-page-mvv_vision_sec .inner_header_title .sec-tlt {
  color: #ffffff !important;
}

.mvv_principle_sec .inner_header_title,
.page-template-page-mvv_principle_sec .inner_header_title {
  background-image: url(../images/mvv/principle_header.png);
}

.mvv_principle_sec .inner_header_title .sec-tlt,
.page-template-page-mvv_principle_sec .inner_header_title .sec-tlt {
  color: #ffffff !important;
}

.mvv_principle_sec .l-container,
.page-template-page-mvv_principle_sec .l-container {
  text-align: left;
}

/* ====================
 news
=======================*/

.news .page-header,
.column .page-header,
.post-type-archive-column .page-header {
  position: relative;
  background-image: url(../images/common/page_header_mini_bg@2x.png);
}

.news .main-block .l-container,
.column .main-block .l-container,
.post-type-archive-column .main-block .l-container {
  padding: 20px 0px 0px 0px !important;
}

.news .articles_list,
.column .articles_list,
.post-type-archive-column .articles_list {
  margin-top: 0px;
}

.news .articles_list li,
.column .articles_list li,
.post-type-archive-column .articles_list li {
  width: 45%;
}

.news .articles_list_img,
.column .articles_list_img,
.post-type-archive-column .articles_list_img {
  max-height: 190px;
}

.news .articles_list_noimg,
.column .articles_list_noimg,
.post-type-archive-column .articles_list_noimg {
  border: solid 1px #e3e3e3;
}

.news .articles_list_date,
.column .articles_list_date,
.post-type-archive-column .articles_list_date {
  font-size: 13px;
}

.news .articles_list_tlt,
.column .articles_list_tlt,
.post-type-archive-column .articles_list_tlt {
  font-size: 14px;
  font-weight: normal;
}

.single-news .l-container {
  background-color: #ffffff;
}

.single-news .l-container_inner {
  padding: 0px 20px !important;
}

.single-news .single-news_header {
  border-bottom: solid 1px #e5e1e1;
  padding-bottom: 27px;
}

.single-news .single-news_header img {
  width: 100%;
}

.single-news .single-news_header_tlt {
  margin-top: 25px;
  font-size: 19px;
}

.single-news .single-news_header_tlt_data {
  font-size: 17px;
  font-family: "Barlow", sans-serif;
  font-weight: bold;
  margin-top: 17px;
}

.single-news_sec {
  padding: 30px 0px !important;
}

.single-news_sec_txt {
  font-size: 14px;
  line-height: 29px;
}

.single-news_sec_txt a {
  color: #e8380d;
  text-decoration: none;
}

.single-news_sec_txt a[target="_blank"]::after {
  display: inline-block;
  width: 12px;
  height: 11px;
  content: "";
  margin-left: 5px;
  background-image: url(../images/icon/icon_link.svg);
  background-size: 100%;
}

.single_sns {
  text-align: right;
  margin-bottom: 10px;
}

.single_sns li {
  display: inline-block;
}

.single_sns li:nth-of-type(2) {
  position: relative;
  top: -5px;
  margin-left: 5px;
}

/* ====================
 policy page
=======================*/

.policy-first_sec {
  padding-top: 80px;
}

/* ====================
 portfolio page
=======================*/

.portfolio .page-header,
.page-template-page-portfolio .page-header {
  background-image: url(../images/portfolio/page_header_s@2x.png);
}

.portfolio .page-sec .l-container,
.page-template-page-portfolio .page-sec .l-container {
  padding: 25px 0px 0px 0px !important;
}

.portfolio-logo_sec h3,
.page-template-page-portfolio-logo_sec h3 {
  font-size: 25px;
  color: #e8380d;
  margin: 40px 0px 20px 0px;
}

.portfolio-logo_sec_list,
.page-template-page-portfolio-logo_sec_list {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  max-width: 1061px;
  margin: auto;
  padding: 1vw;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.portfolio-logo_sec_list_inner,
.page-template-page-portfolio-logo_sec_list_inner {
  margin: 15px;
}

.portfolio-logo_sec_list li,
.page-template-page-portfolio-logo_sec_list li {
  width: 46%;
  height: 36vw;
  margin: 2%;
  max-width: inherit;
  max-height: inherit;
  background-color: #ffffff;
  text-align: center;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.portfolio-logo_sec_list li img,
.page-template-page-portfolio-logo_sec_list li img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  max-width: 170px;
  margin: auto;
}

.portfolio-logo_sec_list li h4,
.page-template-page-portfolio-logo_sec_list li h4 {
  font-weight: bold;
  font-size: 4vw;
  width: 100%;
  margin-top: 10px;
}

/* ====================
 privacy page
=======================*/

.privacy-first_sec {
  padding-top: 80px;
}

.policy-block {
  position: relative;
  margin-top: 20px;
}

.policy-block .page-anchor {
  position: absolute;
  top: -64px;
  opacity: 0;
}

.policy-block h4 {
  margin-bottom: 15px;
  font-size: 18px;
  color: #333;
}

.policy-block p {
  margin-bottom: 15px;
}

.policy-block h5 {
  margin: 15px 0 10px;
  font-size: 14px;
  color: #333;
}

.privacy-policy .l-main_content a {
  color: #e8380d !important;
}

/* ====================
 recruit page
=======================*/

.recruit .page-header,
.page-template-page-recruit .page-header {
  background-image: url(../images/recruit/page_header_s@2x.png);
}

.recruit .page-sec .l-container,
.page-template-page-recruit .page-sec .l-container {
  padding: 0px 0px 10px 0px !important;
  background-color: #f8f8f8;
  overflow: hidden;
}

.recruit-sec,
.page-template-page-recruit-sec {
  position: relative;
}

.recruit-sec .sec-catch_tlt,
.page-template-page-recruit-sec .sec-catch_tlt {
  padding-top: 27px;
  z-index: 10;
  font-size: 25px;
}

.recruit-sec .sec-gray_txt,
.page-template-page-recruit-sec .sec-gray_txt {
  position: relative;
  text-align: right;
  padding: 34px 0px;
  padding-top: 95vw;
}

.recruit-sec .sec-gray_txt img,
.page-template-page-recruit-sec .sec-gray_txt img {
  width: 71vw;
  margin-bottom: -30vw;
}

.recruit-sec_txt,
.page-template-page-recruit-sec_txt {
  position: absolute;
  top: 9vw;
  left: 6vw;
  text-align: left;
  padding-right: 6vw;
  width: 80vw;
  min-width: 265px;
  font-size: 3.7vw;
  line-height: 7.5vw !important;
}

.recruit-sec_inner,
.page-template-page-recruit-sec_inner {
  margin-top: 28vw;
  padding: 0px 20px;
}

.recruit-sec_inner h4,
.page-template-page-recruit-sec_inner h4 {
  text-align: center;
  font-size: 20px;
  color: #e8380d;
}

.recruit-sec_toggle,
.page-template-page-recruit-sec_toggle {
  border: solid 1px #f2f2f2;
  margin-top: 20px;
  margin-bottom: 40px;
  background-color: #ffffff;
  display: block;
  text-decoration: none;
}

.recruit-sec_toggle h4,
.page-template-page-recruit-sec_toggle h4 {
  position: relative;
  text-align: left;
  font-size: 16px;
  color: #000000;
  padding: 14px 40px 14px 20px;
  cursor: pointer;
}

.recruit-sec_toggle h4 span,
.page-template-page-recruit-sec_toggle h4 span {
  display: block;
  font-size: 12px;
  font-family: "Barlow", sans-serif;
}

.recruit-sec_toggle h4 p,
.page-template-page-recruit-sec_toggle h4 p {
  position: absolute;
  top: 50%;
  right: 30px;
  height: 12px;
  margin-top: -6px;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  -webkit-transform-origin: center;
  transform-origin: center;
  transition: .3s;
}

.recruit-sec_toggle h4 p img,
.page-template-page-recruit-sec_toggle h4 p img {
  width: 17px;
  height: auto;
  position: relative;
  top: -8px;
}

.recruit-sec_toggle .open,
.page-template-page-recruit-sec_toggle .open {
  border-bottom: solid 1px #f2f2f2;
}

.recruit-sec_toggle .open p,
.page-template-page-recruit-sec_toggle .open p {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}

.recruit-sec_toggle_inner,
.page-template-page-recruit-sec_toggle_inner {
  padding: 20px 15px 40px 15px;
  display: none;
}

.recruit-sec_toggle_inner dt span,
.page-template-page-recruit-sec_toggle_inner dt span {
  color: #e8380d;
}

.recruit-sec_toggle_inner dd p,
.page-template-page-recruit-sec_toggle_inner dd p {
  margin-bottom: 10px;
}

.recruit-sec_toggle_inner dd ul li,
.page-template-page-recruit-sec_toggle_inner dd ul li {
  margin-bottom: 2px;
  position: relative;
  padding-left: 18px;
}

.recruit-sec_toggle_inner dd ul li:before,
.page-template-page-recruit-sec_toggle_inner dd ul li:before {
  content: "・";
  display: inline-block;
  position: absolute;
  top: 0px;
  left: 0px;
}

.recruit-sec_toggle_inner .btn-box a,
.page-template-page-recruit-sec_toggle_inner .btn-box a {
  padding: 20px;
}

.recruit .footer-column_recruit,
.page-template-page-recruit .footer-column_recruit {
  display: none;
}

/* ====================
 robottransformation page
=======================*/

.robottransformation .page-header,
.page-template-page-robottransformation .page-header {
  background-image: url(../images/robottransformation/page_header.jpg);
}

.robottransformation .page-header .sec-tlt,
.page-template-page-robottransformation .page-header .sec-tlt {
  color: #ffffff !important;
}

.robottransformation .page-header .sec-tlt span,
.page-template-page-robottransformation .page-header .sec-tlt span {
  color: #ffffff !important;
}

.robottransformation .page-sec,
.page-template-page-robottransformation .page-sec {
  padding: 0px !important;
  margin-top: -55px;
}

.robottransformation .page-sec .l-container,
.page-template-page-robottransformation .page-sec .l-container {
  padding: 25px 0px 0px 0px !important;
  width: calc(100% - 40px);
}

.robottransformation .page-sec .l-container_inner,
.page-template-page-robottransformation .page-sec .l-container_inner {
  padding: 0px 20px;
}

.robottransformation .page-sec .l-container p,
.page-template-page-robottransformation .page-sec .l-container p {
  font-size: 14px;
  line-height: 25px;
}

.robottransformation .page-sec .sec-contents,
.page-template-page-robottransformation .page-sec .sec-contents {
  padding: 24px 0;
}

.robottransformation-inner_sec,
.page-template-page-robottransformation-inner_sec {
  border-bottom: solid 1px #f2f2f2;
  padding: 30px 0px;
}

.robottransformation-inner_sec:first-child,
.page-template-page-robottransformation-inner_sec:first-child {
  padding-top: 0px;
}

.robottransformation-inner_sec:last-child,
.page-template-page-robottransformation-inner_sec:last-child {
  border-bottom: none;
  padding-bottom: 0px;
}

.robottransformation-inner_sec_pt2:nth-of-type(1),
.page-template-page-robottransformation-inner_sec_pt2:nth-of-type(1) {
  padding-bottom: 30px;
}

.robottransformation-first_sec,
.page-template-page-robottransformation-first_sec {
  text-align: center;
}

.robottransformation-first_sec_focus,
.page-template-page-robottransformation-first_sec_focus {
  padding-top: 10px;
  padding-bottom: 0px;
}

.robottransformation-first_sec_focus img,
.page-template-page-robottransformation-first_sec_focus img {
  width: 90%;
  max-width: 320px;
}

.robottransformation-first_sec h3,
.page-template-page-robottransformation-first_sec h3 {
  margin-bottom: -14px;
  margin-top: 28px;
  font-size: 17px;
  color: #e8380d;
}

.robottransformation-first_sec_txt,
.page-template-page-robottransformation-first_sec_txt {
  background-color: #f2f2f2;
  padding-top: 40px;
  padding-bottom: 32px;
  line-height: 26px;
}

.robottransformation-first_sec_txt_inner,
.page-template-page-robottransformation-first_sec_txt_inner {
  max-width: 500px;
  text-align: left;
  padding: 0px 20px;
  width: 100%;
  margin: auto;
}

.robottransformation-sec,
.page-template-page-robottransformation-sec {
  text-align: center;
}

.robottransformation-sec_focus,
.page-template-page-robottransformation-sec_focus {
  padding-top: 10px;
  padding-bottom: 0px;
}

.robottransformation-sec_focus img,
.page-template-page-robottransformation-sec_focus img {
  width: 90%;
  max-width: 320px;
}

.robottransformation-sec h4,
.page-template-page-robottransformation-sec h4 {
  margin-bottom: -14px;
  margin-top: 28px;
  font-size: 17px;
  color: #e8380d;
}

.robottransformation-sec_txt,
.page-template-page-robottransformation-sec_txt {
  background-color: #f2f2f2;
  padding-top: 40px;
  padding-bottom: 32px;
  line-height: 26px;
  text-align: left;
}

.robottransformation-sec_txt_inner,
.page-template-page-robottransformation-sec_txt_inner {
  max-width: 490px;
  padding: 0px 20px;
  width: 100%;
  margin: auto;
}

.robottransformation-sec_normal_inner,
.page-template-page-robottransformation-sec_normal_inner {
  text-align: left;
  padding: 30px;
}

.robottransformation-sec_normal_inner h4,
.page-template-page-robottransformation-sec_normal_inner h4 {
  margin-bottom: 0px !important;
  margin-top: 0px !important;
}

.robottransformation-sec_normal_txt,
.page-template-page-robottransformation-sec_normal_txt {
  margin-top: 20px;
}

.robottransformation_mission_sec .inner_header_title,
.page-template-page-robottransformation_mission_sec .inner_header_title {
  background-image: url(../images/robottransformation/mission_header.jpg);
}

.robottransformation_mission_sec .inner_header_title .sec-tlt,
.page-template-page-robottransformation_mission_sec .inner_header_title .sec-tlt {
  color: #ffffff !important;
}

.robottransformation_business_sec .inner_header_title,
.page-template-page-robottransformation_business_sec .inner_header_title {
  background-image: url(../images/robottransformation/business_header.jpg);
}

.robottransformation_business_sec .inner_header_title .sec-tlt,
.page-template-page-robottransformation_business_sec .inner_header_title .sec-tlt {
  color: #ffffff !important;
}

.robottransformation_business_sec .l-container,
.page-template-page-robottransformation_business_sec .l-container {
  text-align: left;
}

.robottransformation_business_sec .l-container p,
.page-template-page-robottransformation_business_sec .l-container p {
  margin-bottom: 40px;
}

.robottransformation_business_sec .l-container img,
.page-template-page-robottransformation_business_sec .l-container img {
  max-width: 820px;
  margin: auto;
  display: block;
}

/* ====================
 team page
=======================*/

.team .page-header,
.page-template-page-team .page-header {
  background-image: url(../images/team/page_header_s@2x.png);
}

.team-sec_profile,
.page-template-page-team-sec_profile {
  border-bottom: solid 1px #f2f2f2;
  padding-bottom: 30px;
  margin-bottom: 30px;
}

.team-sec_profile:after,
.page-template-page-team-sec_profile:after {
  content: "";
  clear: both;
  display: block;
}

.team-sec_profile:last-child,
.page-template-page-team-sec_profile:last-child {
  padding-bottom: 0px;
  border-bottom: none;
}

.team-sec_profile_mini:after,
.page-template-page-team-sec_profile_mini:after {
  content: "";
  clear: both;
  display: block;
}

.team-sec_profile_mini .team-sec_profile_txt,
.page-template-page-team-sec_profile_mini .team-sec_profile_txt {
  width: 100%;
}

.team-sec_profile_img,
.page-template-page-team-sec_profile_img {
  padding: 15px 30px 25px 30px;
}

.team-sec_profile_txt,
.page-template-page-team-sec_profile_txt {
  padding: 0px 10px;
}

.team-sec_profile_txt_catch,
.page-template-page-team-sec_profile_txt_catch {
  font-size: 17px;
  color: #e8380d;
  font-weight: bold;
  text-align: left;
}

.team-sec_profile_txt_header:after,
.page-template-page-team-sec_profile_txt_header:after {
  content: "";
  clear: both;
  display: block;
}

.team-sec_profile_txt_header h3,
.page-template-page-team-sec_profile_txt_header h3 {
  font-size: 23px;
  margin: 7px 0px;
}

.team-sec_profile_txt_header_tlt,
.page-template-page-team-sec_profile_txt_header_tlt {
  font-size: 12px;
  line-height: 17px;
  font-weight: bold;
  position: relative;
}

.team-sec_profile_txt_header_sns,
.page-template-page-team-sec_profile_txt_header_sns {
  margin: 10px 0px 12px 0px;
}

.team-sec_profile_txt_header_sns li,
.page-template-page-team-sec_profile_txt_header_sns li {
  display: inline-block;
}

.team-sec_profile_txt_header_sns li:first-child,
.page-template-page-team-sec_profile_txt_header_sns li:first-child {
  margin-right: 15px;
}

.team-sec_profile_txt_header_sns li i,
.page-template-page-team-sec_profile_txt_header_sns li i {
  font-size: 23px;
}

.team-sec_profile_txt_header_sns li .fa-facebook-f,
.page-template-page-team-sec_profile_txt_header_sns li .fa-facebook-f {
  color: #1978f2;
  font-size: 22px;
  position: relative;
  top: -1px;
}

.team-sec_profile_txt_header_sns li .fa-twitter,
.page-template-page-team-sec_profile_txt_header_sns li .fa-twitter {
  color: #1ea1f3;
}

.team-sec_profile_txt_discription,
.page-template-page-team-sec_profile_txt_discription {
  font-size: 14px;
  line-height: 25px;
}

.team-sec_profile_txt_discription h4,
.page-template-page-team-sec_profile_txt_discription h4 {
  font-size: 15px;
  margin-top: 30px;
}

/* ユーティリティ(color, size, spacing, etc.) */

.u-ta-l {
  text-align: left !important;
}

.u-ta-c {
  text-align: center !important;
}

.u-ta-r {
  text-align: right !important;
}

.u-ta-j {
  text-align: justify !important;
  -ms-text-justify: inter-ideograph !important;
  text-justify: inter-ideograph !important;
}

.u-bc-lightgray {
  background-color: #f7f8f8 !important;
}

.u-bc-blue {
  background-color: #17acc7 !important;
}

.u-bc-white {
  background-color: #ffffff;
}

.u-bc--salmon {
  background-color: #feb38a;
}

.u-bc--skyblue {
  background-color: #a9dee4;
}

.u-bdr-t {
  border-top: 1px solid !important;
}

.u-bdr-b {
  border-bottom: 1px solid !important;
}

.u-bdr-l {
  border-left: 1px solid !important;
}

.u-bdr-r {
  border-right: 1px solid !important;
}

.u-bdr-n {
  border: none !important;
}

.u-c-black {
  color: #000 !important;
}

.u-c-white {
  color: white !important;
}

.u-c-red {
  color: #FF0000 !important;
}

.u-c-green {
  color: #3ead6d !important;
}

.u-c-blue {
  color: #f4f9fc;
}

.u-cs-a {
  cursor: auto;
}

.u-cs-p {
  cursor: pointer;
}

.u-sp-hide {
  display: none !important;
}

.u-sp-hide-b {
  display: none !important;
}

.u-pc-hide-b {
  display: block !important;
}

.u-d-i {
  display: inline !important;
}

.u-d-ib {
  display: inline-block !important;
}

.u-d-b {
  display: block !important;
}

.u-fs-8 {
  font-size: 8px !important;
}

.u-fs-9 {
  font-size: 9px !important;
}

.u-fs-10 {
  font-size: 10px !important;
}

.u-fs-11 {
  font-size: 11px !important;
}

.u-fs-12 {
  font-size: 12px !important;
}

.u-fs-13 {
  font-size: 13px !important;
}

.u-fs-14 {
  font-size: 14px !important;
}

.u-fs-15 {
  font-size: 15px !important;
}

.u-fs-16 {
  font-size: 16px !important;
}

.u-fs-17 {
  font-size: 17px !important;
}

.u-fs-18 {
  font-size: 18px !important;
}

.u-fs-19 {
  font-size: 19px !important;
}

.u-fs-20 {
  font-size: 20px !important;
}

.u-fs-21 {
  font-size: 21px !important;
}

.u-fs-22 {
  font-size: 22px !important;
}

.u-fs-23 {
  font-size: 23px !important;
}

.u-fs-24 {
  font-size: 24px !important;
}

.u-fs-25 {
  font-size: 25px !important;
}

.u-fs-26 {
  font-size: 26px !important;
}

.u-fs-27 {
  font-size: 27px !important;
}

.u-fs-28 {
  font-size: 28px !important;
}

.u-fs-29 {
  font-size: 29px !important;
}

.u-fs-30 {
  font-size: 30px !important;
}

.u-fs-31 {
  font-size: 31px !important;
}

.u-fs-32 {
  font-size: 32px !important;
}

.u-fs-33 {
  font-size: 33px !important;
}

.u-fs-34 {
  font-size: 34px !important;
}

.u-fs-35 {
  font-size: 35px !important;
}

.u-fs-36 {
  font-size: 36px !important;
}

.u-fs-37 {
  font-size: 37px !important;
}

.u-fs-38 {
  font-size: 38px !important;
}

.u-fs-39 {
  font-size: 39px !important;
}

.u-fs-40 {
  font-size: 40px !important;
}

.f-s-small {
  font-size: 12px;
}

.u-mt-0 {
  margin-top: 0px !important;
}

.u-mt-5 {
  margin-top: 5px !important;
}

.u-mt-10 {
  margin-top: 10px !important;
}

.u-mt-15 {
  margin-top: 15px !important;
}

.u-mt-20 {
  margin-top: 20px !important;
}

.u-mt-25 {
  margin-top: 25px !important;
}

.u-mt-30 {
  margin-top: 30px !important;
}

.u-mt-35 {
  margin-top: 35px !important;
}

.u-mt-40 {
  margin-top: 40px !important;
}

.u-mt-45 {
  margin-top: 45px !important;
}

.u-mt-50 {
  margin-top: 50px !important;
}

.u-mt-55 {
  margin-top: 55px !important;
}

.u-mt-60 {
  margin-top: 60px !important;
}

.u-mt-65 {
  margin-top: 65px !important;
}

.u-mt-70 {
  margin-top: 70px !important;
}

.u-mt-75 {
  margin-top: 75px !important;
}

.u-mt-80 {
  margin-top: 80px !important;
}

.u-mt-85 {
  margin-top: 85px !important;
}

.u-mt-90 {
  margin-top: 90px !important;
}

.u-mt-95 {
  margin-top: 95px !important;
}

.u-mt-100 {
  margin-top: 100px !important;
}

.u-mb-0 {
  margin-bottom: 0px !important;
}

.u-mb-5 {
  margin-bottom: 5px !important;
}

.u-mb-10 {
  margin-bottom: 10px !important;
}

.u-mb-15 {
  margin-bottom: 15px !important;
}

.u-mb-20 {
  margin-bottom: 20px !important;
}

.u-mb-25 {
  margin-bottom: 25px !important;
}

.u-mb-30 {
  margin-bottom: 30px !important;
}

.u-mb-35 {
  margin-bottom: 35px !important;
}

.u-mb-40 {
  margin-bottom: 40px !important;
}

.u-mb-45 {
  margin-bottom: 45px !important;
}

.u-mb-50 {
  margin-bottom: 50px !important;
}

.u-mb-55 {
  margin-bottom: 55px !important;
}

.u-mb-60 {
  margin-bottom: 60px !important;
}

.u-mb-65 {
  margin-bottom: 65px !important;
}

.u-mb-70 {
  margin-bottom: 70px !important;
}

.u-mb-75 {
  margin-bottom: 75px !important;
}

.u-mb-80 {
  margin-bottom: 80px !important;
}

.u-mb-85 {
  margin-bottom: 85px !important;
}

.u-mb-90 {
  margin-bottom: 90px !important;
}

.u-mb-95 {
  margin-bottom: 95px !important;
}

.u-mb-100 {
  margin-bottom: 100px !important;
}

.u-pt-0 {
  padding-top: 0px !important;
}

.u-pt-5 {
  padding-top: 5px !important;
}

.u-pt-10 {
  padding-top: 10px !important;
}

.u-pt-15 {
  padding-top: 15px !important;
}

.u-pt-20 {
  padding-top: 20px !important;
}

.u-pt-25 {
  padding-top: 25px !important;
}

.u-pt-30 {
  padding-top: 30px !important;
}

.u-pt-35 {
  padding-top: 35px !important;
}

.u-pt-40 {
  padding-top: 40px !important;
}

.u-pt-45 {
  padding-top: 45px !important;
}

.u-pt-50 {
  padding-top: 50px !important;
}

.u-pt-55 {
  padding-top: 55px !important;
}

.u-pt-60 {
  padding-top: 60px !important;
}

.u-pt-65 {
  padding-top: 65px !important;
}

.u-pt-70 {
  padding-top: 70px !important;
}

.u-pt-75 {
  padding-top: 75px !important;
}

.u-pt-80 {
  padding-top: 80px !important;
}

.u-pt-85 {
  padding-top: 85px !important;
}

.u-pt-90 {
  padding-top: 90px !important;
}

.u-pt-95 {
  padding-top: 95px !important;
}

.u-pt-100 {
  padding-top: 100px !important;
}

.u-pb-0 {
  padding-bottom: 0px !important;
}

.u-pb-5 {
  padding-bottom: 5px !important;
}

.u-pb-10 {
  padding-bottom: 10px !important;
}

.u-pb-15 {
  padding-bottom: 15px !important;
}

.u-pb-20 {
  padding-bottom: 20px !important;
}

.u-pb-25 {
  padding-bottom: 25px !important;
}

.u-pb-30 {
  padding-bottom: 30px !important;
}

.u-pb-35 {
  padding-bottom: 35px !important;
}

.u-pb-40 {
  padding-bottom: 40px !important;
}

.u-pb-45 {
  padding-bottom: 45px !important;
}

.u-pb-50 {
  padding-bottom: 50px !important;
}

.u-pb-55 {
  padding-bottom: 55px !important;
}

.u-pb-60 {
  padding-bottom: 60px !important;
}

.u-pb-65 {
  padding-bottom: 65px !important;
}

.u-pb-70 {
  padding-bottom: 70px !important;
}

.u-pb-75 {
  padding-bottom: 75px !important;
}

.u-pb-80 {
  padding-bottom: 80px !important;
}

.u-pb-85 {
  padding-bottom: 85px !important;
}

.u-pb-90 {
  padding-bottom: 90px !important;
}

.u-pb-95 {
  padding-bottom: 95px !important;
}

.u-pb-100 {
  padding-bottom: 100px !important;
}

.u-fs-o {
  font-style: oblique !important;
}

.u-td-u {
  text-decoration: underline !important;
}

.u-fw-n {
  font-weight: normal !important;
}

.u-fw-b {
  font-weight: bold !important;
}

@media screen and (min-width: 768px) {
  img {
    width: auto;
  }

  .flex-col {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .flex-col_2 > li {
    width: 50%;
  }

  .flex-col_3 > li {
    width: 33.3333%;
  }

  .flex-col_4 > li {
    width: 25%;
  }

  .flex-col_5 > li {
    width: 20%;
  }

  .flex-col-sp_2 > li {
    width: 100%;
  }

  .flex-col-sp_2_nmargin > li {
    width: 100%;
  }

  .flex-col_pc {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .link-arrow::after {
    margin-left: 10px;
  }

  .link-arrow__left::before {
    margin-top: -3px;
    margin-right: 10px;
    font-size: 16px;
  }

  .viewlinks {
    font-size: 16px;
  }

  .table {
    display: table;
    margin-top: 30px;
    text-align: left;
    border-collapse: collapse;
  }

  .table dl {
    display: table-row;
  }

  .table dl dt {
    display: table-cell;
    padding: 10px 25px;
    border: 1px solid #f2f2f2;
  }

  .table dl dd {
    display: table-cell;
    padding: 10px 25px;
    border: 1px solid #f2f2f2;
  }

  .table--min {
    width: 500px;
  }

  .table--min dl dt {
    width: 170px;
  }

  .table--default {
    margin: 0;
  }

  .table--default dt {
    width: 180px;
    vertical-align: middle;
  }

  .table .table-note {
    padding-left: 1.5em;
    font-size: 13px;
  }

  .table .table-note::before {
    position: absolute;
    top: 0px;
    left: 0;
  }

  .table-ordered {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .table-ordered > li {
    width: calc(50% - 10px);
    margin-bottom: 20px;
    min-height: 140px;
  }

  .table-ordered > li .table-ordered__num {
    width: 50px;
    font-size: 23px;
  }

  .table-ordered > li .table-ordered__txt {
    padding: 30px 20px;
  }

  .table-ordered > li .table-ordered__txt .table-ordered__title {
    font-size: 18px;
  }

  .table-ordered > li .table-ordered__txt .table-ordered__txt--last {
    font-size: 23px;
  }

  .form-submit {
    width: 200px;
    margin-left: 296px;
    border-radius: 0 4px 4px 0;
    font-size: 16px;
  }

  .form-submit:hover {
    opacity: 0.6;
  }

  .submit-btn {
    margin-top: 30px;
  }

  .submit-btn:after {
    left: 480px;
    right: 0;
    font-size: 16px;
    font-weight: bold;
  }

  .section-confirmation input[type="submit"],
  .section-confirmation input[type="button"] {
    font-size: 16px;
  }

  .section-confirmation .input-submit {
    width: 200px;
    display: inline-block;
    margin: 0 20px 0 100px;
  }

  .section-confirmation .input-button {
    width: 200px;
    display: inline-block;
  }

  select {
    width: 290px;
  }

  textarea {
    width: 100%;
    height: 140px;
  }

  input[type="text"].input__min {
    width: 290px;
  }

  input[type="text"].middle-width {
    width: 340px;
  }

  input[type="text"].full-width {
    width: 100%;
  }

  input[type="text"].full-width--670 {
    width: 670px;
  }

  .input-birth input[type="text"] {
    float: inherit;
  }

  input.input-year {
    width: 113px;
  }

  input.input-month {
    width: 52px;
  }

  input.input-day {
    width: 52px;
  }

  input[type="text"].input--inline {
    display: inline-block;
    width: 90%;
  }

  body,
  button,
  input,
  select,
  textarea {
    font-size: 16px;
  }

  .bx-wrapper .bx-pager.bx-default-pager a {
    width: 12px;
    height: 12px;
  }

  .breadcrumb {
    padding-left: 20px;
    bottom: 100px;
    font-size: 14px !important;
  }

  .c-btn--col2 .btn {
    display: inline-block;
    margin: 0 10px;
  }

  .btn {
    font-size: 21px;
    padding-bottom: 6px;
  }

  .btn_more span {
    font-size: 16px;
    margin-left: 0px;
  }

  .btn_more span:before {
    right: -40px;
    width: 32px;
    height: 6px;
  }

  .btn_more span:after {
    right: -46px;
    width: 20px;
    height: 20px;
    border: solid 1px #e8380d;
  }

  .btn_more span:hover:before {
    right: -45px;
  }

  .btn_more span:hover:after {
    right: -51px;
    width: 17px;
    height: 17px;
  }

  .btn_rect {
    display: inline-block;
    padding: 15px 20px;
  }

  .btn_rect:before {
    right: 19px;
    width: 32px;
    height: 8px;
  }

  .page-anchor:after {
    font-size: 10px;
    font-weight: normal;
  }

  .p-common-contact {
    padding: 80px 0;
  }

  .p-common-contact .btn-contact a {
    width: 430px;
    padding: 36px 0;
    border: 3px solid #ffffff;
    border-radius: 80px;
    font-size: 25px;
  }

  .p-common-contact .btn-contact a i {
    right: 25px;
    font-size: 20px;
  }

  .c-flow {
    margin-top: -20px;
  }

  .c-flow:before {
    top: 34px;
    left: 84px;
  }

  .c-flow dt {
    width: 90px;
    padding-top: 20px;
  }

  .c-flow dd {
    padding-left: 20px;
  }

  .c-flow dd:after {
    top: 27px;
    left: -10px;
    width: 10px;
    height: 10px;
  }

  .sec-tlt {
    font-size: 74px;
    margin: 5px 0px;
    line-height: 90px;
  }

  .sec-tlt span {
    font-size: 18px;
    margin-top: 9px;
  }

  .tlt_pt1 {
    font-size: 20px;
  }

  .page-header {
    height: 450px;
  }

  .page-header .l-container {
    padding: 0px !important;
    height: 330px;
  }

  .page-header .l-container h2 {
    position: static;
    display: block;
    text-align: left;
    padding-left: 45px;
  }

  .page-header .l-container h2 span {
    margin-top: 12px;
  }

  .page-header_mini {
    height: 320px;
  }

  .page-header_mini .l-container {
    height: 175px;
  }

  .inner_header_title {
    height: 350px;
  }

  .inner_header_title_contents {
    max-width: 1220px;
    width: 100%;
    height: calc(100% - 70px);
    margin: auto;
    padding-left: 20px;
  }

  .inner_header_title h3 {
    font-size: 60px;
    line-height: 70px;
  }

  .inner_header_title h3 span {
    font-size: 18px;
  }

  .page_tlt {
    font-size: 28px;
    padding-left: 2%;
    margin-top: 0px;
    margin-bottom: 50px;
  }

  .title-class_2 {
    font-size: 40px;
  }

  .title-class_2 span:before {
    width: 12px;
    margin-right: 7px;
  }

  .title-class_4 {
    font-size: 28px !important;
  }

  .c-page__intro {
    margin-bottom: 50px;
  }

  .c-page__intro p {
    margin-bottom: 30px;
  }

  .c-news {
    width: 100%;
  }

  .c-news dl {
    margin-top: 40px;
    width: 100%;
    display: table;
  }

  .c-news dl dt {
    display: table-cell;
    width: 185px;
  }

  .c-news dl dd {
    display: table-cell;
  }

  .news-list li {
    padding: 15px 0;
  }

  .news-list dl {
    width: 100%;
    display: table;
  }

  .news-list dl dt {
    display: table-cell;
    width: 100px;
  }

  .news-list dl dd {
    display: table-cell;
  }

  .c-pagination {
    margin-top: 0px;
    height: 80px;
  }

  .c-pagination .next,
  .c-pagination .prev {
    background-size: 32px;
    height: 80px;
    width: 80px;
  }

  .c-pagination .page-numbers {
    font-size: 22px;
    line-height: 83px;
  }

  .pagetop {
    bottom: 50px;
  }

  .c-table {
    margin-top: 0;
  }

  .c-table > dl {
    font-size: 15px;
  }

  .c-table > dl > dt {
    width: 240px;
    padding: 20px;
  }

  .c-table > dl > dd {
    padding: 20px;
  }

  .c-table > dl > dd .c-table-list > li {
    margin-bottom: 10px;
  }

  .c-table > dl > dd .c-table-list__nomargin > li {
    margin: 0;
  }

  .c-table--child dt {
    width: 62px;
  }

  .footer-column {
    padding: 20px 0px 42px 0px !important;
  }

  .footer-column:before {
    background-image: url(../../img/segment/link_arrow@2x.webp);
    right: 120px;
    width: 93px;
    height: 14px;
  }

  .footer-column:after {
    right: 100px;
    width: 53px;
    height: 53px;
    border: solid 2px #ffffff;
  }

  .footer-column:hover:before {
    right: 110px;
  }

  .footer-column:hover:after {
    right: 95px;
    width: 45px;
    height: 45px;
  }

  .footer-column_inner h3 {
    font-size: 60px;
    letter-spacing: 2px;
    line-height: 0px;
    margin-top: 92px;
  }

  .footer-column_inner h3 span {
    margin-top: 50px;
    font-size: 15px;
  }

  .footer-column_inner p {
    margin-top: 43px;
    letter-spacing: 1px;
    line-height: 27px;
    font-size: 15px;
  }

  .footer-column_contact {
    background-image: url(../../img/segment/contact_bg@2x.webp);
  }

  .footer-column_recruit {
    background-image: url(../../img/segment/recruit_bg@2x.webp);
  }

  .pc-navi-top {
    display: block;
    float: left;
  }

  .pc-navi-top:after {
    content: "";
    clear: both;
    display: block;
  }

  .pc-navi-bottom {
    display: block;
  }

  .pc-navi-bottom:after {
    content: "";
    clear: both;
    display: block;
  }

  .pc-navi-bottom .pc-navi-login {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
  }

  .pc-navi-bottom .pc-navi-login:after {
    content: "";
    clear: both;
    display: block;
  }

  .l-header .l-container {
    padding: 0px 25px;
  }

  .ex_contact {
    top: 24px;
    right: 43px;
    font-size: 15px;
  }

  .ancr {
    top: -92px;
  }

  .page .main-block .l-container,
  .archive .main-block .l-container,
  .single .main-block .l-container {
    padding: 65px;
  }

  .page .main-block .l-container_up,
  .archive .main-block .l-container_up,
  .single .main-block .l-container_up {
    margin-top: -70px;
  }

  .page .l-main_content,
  .archive .l-main_content,
  .single .l-main_content {
    background-position: right 160px;
  }

  .page-sec {
    margin-top: -170px;
  }

  .l-main_content {
    background-image: url(../../img/segment/bg.webp);
    background-position: right 10px;
  }

  .sec-contents {
    padding: 80px 0;
  }

  .l-container {
    padding: 0 0px;
    max-width: 1200px;
  }

  .l-container_inner {
    padding: 70px 95px;
  }

  .articles_list {
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .articles_list_order {
    padding: 0px;
  }

  .articles_list li {
    margin-bottom: 60px;
    width: 29%;
    margin: 0 2%;
    padding-bottom: 60px;
  }

  .articles_list_img {
    height: 15vw;
    max-height: 230px;
  }

  .articles_list_tlt {
    font-size: 19px;
    line-height: 30px;
  }

  .articles_list_txt {
    margin-top: 8px;
    line-height: 18px;
  }

  .articles_list_date {
    margin-top: 17px;
    font-size: 17px;
  }

  .articles_list_end {
    height: 15vw;
    font-size: 17px;
    max-height: 230px;
  }

  .sec-catch_tlt {
    font-size: 38px;
    padding-bottom: 80px;
    line-height: 40px;
  }

  .sec-catch_tlt:after {
    height: 81px;
    bottom: -40px;
  }

  .sec-gray_txt {
    padding: 80px 0px;
  }

  .sec-gray_txt h4 {
    font-size: 21px;
    margin-bottom: 18px;
  }

  .sec-gray_txt p {
    letter-spacing: 1px;
    line-height: 34px;
  }

  .btn-box {
    margin-top: 70px;
    max-width: 430px;
  }

  .inner-contact_box {
    padding: 60px 0px;
  }

  .page_footer_menu_col_link:hover:before {
    right: 23px;
  }

  .page_footer_menu_col_link:hover:after {
    right: 13px;
    width: 23px;
    height: 23px;
  }

  .sec_txt {
    padding-top: 70px !important;
    padding-bottom: 70px !important;
  }

  .l-sidebar {
    margin-top: 0;
    width: 210px;
    float: left;
  }

  .l-sidebar .sidebar-contents--model .side-title {
    background-color: #17acc7;
  }

  .l-sidebar .sidebar-contents--area .side-title {
    background-color: #e8380d;
  }

  .l-sidebar .sidebar-contents .side-title {
    padding: 10px;
    color: #ffffff;
    text-align: center;
  }

  .l-sidebar .js-accordion-contents {
    display: block;
  }

  .l-sidebar .model-list > li {
    width: calc(33.33333% - 3px);
  }

  .l-sidebar .side-area__title {
    font-size: 15px;
  }

  .l-sidebar .side-area__subtitle {
    font-size: 13px;
  }

  .l-sidebar .side-area__list > li a {
    font-size: 10px;
  }

  .about .page-sec,
  .page-template-page-about .page-sec {
    margin-top: -120px;
  }

  .about .page-sec .l-container,
  .page-template-page-about .page-sec .l-container {
    padding: 0px !important;
  }

  .about .page-sec .l-container_inner,
  .page-template-page-about .page-sec .l-container_inner {
    padding: 80px;
  }

  .about .page-sec .l-container p,
  .page-template-page-about .page-sec .l-container p {
    font-size: 15px;
    line-height: 28px;
  }

  .about .page-sec .sec-contents,
  .page-template-page-about .page-sec .sec-contents {
    padding: 36px 0 80px 0;
  }

  .about-inner_sec,
  .page-template-page-about-inner_sec {
    padding: 50px 0px;
  }

  .about-inner_sec_pt2,
  .page-template-page-about-inner_sec_pt2 {
    margin: 0px 80px;
  }

  .about-first_sec_focus,
  .page-template-page-about-first_sec_focus {
    padding-top: 63px;
    padding-bottom: 20px;
  }

  .about-first_sec_focus img,
  .page-template-page-about-first_sec_focus img {
    max-width: 636px;
  }

  .about-first_sec h3,
  .page-template-page-about-first_sec h3 {
    margin-bottom: -20px;
    margin-top: 50px;
    font-size: 28px;
  }

  .about-first_sec_txt,
  .page-template-page-about-first_sec_txt {
    font-size: 16px;
    line-height: 32px;
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .about-vbd_sec .about-inner_sec h4,
  .page-template-page-about-vbd_sec .about-inner_sec h4 {
    float: left;
    width: 200px;
  }

  .about-vbd_sec_fig_contents,
  .page-template-page-about-vbd_sec_fig_contents {
    float: left;
    width: calc(100% - 200px);
  }

  .about-vbd_sec_fig_contents_list li,
  .page-template-page-about-vbd_sec_fig_contents_list li {
    width: 25%;
    padding: 0.5%;
    margin-bottom: 0px;
  }

  .about-vbd_sec .inner-contact_box,
  .page-template-page-about-vbd_sec .inner-contact_box {
    margin-top: 0px;
  }

  .about-mvv_sec .hyperautomation_outer,
  .page-template-page-about-mvv_sec .hyperautomation_outer {
    padding-bottom: 10px !important;
  }

  .about-mvv_sec h5,
  .page-template-page-about-mvv_sec h5 {
    margin-top: 40px;
  }

  .about-mvv_sec_function,
  .page-template-page-about-mvv_sec_function {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 35px;
    padding-bottom: 45px;
  }

  .about-mvv_sec_function li,
  .page-template-page-about-mvv_sec_function li {
    width: 31%;
    height: 310px;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
  }

  .about-mvv_sec_function li p,
  .page-template-page-about-mvv_sec_function li p {
    width: 100%;
    padding-left: 0px;
  }

  .about-mvv_sec_function li img,
  .page-template-page-about-mvv_sec_function li img {
    width: auto !important;
  }

  .about-mvv_sec_function_img,
  .page-template-page-about-mvv_sec_function_img {
    width: 100%;
  }

  .about-mvv_sec_title,
  .page-template-page-about-mvv_sec_title {
    float: left;
    width: 400px;
    margin-top: 0px;
  }

  .about-mvv_sec .about-inner_sec_pt2 img,
  .page-template-page-about-mvv_sec .about-inner_sec_pt2 img {
    float: right;
    width: calc(100% - 420px);
    margin-top: 50px;
  }

  .about-mvv_sec .about-inner_sec_pt2 .l-container_inner,
  .page-template-page-about-mvv_sec .about-inner_sec_pt2 .l-container_inner {
    padding: 50px 0px 0px 0px !important;
  }

  .about-mvv_sec_business,
  .page-template-page-about-mvv_sec_business {
    padding-bottom: 80px;
    border-bottom: solid 1px #f2f2f2;
  }

  .about-mvv_sec_rental,
  .page-template-page-about-mvv_sec_rental {
    padding: 80px 0px !important;
  }

  .about-message_sec .team-sec_profile,
  .page-template-page-about-message_sec .team-sec_profile {
    padding: 65px;
  }

  .about-message_sec .team-sec_profile_txt_catch,
  .page-template-page-about-message_sec .team-sec_profile_txt_catch {
    font-size: 21px !important;
  }

  .about-message_sec .l-container_inner,
  .page-template-page-about-message_sec .l-container_inner {
    padding-bottom: 40px !important;
  }

  .about-message_sec_list,
  .page-template-page-about-message_sec_list {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .about-message_sec_list li p,
  .page-template-page-about-message_sec_list li p {
    line-height: 22px !important;
  }

  .about-message_sec_list li,
  .page-template-page-about-message_sec_list li {
    width: 21%;
  }

  .about-message_sec_list li:after,
  .page-template-page-about-message_sec_list li:after {
    right: -35px;
    left: inherit;
    bottom: 0;
    top: 50%;
    margin-top: -11px;
    width: 14px;
    height: 22px;
    background-image: url(../images/common/arrow_right@2x.png);
    background-size: 14px;
  }

  .about-company_sec .inner_header_title,
  .page-template-page-about-company_sec .inner_header_title {
    background-image: url(../images/about/company_header@2x.png);
  }

  .about-company_sec_detail,
  .page-template-page-about-company_sec_detail {
    padding-bottom: 60px !important;
  }

  .about-company_sec .gmap iframe,
  .page-template-page-about-company_sec .gmap iframe {
    height: 275px;
    width: 615px;
  }

  .about-company_sec_access,
  .page-template-page-about-company_sec_access {
    padding: 60px 80px;
    border-top: solid 1px #f2f2f2;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }

  .about-company_sec_access .l-container_inner,
  .page-template-page-about-company_sec_access .l-container_inner {
    padding: 0px !important;
    width: calc(100% - 400px);
  }

  .about-company_sec_access_txt,
  .page-template-page-about-company_sec_access_txt {
    padding-right: 20px;
  }

  .contact .page-header,
  .page-template-page-contact .page-header {
    background-image: url(../images/contact/page_header@2x.png);
  }

  .contact-first_sec,
  .page-template-page-contact-first_sec {
    padding-top: 80px;
  }

  .contact-first_sec_txt,
  .page-template-page-contact-first_sec_txt {
    margin-top: 40px;
  }

  .contact .contact-table dt,
  .page-template-page-contact .contact-table dt {
    margin-top: 40px;
  }

  .contact .contact-table dl,
  .page-template-page-contact .contact-table dl {
    margin: auto;
  }

  .contact .contact-table input,
  .page-template-page-contact .contact-table input {
    padding: 12px;
    border: solid 1px #e7e3e3;
  }

  .contact .contact-table .btn_rect,
  .page-template-page-contact .contact-table .btn_rect {
    width: 290px;
  }

  .contact .btn_rect,
  .page-template-page-contact .btn_rect {
    width: 290px;
  }

  .digitalagency .page-sec,
  .page-template-page-digitalagency .page-sec {
    margin-top: -120px;
  }

  .digitalagency .page-sec .l-container,
  .page-template-page-digitalagency .page-sec .l-container {
    padding: 0px !important;
  }

  .digitalagency .page-sec .l-container_inner,
  .page-template-page-digitalagency .page-sec .l-container_inner {
    padding: 80px;
  }

  .digitalagency .page-sec .l-container p,
  .page-template-page-digitalagency .page-sec .l-container p {
    font-size: 15px;
    line-height: 28px;
  }

  .digitalagency .page-sec .sec-contents,
  .page-template-page-digitalagency .page-sec .sec-contents {
    padding: 36px 0 80px 0;
  }

  .digitalagency-inner_sec,
  .page-template-page-digitalagency-inner_sec {
    padding: 50px 0px;
  }

  .digitalagency-inner_sec_pt2,
  .page-template-page-digitalagency-inner_sec_pt2 {
    margin: 0px 80px;
  }

  .digitalagency-first_sec_focus,
  .page-template-page-digitalagency-first_sec_focus {
    padding-top: 63px;
    padding-bottom: 20px;
  }

  .digitalagency-first_sec_focus img,
  .page-template-page-digitalagency-first_sec_focus img {
    max-width: 636px;
  }

  .digitalagency-first_sec h3,
  .page-template-page-digitalagency-first_sec h3 {
    margin-bottom: -20px;
    margin-top: 50px;
    font-size: 28px;
  }

  .digitalagency-first_sec_txt,
  .page-template-page-digitalagency-first_sec_txt {
    font-size: 16px;
    line-height: 32px;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .digitalagency-sec_focus,
  .page-template-page-digitalagency-sec_focus {
    padding-top: 15px;
    padding-bottom: 0px;
  }

  .digitalagency-sec_focus img,
  .page-template-page-digitalagency-sec_focus img {
    max-width: 380px;
  }

  .digitalagency-sec h4,
  .page-template-page-digitalagency-sec h4 {
    margin-bottom: -20px;
    margin-top: 0px;
    font-size: 28px;
  }

  .digitalagency-sec_txt,
  .page-template-page-digitalagency-sec_txt {
    font-size: 16px;
    line-height: 32px;
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .digitalagency-sec_normal_inner,
  .page-template-page-digitalagency-sec_normal_inner {
    padding: 60px;
  }

  .home .main-block {
    margin-top: 0px;
  }

  .home .mainvisual {
    background-image: url(../images/index/mv_bg.jpg);
  }

  .home .mainvisual-contents_inner {
    max-width: 100%;
    margin-bottom: 0px;
  }

  .home .mainvisual-contents_inner .btn_rect {
    width: 320px;
    position: absolute;
    right: 39px;
    bottom: 43px;
    z-index: 10;
  }

  .home .mainvisual-scroll {
    bottom: 63px;
  }

  .home .mainvisual-scroll span {
    top: inherit;
  }

  .home .mainvisual-scroll:before {
    height: 36px;
    bottom: -40px;
  }

  .home .mainvisual-scroll:after {
    width: 15px;
    height: 15px;
  }

  .home-card {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }

  .home-card_sec {
    padding: 45px 0px;
  }

  .home-card_sec .l-container {
    width: 100%;
    padding: 0px 15px !important;
    margin: auto;
    max-width: 1200px;
  }

  .home-card_img {
    width: 50%;
  }

  .home-card_txt {
    padding: 40px 20px 50px 60px;
    width: 50%;
  }

  .home-card_txt p {
    margin-top: 7%;
    font-size: 16px;
    letter-spacing: 1px;
    line-height: 28px;
  }

  .home-card_txt_attention {
    font-size: 18px;
  }

  .home-card-reverse {
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }

  .home-team_sec_profile {
    padding-left: 45px;
  }

  .home-team_sec_profile p {
    font-size: 18px !important;
  }

  .home-team_sec_profile p:first-child {
    margin-top: 0px !important;
  }

  .home-team_sec_profile p:last-child {
    margin-top: 10px !important;
  }

  .home-team_sec_profile:before {
    width: 27px;
    height: 20px;
    top: 0px;
    left: 0px;
  }

  .home-team_sec_profile:after {
    width: 27px;
    height: 20px;
    bottom: -5px;
    right: 35px;
  }

  .home-team_sec_profile span {
    font-size: 14px !important;
  }

  .home-team_sec_profile {
    font-size: 18px !important;
    font-weight: bold;
    margin-top: 36px !important;
    line-height: 26px !important;
    max-width: 100%;
    padding-top: inherit;
  }

  .home-first_sec {
    background-image: url(../images/index/first.jpg);
    padding: 120px 15px 95px 15px;
  }

  .home-first_sec h2 {
    line-height: 40px;
    letter-spacing: 0px;
    margin-bottom: 31px;
  }

  .home-first_sec p {
    font-size: 16px;
    letter-spacing: 0px;
    line-height: 32px;
  }

  .home-first_sec_fig {
    display: block;
    position: absolute;
    bottom: -5px;
    left: 0px;
    width: 100%;
    opacity: 0.8;
  }

  .home-about_sec {
    padding: 70px 0px 40px 0px;
  }

  .home-about_sec .l-container {
    max-width: 1130px;
  }

  .home-about_sec_first {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .home-about_sec_first_inner {
    width: 550px;
  }

  .home-about_sec_first_inner_txt h3 {
    margin: 43px 0px 21px 0px;
    line-height: 33px;
    letter-spacing: 2px;
    font-size: 22px;
  }

  .home-about_sec_first_inner_txt p {
    font-size: 15px;
    letter-spacing: 0px;
    line-height: 28px;
  }

  .home-about_sec_first img {
    max-width: 465px;
    margin-right: 58px;
    width: 50%;
    top: 40px;
    margin-left: 20px;
  }

  .home_sub_contents {
    padding-top: 60px !important;
  }

  .home_sub_contents .btn {
    text-align: left;
  }

  .home_sub_contents_inner {
    float: right;
    width: calc(100% - 220px);
  }

  .home_sub_contents_title {
    font-size: 48px;
    line-height: 30px;
    float: left;
    width: 212px;
    padding-left: 42px;
  }

  .home_sub_contents .articles_list li {
    width: 31.3% !important;
    margin: 0 1.5%;
    padding-bottom: 30px;
  }

  .home_sub_contents .articles_list li:nth-of-type(1) {
    margin-left: 0px;
  }

  .home_sub_contents .articles_list li:nth-of-type(3) {
    margin-right: 0px;
  }

  .home_sub_contents .articles_list_end {
    height: 14vw;
    max-height: 175px;
  }

  .home_sub_contents_list li:nth-of-type(4) {
    display: none;
  }

  .home_sub_contents_list .articles_list_img {
    height: 14vw;
    max-height: 175px;
  }

  .home_sub_contents_list .articles_list_date:before,
  .home_sub_contents_list .articles_list_date:after {
    width: 8px;
    height: 18px;
    background-size: contain;
    top: 4px;
  }

  .home_sub_contents_list .articles_list_tlt {
    font-size: 14px;
    line-height: 26px;
  }

  .home_sub_contents_event {
    padding-bottom: 20px !important;
  }

  .home_sub_contents_event_list {
    margin-top: 0px;
  }

  .home_sub_contents_news_list {
    margin-top: 0px;
    margin-bottom: 35px;
  }

  .home_sub_contents_news_list_data {
    font-size: 14px;
  }

  .home_sub_contents_news_list li a {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }

  .home_sub_contents_news_list li a p {
    width: 100px;
  }

  .home_sub_contents_news_list li a h3 {
    font-size: 14px;
    width: calc(100% - 110px);
  }

  .member .main-block .l-container_inner,
  .post-type-archive-member .main-block .l-container_inner {
    padding: 30px 35px;
  }

  .member .main-block .articles_list li:nth-of-type(even),
  .post-type-archive-member .main-block .articles_list li:nth-of-type(even) {
    margin-right: 2.3% !important;
  }

  .member .main-block .articles_list li:nth-of-type(odd),
  .post-type-archive-member .main-block .articles_list li:nth-of-type(odd) {
    margin-left: 2.3% !important;
  }

  .member .main-block .articles_list_date,
  .post-type-archive-member .main-block .articles_list_date {
    margin-top: 17px;
    font-size: 17px;
  }

  .message-sec_txt_col_2block_cont,
  .page-template-page-message-sec_txt_col_2block_cont {
    padding-right: 70px;
  }

  .mvv .page-sec,
  .page-template-page-mvv .page-sec {
    margin-top: -120px;
  }

  .mvv .page-sec .l-container,
  .page-template-page-mvv .page-sec .l-container {
    padding: 0px !important;
  }

  .mvv .page-sec .l-container_inner,
  .page-template-page-mvv .page-sec .l-container_inner {
    padding: 80px;
  }

  .mvv .page-sec .l-container p,
  .page-template-page-mvv .page-sec .l-container p {
    font-size: 15px;
    line-height: 28px;
  }

  .mvv .page-sec .sec-contents,
  .page-template-page-mvv .page-sec .sec-contents {
    padding: 36px 0 80px 0;
  }

  .mvv-inner_sec,
  .page-template-page-mvv-inner_sec {
    padding: 50px 0px;
  }

  .mvv-inner_sec_pt2,
  .page-template-page-mvv-inner_sec_pt2 {
    margin: 0px 80px;
  }

  .mvv-first_sec_focus,
  .page-template-page-mvv-first_sec_focus {
    padding-top: 30px;
    padding-bottom: 40px;
  }

  .mvv-first_sec_focus img,
  .page-template-page-mvv-first_sec_focus img {
    max-width: 636px;
  }

  .mvv-first_sec h3,
  .page-template-page-mvv-first_sec h3 {
    margin-bottom: -20px;
    margin-top: 50px;
    font-size: 28px;
  }

  .mvv-first_sec_txt,
  .page-template-page-mvv-first_sec_txt {
    font-size: 16px;
    line-height: 32px;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .mvv-sec_focus,
  .page-template-page-mvv-sec_focus {
    padding-top: 15px;
    padding-bottom: 0px;
  }

  .mvv-sec_focus img,
  .page-template-page-mvv-sec_focus img {
    max-width: 380px;
  }

  .mvv-sec h4,
  .page-template-page-mvv-sec h4 {
    margin-bottom: -20px;
    margin-top: 0px;
    font-size: 28px;
  }

  .mvv-sec_txt,
  .page-template-page-mvv-sec_txt {
    font-size: 16px;
    line-height: 32px;
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .mvv-sec_normal_inner,
  .page-template-page-mvv-sec_normal_inner {
    padding: 60px;
  }

  .news .main-block .l-container_inner,
  .column .main-block .l-container_inner,
  .post-type-archive-column .main-block .l-container_inner {
    padding: 60px;
  }

  .news .articles_list li,
  .column .articles_list li,
  .post-type-archive-column .articles_list li {
    width: 22%;
    margin: 0 1.5%;
  }

  .news .articles_list_img,
  .column .articles_list_img,
  .post-type-archive-column .articles_list_img {
    height: 11vw;
  }

  .news .articles_list_date,
  .column .articles_list_date,
  .post-type-archive-column .articles_list_date {
    font-size: 16px;
  }

  .news .articles_list_tlt,
  .column .articles_list_tlt,
  .post-type-archive-column .articles_list_tlt {
    font-size: 15px;
    margin-top: 2px;
    line-height: 26px;
  }

  .portfolio .page-header,
  .page-template-page-portfolio .page-header {
    background-image: url(../images/portfolio/page_header@2x.png);
  }

  .portfolio .page-sec .l-container,
  .page-template-page-portfolio .page-sec .l-container {
    padding: 93px 0px 0px 0px !important;
  }

  .portfolio-logo_sec h3,
  .page-template-page-portfolio-logo_sec h3 {
    margin: 50px 0px;
  }

  .portfolio-logo_sec_list,
  .page-template-page-portfolio-logo_sec_list {
    -webkit-justify-content: start;
    -ms-flex-pack: start;
    justify-content: start;
  }

  .portfolio-logo_sec_list li,
  .page-template-page-portfolio-logo_sec_list li {
    width: 23%;
    height: 21.2vw;
    margin: 1%;
    max-width: 230px;
    max-height: 230px;
  }

  .portfolio-logo_sec_list li h4,
  .page-template-page-portfolio-logo_sec_list li h4 {
    font-size: 18px;
  }

  .policy-block {
    margin-top: 40px;
  }

  .policy-block .page-anchor {
    top: -94px;
  }

  .policy-block h4 {
    font-size: 20px;
  }

  .policy-block p {
    margin-bottom: 30px;
  }

  .policy-block h5 {
    margin: 20px 0 15px;
    font-size: 16px;
  }

  .recruit .page-header,
  .page-template-page-recruit .page-header {
    background-image: url(../images/recruit/page_header@2x.png);
  }

  .recruit-sec .sec-catch_tlt,
  .page-template-page-recruit-sec .sec-catch_tlt {
    padding-top: 55px;
    padding-bottom: 50px;
  }

  .recruit-sec .sec-gray_txt,
  .page-template-page-recruit-sec .sec-gray_txt {
    padding-top: 0px;
  }

  .recruit-sec .sec-gray_txt img,
  .page-template-page-recruit-sec .sec-gray_txt img {
    max-width: 695px;
    margin-bottom: -100px;
  }

  .recruit-sec_txt,
  .page-template-page-recruit-sec_txt {
    width: 400px;
    top: 54px;
    left: calc(100% - 1100px);
    line-height: 35px !important;
    letter-spacing: 0px !important;
    font-size: 16px !important;
    line-height: 28px !important;
  }

  .recruit-sec_inner,
  .page-template-page-recruit-sec_inner {
    margin-top: 150px;
  }

  .recruit-sec_inner h4,
  .page-template-page-recruit-sec_inner h4 {
    font-size: 23px;
    margin-bottom: 45px;
  }

  .recruit-sec_toggle,
  .page-template-page-recruit-sec_toggle {
    max-width: 840px;
    margin: 20px auto 40px auto;
  }

  .recruit-sec_toggle h4,
  .page-template-page-recruit-sec_toggle h4 {
    padding: 30px;
    padding: 20px 30px;
    margin-bottom: 0px;
  }

  .recruit-sec_toggle h4 p img,
  .page-template-page-recruit-sec_toggle h4 p img {
    width: 22px;
    top: -17px;
  }

  .recruit-sec_toggle_inner,
  .page-template-page-recruit-sec_toggle_inner {
    padding: 70px 100px 50px 100px;
  }

  .recruit-sec_toggle_inner dl,
  .page-template-page-recruit-sec_toggle_inner dl {
    margin-bottom: 20px !important;
  }

  .recruit-sec_toggle_inner dd,
  .page-template-page-recruit-sec_toggle_inner dd {
    width: calc(100% - 160px);
  }

  .recruit-sec_toggle_inner .btn-box,
  .page-template-page-recruit-sec_toggle_inner .btn-box {
    margin-top: 40px;
    margin-bottom: 30px;
  }

  .robottransformation .page-sec,
  .page-template-page-robottransformation .page-sec {
    margin-top: -120px;
  }

  .robottransformation .page-sec .l-container,
  .page-template-page-robottransformation .page-sec .l-container {
    padding: 0px !important;
  }

  .robottransformation .page-sec .l-container_inner,
  .page-template-page-robottransformation .page-sec .l-container_inner {
    padding: 80px;
  }

  .robottransformation .page-sec .l-container p,
  .page-template-page-robottransformation .page-sec .l-container p {
    font-size: 15px;
    line-height: 28px;
  }

  .robottransformation .page-sec .sec-contents,
  .page-template-page-robottransformation .page-sec .sec-contents {
    padding: 36px 0 80px 0;
  }

  .robottransformation-inner_sec,
  .page-template-page-robottransformation-inner_sec {
    padding: 50px 0px;
  }

  .robottransformation-inner_sec_pt2,
  .page-template-page-robottransformation-inner_sec_pt2 {
    margin: 0px 80px;
  }

  .robottransformation-first_sec_focus,
  .page-template-page-robottransformation-first_sec_focus {
    padding-top: 63px;
    padding-bottom: 20px;
  }

  .robottransformation-first_sec_focus img,
  .page-template-page-robottransformation-first_sec_focus img {
    max-width: 636px;
  }

  .robottransformation-first_sec h3,
  .page-template-page-robottransformation-first_sec h3 {
    margin-bottom: -20px;
    margin-top: 50px;
    font-size: 28px;
  }

  .robottransformation-first_sec_txt,
  .page-template-page-robottransformation-first_sec_txt {
    font-size: 16px;
    line-height: 32px;
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .robottransformation-sec_focus,
  .page-template-page-robottransformation-sec_focus {
    padding-top: 15px;
    padding-bottom: 0px;
  }

  .robottransformation-sec_focus img,
  .page-template-page-robottransformation-sec_focus img {
    max-width: 380px;
  }

  .robottransformation-sec h4,
  .page-template-page-robottransformation-sec h4 {
    margin-bottom: -20px;
    margin-top: 0px;
    font-size: 28px;
  }

  .robottransformation-sec_txt,
  .page-template-page-robottransformation-sec_txt {
    font-size: 16px;
    line-height: 32px;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .robottransformation-sec_normal_inner,
  .page-template-page-robottransformation-sec_normal_inner {
    padding: 60px;
  }

  .team .page-header,
  .page-template-page-team .page-header {
    background-image: url(../images/team/page_header@2x.png);
  }

  .team-sec_profile,
  .page-template-page-team-sec_profile {
    padding-bottom: 60px;
    margin-bottom: 60px;
  }

  .team-sec_profile_mini,
  .page-template-page-team-sec_profile_mini {
    margin-bottom: 0px;
  }

  .team-sec_profile_mini .team-sec_profile_txt_header,
  .page-template-page-team-sec_profile_mini .team-sec_profile_txt_header {
    float: left;
  }

  .team-sec_profile_img,
  .page-template-page-team-sec_profile_img {
    width: 36%;
    float: left;
    padding: 0px 0px 0px 18px;
  }

  .team-sec_profile_txt,
  .page-template-page-team-sec_profile_txt {
    float: right;
    width: 58%;
    margin-left: 6%;
  }

  .team-sec_profile_txt_catch,
  .page-template-page-team-sec_profile_txt_catch {
    text-align: left;
    font-size: 24px;
  }

  .team-sec_profile_txt_header,
  .page-template-page-team-sec_profile_txt_header {
    margin-top: 15px;
  }

  .team-sec_profile_txt_header h3,
  .page-template-page-team-sec_profile_txt_header h3 {
    font-size: 34px;
    float: left;
    margin: 0px;
  }

  .team-sec_profile_txt_header_tlt,
  .page-template-page-team-sec_profile_txt_header_tlt {
    float: left;
    margin-top: 5px;
    padding-left: 44px;
    font-size: 16px;
    line-height: 22px;
    max-width: 290px;
  }

  .team-sec_profile_txt_header_tlt:before,
  .page-template-page-team-sec_profile_txt_header_tlt:before {
    content: "";
    height: 24px;
    width: 1px;
    background-color: #b7b5b5;
    position: absolute;
    top: 12px;
    left: 18px;
  }

  .team-sec_profile_txt_header_sns,
  .page-template-page-team-sec_profile_txt_header_sns {
    float: right;
    margin-top: 16px;
    padding-right: 15px;
  }

  .team-sec_profile_txt_header_sns li i,
  .page-template-page-team-sec_profile_txt_header_sns li i {
    font-size: 25px;
  }

  .team-sec_profile_txt_discription,
  .page-template-page-team-sec_profile_txt_discription {
    font-size: 17px;
    line-height: 33px;
    margin-top: 20px;
  }

  .team-sec_profile_txt_discription h4,
  .page-template-page-team-sec_profile_txt_discription h4 {
    font-size: 21px;
    margin-top: 40px;
    margin-bottom: 20px;
  }

  .u-pc-hide {
    display: none !important;
  }

  .u-sp-hide {
    display: inline !important;
  }

  .u-sp-hide-b {
    display: block !important;
  }

  .u-pc-hide-b {
    display: none !important;
  }

  .f-s-small {
    font-size: 16px;
  }
}

@media screen and (min-width: 850px) {
  .l-detail_list {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }

  .l-detail_list_inner {
    width: 50%;
  }

  .l-detail_list dl {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 30px;
  }

  .l-detail_list dl dt {
    width: 150px;
    height: 30px;
    font-size: 16px;
  }

  .l-detail_list dl dd {
    font-size: 16px;
    padding-left: 35px;
    padding: 0px 0px 5px 20px;
  }

  .single-event_header {
    padding-bottom: 35px;
  }

  .single-event_header_tlt {
    max-width: 880px;
    margin: auto;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 30px;
    margin-bottom: 40px;
  }

  .single-event_header_tlt_data {
    margin-top: 0px;
    font-size: 20px;
    padding-right: 35px;
    width: 100%;
    max-width: 380px;
  }

  .single-event_header_tlt_data:before,
  .single-event_header_tlt_data:after {
    width: 8px;
    height: 27px;
    background-size: contain;
    top: 6px;
  }

  .single-event_header_tlt h3 {
    font-size: 24px;
  }

  .single-event_header_end {
    padding: 35px 0px;
  }

  .single-event_header_end p {
    font-size: 23px;
  }

  .single-event_header_end p a {
    font-size: 20px;
  }

  .single-event_sec {
    padding: 90px 0px 0px 0px !important;
  }

  .single-event_sec_tlt {
    width: 35%;
    float: left;
    padding-left: 40px;
    padding-right: 60px;
  }

  .single-event_sec_contents {
    float: right;
    width: 65%;
  }

  .single-event_sec_contents_txt h4 {
    margin: 15px 0px;
    font-size: 20px;
  }

  .single-event_sec_contents_txt h5 {
    margin: 10px 0px;
    font-size: 16px;
  }

  .single-event_sec_contents_list {
    margin-top: 45px;
    padding: 40px 55px;
  }

  .single-event_sec_contents_list dl {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 30px;
  }

  .single-event_sec_contents_list dl dt {
    width: 150px;
    height: 30px;
    font-size: 16px;
  }

  .single-event_sec_contents_list dl dd {
    font-size: 16px;
    padding-left: 35px;
  }

  .single-event_sec_contents_schedule li {
    font-size: 16px;
    padding: 20px 34px;
  }

  .single-event .btn-box {
    margin: 110px auto 60px auto !important;
  }

  .report_style img {
    margin-bottom: 20px;
  }

  .single-news .l-container_inner {
    padding: 25px !important;
  }

  .single-news_sec_txt {
    padding: 10px 50px;
  }
}

@media screen and (min-width: 960px) {
  .l-footer {
    margin-top: 63px;
    padding: 0px 15px;
    padding-bottom: 50px;
  }

  .l-footer_inner {
    padding: 0px 0px;
    max-width: 1110px;
    margin: auto;
    height: 65px;
  }

  .l-footer_logo {
    width: 150px;
    margin: inherit;
    float: left;
  }

  .l-footer-navi {
    margin-bottom: 25px;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    padding: 0px;
  }

  .l-footer-navi_content {
    float: right;
    max-width: 470px;
    width: 100%;
    position: relative;
    top: 13px;
    margin-top: 0px;
  }

  .l-footer-navi li {
    font-size: 14px;
    text-align: right;
    width: auto;
    border-bottom: none;
    margin: auto !important;
  }

  .l-footer-navi_sub {
    text-align: right;
    float: right;
  }

  .l-footer-navi_sub li::after {
    padding: 0 7px;
  }

  .l-footer-navi_sub li {
    text-align: right;
  }

  .l-footer .footer-top {
    padding: 90px 0 85px;
  }

  .l-footer .l-footer__copy {
    max-width: 1110px;
    margin: auto;
    padding: 0px;
    top: -14px;
    text-align: left;
  }

  .l-footer .l-footer__copy small {
    font-size: 12px;
    letter-spacing: 1px;
  }

  .gnav-btn {
    display: none;
  }

  .l-header {
    height: 100px;
  }

  .l-header .logo {
    width: 165px;
    float: left;
    margin-top: 11px;
  }

  .page .main-block,
  .archive .main-block,
  .single .main-block {
    margin-top: 49px;
  }
}

@media screen and (max-width: 1275px) {
  .pc-navi-bottom .pc-mainnavi {
    width: 690px;
    margin-top: 5px;
    text-align: right;
  }

  .pc-navi-bottom .pc-mainnavi > li {
    margin-bottom: 15px;
  }
}

@media screen and (max-width: 960px) {
  .pc-navi-bottom .pc-mainnavi {
    display: none;
    width: 690px;
  }
}

@media screen and (max-width: 930px) {
  .member .main-block .articles_list li,
  .post-type-archive-member .main-block .articles_list li {
    width: 47%;
    margin: 2.5%;
    margin-bottom: 25px;
  }

  .member .main-block .articles_list li:nth-of-type(even),
  .post-type-archive-member .main-block .articles_list li:nth-of-type(even) {
    margin-right: 0px !important;
  }

  .member .main-block .articles_list li:nth-of-type(odd),
  .post-type-archive-member .main-block .articles_list li:nth-of-type(odd) {
    margin-left: 0px !important;
  }

  .member .main-block .articles_list li .articles_list_img,
  .post-type-archive-member .main-block .articles_list li .articles_list_img {
    height: 25vw;
  }

  .member .main-block .articles_list li .articles_list_end,
  .post-type-archive-member .main-block .articles_list li .articles_list_end {
    height: 25vw;
  }
}

@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }

  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0;
  }

  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%;
  }

  .mfp-container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media screen and (max-width: 849px) {
  .single-event_sec_contents_txt_speakers img {
    width: 50%;
  }

  .single-event_sec_contents_txt_speakers_txt {
    width: 50%;
  }

  .report_style h1 {
    font-size: 22px;
  }

  .report_style h2 {
    font-size: 22px;
  }

  .report_style h3 {
    font-size: 20px;
  }
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */

  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }

  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }

  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }

  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }

  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box;
  }

  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }

  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }

  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}

@media screen and (max-width: 768px) {
	.page .main-block, .archive .main-block, .single .main-block{
		margin-top: 35px;
	}
  .page_footer_menu_col_link {
    font-size: 15px;
    height: 100px;
  }

  .page_footer_menu_col_link_txt {
    height: 100px;
  }

  .page_footer_menu_col_link:before {
    width: 26px;
    height: 6px;
    right: 15px;
  }

  .page_footer_menu_col_link:after {
    width: 20px;
    height: 20px;
    right: 6px;
  }

  .about-mvv_sec .l-container,
  .page-template-page-about-mvv_sec .l-container {
    padding-top: 0px !important;
  }

  .about-mvv_sec .about-inner_sec_pt2,
  .page-template-page-about-mvv_sec .about-inner_sec_pt2 {
    margin-top: -25px;
  }

  .about-mvv_sec .about-inner_sec_pt2 .btn_more span,
  .page-template-page-about-mvv_sec .about-inner_sec_pt2 .btn_more span {
    margin-left: 0px;
  }

  .about-message_sec .team-sec_profile_txt,
  .page-template-page-about-message_sec .team-sec_profile_txt {
    padding: 0px 20px 30px 20px;
  }

  .about-message_sec .btn span,
  .page-template-page-about-message_sec .btn span {
    margin-left: 0px !important;
  }

  .digitalagency .page-header .sec-tlt,
  .page-template-page-digitalagency .page-header .sec-tlt {
    color: #ffffff !important;
    line-height: 50px;
  }

  .digitalagency .page-header .sec-tlt span,
  .page-template-page-digitalagency .page-header .sec-tlt span {
    margin-top: 12px;
    color: #ffffff !important;
  }

  .digitalagency-sec_normal_txt_point,
  .page-template-page-digitalagency-sec_normal_txt_point {
    display: block;
  }

  .digitalagency-sec_normal_txt_point li,
  .page-template-page-digitalagency-sec_normal_txt_point li {
    width: 100%;
    margin: 20px 0px;
    padding: 15px;
  }

  .digitalagency-sec_normal_txt_point li h5,
  .page-template-page-digitalagency-sec_normal_txt_point li h5 {
    font-size: 17px;
  }

  .digitalagency_clients_sec .l-container,
  .page-template-page-digitalagency_clients_sec .l-container {
    padding-top: 0px !important;
  }

  .digitalagency_clients_sec .l-container .digitalagency-sec_normal_txt,
  .page-template-page-digitalagency_clients_sec .l-container .digitalagency-sec_normal_txt {
    margin-top: 0px !important;
  }

  .home .mainvisual-contents {
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
  }

  .home-card_sec .sec-tlt {
    font-size: 34px;
  }

  .home-card_sec .sec-tlt span {
    margin-top: 20px;
  }

  .home-card_txt a {
    margin-top: 20px;
  }

  .home-card_txt a span {
    margin-left: 0px;
  }

  .message-sec_txt_col_2block,
  .page-template-page-message-sec_txt_col_2block {
    display: block;
    margin-bottom: 20px;
  }

  .message-sec_txt_col_2block img,
  .page-template-page-message-sec_txt_col_2block img {
    margin-bottom: 20px;
  }

  .policy-first_sec {
    padding-top: 10px;
  }

  .policy .l-container {
    width: calc(100% - 60px);
  }

  .privacy-first_sec {
    padding-top: 10px;
  }

  .privacy .l-container {
    width: calc(100% - 60px);
  }

  .robottransformation .page-header .l-container,
  .page-template-page-robottransformation .page-header .l-container {
    padding: 0px !important;
  }

  .robottransformation .page-header .sec-tlt,
  .page-template-page-robottransformation .page-header .sec-tlt {
    line-height: 50px;
  }

  .robottransformation .page-header .sec-tlt span,
  .page-template-page-robottransformation .page-header .sec-tlt span {
    margin-top: 12px;
  }
}

@media screen and (max-width: 550px) {
  .single-event_sec_contents_txt_speakers img {
    width: 100%;
    float: none;
    padding: 20px 30px 30px 30px;
  }

  .single-event_sec_contents_txt_speakers_txt {
    width: 100%;
    float: none;
  }
}

@media screen and (max-width: 340px) {
  .title-class_4 {
    font-size: 15px !important;
  }

  .articles_list_end_br {
    display: block;
  }

  .about-first_sec h3,
  .page-template-page-about-first_sec h3 {
    font-size: 15px;
  }

  .digitalagency-first_sec h3,
  .page-template-page-digitalagency-first_sec h3 {
    font-size: 15px;
  }

  .digitalagency-sec h4,
  .page-template-page-digitalagency-sec h4 {
    font-size: 15px;
  }

  .mvv-first_sec h3,
  .page-template-page-mvv-first_sec h3 {
    font-size: 15px;
  }

  .mvv-sec h4,
  .page-template-page-mvv-sec h4 {
    font-size: 15px;
  }

  .robottransformation-first_sec h3,
  .page-template-page-robottransformation-first_sec h3 {
    font-size: 15px;
  }

  .robottransformation-sec h4,
  .page-template-page-robottransformation-sec h4 {
    font-size: 15px;
  }
}

@media screen and (min-width: 768px) and (max-width: 900px) {
  .page .main-block .l-container,
  .archive .main-block .l-container,
  .single .main-block .l-container {
    padding: 40px;
  }

  .about .page-sec .l-container_inner,
  .page-template-page-about .page-sec .l-container_inner {
    padding: 40px;
  }

  .about-mvv_sec_title,
  .page-template-page-about-mvv_sec_title {
    width: 100%;
  }

  .about-mvv_sec .about-inner_sec_pt2 img,
  .page-template-page-about-mvv_sec .about-inner_sec_pt2 img {
    width: 100%;
  }

  .about-company_sec .gmap iframe,
  .page-template-page-about-company_sec .gmap iframe {
    width: 100%;
  }

  .about-company_sec_access,
  .page-template-page-about-company_sec_access {
    display: block;
    padding: 40px;
  }

  .digitalagency .page-sec .l-container_inner,
  .page-template-page-digitalagency .page-sec .l-container_inner {
    padding: 40px;
  }

  .mvv .page-sec .l-container_inner,
  .page-template-page-mvv .page-sec .l-container_inner {
    padding: 40px;
  }

  .robottransformation .page-sec .l-container_inner,
  .page-template-page-robottransformation .page-sec .l-container_inner {
    padding: 40px;
  }

  .team-sec_profile_img,
  .page-template-page-team-sec_profile_img {
    width: 50%;
  }
}

@media screen and (min-width: 768px) and (max-width: 1030px) {
  .about-vbd_sec .about-inner_sec h4,
  .page-template-page-about-vbd_sec .about-inner_sec h4 {
    width: 100%;
    float: none;
  }

  .about-vbd_sec_fig_contents,
  .page-template-page-about-vbd_sec_fig_contents {
    width: 100%;
    float: none;
  }
}

@media screen and (min-width: 900px) and (max-width: 1050px) {
  .about-mvv_sec_title,
  .page-template-page-about-mvv_sec_title {
    width: 300px;
  }

  .about-mvv_sec .about-inner_sec_pt2 img,
  .page-template-page-about-mvv_sec .about-inner_sec_pt2 img {
    width: calc(100% - 330px);
  }
}

@media screen and (min-width: 768px) and (max-width: 960px) {
  .about-message_sec .l-container_inner,
  .page-template-page-about-message_sec .l-container_inner {
    padding: 60px !important;
  }
}

@media screen and (min-width: 768px) and (max-width: 1040px) {
  .about-message_sec_list li,
  .page-template-page-about-message_sec_list li {
    width: 46%;
  }

  .about-message_sec_list li:nth-of-type(2):after,
  .page-template-page-about-message_sec_list li:nth-of-type(2):after {
    display: none;
  }
}

@media screen and (min-width: 768px) and (max-width: 1165px) {
  .about-company_sec .l-detail_list dl,
  .page-template-page-about-company_sec .l-detail_list dl {
    display: block;
    padding-right: 25px;
  }

  .about-company_sec .l-detail_list dt,
  .page-template-page-about-company_sec .l-detail_list dt {
    font-size: 15px;
    width: 100%;
  }

  .about-company_sec .l-detail_list dd,
  .page-template-page-about-company_sec .l-detail_list dd {
    font-size: 15px;
  }
}

@media screen and (min-width: 900px) and (max-width: 1110px) {
  .about-company_sec .gmap iframe,
  .page-template-page-about-company_sec .gmap iframe {
    width: 480px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1125px) {
  .home-card_sec .sec-tlt {
    font-size: 40px;
    line-height: 50px;
  }

  .home-card_txt {
    padding: 20px;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .home-card_txt p {
    font-size: 15px;
  }

  .home-card_txt_attention {
    font-size: 16px;
  }

  .home-team_sec_profile {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }

  .home-team_sec_profile p {
    line-height: 24px !important;
  }

  .home-team_sec_profile p:first-child {
    padding-right: 20px;
  }

  .home-team_sec_profile p:last-child {
    margin-top: 0px !important;
  }

  .home-team_sec_profile:after {
    right: 0px;
  }

  .home-team_sec_profile span {
    font-size: 11px !important;
    line-height: 16px;
    margin-bottom: 5px;
  }

  .home-team_sec_profile {
    margin-top: 20px !important;
  }

  .home-team_sec_profile_br {
    display: none !important;
  }

  .home_sub_contents .articles_list_end {
    font-size: 1.4vw;
  }
}

@media screen and (min-width: 850px) and (max-width: 1200px) {
  .single-event_sec_tlt {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media screen and (min-width: 767px) and (max-width: 990px) {
  .news .main-block .l-container_inner,
  .column .main-block .l-container_inner,
  .post-type-archive-column .main-block .l-container_inner {
    padding: 40px;
  }

  .news .articles_list li,
  .column .articles_list li,
  .post-type-archive-column .articles_list li {
    width: 30%;
    margin: 0 1.5%;
  }

  .news .articles_list_img,
  .column .articles_list_img,
  .post-type-archive-column .articles_list_img {
    height: 17vw;
  }
}

@media screen and (min-width: 768px) and (max-width: 1110px) {
  .recruit-sec .sec-gray_txt,
  .page-template-page-recruit-sec .sec-gray_txt {
    height: 475px;
  }

  .recruit-sec_txt,
  .page-template-page-recruit-sec_txt {
    left: 20px;
  }
}

@media screen and (min-width: 768px) and (max-width: 965px) {
  .recruit-sec .sec-gray_txt,
  .page-template-page-recruit-sec .sec-gray_txt {
    width: 925px;
  }

  .recruit-sec .sec-gray_txt img,
  .page-template-page-recruit-sec .sec-gray_txt img {
    width: 655px;
  }
}

@media screen and (min-width: 965px) and (max-width: 1000px) {
  .recruit-sec .sec-gray_txt img,
  .page-template-page-recruit-sec .sec-gray_txt img {
    width: calc(100% - 270px);
  }
}

@media screen and (min-width: 768px) and (min-width: 768px) and (max-width: 1080px) {
  .team-sec_profile_txt,
  .page-template-page-team-sec_profile_txt {
    margin-left: 2%;
    width: 62%;
  }
}

@media screen and (min-width: 768px) and (min-width: 768px) and (max-width: 900px) {
  .team-sec_profile_txt,
  .page-template-page-team-sec_profile_txt {
    margin-left: 3%;
    width: 47%;
  }
}

@media screen and (min-width: 768px) and (max-width: 1080px) {
  .team-sec_profile_txt_header h3,
  .page-template-page-team-sec_profile_txt_header h3 {
    width: 100%;
  }

  .team-sec_profile_txt_header_tlt,
  .page-template-page-team-sec_profile_txt_header_tlt {
    padding-left: 0px;
  }

  .team-sec_profile_txt_header_tlt:before,
  .page-template-page-team-sec_profile_txt_header_tlt:before {
    display: none;
  }

  .team-sec_profile_txt_header_sns,
  .page-template-page-team-sec_profile_txt_header_sns {
    float: left;
    padding-left: 15px;
  }
}

@media all and (-ms-high-contrast: none) {
  .single-event_header_tlt_data {
    max-width: 1000px;
  }

  .single-event_header_tlt_data {
    width: 770px !important;
  }
}