@charset "UTF-8";
/*----------------*/
/* icon setting */
/*----------------*/
body {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  text-rendering: auto;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  color: #000000;
}

@media all and (-ms-high-contrast: none) {
  body *::-ms-backdrop,
  body {
    font-family: "メイリオ", Meiryo, sans-serif !important;
  }
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: opacity 300ms ease-out 0ms;
  transition: opacity 300ms ease-out 0ms;
  cursor: pointer;
}

@media (min-width: 960px) {
  a:hover {
    opacity: 0.75;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=75)";
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.33;
}

p {
  line-height: inherit;
  font-size: inherit;
  color: inherit;
  font-family: inherit;
  font-weight: inherit;
}

@media (max-width: 959px) {
  .lg-only {
    display: none;
  }
}

.sm-only {
  display: none;
}

@media (max-width: 959px) {
  .sm-only {
    display: block;
  }
}

img {
  max-width: 100%;
}

@media all and (-ms-high-contrast: none) {
  img[src*=".svg"] *::-ms-backdrop,
  img[src*=".svg"] {
    width: 100%;
  }
}

@media (min-width: 960px) {
  ::selection {
    background: #666666;
    color: #ffffff;
  }
}

@media (min-width: 960px) {
  ::-moz-selection {
    background: #666666;
    color: #ffffff;
  }
}

::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}

:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}

::placeholder {
  /* Others */
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}

.noto {
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}

.poppins {
  font-family: "Poppins", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}

.red {
  color: #db5a5a;
}

/*==================================================
ふわっ
===================================*/
/* fadeUp */
.fadeUpTrigger {
  -webkit-transition: 0.8s ease-in-out;
  transition: 0.8s ease-in-out;
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}

.fadeLeftTrigger {
  -webkit-transition: 0.8s ease-in-out;
  transition: 0.8s ease-in-out;
  -webkit-transform: translateX(-30px);
  transform: translateX(-30px);
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  -moz-opacity: 0;
}

.fadeRightTrigger {
  -webkit-transition: 0.8s ease-in-out;
  transition: 0.8s ease-in-out;
  -webkit-transform: translateX(30px);
  transform: translateX(30px);
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  -moz-opacity: 0;
}

.fadeUp {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

/* 左から */
.fadeLeft {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

@-webkit-keyframes fadeLeftAnime {
  from {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

/* 右から */
.fadeRight {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

@-webkit-keyframes fadeRightAnime {
  from {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeRightAnime {
  from {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html {
  font-size: 62.5%;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

blockquote:before,
blockquote:after {
  content: none;
}

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

q:before,
q:after {
  content: none;
}

hr {
  margin: 0;
  padding: 0;
}

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

img {
  vertical-align: top;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* common */
.l-main {
  margin-top: 245px;
  display: block;
  /* for IE */
  /* .l-main_heading */
  /* .l-main_content */
}

@media (max-width: 959px) {
  .l-main {
    margin-top: 290px;
  }
}

.l-main_heading {
  width: 75vw;
  max-width: 1200px;
  margin: auto;
}

@media (max-width: 959px) {
  .l-main_heading {
    width: 90%;
    max-width: initial;
  }
}

.l-main_heading--content {
  margin-bottom: 40px;
}

.l-main_heading--title {
  font-size: 26px;
  font-weight: bold;
  padding-left: 15px;
  border-left: 3px solid #db5a5a;
  margin: 45px auto 40px;
}

@media (max-width: 959px) {
  .l-main_heading--title {
    font-size: 20px;
    margin: 25px auto;
  }
}

.l-main_heading--subtitle {
  font-size: 20px;
  font-weight: bold;
  color: #db5a5a;
  margin-bottom: 15px;
}

@media (max-width: 959px) {
  .l-main_heading--subtitle {
    font-size: 18px;
  }
}

.l-main_heading--lead {
  font-size: 16px;
  line-height: 2;
}

.l-main_heading--lead em {
  font-style: normal;
}

.l-main_heading .year {
  font-weight: bold;
  font-size: 18px;
}

.l-main_content {
  padding: 60px 0 100px;
}

.l-main .p-top_contentBottom_notice {
  padding-bottom: 50px;
}

@media (max-width: 959px) {
  .l-main .p-top_contentBottom_notice {
    padding: 0 10px 30px;
  }
}

/* l-page*/
body.header-white .l-header {
  color: #fff;
  background-color: unset !important;
}

body.header-white .l-header path {
  fill: #fff;
}

body.header-white .l-header rect {
  fill: #fff;
}

body.header-white .l-header .l-header_logo--ttl path {
  fill: #d6d6d6;
}

body.header-white .l-header .l-header_logo--ttl rect {
  fill: #d6d6d6;
}

body.header-white .l-header .l-header_spMenuBtn--bar {
  background-color: #fff;
}

.l-header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  position: relative;
  z-index: 999;
  position: fixed;
  top: 0px;
  color: #000;
  background-color: #ffffff80;
}

@media (max-width: 959px) {
  .l-header {
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    padding: 5% 5% 0;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: white;
  }
}

.l-header_content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  padding: 0 100px;
}

@media (max-width: 959px) {
  .l-header_content {
    padding: 0;
    height: auto;
  }
}

.l-header_logo {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.l-header_logo--img {
  position: relative;
  z-index: 1001;
}

.l-header_logo--img_inner {
  position: relative;
  width: 158px;
  height: 158px;
  border-radius: 50%;
  overflow: hidden;
  margin-top: 15px;
  -webkit-box-shadow: 0px 0px 15px -5px #000000;
  box-shadow: 0px 0px 15px -5px #000000;
  z-index: 10;
}

@media (max-width: 959px) {
  .l-header_logo--img_inner {
    width: 18vw;
    height: 18vw;
    margin-top: 5px;
  }
}

.l-header_logo--img_inner img {
  width: 100%;
}

@media (max-width: 959px) {
  .l-header_logo--img_inner img {
    position: relative;
    z-index: 999;
  }
}

.l-header_logo--ttl {
  padding: 40px 0 30px;
}

.l-header_logo--ttl svg {
  width: 80%;
}

@media (max-width: 959px) {
  .l-header_logo--ttl {
    padding: 0;
  }
  .l-header_logo--ttl svg {
    width: 65%;
  }
}

.l-header_logo--ttl a {
  font-size: 19px;
  font-weight: bold;
  color: #fff;
}

@media (max-width: 959px) {
  .l-header_logo--ttl a {
    font-size: 16px;
  }
}

@media only screen and (max-width: 320px) {
  .l-header_logo--ttl a {
    font-size: 14px;
  }
}

.l-header_logo--amount {
  display: none;
  position: relative;
  z-index: 0;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background-color: #1e1e1e;
  margin: -30px auto 0;
}

@media (max-width: 959px) {
  .l-header_logo--amount.is-top {
    display: none;
  }
}

.is-header-fixed .l-header_logo--amount {
  display: none;
}

.l-header_logo--amount_txt {
  color: #fff;
  padding-top: 45px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
}

.l-header_logo--amount_ttl {
  display: block;
  margin-bottom: 5px;
}

.l-header_logo--amount_num {
  font-family: "Barlow Condensed", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 24px;
}

.l-header_nav--list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 40px 0 30px;
  font-family: poppins, sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 0.78125vw;
}

.header.change-color {
  background-color: #00cc99;
  transition: 0.3s;
}

.l-header_nav--item {
  position: relative;
  margin-left: 37px;
  font-weight: 400;
  position: relative;
  padding-bottom: 7px;
  pointer-events: auto;
  z-index: 1;
}

.l-header_nav--item .link {
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
  position: relative;
  display: block;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  cursor: pointer;
}

.l-header_nav--item:hover .link {
  color: #ffda3c;
}

.l-header_nav--item .link:before {
  background: #ffda3c;
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  margin: auto;
  -webkit-transform-origin: right top;
  transform-origin: right top;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.l-header_nav--item a:before {
  background: #ffda3c;
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  margin: auto;
  -webkit-transform-origin: right top;
  transform-origin: right top;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.l-header_nav--item a:hover {
  color: #ffda3c;
}

.l-header_nav--item a:hover:before {
  -webkit-transform-origin: center top;
  transform-origin: center top;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}

.l-header_nav--item:hover:before {
  -webkit-transform-origin: center top;
  transform-origin: center top;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}

.l-header_nav--item:hover .l-header_nav__box {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  -webkit-transform: translate3d(0, 0, 1px);
  transform: translate3d(0, 0, 1px);
  pointer-events: all;
}

.l-header_nav--item a.contact {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.l-header_nav--item a.contact svg {
  width: 25%;
  margin-left: 5px;
}

.l-header_nav--item a.contact:hover path {
  fill: gold;
}

.l-header_nav--item a.contact:hover rect {
  fill: gold;
}

.l-header_nav__box {
  position: absolute;
  top: calc(100% + 20px);
  right: -286px;
  z-index: -1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 40px;
  background-color: #fff;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  -webkit-transform: translate3d(0, 5px, 1px);
  transform: translate3d(0, 5px, 1px);
  pointer-events: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.l-header_nav__box__link {
  width: 250px;
  color: #15171b;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 23%;
  -ms-flex: 0 0 23%;
  flex: 0 0 23%;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}

/* .l-header_nav__box__link-cs {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  border: solid 1px #fff;
  padding: 4% 0%;
  text-align: center;
  font-size: 0.8vw;
  width: 50%;
  color: #fff;
  z-index: 700;
} */

@media (max-width: 959px) {
  .l-header_nav__box__link-cs {
    font-size: 3.7333vw;
  }
}

.l-header_nav__box__link .image {
  overflow: hidden;
  position: relative;
}

.l-header_nav__box__link .image img {
  -webkit-transition: 1s all;
  transition: 1s all;
  width: 100%;
}

.l-header_nav__box__link .image img:hover {
  -webkit-transform: scale(1.2, 1.2);
  transform: scale(1.2, 1.2);
  -webkit-transition: 1s all;
  transition: 1s all;
}

.l-header_nav__box__link .title {
  font-size: 20px;
  margin-top: 18px;
  letter-spacing: 0;
  font-weight: bold;
  line-height: 25px;
  line-height: 2;
}

.l-header_nav__box__link .desc {
  font-size: 12px;
  letter-spacing: 1px;
  margin-top: 4px;
  padding-left: 1px;
  color: #969696;
}

.l-header_nav__box:before {
  content: "";
  position: absolute;
  top: -60px;
  right: 25%;
  z-index: -1;
  width: 76px;
  height: 100px;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}

.l-header_nav__box:after {
  content: "";
  position: absolute;
  top: -12px;
  right: 28%;
  width: 0;
  height: 0;
  border-width: 0 7px 13px;
  border-color: transparent transparent #fff;
  border-style: solid;
}

.l-header_spMenuBtn {
  width: 44px;
  height: 13px;
}

@media (max-width: 959px) {
  .l-header_spMenuBtn {
    z-index: 1000;
  }
}

.l-header_spMenuBtn--bar {
  width: 100%;
  height: 1px;
  background-color: #000;
  display: block;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.l-header_spMenuBtn--bar:first-of-type {
  margin-bottom: 9px;
}

.l-header_spMenuBtn.is-open .l-header_spMenuBtn--bar:first-of-type {
  -webkit-transform: translate(0, 5px) rotate(150deg);
  transform: translate(0, 5px) rotate(150deg);
}

.l-header_spMenuBtn.is-open .l-header_spMenuBtn--bar:last-of-type {
  -webkit-transform: translateY(-5px) rotate(-150deg);
  transform: translateY(-5px) rotate(-150deg);
}

.l-header_spSideMenu {
  display: none;
}

.l-header_spSideMenu.is-open {
  display: block;
  background-color: #1e1e1e;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 800;
  width: 100%;
  height: 100%;
  padding: 10% 0 20%;
  overflow: scroll;
}

.l-header_spSideMenu--logo {
  position: absolute;
  top: 15px;
  left: 5%;
}

.l-header_spSideMenu--list {
  width: 90%;
  margin: 25px auto 0;
}

.l-header_spSideMenu--item {
  padding: 5% 0;
  position: relative;
  font-size: 3.7333vw;
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border-bottom: solid 1px #323232;
}

.l-header_spSideMenu--item:last-of-type {
  border-bottom: none;
}

.l-header_spSideMenu--item-txt {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 50%;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  line-height: 30px;
  line-height: 2;
  font-size: 3.4666vw;
}

.l-header_spSideMenu .c-btn_area {
  margin-top: 0;
}

.l-header_spSideMenu .c-btn_area .c-btn {
  width: 53.125vw;
}

.l-header_subcontent {
  display: none;
}

@media (max-width: 959px) {
  .l-header_subcontent {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    height: 40px;
    color: #fff;
    width: 100%;
    font-size: 14px;
    font-weight: bold;
  }
}

.l-header_subcontent--amount {
  width: 70%;
  padding: 10px 15px 15px 25vw;
  background-color: #2d2d2d;
}

.l-header_subcontent--amount_num {
  font-family: "Barlow Condensed", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 18px;
}

.l-header_subcontent--amount_txt {
  display: none;
}

.l-header_subcontent--entry {
  width: 30%;
  padding: 15px;
  background-color: #000;
  text-align: center;
}

.l-header_subcontent--entry a {
  font-size: 14px;
}

@media only screen and (max-width: 320px) {
  .l-header_subcontent--entry a {
    font-size: 12px;
  }
}

.is-header-fixed .l-header_subcontent {
  display: none;
  background-color: white;
}

.l-footer {
  position: relative;
  background-color: #313131;
  padding: 4% 0 2%;
}

.l-footer .backtotop {
  text-align: right;
  position: fixed;
  bottom: 50px;
  right: -50px;
  z-index: 10;
}

@media (max-width: 959px) {
  .l-footer .backtotop {
    margin: 0 3.125%;
    right: -2.875%;
  }
}

.l-footer .backtotop a {
  display: inline-block;
  position: absolute;
  bottom: 50px;
  right: 50px;
}

@media (max-width: 959px) {
  .l-footer .backtotop a {
    bottom: 15px;
    right: 3.125%;
  }
}

.l-footer .backtotop span {
  width: 45px;
  height: 45px;
  background-color: #000;
  display: inline-block;
  position: relative;
}

.l-footer .backtotop span:after {
  position: absolute;
  content: "";
  background: url(../images/common/arrow_y_top.svg) no-repeat;
  background-size: 14px 18px;
  width: 14px;
  height: 18px;
  top: 15px;
  right: 15px;
}

.l-footer_content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 36%;
}

@media (max-width: 959px) {
  .l-footer_content {
    display: block;
    padding: 25px 8%;
    margin-right: 0;
  }
}

.l-footer_nav {
  color: #fff;
}

.l-footer_nav--list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 959px) {
  .l-footer_nav--list {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 20px;
  }
  .l-footer_nav--list.spflex {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
  }
}

.l-footer_nav--item {
  font-size: 0.78125vw;
  font-family: "Poppins", "Yu Mincho", YuMincho;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 56%;
  -ms-flex: 0 0 56%;
  flex: 0 0 56%;
}

@media (max-width: 959px) {
  .l-footer_nav--item {
    margin-right: 5%;
    margin-bottom: 10%;
    font-size: 3.7333vw;
    margin-right: 0;
    border-bottom: solid 1px #414141;
  }
  .l-footer_nav--item:first-of-type {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }
  .l-footer_nav--item:first-of-type .top {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    margin-bottom: 5%;
  }
  .l-footer_nav--item:nth-of-type(2) {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 7%;
    padding-bottom: 8%;
  }
  .l-footer_nav--item:nth-of-type(2) .top {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    margin-bottom: 10px;
  }
  .l-footer_nav--item:nth-of-type(2) .noto {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    line-height: 2;
  }
  .l-footer_nav--item.spflex {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    border-bottom: none;
  }
}

.l-footer_nav--item .top {
  margin-bottom: 15px;
  padding-bottom: 7px;
  position: relative;
}

.l-footer_nav--item .top a:before {
  background: #fff;
  content: "";
  width: 60%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  margin: auto;
  -webkit-transform-origin: right top;
  transform-origin: right top;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.l-footer_nav--item .top a:hover:before {
  -webkit-transform-origin: center top;
  transform-origin: center top;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}

.l-footer_nav--item .noto {
  font-family: "Noto Sans JP", "Yu Mincho", YuMincho;
  font-size: 0.729166vw;
  line-height: 25px;
  line-height: 2;
}

@media (max-width: 959px) {
  .l-footer_nav--item .noto {
    font-size: 3.4666666vw;
  }
}

.l-footer__logo {
  margin-left: 19%;
}

@media (max-width: 959px) {
  .l-footer__logo {
    text-align: center;
    margin-left: 0;
  }
  .l-footer__logo img {
    width: 15%;
  }
}

.l-footer__logo .logo {
  margin-bottom: 20px;
}

@media (max-width: 959px) {
  .l-footer__logo .logo {
    border-top: solid 1px #414141;
    border-bottom: solid 1px #414141;
    padding: 15px 0px;
    display: flex;
    justify-content: center;
  }
}

.l-footer__logo .copyright {
  color: white;
  font-size: 0.625vw;
  margin-right: 50px;
  text-align: right;
}

@media (max-width: 959px) {
  .l-footer__logo .copyright {
    text-align: center;
    margin-right: 0;
    font-size: 2.666vw;
  }
}

.c-breadcrumb {
  position: absolute;
  z-index: 3;
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  top: 106px;
  left: 97px;
  color: #fff;
}

@media (max-width: 959px) {
  .c-breadcrumb {
    top: 100px;
    left: 45px;
  }
}

@media (max-width: 631px) {
  .c-breadcrumb {
    top: 83px;
    left: 19px;
  }
}

.c-breadcrumb_list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.c-breadcrumb_list span {
  font-size: 10px;
}

@media (max-width: 959px) {
  .c-breadcrumb_list span {
    font-size: 13px;
  }
}

.c-breadcrumb_item {
  margin-right: 10%;
  font-size: 10px;
  position: relative;
  white-space: nowrap;
}

@media (max-width: 959px) {
  .c-breadcrumb_item {
    font-size: 13px;
  }
}

.c-breadcrumb_item:after {
  position: absolute;
  top: 0;
  right: -18px;
  font-size: 0.5208333vw;
}

@media (max-width: 959px) {
  .c-breadcrumb_item:after {
    font-size: 2.666vw;
  }
}

.c-breadcrumb_item:last-of-type:after {
  display: none;
}

.c-btn {
  /* button yellow */
  /* button black */
  /* button white */
  /* size setting */
  /* btn_area */
}

.c-btn.yellow {
  color: #000;
  background-color: #fdd001;
  margin-top: 30px;
}

.c-btn.yellow:before {
  border-color: transparent #fdd001 transparent transparent;
}

.c-btn.yellow:after {
  border-color: transparent transparent transparent #fdd001;
}

.c-btn.black {
  color: #ffdc9d;
  background-color: #000;
}

.c-btn.black:before {
  border-color: transparent #000 transparent transparent;
}

.c-btn.black:after {
  border-color: transparent transparent transparent #000;
}

.c-btn.white:before {
  border-color: transparent #db5a5a transparent transparent;
}

.c-btn.white:after {
  border-color: transparent transparent transparent #db5a5a;
}

.c-btn.white.vote-btn span {
  position: relative;
  display: inline-block;
  width: 100%;
}

.c-btn.white.vote-btn span:before,
.c-btn.white.vote-btn span:after {
  position: absolute;
  top: -20px;
  content: "";
  border-style: solid;
  z-index: 2;
}

.c-btn.white.vote-btn span:before {
  left: -12px;
  border-width: 29px 13px 29px 0;
  border-color: transparent #fff transparent transparent;
}

@media all and (-ms-high-contrast: none) {
  .c-btn.white.vote-btn span:before {
    left: -12px;
  }
}

.c-btn.white.vote-btn span:after {
  right: -12px;
  border-width: 29px 0 29px 13px;
  border-color: transparent transparent transparent #fff;
}

@media all and (-ms-high-contrast: none) {
  .c-btn.white.vote-btn span:after {
    right: -12px;
  }
}

.c-btn.white span {
  position: relative;
  display: inline-block;
  width: 100%;
}

.c-btn.white span:before,
.c-btn.white span:after {
  position: absolute;
  top: -20px;
  content: "";
  border-style: solid;
  z-index: 2;
}

.c-btn.white span:before {
  left: -47px;
  border-width: 29px 13px 29px 0;
  border-color: transparent #fff transparent transparent;
}

@media all and (-ms-high-contrast: none) {
  .c-btn.white span:before {
    left: -47px;
  }
}

.c-btn.white span:after {
  right: -47px;
  border-width: 29px 0 29px 13px;
  border-color: transparent transparent transparent #fff;
}

@media all and (-ms-high-contrast: none) {
  .c-btn.white span:after {
    right: -47px;
  }
}

.c-btn.middle {
  width: 200px;
}

.c-btn_area {
  text-align: center;
  margin-top: 35px;
}

.c-mediaIndex {
  margin: 70px 0 0;
  /* tabs */
  /* content */
  /* mag */
  /* TOPページ　*/
  /* exhibitページはtabなし */
}

@media (max-width: 959px) {
  .c-mediaIndex {
    margin-top: 30px;
  }
}

.c-mediaIndex_tabs {
  width: 75vw;
  max-width: 1200px;
  margin: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-transform: translateY(1px);
  transform: translateY(1px);
}

@media (max-width: 959px) {
  .c-mediaIndex_tabs {
    width: 100%;
    max-width: initial;
  }
}

.c-mediaIndex_tabs--tab {
  width: 50%;
  padding: 0 !important;
  text-align: center;
  color: #b4b4b4;
  font-size: 18px;
  font-weight: bold;
  border: solid #dcdcdc;
  border-width: 1px 1px 1px 0;
  background-color: #fff;
  line-height: 50px;
  line-height: 2;
}

@media (max-width: 959px) {
  .c-mediaIndex_tabs--tab {
    cursor: pointer;
    padding: 0 !important;
    border-width: 1px 0;
    font-size: 16px;
    line-height: 2;
  }
}

.c-mediaIndex_tabs--tab:first-of-type {
  border-left: 1px solid #dcdcdc;
}

@media (max-width: 959px) {
  .c-mediaIndex_tabs--tab:first-of-type {
    border-left: none;
  }
}

.c-mediaIndex_tabs--tab.is-active {
  color: #db5a5a;
  background-color: #f6f5ee;
  border-bottom: 0;
}

@media (max-width: 959px) {
  .c-mediaIndex_tabs--tab.tab_all {
    width: 25%;
    border-right: 1px solid #dcdcdc;
  }
}

@media (max-width: 959px) {
  .c-mediaIndex_tabs--tab.tab_area {
    border-right: 1px solid #dcdcdc;
  }
}

.c-mediaIndex_content {
  background-color: #f6f5ee;
  padding: 60px 0 100px;
  display: none;
  border-top: 1px solid #dcdcdc;
}

@media (max-width: 959px) {
  .c-mediaIndex_content {
    padding: 30px 0;
  }
}

.c-mediaIndex_content.is-active {
  display: block;
}

.c-mediaIndex_content--list {
  width: 75vw;
  max-width: 1200px;
  margin: 0 auto 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media (max-width: 959px) {
  .c-mediaIndex_content--list {
    width: 90%;
    max-width: initial;
  }
}

.c-mediaIndex_content--item {
  width: 32%;
  margin-bottom: 10px;
  position: relative;
}

@media (max-width: 959px) {
  .c-mediaIndex_content--item {
    width: 49%;
  }
  .c-mediaIndex_content--item:last-of-type {
    width: 100%;
  }
}

.c-mediaIndex_content--item:before {
  content: "";
  position: absolute;
}

.c-mediaIndex_content--item:after {
  content: "";
  position: absolute;
  top: 45%;
  right: 20px;
  background: url(../images/common/arrow_rd_right.svg) no-repeat;
  background-size: 18px 16.5px;
  width: 18px;
  height: 16.5px;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

@media (max-width: 959px) {
  .c-mediaIndex_content--item:after {
    display: none;
  }
}

@media (max-width: 959px) {
  .c-mediaIndex_content--item.area1 a {
    text-indent: 20px;
  }
}

.c-mediaIndex_content--item.area1 img {
  position: absolute;
  top: 22%;
  left: 10%;
  width: 40px;
  height: 40px;
}

@media (max-width: 959px) {
  .c-mediaIndex_content--item.area1 img {
    height: 35px;
    width: 20%;
  }
}

@media (max-width: 959px) {
  .c-mediaIndex_content--item.media1,
  .c-mediaIndex_content--item.media2,
  .c-mediaIndex_content--item.media3 {
    width: 100%;
  }
}

.c-mediaIndex_content--item.media1:after,
.c-mediaIndex_content--item.media2:after,
.c-mediaIndex_content--item.media3:after {
  display: inline-block;
  top: 40%;
}

.c-mediaIndex_content--item.media1 img,
.c-mediaIndex_content--item.media2 img,
.c-mediaIndex_content--item.media3 img {
  position: absolute;
  top: 22%;
  left: 10%;
  width: 40px;
  height: 40px;
}

.c-mediaIndex_content--item a {
  display: block;
  font-size: 18px;
  font-weight: bold;
  color: #000;
  background-color: #fff;
  border-radius: 6px;
  padding: 35px 0 30px;
  text-align: center;
}

@media (max-width: 959px) {
  .c-mediaIndex_content--item a {
    padding: 23px 0 20px;
    font-size: 16px;
  }
}

.c-mediaIndex_content--item a:hover {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.c-mediaIndex_content--item_medium {
  width: 32%;
  margin-bottom: 10px;
  position: relative;
}

@media (max-width: 959px) {
  .c-mediaIndex_content--item_medium {
    width: 49%;
  }
  .c-mediaIndex_content--item_medium:last-of-type {
    width: 100%;
  }
}

.c-mediaIndex_content--item_medium:before {
  content: "";
  position: absolute;
}

.c-mediaIndex_content--item_medium:after {
  content: "";
  position: absolute;
  top: 45%;
  right: 20px;
  background: url(../images/common/arrow_rd_right.svg) no-repeat;
  background-size: 18px 16.5px;
  width: 18px;
  height: 16.5px;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

@media (max-width: 959px) {
  .c-mediaIndex_content--item_medium:after {
    display: none;
  }
}

@media (max-width: 959px) {
  .c-mediaIndex_content--item_medium.area1 a {
    text-indent: 20px;
  }
}

.c-mediaIndex_content--item_medium.area1:before {
  background: url(../images/common/icon_area01.svg) no-repeat;
  background-size: 48.938px 33.91px;
  width: 48.938px;
  height: 33.91px;
  top: 30px;
  left: 32px;
}

@media (max-width: 959px) {
  .c-mediaIndex_content--item_medium.area1:before {
    background-size: calc(48.938px * 0.6), calc(33.91px * 0.6);
    width: calc(48.938px * 0.6);
    height: calc(33.91px * 0.6);
    top: 20px;
    left: 12px;
  }
}

.c-mediaIndex_content--item_medium.area1 img {
  position: absolute;
  top: 22%;
  left: 10%;
}

.c-mediaIndex_content--item_medium.area2:before {
  background: url(../images/common/icon_area02.svg) no-repeat;
  background-size: 26.969px 51.91px;
  width: 26.969px;
  height: 51.91px;
  top: 20px;
  left: 40px;
}

@media (max-width: 959px) {
  .c-mediaIndex_content--item_medium.area2:before {
    background-size: calc(26.969px * 0.6), calc(51.91px * 0.6);
    width: calc(26.969px * 0.6);
    height: calc(51.91px * 0.6);
    top: 15px;
    left: 20px;
  }
}

@media (max-width: 959px) {
  .c-mediaIndex_content--item_medium.area3 a {
    text-indent: 20px;
  }
}

.c-mediaIndex_content--item_medium.area3:before {
  background: url(../images/common/icon_area03.svg) no-repeat;
  background-size: 49.25px 44.41px;
  width: 49.25px;
  height: 44.41px;
  top: 20px;
  left: 32px;
}

@media (max-width: 959px) {
  .c-mediaIndex_content--item_medium.area3:before {
    background-size: calc(49.25px * 0.6), calc(44.41px * 0.6);
    width: calc(49.25px * 0.6);
    height: calc(44.41px * 0.6);
    top: 15px;
    left: 12px;
  }
}

.c-mediaIndex_content--item_medium.area4:before {
  background: url(../images/common/icon_area04.svg) no-repeat;
  background-size: 42.531px 36.84px;
  width: 42.531px;
  height: 36.84px;
  top: 30px;
  left: 32px;
}

@media (max-width: 959px) {
  .c-mediaIndex_content--item_medium.area4:before {
    background-size: calc(42.531px * 0.6), calc(36.84px * 0.6);
    width: calc(42.531px * 0.6);
    height: calc(36.84px * 0.6);
    top: 20px;
    left: 16px;
  }
}

.c-mediaIndex_content--item_medium.area5:before {
  background: url(../images/common/icon_area05.svg) no-repeat;
  background-size: 43.031px 47.19px;
  width: 43.031px;
  height: 47.19px;
  top: 20px;
  left: 32px;
}

@media (max-width: 959px) {
  .c-mediaIndex_content--item_medium.area5:before {
    background-size: calc(43.031px * 0.6), calc(47.19px * 0.6);
    width: calc(43.031px * 0.6);
    height: calc(47.19px * 0.6);
    top: 15px;
    left: 17px;
  }
}

.c-mediaIndex_content--item_medium.area6:before {
  background: url(../images/common/icon_area06.svg) no-repeat;
  background-size: 43.47px 49.31px;
  width: 43.47px;
  height: 49.31px;
  top: 20px;
  left: 35px;
}

@media (max-width: 959px) {
  .c-mediaIndex_content--item_medium.area6:before {
    background-size: calc(43.47px * 0.6), calc(49.31px * 0.6);
    width: calc(43.47px * 0.6);
    height: calc(49.31px * 0.6);
    top: 15px;
    left: 16px;
  }
}

.c-mediaIndex_content--item_medium.area7:before {
  background: url(../images/common/icon_area07.svg) no-repeat;
  background-size: 37.969px 38.72px;
  width: 37.969px;
  height: 38.72px;
  top: 25px;
  left: 35px;
}

@media (max-width: 959px) {
  .c-mediaIndex_content--item_medium.area7:before {
    background-size: calc(37.969px * 0.6), calc(38.72px * 0.6);
    width: calc(37.969px * 0.6);
    height: calc(38.72px * 0.6);
    top: 20px;
    left: 17px;
  }
}

@media (max-width: 959px) {
  .c-mediaIndex_content--item_medium.area8 a {
    text-indent: 20px;
  }
}

.c-mediaIndex_content--item_medium.area8:before {
  background: url(../images/common/icon_area08.svg) no-repeat;
  background-size: 36.844px 44.03px;
  width: 36.844px;
  height: 44.03px;
  top: 20px;
  left: 35px;
}

@media (max-width: 959px) {
  .c-mediaIndex_content--item_medium.area8:before {
    background-size: calc(36.844px * 0.6), calc(44.03px * 0.6);
    width: calc(36.844px * 0.6);
    height: calc(44.03px * 0.6);
    top: 20px;
    left: 16px;
  }
}

.c-mediaIndex_content--item_medium.area9:before {
  background: url(../images/common/icon_area09.svg) no-repeat;
  background-size: 56.5px 58.09px;
  width: 56.5px;
  height: 58.09px;
  top: 15px;
  left: 32px;
}

@media (max-width: 959px) {
  .c-mediaIndex_content--item_medium.area9:before {
    background-size: calc(56.5px * 0.6), calc(58.09px * 0.6);
    width: calc(56.5px * 0.6);
    height: calc(58.09px * 0.6);
    top: 15px;
    left: 18px;
  }
}

@media (max-width: 959px) {
  .c-mediaIndex_content--item_medium.media1,
  .c-mediaIndex_content--item_medium.media2,
  .c-mediaIndex_content--item_medium.media3 {
    width: 100%;
  }
}

.c-mediaIndex_content--item_medium.media1:after,
.c-mediaIndex_content--item_medium.media2:after,
.c-mediaIndex_content--item_medium.media3:after {
  display: inline-block;
  top: 40%;
}

.c-mediaIndex_content--item_medium.media1:before {
  background: url(../images/common/icon_media01.svg) no-repeat;
  background-size: 33.813px 38.469px;
  width: 33.813px;
  height: 38.469px;
  top: 25px;
  left: 32px;
}

@media (max-width: 959px) {
  .c-mediaIndex_content--item_medium.media1:before {
    background-size: calc(33.813px * 0.6), calc(38.469px * 0.6);
    width: calc(33.813px * 0.6);
    height: calc(38.469px * 0.6);
    top: 18px;
    left: 15px;
  }
}

.c-mediaIndex_content--item_medium.media2:before {
  background: url(../images/common/icon_media02.svg) no-repeat;
  background-size: 40.281px 33.032px;
  width: 40.281px;
  height: 33.032px;
  top: 25px;
  left: 40px;
}

@media (max-width: 959px) {
  .c-mediaIndex_content--item_medium.media2:before {
    background-size: calc(40.281px * 0.6), calc(33.032px * 0.6);
    width: calc(40.281px * 0.6);
    height: calc(33.032px * 0.6);
    top: 20px;
    left: 13px;
  }
}

.c-mediaIndex_content--item_medium.media3:before {
  background: url(../images/common/icon_media03.svg) no-repeat;
  background-size: 42.72px 40.375px;
  width: 42.72px;
  height: 40.375px;
  top: 20px;
  left: 32px;
}

@media (max-width: 959px) {
  .c-mediaIndex_content--item_medium.media3:before {
    background-size: calc(42.72px * 0.6), calc(40.375px * 0.6);
    width: calc(42.72px * 0.6);
    height: calc(40.375px * 0.6);
    top: 20px;
    left: 12px;
  }
}

.c-mediaIndex_content--item_medium a {
  display: block;
  font-size: 18px;
  font-weight: bold;
  color: #000;
  background-color: #fff;
  border-radius: 6px;
  padding: 35px 0 30px;
  text-align: center;
}

@media (max-width: 959px) {
  .c-mediaIndex_content--item_medium a {
    padding: 23px 0 20px;
    font-size: 16px;
  }
}

.c-mediaIndex_content--item_medium a:hover {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.c-mediaIndex_content--ttl {
  width: 75vw;
  max-width: 1200px;
  font-size: 20px;
  position: relative;
}

@media (max-width: 959px) {
  .c-mediaIndex_content--ttl {
    width: 90%;
    max-width: initial;
    font-size: 16px;
    padding-left: 35px;
    top: 0;
    height: auto;
  }
}

.c-mediaIndex_content--ttl:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
}

.c-mediaIndex_content--ttl.area1:before {
  background: url(../images/common/icon_area01.svg) no-repeat;
  background-size: 48.938px 33.91px;
  width: 48.938px;
  height: 33.91px;
}

@media (max-width: 959px) {
  .c-mediaIndex_content--ttl.area1:before {
    background-size: calc(48.938px * 0.6), calc(33.91px * 0.6);
    width: calc(48.938px * 0.6);
    height: calc(33.91px * 0.6);
  }
}

.c-mediaIndex_content--ttl.area2 {
  padding-left: 50px;
}

@media (max-width: 959px) {
  .c-mediaIndex_content--ttl.area2 {
    padding-left: 35px;
  }
}

.c-mediaIndex_content--ttl.area2:before {
  background: url(../images/common/icon_area02.svg) no-repeat;
  background-size: 26.969px 51.91px;
  width: 26.969px;
  height: 51.91px;
  top: -15px;
}

@media (max-width: 959px) {
  .c-mediaIndex_content--ttl.area2:before {
    background-size: calc(26.969px * 0.6), calc(51.91px * 0.6);
    width: calc(26.969px * 0.6);
    height: calc(51.91px * 0.6);
    top: 0;
  }
}

.c-mediaIndex_content--ttl.area3:before {
  background: url(../images/common/icon_area03.svg) no-repeat;
  background-size: 49.25px 44.41px;
  width: 49.25px;
  height: 44.41px;
  top: -10px;
}

@media (max-width: 959px) {
  .c-mediaIndex_content--ttl.area3:before {
    background-size: calc(49.25px * 0.6), calc(44.41px * 0.6);
    width: calc(49.25px * 0.6);
    height: calc(44.41px * 0.6);
    top: 0;
  }
}

.c-mediaIndex_content--ttl.area4:before {
  background: url(../images/common/icon_area04.svg) no-repeat;
  background-size: 42.531px 36.84px;
  width: 42.531px;
  height: 36.84px;
  top: -5px;
}

@media (max-width: 959px) {
  .c-mediaIndex_content--ttl.area4:before {
    background-size: calc(42.531px * 0.6), calc(36.84px * 0.6);
    width: calc(42.531px * 0.6);
    height: calc(36.84px * 0.6);
    top: 0;
  }
}

.c-mediaIndex_content--ttl.area5:before {
  background: url(../images/common/icon_area05.svg) no-repeat;
  background-size: 43.031px 47.19px;
  width: 43.031px;
  height: 47.19px;
  top: -13px;
}

@media (max-width: 959px) {
  .c-mediaIndex_content--ttl.area5:before {
    background-size: calc(43.031px * 0.6), calc(47.19px * 0.6);
    width: calc(43.031px * 0.6);
    height: calc(47.19px * 0.6);
    top: 0;
  }
}

.c-mediaIndex_content--ttl.area6:before {
  background: url(../images/common/icon_area06.svg) no-repeat;
  background-size: 43.47px 49.31px;
  width: 43.47px;
  height: 49.31px;
  top: -14px;
}

@media (max-width: 959px) {
  .c-mediaIndex_content--ttl.area6:before {
    background-size: calc(43.47px * 0.6), calc(49.31px * 0.6);
    width: calc(43.47px * 0.6);
    height: calc(49.31px * 0.6);
    top: 0;
  }
}

.c-mediaIndex_content--ttl.area7:before {
  background: url(../images/common/icon_area07.svg) no-repeat;
  background-size: 37.969px 38.72px;
  width: 37.969px;
  height: 38.72px;
  top: -5px;
}

@media (max-width: 959px) {
  .c-mediaIndex_content--ttl.area7:before {
    background-size: calc(37.969px * 0.6), calc(38.72px * 0.6);
    width: calc(37.969px * 0.6);
    height: calc(38.72px * 0.6);
    top: 0;
  }
}

@media (max-width: 959px) {
  .c-mediaIndex_content--ttl.area8 {
    margin-bottom: 40px;
  }
}

.c-mediaIndex_content--ttl.area8:before {
  background: url(../images/common/icon_area08.svg) no-repeat;
  background-size: 36.844px 44.03px;
  width: 36.844px;
  height: 44.03px;
  top: -5px;
}

@media (max-width: 959px) {
  .c-mediaIndex_content--ttl.area8:before {
    background-size: calc(36.844px * 0.6), calc(44.03px * 0.6);
    width: calc(36.844px * 0.6);
    height: calc(44.03px * 0.6);
    top: 0;
  }
}

.c-mediaIndex_content--ttl.area9:before {
  background: url(../images/common/icon_area09.svg) no-repeat;
  background-size: 56.5px 58.09px;
  width: 56.5px;
  height: 58.09px;
  top: -11px;
}

@media (max-width: 959px) {
  .c-mediaIndex_content--ttl.area9:before {
    background-size: calc(56.5px * 0.6), calc(58.09px * 0.6);
    width: calc(56.5px * 0.6);
    height: calc(58.09px * 0.6);
    top: 0;
  }
}

.c-mediaIndex_content--ttl.media1:before {
  background: url(../images/common/icon_media01.svg) no-repeat;
  background-size: 33.813px 38.469px;
  width: 33.813px;
  height: 38.469px;
  top: -6px;
}

@media (max-width: 959px) {
  .c-mediaIndex_content--ttl.media1:before {
    background-size: calc(33.813px * 0.6), calc(38.469px * 0.6);
    width: calc(33.813px * 0.6);
    height: calc(38.469px * 0.6);
    top: 0;
  }
}

.c-mediaIndex_content--ttl.media2:before {
  background: url(../images/common/icon_media02.svg) no-repeat;
  background-size: 40.281px 33.032px;
  width: 40.281px;
  height: 33.032px;
  top: -3px;
}

@media (max-width: 959px) {
  .c-mediaIndex_content--ttl.media2:before {
    background-size: calc(40.281px * 0.6), calc(33.032px * 0.6);
    width: calc(40.281px * 0.6);
    height: calc(33.032px * 0.6);
    top: 0;
  }
}

.c-mediaIndex_content--ttl.media3:before {
  background: url(../images/common/icon_media03.svg) no-repeat;
  background-size: 42.72px 40.375px;
  width: 42.72px;
  height: 40.375px;
  top: -7px;
}

@media (max-width: 959px) {
  .c-mediaIndex_content--ttl.media3:before {
    background-size: calc(42.72px * 0.6), calc(40.375px * 0.6);
    width: calc(42.72px * 0.6);
    height: calc(40.375px * 0.6);
    top: 0;
  }
}

.c-mediaIndex_content--ttl span {
  font-size: 16px;
  font-weight: normal;
  padding-left: 15px;
}

@media (max-width: 959px) {
  .c-mediaIndex_content--ttl span {
    font-size: 13px;
    display: block;
    padding-left: 0;
    margin-bottom: 10px;
  }
}

.c-mediaIndex_content--ttl img {
  margin-right: 13px;
  margin-top: -5px;
  width: 40px;
  height: 40px;
}

.c-mediaIndex_mag--list {
  width: 75vw;
  max-width: 1200px;
  margin: 0 auto 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

@media (max-width: 959px) {
  .c-mediaIndex_mag--list {
    width: 90%;
    max-width: initial;
    font-size: 16px;
  }
  .c-mediaIndex_mag--list li {
    font-size: 16px;
  }
}

.c-mediaIndex_mag--list.clm6 {
  margin-top: 65px;
}

@media (max-width: 959px) {
  .c-mediaIndex_mag--list.clm6 {
    width: 100%;
  }
  .c-mediaIndex_mag--list.clm6:before,
  .c-mediaIndex_mag--list.clm6:after {
    content: "";
    display: block;
    width: 32%;
    height: 0;
  }
  .c-mediaIndex_mag--list.clm6:before {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
  }
}

.c-mediaIndex_mag--list.clm6 .c-mediaIndex_mag--item {
  width: 13.9%;
  margin-right: 2.7%;
}

@media (max-width: 959px) {
  .c-mediaIndex_mag--list.clm6 .c-mediaIndex_mag--item {
    width: 32%;
    margin-right: auto;
  }
}

.c-mediaIndex_mag--list.clm6 .c-mediaIndex_mag--item:nth-of-type(4n) {
  margin-right: 2.7%;
}

@media (max-width: 959px) {
  .c-mediaIndex_mag--list.clm6 .c-mediaIndex_mag--item:nth-of-type(4n) {
    margin-right: auto;
  }
}

.c-mediaIndex_mag--list.clm6 .c-mediaIndex_mag--item:last-of-type {
  margin-right: 0;
}

@media (max-width: 959px) {
  .c-mediaIndex_mag--list.clm6 .c-mediaIndex_mag--item:last-of-type {
    margin-right: auto;
  }
}

.c-mediaIndex_mag--list.clm6 .c-mediaIndex_mag--item img {
  width: 100%;
}

.c-mediaIndex_mag--item {
  width: 22.5%;
  margin-bottom: 40px;
  margin-right: 3.3%;
}

@media (max-width: 959px) {
  .c-mediaIndex_mag--item {
    width: 47%;
    margin: 0 auto 5%;
  }
}

.c-mediaIndex_mag--item:nth-of-type(4n) {
  margin-right: 0;
}

@media (max-width: 959px) {
  .c-mediaIndex_mag--item:nth-of-type(4n) {
    margin-right: auto;
  }
}

.c-mediaIndex_mag--item__img img {
  width: 100%;
}

.c-mediaIndex_mag--item__ttl {
  font-size: 16px;
  line-height: 2;
  margin-top: 20px;
}

@media (max-width: 959px) {
  .c-mediaIndex_mag--item__ttl {
    font-size: 14px;
  }
}

.p-top .c-mediaIndex {
  /* ALLタブを非表示 */
}

.p-top .c-mediaIndex_tabs--tab.tab_all {
  display: none;
}

.p-top .c-mediaIndex_tabs--tab.tab_area {
  border-left: 1px solid #dcdcdc;
}

@media (max-width: 959px) {
  .p-top .c-mediaIndex_tabs--tab.tab_area {
    border-left: none;
    border-right: 1px solid #dcdcdc;
  }
}

.p-top .c-mediaIndex_content.is-all {
  display: none;
}

.p-top .c-mediaIndex_content--item {
  /* ボタン矢印が右向き */
}

.p-top .c-mediaIndex_content--item:after {
  -webkit-transform: rotate(0);
  transform: rotate(0);
}

.p-exhibit .c-mediaIndex_content {
  border-top: none;
}

.c-form {
  width: 62.5%;
  margin: auto;
  /* common (input, select, textarea, button ) */
  /* .c-form_container */
  /* .c-form_txt */
  /* c-form_contact */
  /* .c-form_uploads */
  /* c-form_attention */
  /* c-form_btnArea */
  /* c-form_submitArea */
  /* .errMsg */
}

@media (max-width: 959px) {
  .c-form {
    width: 86.67%;
    max-width: initial;
  }
}

.c-form input[type="text"],
.c-form input[type="tel"],
.c-form input[type="url"],
.c-form input[type="email"],
.c-form textarea {
  width: 100%;
  background-color: #f5f5f5;
  border: none;
  padding: 15px;
  margin-bottom: 13px;
  font-size: 16px;
}

.c-form input[type="text"]:focus,
.c-form input[type="tel"]:focus,
.c-form input[type="url"]:focus,
.c-form input[type="email"]:focus,
.c-form textarea:focus {
  border: 2px solid #dcdcdc;
  outline: none;
}

.c-form input[type="radio"],
.c-form input[type="checkbox"] {
  display: none;
}

.c-form .radiobtn,
.c-form .cbox {
  position: relative;
  padding-left: 20px;
  margin-bottom: 22px;
}

.c-form .radiobtn:before {
  position: absolute;
  top: 7px;
  left: 0;
  background-color: #f4f4f4;
  border: 1px solid #dcdcdc;
  border-radius: 50%;
  width: 15px;
  height: 15px;
  content: "";
}

@media (max-width: 959px) {
  .c-form .radiobtn:before {
    top: 8px;
  }
}

.c-form input[type="radio"]:checked + .radiobtn:after {
  position: absolute;
  top: 11px;
  left: 4px;
  background-color: #000;
  border-radius: 50%;
  width: 7px;
  height: 7px;
  content: "";
  display: block;
}

@media (max-width: 959px) {
  .c-form input[type="radio"]:checked + .radiobtn:after {
    top: 12px;
  }
}

.c-form .cbox:before {
  position: absolute;
  top: 7px;
  left: 0;
  background-color: #f4f4f4;
  border: 1px solid #dcdcdc;
  width: 15px;
  height: 15px;
  content: "";
}

@media (max-width: 959px) {
  .c-form .cbox:before {
    top: 6px;
  }
}

.c-form input[type="checkbox"]:checked + .cbox:after {
  content: "";
  position: absolute;
  top: 4px;
  left: 3px;
  width: 10px;
  height: 5px;
  border-left: 1px solid #000;
  border-bottom: 1px solid #000;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.c-form input[type="text"].zipcode {
  width: 185px;
  display: inline-block;
  margin-left: 15px;
}

.c-form input[type="text"].third {
  width: 33%;
}

@media (max-width: 959px) {
  .c-form input[type="text"].third {
    width: 50%;
  }
}

.c-form select {
  -webkit-appearance: none;
  appearance: none;
  background-color: #f4f4f4;
  background: url(../images/common/bg_select.png) no-repeat;
  background-position: right 10px center;
  border: 1px solid #dcdcdc;
  border-radius: 6px;
  padding: 15px 30px 15px 15px;
  font-size: 16px;
}

.c-form select::-ms-expand {
  display: none;
  /* Internet Explorer 10-11 */
}

.c-form button[type="button"] {
  cursor: pointer;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: #dbdbdb;
  border: 1px solid #dcdcdc;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  color: #000;
  width: 145px;
  height: 42px;
}

@media (max-width: 959px) {
  .c-form button[type="button"] {
    font-size: 14px;
  }
}

@media all and (-ms-high-contrast: none) {
  .c-form button[type="button"].button-confirm {
    background-color: #db5a5a !important;
    color: #fff !important;
    border-radius: 0 !important;
    height: 60px !important;
  }
  .c-form button[type="button"].button-send {
    background-color: #db5a5a !important;
    color: #fff !important;
    border-radius: 0 !important;
    height: 60px !important;
  }
  .c-form button[type="button"] {
    height: 60px !important;
    border-radius: 0 !important;
  }
  .c-form .no-display {
    display: none !important;
  }
}

.c-form button[type="button"] + span {
  margin-left: 12px;
  display: inline-block;
}

.c-form_container {
  margin-bottom: 12.66vw;
  background-color: #fff;
  position: relative;
  overflow: hidden;
}

.c-form_container--ttl {
  height: 60px;
  background-color: #db5a5a;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  padding: 15px 50px;
  margin: -25px -50px 25px;
  width: 120%;
}

@media (max-width: 959px) {
  .c-form_container--ttl {
    width: 125%;
    line-height: 2;
    margin-bottom: 0;
  }
}

.c-form_txt {
  margin-bottom: 30px;
  font-size: 16px;
}

.c-form .c-form_contact {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.c-form .c-form_contact-box {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 48%;
  -ms-flex: 0 0 48%;
  flex: 0 0 48%;
  margin-bottom: 20px;
}

.c-form .c-form_contact-box-txt01 {
  font-size: 0.8291666vw;
  font-weight: 500;
  margin-bottom: 10px;
}

@media (max-width: 959px) {
  .c-form .c-form_contact-box-txt01 {
    font-size: 3.733vw;
  }
}

.c-form .c-form_contact-box.textarea {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 100%;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
}

@media (max-width: 959px) {
  .c-form .c-form_contact {
    display: block;
  }
}

.c-form_uploads {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  margin-top: 15px;
}

@media (max-width: 959px) {
  .c-form_uploads {
    display: block;
  }
}

.c-form_uploads--img {
  width: 37%;
  margin-right: 30px;
}

@media (max-width: 959px) {
  .c-form_uploads--img {
    width: 50%;
    margin-right: 0;
  }
}

.c-form_uploads--desc .sample {
  font-weight: bold;
  display: block;
  margin-bottom: 10px;
}

.c-form_attention--list {
  padding-left: 25px;
}

.c-form_attention--item {
  position: relative;
  font-size: 16px;
  margin-bottom: 15px;
  line-height: 2;
}

.c-form_attention--item:before {
  position: absolute;
  top: 4px;
  left: -25px;
  content: "";
  width: 15px;
  height: 15px;
  background-color: #db5a5a;
  border-radius: 50%;
}

.c-form_attention--item_link {
  font-weight: bold;
  text-decoration: underline;
}

.c-form_attention--txt {
  font-size: 14px;
  line-height: 2;
  margin-top: 20px;
}

.c-form_btnArea {
  margin-bottom: 25px;
  padding-left: 12px;
}

.c-form_btnArea--txt {
  font-size: 16px;
  display: inline-block;
  padding-left: 15px;
}

@media (max-width: 959px) {
  .c-form_btnArea--txt {
    padding-left: 0;
    margin-top: 10px;
    font-size: 14px;
  }
}

.c-form_btnArea .c-btn.black {
  background-color: #000;
  color: #fff;
  width: auto;
  height: 62px;
  border-radius: 0;
  overflow: visible;
}

@media (max-width: 959px) {
  .c-form_btnArea .c-btn.black {
    width: 93%;
    margin-left: 10px;
    padding: 16px 35px;
    font-size: 16px;
    height: 60px;
  }
}

.c-form_submitArea {
  margin-top: 3.75vw;
  text-align: center;
}

.c-form_submitArea--terms {
  display: inline-block;
  font-size: 0.8291666vw;
  margin-bottom: 15px;
  position: relative;
}

@media (max-width: 959px) {
  .c-form_submitArea--terms {
    font-size: 3.4666vw;
  }
}

.c-form_submitArea--link {
  font-weight: bold;
  text-decoration: underline;
}

.c-form_submitArea--txt {
  font-size: 0.8333vw;
}

.c-form_submitArea--txt .cbox:before {
  top: 0;
}

.c-form_submitArea--txt + .errMsg {
  margin-bottom: 20px;
}

.c-form_submitArea-policy {
  font-size: 0.777083333vw;
  line-height: 25px;
  line-height: 2;
  margin-bottom: 2.86vw;
}

@media (max-width: 959px) {
  .c-form_submitArea-policy {
    text-align: left;
    font-size: 3.4666vw;
    margin-bottom: 11.2vw;
    line-height: 2;
  }
}

.c-form_submitArea--tip {
  font-size: 16px;
  margin-bottom: 40px;
  font-weight: bold;
  line-height: 2;
}

.c-form_submitArea--tip span {
  display: none;
}

.c-form_submitArea .c-btn {
  cursor: pointer;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  border: none;
  padding: 16px 45px;
  overflow: visible;
  width: 11.46vw !important;
  background: #000;
  color: #fff;
  font-size: 0.8333vw;
  font-weight: 500;
}

@media all and (-ms-high-contrast: none) {
  .c-form_submitArea .c-btn {
    /* IE */
    padding: 20px 45px;
  }
}

@media (max-width: 959px) {
  .c-form_submitArea .c-btn {
    width: 100% !important;
    padding: 16px 45px;
    font-size: 3.733vw;
  }
}

.c-form_submitArea .submit-ba {
  position: relative;
}

.c-form_submitArea .submit-ba:before,
.c-form_submitArea .submit-ba:after {
  position: absolute;
  top: 0;
  content: "";
  border-style: solid;
}

.c-form_submitArea .submit-ba:before {
  left: 39.8%;
  border-width: 29px 13px 29px 0;
  border-color: transparent #db5a5a transparent transparent;
}

.c-form_submitArea .submit-ba:after {
  right: 39.7%;
  border-width: 29px 0 29px 13px;
  border-color: transparent transparent transparent #db5a5a;
}

@media all and (-ms-high-contrast: none) {
  .c-form_submitArea .submit-ba:after {
    /* IE */
    right: -12px;
  }
}

.c-form_submitArea.confirm {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media (max-width: 959px) {
  .c-form_submitArea.confirm {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

.c-form_submitArea.confirm .c-btn {
  padding: 16px 0;
  display: block;
}

@media (max-width: 959px) {
  .c-form_submitArea.confirm .c-btn {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 48%;
    -ms-flex: 0 0 48%;
    flex: 0 0 48%;
  }
}

.c-form_submitArea.confirm .c-btn.white {
  background: #fff;
  color: #000;
  border: solid 1px #dcdcdc;
}

@media all and (-ms-high-contrast: none) {
  .c-form_submitArea.confirm .c-btn {
    /* IE */
    padding: 20px 0;
  }
}

.c-form_submitArea.confirm button[type="button"].c-btn.white {
  cursor: pointer;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  color: #000;
  background-color: #fff;
  border-radius: 0;
  height: 58px;
}

@media (max-width: 959px) {
  .c-form_submitArea.confirm button[type="button"].c-btn.white {
    margin-bottom: 20px;
  }
}

.c-form_submitArea.confirm .c-btn + .c-btn {
  margin-left: 40px;
}

@media (max-width: 959px) {
  .c-form_submitArea.confirm .c-btn + .c-btn {
    margin-left: 0;
  }
}

.c-form_submitArea .submit-button {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media (max-width: 959px) {
  .c-form_submitArea .submit-button {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .c-form_submitArea .submit-button .button-send {
    margin-left: 0 !important;
  }
  .c-form_submitArea .submit-button .c-btn {
    margin: 0 auto !important;
  }
  .c-form_submitArea .submit-button .button-rewrite {
    margin-top: 20px !important;
  }
}

@media all and (-ms-high-contrast: none) {
  .c-form_submitArea .submit-button {
    display: block;
  }
}

.c-form .wpcf7-list-item-label:before {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #f4f4f4;
  border: 1px solid #dcdcdc;
  width: 15px;
  height: 15px;
  content: "";
}

@media all and (-ms-high-contrast: none) {
  .c-form .wpcf7-list-item-label:before {
    top: -13px;
  }
}

.c-form input[type="checkbox"]:checked + .wpcf7-list-item-label:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 12px;
  height: 16px;
  content: "\02713";
}

@media all and (-ms-high-contrast: none) {
  .c-form input[type="checkbox"]:checked + .wpcf7-list-item-label:after {
    top: -12px;
  }
}

.c-form .errMsg {
  font-size: 0.7291666vw;
  color: #db5a5a;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
}

@media (max-width: 959px) {
  .c-form .errMsg {
    font-size: 3.733vw;
  }
}

.c-form .errMsg.mt {
  margin-top: 10px;
}

.c-form input[type="text"].is-error {
  border: 2px solid #db5a5a;
}

.c-form .btn-box {
  margin-top: 20px;
}

@media (max-width: 959px) {
  .c-form .btn-box {
    margin-top: 40px;
  }
}

.attention {
  color: red;
}

@media (max-width: 959px) {
  .attention {
    line-height: 2;
    margin-left: 0 !important;
  }
}

.p-contact {
  position: relative;
  background: #2c2c2c;
  height: 23.44vw;
}

@media (max-width: 959px) {
  .p-contact {
    height: 133.33vw;
  }
}

.p-contact__title {
  position: absolute;
  top: 50%;
  left: 19%;
  color: #fff;
}

@media (max-width: 959px) {
  .p-contact__title {
    top: 50%;
    left: 10%;
  }
}

.p-contact__title-txt01 {
  font-size: 3.125vw;
  font-weight: bold;
  margin-bottom: 4%;
}

@media (max-width: 959px) {
  .p-contact__title-txt01 {
    font-size: 10.6666vw;
  }
}

.p-contact__title-txt02 {
  font-size: 0.83333vw;
}

@media (max-width: 959px) {
  .p-contact__title-txt02 {
    font-size: 3.466vw;
  }
}

.p-contact-note {
  font-size: 0.7291666vw;
  line-height: 30px;
  line-height: 3rem;
}

@media (max-width: 959px) {
  .p-contact-note {
    font-size: 3.733vw;
    line-height: 2rem;
    margin-bottom: 5%;
  }
}

.p-contact_complete {
  text-align: center;
  padding: 3% 0;
}

@media (max-width: 959px) {
  .p-contact_complete {
    padding: 5% 0;
  }
}

.p-contact_complete--ttl {
  font-size: 2.6vw;
}

@media (max-width: 959px) {
  .p-contact_complete--ttl {
    font-size: 7.6vw;
  }
}

.p-contact_complete--subttl {
  font-size: 1.3vw;
  padding: 1% 0;
}

@media (max-width: 959px) {
  .p-contact_complete--subttl {
    font-size: 3.3vw;
  }
}

.p-contact_complete--msg {
  font-size: 0.8vw;
  line-height: 15px;
  line-height: 2;
}

@media (max-width: 959px) {
  .p-contact_complete--msg {
    font-size: 2.8vw;
  }
}

.notice {
  text-align: center;
  font-size: 0.8291666vw;
  line-height: 25px;
  line-height: 2.5rem;
  padding: 3.39% 0 2.34%;
}

@media (max-width: 959px) {
  .notice {
    width: 86.67%;
    margin: 0 auto;
    text-align: left;
    padding: 10.4vw 0 7.47vw;
    font-size: 3.733vw;
    line-height: 2.5rem;
  }
}

.form-errors {
  color: red;
}

.form-errors .clearfix {
  padding-bottom: 2%;
  line-height: 15px;
  line-height: 2;
}

/* static index
* ----------------
* common
* faq
* spec
* terms
* company
* privacy
* ---------------- */
.p-static {
  /* -------------
  * common
  * -------------*/
  /* -------------
  * faq
  * -------------*/
  /* -------------
  * spec
  * -------------*/
  /* -------------
  * terms
  * -------------*/
}

.p-staticFaq_container {
  padding: 50px 0;
  background-color: #fff;
}

.p-staticFaq_container:nth-child(odd) {
  background-color: #f6f5ee;
}

.p-staticFaq_content {
  width: 75vw;
  max-width: 1200px;
  margin: auto;
}

@media (max-width: 959px) {
  .p-staticFaq_content {
    width: 90%;
    max-width: initial;
  }
}

.p-staticFaq_content--ttl {
  font-size: 20px;
  font-weight: bold;
  padding-left: 25px;
  margin-bottom: 35px;
  position: relative;
}

.p-staticFaq_content--ttl:before {
  position: absolute;
  top: 5px;
  left: 0;
  content: "";
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: #db5a5a;
}

.p-staticFaq_content--list {
  font-size: 16px;
}

.p-staticFaq_content--question {
  padding: 15px 50px 12px 85px;
  border: 1px solid #dcdcdc;
  border-radius: 6px;
  background-color: #fff;
  position: relative;
  margin-top: 15px;
}

@media (max-width: 959px) {
  .p-staticFaq_content--question {
    padding: 15px 25px 12px 35px;
    line-height: 2;
    font-size: 14px;
  }
}

.p-staticFaq_content--question.is-open {
  border-radius: 6px 6px 0 0;
}

.p-staticFaq_content--question.is-open:after {
  content: "-";
  font-size: 26px;
}

.p-staticFaq_content--question:first-of-type {
  margin-top: 0;
}

.p-staticFaq_content--question:before {
  position: absolute;
  top: 12px;
  left: 50px;
  content: "Q";
  font-size: 20px;
  font-weight: 600;
  color: #003b96;
}

@media (max-width: 959px) {
  .p-staticFaq_content--question:before {
    left: 10px;
  }
}

.p-staticFaq_content--question:after {
  position: absolute;
  top: 10px;
  right: 50px;
  content: "+";
  font-size: 22px;
  color: #db5a5a;
}

@media (max-width: 959px) {
  .p-staticFaq_content--question:after {
    right: 10px;
  }
}

@media only screen and (min-width: 767px) and (max-width: 999px) {
  .p-staticFaq_content--question:after {
    top: 5px;
  }
}

.p-staticFaq_content--answer {
  display: none;
  padding: 18px 50px 20px 85px;
  border: 1px solid #dcdcdc;
  border-top: none;
  border-radius: 0 0 6px 6px;
  background-color: #f4f4f4;
  position: relative;
  line-height: 2;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  -webkit-transition: display 1s;
  transition: display 1s;
}

@media (max-width: 959px) {
  .p-staticFaq_content--answer {
    padding: 15px 20px 12px 35px;
    font-size: 14px;
  }
}

.p-staticFaq_content--answer.is-open {
  display: block;
}

.p-staticFaq_content--answer:before {
  position: absolute;
  top: 15px;
  left: 50px;
  content: "A";
  font-size: 20px;
  font-weight: 600;
  color: #db5a5a;
}

@media (max-width: 959px) {
  .p-staticFaq_content--answer:before {
    top: 10px;
    left: 10px;
  }
}

.p-staticFaq_content--answer .c-red {
  color: #db5a5a;
  display: inline-block;
  margin-right: 5px;
}

.p-staticFaq_content--answer a {
  font-weight: bold;
  text-decoration: underline;
}

.p-staticSpec {
  margin-top: 30px;
}

.p-staticSpec_container {
  width: 75vw;
  max-width: 1200px;
  margin: auto;
}

@media all and (-ms-high-contrast: none) {
  .p-staticSpec_container {
    /* IE */
    padding: 100px 0 120px;
  }
}

@media (max-width: 959px) {
  .p-staticSpec_container {
    width: 90%;
    max-width: initial;
  }
}

.p-staticSpec_content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media (max-width: 959px) {
  .p-staticSpec_content {
    display: block;
  }
}

.p-staticSpec_content--ttl {
  width: 100%;
  font-size: 18px;
  font-weight: bold;
  color: #db5a5a;
  margin-bottom: 13px;
}

.p-staticSpec_content--inner {
  width: 48%;
  background-color: #fff;
  border-radius: 6px;
  margin-bottom: 40px;
  padding: 23px 35px;
}

@media all and (-ms-high-contrast: none) {
  .p-staticSpec_content--inner {
    /* IE */
    padding-right: 20px;
  }
}

@media (max-width: 959px) {
  .p-staticSpec_content--inner {
    width: 100%;
    padding: 23px;
  }
}

.p-staticSpec_content--inner_ttl {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 16px;
}

.p-staticSpec_content--item {
  padding-left: 18px;
  font-size: 16px;
  margin-bottom: 15px;
  position: relative;
}

.p-staticSpec_content--item:before {
  position: absolute;
  top: 1px;
  left: 0;
  content: "";
  width: 13px;
  height: 13px;
  background-color: #b4b4b4;
  border-radius: 50%;
}

.p-staticSpec_content--item span {
  font-size: 13px;
  display: inline-block;
  margin-top: 10px;
}

.p-staticTerms_container {
  width: 75vw;
  max-width: 1200px;
  margin: auto;
}

@media (max-width: 959px) {
  .p-staticTerms_container {
    width: 90%;
    max-width: initial;
  }
}

.p-staticTerms_container--ttl {
  font-size: 20px;
  font-weight: bold;
  color: #db5a5a;
  margin-bottom: 35px;
}

@media (max-width: 959px) {
  .p-staticTerms_container--ttl {
    font-size: 18px;
  }
}

.p-staticTerms_content--ttl {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
}

@media (max-width: 959px) {
  .p-staticTerms_content--ttl {
    font-size: 16px;
  }
}

.p-staticTerms_content--txt {
  font-size: 16px;
  line-height: 2;
  margin-bottom: 50px;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
}

@media (max-width: 959px) {
  .p-staticTerms_content--txt {
    font-size: 14px;
  }
}

.l-opening {
  position: fixed;
  z-index: 300;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  pointer-events: none;
  overflow: hidden;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  background-color: #fff;
}

.l-opening__inner {
  width: 100%;
  height: 100%;
  background-color: #f8f8f8;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}

.l-opening__wrap {
  position: absolute;
  z-index: 1;
  right: 48.92%;
  top: 3.8%;
  bottom: 0;
  margin: auto;
  width: 43vw;
  height: 35.5vw;
}

.l-opening #svg-opening {
  fill: #aaa;
  width: 43vw;
  height: 35.5vw;
  position: absolute;
  left: 50%;
  -webkit-transform: translate3d(-50%, 0, 0);
  transform: translate3d(-50%, 0, 0);
}

body:not(.is-opening) .l-opening {
  -webkit-transform: translateX(-100%) !important;
  transform: translateX(-100%) !important;
  -webkit-transition: 0.7s 0.1s cubic-bezier(0.19, 0.82, 0.27, 1);
  transition: 0.7s 0.1s cubic-bezier(0.19, 0.82, 0.27, 1);
}

body:not(.is-opening) .l-opening__inner {
  -webkit-transform: translateX(100%) !important;
  transform: translateX(100%) !important;
  -webkit-transition: 0.7s 0.1s cubic-bezier(0.19, 0.82, 0.27, 1);
  transition: 0.7s 0.1s cubic-bezier(0.19, 0.82, 0.27, 1);
}

.p-top {
  overflow: hidden;
}

.p-top-mv {
  width: 100%;
}

.p-top-mv__above {
  position: relative;
  color: #fff;
  height: 100vh;
  z-index: 2;
}

.p-top-mv__above .js-white-area {
  position: absolute;
  top: calc(100vh - 52px);
  left: 0;
  width: 100%;
  height: calc(100% - 100vh);
  min-height: 1px;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  z-index: 100;
  pointer-events: none;
}

.p-top-mv__above .is-invasion .parent-observe,
.p-top-mv__above .is-invasion:not(.no-fade) {
  -webkit-transform: none !important;
  transform: none !important;
  opacity: 1 !important;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  -webkit-transition: opacity 0.5s ease-in, -webkit-transform 1s;
  transition: opacity 0.5s ease-in, -webkit-transform 1s;
  transition: transform 1s, opacity 0.5s ease-in;
  transition: transform 1s, opacity 0.5s ease-in, -webkit-transform 1s;
}

.p-top-mv__above .js-parent-fit {
  display: block;
  height: auto;
  width: 100%;
  position: relative;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.p-top-mv__above__bg {
  position: absolute;
  top: -1px;
  left: -1px;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  z-index: -2;
  overflow: hidden;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.p-top-mv__above__bg video {
  width: auto !important;
  height: 100vh !important;
}

@media (max-width: 959px) {
  .p-top-mv__above__bg video {
    height: 100% !important;
  }
}

.p-top-mv__above__bg:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 51vw;
  height: 100%;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: opacity 0s, -webkit-transform 0.5s 0.2s cubic-bezier(0.7, 0.3, 0.3, 0.9);
  transition: opacity 0s, -webkit-transform 0.5s 0.2s cubic-bezier(0.7, 0.3, 0.3, 0.9);
  transition: transform 0.5s 0.2s cubic-bezier(0.7, 0.3, 0.3, 0.9), opacity 0s;
  transition: transform 0.5s 0.2s cubic-bezier(0.7, 0.3, 0.3, 0.9), opacity 0s, -webkit-transform 0.5s 0.2s cubic-bezier(0.7, 0.3, 0.3, 0.9);
  display: none;
  background: #fff;
  -webkit-transform-origin: left;
  transform-origin: left;
}

.p-top-mv__above__bg:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 51vw;
  height: 100%;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: opacity 0s, -webkit-transform 0.5s 0.2s cubic-bezier(0.7, 0.3, 0.3, 0.9);
  transition: opacity 0s, -webkit-transform 0.5s 0.2s cubic-bezier(0.7, 0.3, 0.3, 0.9);
  transition: transform 0.5s 0.2s cubic-bezier(0.7, 0.3, 0.3, 0.9), opacity 0s;
  transition: transform 0.5s 0.2s cubic-bezier(0.7, 0.3, 0.3, 0.9), opacity 0s, -webkit-transform 0.5s 0.2s cubic-bezier(0.7, 0.3, 0.3, 0.9);
  display: none;
  background: #fff;
  -webkit-transform-origin: left;
  transform-origin: left;
}

.p-top-mv__above .colorfilter-base {
  background-color: #000;
  display: inline-block;
}

.p-top-mv__above .colorfilter-image {
  opacity: 0.6;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
  display: block;
}

.p-top-mv__below {
  height: 100vh;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  width: 50.9%;
  margin-left: auto;
  margin-right: 0;
  padding-top: 4%;
  min-width: 450px;
}

@media (max-width: 959px) {
  .p-top-mv__below {
    padding-top: 85%;
    padding-right: 20px;
    padding-left: 20px;
    height: auto;
  }
}

.p-top-mv__below__inner .u-show-medium {
  display: none !important;
}

@media (max-width: 959px) {
  .p-top-mv__below__inner .u-show-medium {
    display: block;
  }
}

.p-top-mv__below__inner.slidein.is-animated {
  -webkit-animation: slideIn 1s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
  animation: slideIn 1s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
}

@-webkit-keyframes slideIn {
  0% {
    -webkit-transform: translateX(180px);
    transform: translateX(180px);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  40%,
  100% {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  }
}

@keyframes slideIn {
  0% {
    -webkit-transform: translateX(180px);
    transform: translateX(180px);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  40%,
  100% {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  }
}

.p-top-mv__below__link {
  display: inline-block;
  margin-top: 20px;
}

.p-top-mv__below__link .text {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 0.8333vw;
}

@media (max-width: 959px) {
  .p-top-mv__below__link .text {
    font-size: 3.73333333vw;
  }
}

.p-top-mv__below__link .text img {
  margin-right: 13px;
  width: 20%;
}

.p-top-mv__below__link a .text {
  position: relative;
  padding-bottom: 6%;
}

.p-top-mv__below__link a .text:after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #000000;
  bottom: -1px;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: center top;
  transform-origin: center top;
  /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の右端*/
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  /*変形の時間*/
}

.p-top-mv__below__link a .text:hover:after {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  /*ホバー後、x軸方向に1（相対値）伸長*/
}

.p-top-mv__below__title {
  font-size: 1.6666vw;
  font-family: "Noto Sans JP", "Yu Mincho", YuMincho;
  margin-bottom: 5%;
}

@media (max-width: 959px) {
  .p-top-mv__below__title {
    font-size: 8vw;
    font-weight: 400;
    line-height: 1.5;
  }
  .p-top-mv__below__title .br:before {
    content: "\A";
    white-space: pre;
  }
}

.p-top-mv__below__desc {
  font-size: 0.88125vw;
  line-height: 25px;
  line-height: 1.5;
  letter-spacing: 1.1px;
  font-family: "Noto Sans JP", "Yu Mincho", YuMincho;
}

@media (max-width: 959px) {
  .p-top-mv__below__desc {
    font-size: 3.73333333vw;
    font-weight: normal;
  }
  .p-top-mv__below__desc .br:before {
    content: "\A";
    white-space: pre;
  }
}

.p-top-mv__fixItem {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  pointer-events: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.p-top-mv__fixItem.is-top {
  z-index: 3;
  fill: #fff;
}

.p-top-mv__fixItem.is-bottom {
  z-index: 1;
}

.p-top-mv__fixItem.is-bottom .svg-mv-copy {
  color: #fff;
  stroke: rgba(0, 0, 0, 0.3);
  stroke-width: 2px;
  -webkit-transition: stroke 0.3s, color 0.3s, opacity 0.3s;
  transition: stroke 0.3s, color 0.3s, opacity 0.3s;
}

.p-top-mv__fixItem.is-absolute {
  position: absolute;
  top: 115vh;
  -webkit-animation-name: fadein;
  animation-name: fadein;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
}

@media (max-width: 959px) {
  .p-top-mv__fixItem.is-absolute {
    top: 83vh;
  }
}

.p-top-mv__fixItem.is-absolute.is-top {
  visibility: hidden;
}

.p-top-mv__fixItem.is-absolute.is-bottom .svg-mv-copy {
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}

.p-top-mv__copy {
  position: absolute;
  z-index: 1;
  right: 50.92%;
  top: -5%;
  margin: auto;
  width: 36vw;
  height: 45.5vw;
  overflow: hidden;
}

@media (max-width: 959px) {
  .p-top-mv__copy {
    width: 93vw;
    height: 75vw;
    top: 21%;
    right: 2%;
  }
}

.p-top-mv__copy .st0 {
  stroke: #fff;
  stroke-dasharray: 2000;
  stroke-dashoffset: 0;
  stroke-width: 1;
  -webkit-animation: hello 4s ease-in 0s;
  animation: hello 4s ease-in 0s;
}

@-webkit-keyframes hello {
  0% {
    stroke-dashoffset: 2000;
    fill: transparent;
  }
  20% {
    stroke-dashoffset: 2000;
    fill: transparent;
  }
  50% {
    fill: transparent;
  }
  100% {
    stroke-dashoffset: 0;
    fill: #000;
  }
}

.p-top-mv__copy__bg {
  position: absolute;
  top: 3px;
  left: 3px;
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  z-index: -1;
  overflow: hidden;
}

@media (max-width: 959px) {
  .p-top-mv__copy__bg {
    left: 1px;
  }
}

.p-top-mv__copy svg {
  width: 36vw;
  height: 45.5vw;
  position: absolute;
  left: 50%;
  -webkit-transform: translate3d(-50%, 0, 0);
  transform: translate3d(-50%, 0, 0);
}

@media (max-width: 959px) {
  .p-top-mv__copy svg {
    width: 93vw;
    height: 75vw;
  }
}

.p-top-mv__copy svg text {
  font-size: 4.6vw;
}

@media (max-width: 959px) {
  .p-top-mv__copy svg text {
    font-size: 74px;
  }
}

.p-top-mv__copy svg rect {
  fill: white;
}

.p-top-mv__copy svg > rect {
  -webkit-mask: url(#mask);
  mask: url(#mask);
}

.p-top-mv__copy-txt {
  position: absolute;
  top: 71%;
  left: 2%;
  color: #fff;
  font-size: 1.0416666vw;
}

@media (max-width: 959px) {
  .p-top-mv__copy-txt {
    font-size: 3.6vw;
    top: 88%;
    left: 0%;
  }
}

.p-top-mv__copy-txt.is-black {
  color: #000;
  visibility: initial;
}

.p-top-mv__copy-txt.fade {
  text-align: center;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  -webkit-transition: opacity 3s;
  transition: opacity 3s;
}

.p-top-mv__copy-txt.fade.view {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.p-top-mv .is-bottom .p-top-mv__copy:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 100%;
  z-index: 10;
  background: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.09) 4%, rgba(255, 255, 255, 0.14) 13%, rgba(255, 255, 255, 0) 23%, rgba(255, 255, 255, 0.1) 28%, rgba(255, 255, 255, 0) 39%, rgba(255, 255, 255, 0.12) 49%, rgba(255, 255, 255, 0) 53%, rgba(255, 255, 255, 0) 58%, rgba(255, 255, 255, 0.08) 62%, rgba(255, 255, 255, 0.06) 69%, rgba(255, 255, 255, 0) 72%, rgba(255, 255, 255, 0.14) 80%, rgba(255, 255, 255, 0) 87%, rgba(255, 255, 255, 0.15) 96%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(45deg, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.09) 4%, rgba(255, 255, 255, 0.14) 13%, rgba(255, 255, 255, 0) 23%, rgba(255, 255, 255, 0.1) 28%, rgba(255, 255, 255, 0) 39%, rgba(255, 255, 255, 0.12) 49%, rgba(255, 255, 255, 0) 53%, rgba(255, 255, 255, 0) 58%, rgba(255, 255, 255, 0.08) 62%, rgba(255, 255, 255, 0.06) 69%, rgba(255, 255, 255, 0) 72%, rgba(255, 255, 255, 0.14) 80%, rgba(255, 255, 255, 0) 87%, rgba(255, 255, 255, 0.15) 96%, rgba(255, 255, 255, 0) 100%);
  -webkit-animation: moveLight 5s ease-in-out infinite both;
  animation: moveLight 5s ease-in-out infinite both;
}

.p-top-mv video.js-parent-fit.video-loaded {
  -webkit-transition: opacity 0.3s !important;
  transition: opacity 0.3s !important;
}

@media (max-width: 959px) {
  .p-top-mv video.lg-video {
    display: none !important;
  }
}

.p-top-mv video.sm-video {
  display: none;
}

@media (max-width: 959px) {
  .p-top-mv video.sm-video {
    display: block;
  }
}

.p-top-mv .js-parent-fit {
  display: block;
  height: auto;
  width: 111%;
  position: relative;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

@media (max-width: 959px) {
  .p-top-service {
    margin-top: 50px;
  }
}

.p-top-service__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 959px) {
  .p-top-service__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    height: 140vw;
  }
}

.p-top-service__inner-box {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 50%;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  position: relative;
}

.p-top-service__inner-box.gray {
  background: #f8f8f8;
}

@media (max-width: 959px) {
  .p-top-service__inner-box {
    text-align: left;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 46%;
    -ms-flex: 0 0 46%;
    flex: 0 0 46%;
  }
}

.p-top-service__inner-box-text {
  text-align: left;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

.p-top-service__inner-box-text img {
  width: 6%;
}

@media (max-width: 959px) {
  .p-top-service__inner-box-text {
    top: 43%;
    left: 54%;
    position: relative;
  }
}

.p-top-service__inner-box-title {
  font-weight: bold;
  font-size: 3.125vw;
  font-family: "Poppins", "Yu Mincho", YuMincho;
  text-align: left;
  white-space: nowrap;
  line-height: 53px;
  line-height: 5.3rem;
}

@media (max-width: 959px) {
  .p-top-service__inner-box-title {
    font-size: 10.66666vw;
    line-height: 2;
  }
}

.p-top-service__inner-box-minititle {
  font-size: 1.25vw;
  font-weight: 500;
  margin-bottom: 5%;
}

@media (max-width: 959px) {
  .p-top-service__inner-box-minititle {
    font-size: 4vw;
    white-space: nowrap;
    margin-bottom: 3%;
  }
}

.p-top-service__inner-box-subtitle {
  font-family: "Noto Sans JP", "Yu Mincho", YuMincho;
  font-size: 0.8333vw;
  margin-bottom: 9%;
}

@media (max-width: 959px) {
  .p-top-service__inner-box-subtitle {
    line-height: 2;
    margin-bottom: 4%;
    font-size: 3.7333vw;
  }
  .p-top-service__inner-box-subtitle .br:before {
    content: "\A";
    white-space: pre;
  }
}

.p-top-service__inner-box-txt {
  font-size: 0.8333vw;
}

@media (max-width: 959px) {
  .p-top-service__inner-box-txt {
    font-size: 3.7333vw;
  }
}

.p-top-service__inner-img {
  overflow: hidden;
  position: relative;
}

/* .p-top-service__inner-img-cs {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  border: solid 1px #fff;
  padding: 15px;
  font-size: 1.8229vw;
  color: #fff;
  z-index: 700;
} */

@media (max-width: 959px) {
  .p-top-service__inner-img-cs {
    font-size: 3.7333vw;
  }
}

.p-top-service__inner-img img {
  width: 100%;
  -webkit-transition: 1s all;
  transition: 1s all;
}

.p-top-service__inner-img img:hover {
  -webkit-transform: scale(1.2, 1.2);
  transform: scale(1.2, 1.2);
  -webkit-transition: 1s all;
  transition: 1s all;
}

/* .p-top-service__inner.gray {
  color: #b4b4b4;
} */

.p-top-about-inner {
  position: relative;
  height: 30vw;
}

@media (max-width: 959px) {
  .p-top-about-inner {
    height: auto;
  }
  .p-top-about-inner video.lg-only {
    display: none;
  }
}

.p-top-about-inner video.sm-only {
  display: none;
}

@media (max-width: 959px) {
  .p-top-about-inner video.sm-only {
    display: block;
    width: 100vw;
  }
}

.p-top-about .colorfilter-base {
  background-color: #000;
  display: inline-block;
}

.p-top-about .colorfilter-image {
  opacity: 0.6;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
  display: block;
}

.p-top-about__text {
  position: absolute;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  top: 0;
  height: 30vw;
}

@media (max-width: 959px) {
  .p-top-about__text {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    height: auto;
  }
}

.p-top-about__text-box {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 50%;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  text-align: center;
  border-right: solid 1px #fff;
  -webkit-transition: background-color 1s;
  transition: background-color 1s;
}

@media (max-width: 959px) {
  .p-top-about__text-box {
    border-right: none;
    border-bottom: solid 1px #fff;
    padding-bottom: 37%;
  }
  .p-top-about__text-box img {
    width: 6%;
  }
}

@media (max-width: 959px) and (max-width: 959px) {
  .p-top-about__text-box img {
    width: 5%;
  }
}

.p-top-about__text-box-inner {
  margin-top: 25%;
}

@media (max-width: 959px) {
  .p-top-about__text-box-inner {
    margin-top: 30%;
  }
}

.p-top-about__text-box-inner-title {
  font-size: 2.34375vw;
  font-weight: bold;
  color: #fff;
  font-family: "Poppins", "Yu Mincho", YuMincho;
}

@media (max-width: 959px) {
  .p-top-about__text-box-inner-title {
    font-size: 8.5333vw;
  }
}

.p-top-about__text-box-inner-subtitle {
  font-size: 0.833333vw;
  color: #fff;
  font-family: "Noto Sans JP", "Yu Mincho", YuMincho;
  margin: 2% 0 3%;
}

@media (max-width: 959px) {
  .p-top-about__text-box-inner-subtitle {
    font-size: 3.7333vw;
  }
}

.p-top-about__text-box:hover {
  background-color: #52a9c3;
}

.p-top-about__text-box:last-of-type {
  border-right: none;
}

@media (max-width: 959px) {
  .p-top-about__text-box:last-of-type {
    border-bottom: none;
  }
}

.p-service-web__title {
  background: #524348;
  color: #fff;
  height: 34vw;
  position: relative;
}

@media (max-width: 959px) {
  .p-service-web__title {
    height: 133.33vw;
  }
}

.p-service-web__title-box {
  position: absolute;
  left: 15%;
  bottom: 13%;
}

@media (max-width: 959px) {
  .p-service-web__title-box {
    left: 6%;
    bottom: 15%;
  }
}

.p-service-web__title-box-txt01 {
  font-size: 1.5625vw;
  font-weight: 500;
  margin-bottom: 10px;
}

@media (max-width: 959px) {
  .p-service-web__title-box-txt01 {
    font-size: 4.2666vw;
  }
}

.p-service-web__title-box-txt02 {
  font-size: 3.125vw;
  font-weight: bold;
  line-height: 53px;
  line-height: 5.3rem;
}

@media (max-width: 959px) {
  .p-service-web__title-box-txt02 {
    font-size: 10.666666vw;
    line-height: 2;
  }
  .p-service-web__title-box-txt02 .br:before {
    content: "\A";
    white-space: pre;
  }
}

.p-service-web__title-box-txt03 {
  font-size: 0.833333vw;
  margin-top: 20px;
}

@media (max-width: 959px) {
  .p-service-web__title-box-txt03 {
    font-size: 3.4666vw;
    margin-top: 15px;
  }
}

.p-service-web--img img {
  width: 100%;
}

.p-service-web__title.blue {
  background: #294965;
}

.p-service-web__mission {
  padding: 5% 0 7%;
  width: 70%;
  margin: 0 auto;
}

@media (max-width: 959px) {
  .p-service-web__mission {
    width: 90%;
    padding: 17.87% 0 14.13%;
  }
}

.p-service-web__mission-txt01 {
  font-size: 3.125vw;
  font-weight: bold;
  -webkit-text-stroke: 0.5px #000;
  text-stroke: 0.5px #000;
  color: #fff;
}

@media (max-width: 959px) {
  .p-service-web__mission-txt01 {
    font-size: 12vw;
  }
}

.p-service-web__mission-txt02 {
  font-size: 1.35416vw;
  font-weight: bold;
  padding: 1% 0 2%;
}

@media (max-width: 959px) {
  .p-service-web__mission-txt02 {
    font-size: 4.266666vw;
    padding: 2% 0 6.67%;
  }
}

.p-service-web__mission-txt03 {
  font-size: 0.78125vw;
  line-height: 2;
}

@media (max-width: 959px) {
  .p-service-web__mission-txt03 {
    font-size: 3.73333vw;
  }
}

.p-service-web__about {
  background: url("/assets_cc/images/web/ser02.png") no-repeat center top;
  background-size: 100% auto;
  height: 41vw;
  position: relative;
}

@media (max-width: 959px) {
  .p-service-web__about {
    background: none;
    height: auto;
  }
}

.p-service-web__about-box {
  position: absolute;
  top: 17%;
  left: 50%;
}

@media (max-width: 959px) {
  .p-service-web__about-box {
    position: relative;
    left: 0;
    width: 90%;
    margin: 0 auto;
  }
}

.p-service-web__about-box-txt01 {
  font-size: 3.125vw;
  font-weight: bold;
  -webkit-text-stroke: 0.5px #000;
  text-stroke: 0.5px #000;
  color: #fff;
}

@media (max-width: 959px) {
  .p-service-web__about-box-txt01 {
    font-size: 12vw;
  }
}

.p-service-web__about-box-txt02 {
  font-size: 1.35416vw;
  font-weight: bold;
  padding: 1% 0 1%;
}

@media (max-width: 959px) {
  .p-service-web__about-box-txt02 {
    font-size: 4.266666vw;
    padding: 1% 0 3.2%;
  }
}

.p-service-web__about-box-txt03 {
  font-size: 0.78125vw;
  line-height: 25px;
  line-height: 2;
  width: 53%;
}

@media (max-width: 959px) {
  .p-service-web__about-box-txt03 {
    font-size: 3.733333vw;
    width: 100%;
    line-height: 2;
  }
}

.p-service-web__about-box-txt04 {
  font-size: 0.83333vw;
  padding-bottom: 3%;
}

@media (max-width: 959px) {
  .p-service-web__about-box-txt04 {
    font-size: 4.26666vw;
    width: 100%;
    line-height: 2;
    padding-bottom: 6.6666666vw;
  }
  .p-service-web__about-box-txt04 .br:before {
    content: "\A";
    white-space: pre;
  }
}

@media (max-width: 959px) {
  .p-service-web__about--img {
    margin-top: -20%;
  }
}

.p-service-web__about--img img {
  width: 100%;
}

.p-service-web__txtbox {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 959px) {
  .p-service-web__txtbox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.p-service-web__txtbox-inner {
  background: #453737;
  color: #fff;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 50%;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  padding: 10% 5.125vw 7.125vw;
}

@media (max-width: 959px) {
  .p-service-web__txtbox-inner {
    padding: 20.8vw 6.67vw 20.53vw;
  }
}

.p-service-web__txtbox-inner-txt01 {
  font-size: 2.34375vw;
  font-weight: bold;
}

@media (max-width: 959px) {
  .p-service-web__txtbox-inner-txt01 {
    font-size: 8.533333vw;
  }
}

.p-service-web__txtbox-inner-txt02 {
  font-size: 0.72916vw;
  padding: 2% 0 4%;
}

@media (max-width: 959px) {
  .p-service-web__txtbox-inner-txt02 {
    font-size: 3.733333vw;
    padding: 2.67vw 0 6.4vw;
  }
}

.p-service-web__txtbox-inner-txt03 {
  font-size: 0.78125vw;
  line-height: 2;
}

@media (max-width: 959px) {
  .p-service-web__txtbox-inner-txt03 {
    font-size: 3.733333vw;
    line-height: 2;
  }
}

.p-service-web__txtbox-inner.in02 {
  background: #5d4c4f;
}

.p-service-web__service {
  background: url("/assets_cc/images/web/ser03.png") no-repeat center top;
  background-size: 100% auto;
  height: auto;
}

.p-service-web__service-box {
  width: 70%;
  margin: 0 auto;
  padding-top: 7%;
}

@media (max-width: 959px) {
  .p-service-web__service-box {
    width: 90%;
    padding-top: 33.6%;
  }
}

.p-service-web__service-box-txt01 {
  font-size: 3.125vw;
  font-weight: bold;
  -webkit-text-stroke: 0.5px #000;
  text-stroke: 0.5px #000;
  color: #fff;
}

@media (max-width: 959px) {
  .p-service-web__service-box-txt01 {
    font-size: 12vw;
  }
}

.p-service-web__service-box-txt03 {
  font-size: 0.78125vw;
  line-height: 25px;
  line-height: 2;
  width: 70%;
  padding-top: 1.5%;
}

@media (max-width: 959px) {
  .p-service-web__service-box-txt03 {
    font-size: 3.733333vw;
    width: 100%;
    padding-top: 4.53%;
  }
}

.p-service-web__service-box-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 5% 0;
}

@media (max-width: 959px) {
  .p-service-web__service-box-inner {
    padding: 13.33% 0 24.8%;
  }
}

.p-service-web__service-box-inner-icon {
  text-align: center;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 17%;
  -ms-flex: 0 0 17%;
  flex: 0 0 17%;
  margin-bottom: 50px;
}

@media (max-width: 959px) {
  .p-service-web__service-box-inner-icon {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
  }
}

.p-service-web__service-box-inner-icon-circle {
  display: inline-block;
  width: 6.15vw;
  height: 6.15vw;
  border-radius: 50%;
  background: #f5f5f5;
  text-align: center;
  position: relative;
}

@media (max-width: 959px) {
  .p-service-web__service-box-inner-icon-circle {
    width: 31.47vw;
    height: 31.47vw;
  }
}

.p-service-web__service-box-inner-icon-circle img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

.p-service-web__service-box-inner-icon-circle img.img01 {
  width: 30%;
}

.p-service-web__service-box-inner-icon-circle img.img02 {
  width: 50%;
}

.p-service-web__service-box-inner-icon-circle img.img03 {
  width: 57%;
  top: 53%;
  left: 55%;
}

.p-service-web__service-box-inner-icon-circle img.img04 {
  width: 47%;
}

.p-service-web__service-box-inner-icon-text {
  font-size: 0.729166vw;
  line-height: 15px;
  line-height: 2;
  margin-top: 3%;
}

@media (max-width: 959px) {
  .p-service-web__service-box-inner-icon-text {
    font-size: 3.73333vw;
    line-height: 2;
    margin-top: 4.27%;
  }
}

.p-service-new__thinking {
  padding-top: 4.69vw;
  padding-left: 18.75vw;
  z-index: 99;
  position: relative;
}

@media (max-width: 959px) {
  .p-service-new__thinking {
    width: 86.67%;
    margin: 0 auto;
    padding-left: 0;
    padding-top: 14.4vw;
  }
}

.p-service-new__thinking-txt01 {
  font-size: 3.90625vw;
  font-weight: bold;
}

@media (max-width: 959px) {
  .p-service-new__thinking-txt01 {
    font-size: 8.533333vw;
    line-height: 2;
  }
  .p-service-new__thinking-txt01 .br:before {
    content: "\A";
    white-space: pre;
  }
}

.p-service-new__thinking-txt02 {
  font-size: 1.145833vw;
  padding: 1.04vw 0 2.97vw;
}

@media (max-width: 959px) {
  .p-service-new__thinking-txt02 {
    font-size: 4vw;
    padding: 4vw 0 6.67vw;
  }
}

.p-service-new__thinking-txt03 {
  font-size: 0.78125vw;
  line-height: 2;
  position: relative;
  z-index: 20;
  margin-bottom: 1.2vw;
}

@media (max-width: 959px) {
  .p-service-new__thinking-txt03 {
    font-size: 3.733333vw;
    line-height: 2;
    margin-bottom: 6.67vw;
  }
  .p-service-new__thinking-txt03 br {
    display: none;
  }
  .p-service-new__thinking-txt03 .br:before {
    content: "\A";
    white-space: pre;
  }
}

.p-service-new__thinking-img {
  margin-top: -11%;
  position: relative;
  z-index: 10;
}

@media (max-width: 959px) {
  .p-service-new__thinking-img {
    margin-top: 50px;
  }
}

.p-service-new__thinking-img img {
  width: 95%;
}

@media (max-width: 959px) {
  .p-service-new__thinking-img img {
    width: 100%;
  }
}

.p-service-new__case {
  margin-left: 18.75vw;
  padding: 5.68vw 0 2.86vw;
}

@media (max-width: 959px) {
  .p-service-new__case {
    width: 90%;
    margin: 0 auto;
  }
}

.p-service-new__case-txt01 {
  font-size: 2.083333vw;
  font-weight: 500;
  color: #294965;
}

@media (max-width: 959px) {
  .p-service-new__case-txt01 {
    font-size: 8.533333vw;
  }
}

.p-service-new__case-txt02 {
  font-size: 1.30208333vw;
  padding: 10px 0 1.88vw;
  color: #294965;
}

@media (max-width: 959px) {
  .p-service-new__case-txt02 {
    font-size: 4.8vw;
  }
}

.p-service-new__case-txt03 {
  font-size: 1.145833vw;
  line-height: 2;
  margin-bottom: 20px;
}

@media (max-width: 959px) {
  .p-service-new__case-txt03 {
    font-size: 4.8vw;
  }
  .p-service-new__case-txt03 .br:before {
    content: "\A";
    white-space: pre;
  }
}

.p-service-new__case-txt03 span {
  font-size: 0.83333vw;
}

@media (max-width: 959px) {
  .p-service-new__case-txt03 span {
    font-size: 3.733333vw;
  }
}

.p-service-new__case-txt04 {
  font-size: 0.78125vw;
  line-height: 2;
}

@media (max-width: 959px) {
  .p-service-new__case-txt04 {
    font-size: 3.733333vw;
  }
}

.p-service-new__case-txt04 span {
  font-size: 0.83333vw;
}

@media (max-width: 959px) {
  .p-service-new__case-txt04 span {
    font-size: 3.733333vw;
  }
}

.p-service-new__case-txt05 {
  color: #b9b9b9;
  font-weight: 500;
  font-size: 1.66666vw;
}

@media (max-width: 959px) {
  .p-service-new__case-txt05 {
    font-size: 4.8vw;
  }
}

.p-service-new__case-txt06 {
  font-size: 1.145833vw;
  margin-bottom: 20px;
}

@media (max-width: 959px) {
  .p-service-new__case-txt06 {
    font-size: 4.266666vw;
  }
}

.p-service-new__case {
  padding-bottom: 8.02vw;
}

@media (max-width: 959px) {
  .p-service-new__case {
    padding-top: 18.93vw;
    padding-bottom: 13.6vw;
  }
}

@media (max-width: 959px) {
  .p-service-new__case:last-of-type {
    padding-top: 14.93vw;
    padding-bottom: 18.93vw;
  }
}

.p-service-new__project {
  margin-left: 11.46vw;
  background: #294965;
}

@media (max-width: 959px) {
  .p-service-new__project {
    margin: 0 auto;
    width: 100%;
  }
}

.p-service-new__project-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  color: #fff;
  padding: 5.21vw 10.05vw 4.58vw 3.33vw;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

@media (max-width: 959px) {
  .p-service-new__project-box {
    width: 86.93%;
    margin: 0 auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 18.13vw 0 15.47vw;
  }
}

.p-service-new__project-box-inner01 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 25%;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
}

.p-service-new__project-box-inner01-txt01 {
  font-size: 1.35416vw;
  font-weight: 500;
}

@media (max-width: 959px) {
  .p-service-new__project-box-inner01-txt01 {
    font-size: 8.533333vw;
    font-weight: bold;
  }
}

.p-service-new__project-box-inner01-txt02 {
  font-size: 0.78125vw;
  padding-top: 20px;
}

@media (max-width: 959px) {
  .p-service-new__project-box-inner01-txt02 {
    font-size: 3.733333vw;
    margin-bottom: 20px;
  }
}

.p-service-new__project-box-inner02-txt03 {
  font-size: 0.78125vw;
  line-height: 25px;
  line-height: 2;
}

@media (max-width: 959px) {
  .p-service-new__project-box-inner02-txt03 {
    font-size: 3.733333vw;
    line-height: 2;
  }
}

.p-philosophy__title-bg {
  width: 100%;
  margin: 0 auto;
  position: relative;
  background-color: #242424;
  height: 85vh;
  position: relative;
}

@media (max-width: 959px) {
  .p-philosophy__title-bg {
    height: 133.33vw;
  }
}

.p-philosophy__title-bg .mask {
  -webkit-clip-path: url(#svgPath);
  clip-path: url(#svgPath);
}

@media (max-width: 959px) {
  .p-philosophy__title-bg .mask {
    -webkit-clip-path: url(#svgPathsm);
    clip-path: url(#svgPathsm);
  }
}

@media (max-width: 959px) {
  .p-philosophy__title-bg .mask-image,
  .p-philosophy__title-bg .mask-image g {
    -webkit-clip-path: url("#clip-svg");
    clip-path: url("#clip-svg");
  }
}

.p-philosophy__title-bg video {
  width: 100%;
}

@media (max-width: 959px) {
  .p-philosophy__title-bg video.lg-only {
    display: none;
  }
}

.p-philosophy__title-bg video.sm-only {
  display: none;
}

@media (max-width: 959px) {
  .p-philosophy__title-bg video.sm-only {
    display: block;
    width: 100%;
  }
}

.p-philosophy__title-bg svg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.p-philosophy__title-bg svg text {
  font-family: "Poppins", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: bold;
  font-size: 4.2708333vw;
}

@media (max-width: 959px) {
  .p-philosophy__title-bg svg text {
    font-size: 13vw;
  }
}

.p-philosophy__title-bg-txtbox {
  color: #fff;
  position: absolute;
  text-align: center;
  top: 74%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

@media (max-width: 959px) {
  .p-philosophy__title-bg-txtbox {
    top: 86%;
  }
}

.p-philosophy__title-bg-txtbox-txt01 {
  font-size: 1.66666666vw;
  margin-bottom: 20px;
}

@media (max-width: 959px) {
  .p-philosophy__title-bg-txtbox-txt01 {
    font-size: 4vw;
    line-height: 2;
  }
  .p-philosophy__title-bg-txtbox-txt01 .br:before {
    content: "\A";
    white-space: pre;
  }
}

.p-philosophy__title-bg-txtbox-txt02 {
  font-size: 0.78125vw;
  line-height: 25px;
  line-height: 2.5rem;
}

@media (max-width: 959px) {
  .p-philosophy__title-bg-txtbox-txt02 {
    display: none;
  }
}

.p-philosophy__content-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 7.29vw;
  width: 90%;
  margin: 0 auto;
  z-index: 99;
  position: relative;
}

@media (max-width: 959px) {
  .p-philosophy__content-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 6.67vw 0 13.87vw;
    width: 86.4%;
  }
}

.p-philosophy__content-flex img {
  width: 40%;
}

@media (max-width: 959px) {
  .p-philosophy__content-flex img {
    width: 100%;
  }
}

.p-philosophy__content-flex-inner {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 33%;
  -ms-flex: 0 0 33%;
  flex: 0 0 33%;
  margin-left: 6.51vw;
}

@media (max-width: 959px) {
  .p-philosophy__content-flex-inner {
    margin-left: 0;
  }
}

.p-philosophy__content-flex-inner-txt01 {
  font-size: 2.291666vw;
  margin-bottom: 20px;
  line-height: 2;
}

@media (max-width: 959px) {
  .p-philosophy__content-flex-inner-txt01 {
    font-size: 8.5333vw;
    line-height: 2;
    text-align: center;
    margin-top: 13.33vw;
    margin-bottom: 9.07vw;
  }
  .p-philosophy__content-flex-inner-txt01 .br:before {
    content: "\A";
    white-space: pre;
  }
}

.p-philosophy__content-flex-inner-txt02 {
  font-size: 0.78125vw;
  line-height: 2;
}

@media (max-width: 959px) {
  .p-philosophy__content-flex-inner-txt02 {
    font-size: 3.73333vw;
    text-align: justify;
  }
}

.p-philosophy__content-textarea {
  background: #f2f2f2;
  padding: 17.29vw 0 7.55vw;
  text-align: center;
  margin-top: -7.5%;
}

@media (max-width: 959px) {
  .p-philosophy__content-textarea {
    background: none;
    padding: 0;
    margin-top: 0;
    padding-bottom: 18.93vw;
  }
}

.p-philosophy__content-textarea img {
  width: 100%;
}

.p-philosophy__content-textarea-txt01 {
  font-size: 2.291666vw;
  line-height: 2;
  padding: 4.58vw 0 2.03vw;
}

@media (max-width: 959px) {
  .p-philosophy__content-textarea-txt01 {
    font-size: 8.53333vw;
    line-height: 2;
    padding: 19.73vw 0 8.8vw;
  }
}

.p-philosophy__content-textarea-txt02 {
  font-size: 0.78125vw;
  text-align: left;
  line-height: 2;
  width: 31.25%;
  margin: 0 auto;
}

@media (max-width: 959px) {
  .p-philosophy__content-textarea-txt02 {
    font-size: 3.73vw;
    width: 86.67%;
    text-align: justify;
  }
}

.p-philosophy__content-textarea-txtbox {
  display: inline-block;
  margin-left: 31%;
  margin-top: 1%;
}

@media (max-width: 959px) {
  .p-philosophy__content-textarea-txtbox {
    margin-left: 60%;
  }
}

.p-philosophy__content-textarea-txtbox-txt01 {
  font-size: 0.78125vw;
  text-align: left;
  margin-bottom: 1%;
}

@media (max-width: 959px) {
  .p-philosophy__content-textarea-txtbox-txt01 {
    font-size: 3.7333vw;
    margin-bottom: 5px;
  }
}

.p-philosophy__content-textarea-txtbox-txt02 {
  font-size: 1.875vw;
}

@media (max-width: 959px) {
  .p-philosophy__content-textarea-txtbox-txt02 {
    font-size: 6.4vw;
  }
}

.p-company {
  background: url("/assets_cc/images/company/company.png") no-repeat center top;
  background-size: 100% auto;
  width: 100%;
  height: 41.67vw;
  position: relative;
}

@media (max-width: 959px) {
  .p-company {
    background: url("/assets_cc/images/company/com-sp.png") no-repeat center top;
    background-size: 100% auto;
    width: 100vw;
    height: 133.33vw;
  }
}

.p-company__title {
  position: absolute;
  top: 40%;
  left: 20%;
}

@media (max-width: 959px) {
  .p-company__title {
    top: 50%;
    left: 10%;
  }
}

.p-company__title-txt01 {
  font-size: 3.125vw;
  font-weight: bold;
  margin-bottom: 20px;
}

@media (max-width: 959px) {
  .p-company__title-txt01 {
    font-size: 10.666666vw;
    margin-bottom: 10px;
  }
}

.p-company__title-txt02 {
  font-size: 0.83333vw;
}

@media (max-width: 959px) {
  .p-company__title-txt02 {
    font-size: 3.4666666vw;
  }
}

.p-company__content {
  width: 46.88%;
  margin: 0 auto;
  padding: 50px 0;
}

@media (max-width: 959px) {
  .p-company__content {
    width: 86.4%;
    padding: 14.93vw 0 13.33vw;
  }
}

.p-company__content-txtbox {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  border-bottom: solid 1px #dcdcdc;
  padding-bottom: 30px;
  margin-bottom: 30px;
}

@media (max-width: 959px) {
  .p-company__content-txtbox {
    padding-bottom: 6.93vw;
    margin-bottom: 6.93vw;
  }
  .p-company__content-txtbox:last-of-type {
    padding-bottom: 0;
    margin-bottom: 0;
  }
}

.p-company__content-txtbox-txt {
  font-size: 0.88916666vw;
  text-align: left;
  line-height: 20px;
  line-height: 2rem;
}

@media (max-width: 959px) {
  .p-company__content-txtbox-txt {
    font-size: 3.733vw;
  }
}

.p-company__content-txtbox-txt.t01 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 20%;
  -ms-flex: 0 0 20%;
  flex: 0 0 20%;
}

@media (max-width: 959px) {
  .p-company__content-txtbox-txt.t01 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 30%;
    -ms-flex: 0 0 30%;
    flex: 0 0 30%;
  }
}

.p-company__content-txtbox-txt.t02 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 50%;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
}

@media (max-width: 959px) {
  .p-company__content-txtbox-txt.t02 {
    line-height: 3rem;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 65%;
    -ms-flex: 0 0 65%;
    flex: 0 0 65%;
  }
}

.p-company__content-txtbox:last-of-type {
  border-bottom: none;
}

.p-company__map {
  margin-bottom: 150px;
  text-align: center;
}

@media (max-width: 959px) {
  .p-company__map {
    margin-bottom: 20.53vw;
  }
}

.p-company__map iframe {
  width: 90%;
  margin: 0 auto;
}

@media (max-width: 959px) {
  .p-company__map iframe {
    width: 86.67%;
  }
}

.clearfix,
.u-clearfix {
  zoom: 1;
}

.clearfix:before,
.clearfix:after,
.u-clearfix:before,
.u-clearfix:after {
  content: " ";
  display: table;
}

.clearfix:after,
.u-clearfix:after {
  clear: both;
}

.p-resultVoice_content--item_img iframe {
  width: 100%;
}

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