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

media query mixin

================================================================================*/
/*    google font on web
--------------------------------------------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Marcellus&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap");
/*    google font on server
--------------------------------------------------------------------------------*/
/*    icomoon
--------------------------------------------------------------------------------*/
/*    custom
--------------------------------------------------------------------------------*/
@media screen and (max-width: 1260px) {
  /* 1260px以上*/
}
@media screen and (max-width: 1020px) {
  /* 1024px以下*/
}
@media screen and (max-width: 768px) {
  /* 768px以下*/
}
@media screen and (max-width: 480px) {
  /* 480px以下*/
}
@media screen and (max-width: 320px) {
  /* 320px以下*/
}
/*================================================================================

reset & default & font

================================================================================*/
/*!
 * ress.css • v1.2.2
 * MIT License
 * github.com/filipelinhares/ress
 */
/* # ================================================================= # Global selectors # ================================================================= */
html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow-y: scroll; /* All browsers without overlaying scrollbars */
  -webkit-text-size-adjust: 100%; /* iOS 8+ */
}

*,
::before,
::after {
  background-repeat: no-repeat; /* Set `background-repeat: no-repeat` to all elements and pseudo elements */
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

::before,
::after {
  text-decoration: inherit; /* Inherit text-decoration and vertical align to ::before and ::after pseudo elements */
  vertical-align: inherit;
}

* {
  padding: 0; /* Reset `padding` and `margin` of all elements */
  margin: 0;
}

/* # ================================================================= # General elements # ================================================================= */
/* Add the correct display in iOS 4-7.*/
audio:not([controls]) {
  display: none;
  height: 0;
}

hr {
  overflow: visible; /* Show the overflow in Edge and IE */
}

/*
* Correct `block` display not defined for any HTML5 element in IE 8/9
* Correct `block` display not defined for `details` or `summary` in IE 10/11
* and Firefox
* Correct `block` display not defined for `main` in IE 11
*/
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  display: block;
}

summary {
  display: list-item; /* Add the correct display in all browsers */
}

small {
  font-size: 80%; /* Set font-size to 80% in `small` elements */
}

[hidden],
template {
  display: none; /* Add the correct display in IE */
}

abbr[title] {
  border-bottom: 1px dotted; /* Add a bordered underline effect in all browsers */
  text-decoration: none; /* Remove text decoration in Firefox 40+ */
}

a {
  background-color: transparent; /* Remove the gray background on active links in IE 10 */
  -webkit-text-decoration-skip: objects; /* Remove gaps in links underline in iOS 8+ and Safari 8+ */
}

a:active,
a:hover {
  outline-width: 0; /* Remove the outline when hovering in all browsers */
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace; /* Specify the font family of code elements */
}

b,
strong {
  font-weight: bolder; /* Correct style set to `bold` in Edge 12+, Safari 6.2+, and Chrome 18+ */
}

dfn {
  font-style: italic; /* Address styling not present in Safari and Chrome */
}

/* Address styling not present in IE 8/9 */
mark {
  background-color: #ff0;
  color: #000;
}

/* https://gist.github.com/unruthless/413930 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* # ================================================================= # Forms # ================================================================= */
input {
  border-radius: 0;
}

/* Apply cursor pointer to button elements */
button,
[type="button"],
[type="reset"],
[type="submit"],
[role="button"] {
  cursor: pointer;
}

/* Replace pointer cursor in disabled elements */
[disabled] {
  cursor: default;
}

[type="number"] {
  width: auto; /* Firefox 36+ */
}

[type="search"] {
  -webkit-appearance: textfield; /* Safari 8+ */
}

[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; /* Safari 8 */
}

textarea {
  overflow: auto; /* Internet Explorer 11+ */
  resize: vertical; /* Specify textarea resizability */
}

button,
input,
optgroup,
select,
textarea {
  font: inherit; /* Specify font inheritance of form elements */
}

optgroup {
  font-weight: bold; /* Restore the font weight unset by the previous rule. */
}

button {
  overflow: visible; /* Address `overflow` set to `hidden` in IE 8/9/10/11 */
}

/* Remove inner padding and border in Firefox 4+ */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: 0;
  padding: 0;
}

/* Replace focus style removed in the border reset above */
button:-moz-focusring,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  outline: 1px dotted ButtonText;
}

button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button; /* Correct the inability to style clickable types in iOS */
}

button,
select {
  text-transform: none; /* Firefox 40+, Internet Explorer 11- */
}

/* Remove the default button styling in all browsers */
button,
input,
select,
textarea {
  background-color: transparent;
  border-style: none;
  color: inherit;
}

/* Style select like a standard input */
select {
  -moz-appearance: none; /* Firefox 36+ */
  -webkit-appearance: none; /* Chrome 41+ */
}

select::-ms-expand {
  display: none; /* Internet Explorer 11+ */
}

select::-ms-value {
  color: currentColor; /* Internet Explorer 11+ */
}

legend {
  border: 0; /* Correct `color` not being inherited in IE 8/9/10/11 */
  color: inherit; /* Correct the color inheritance from `fieldset` elements in IE */
  display: table; /* Correct the text wrapping in Edge and IE */
  max-width: 100%; /* Correct the text wrapping in Edge and IE */
  white-space: normal; /* Correct the text wrapping in Edge and IE */
}

::-webkit-file-upload-button {
  -webkit-appearance: button; /* Correct the inability to style clickable types in iOS and Safari */
  font: inherit; /* Change font properties to `inherit` in Chrome and Safari */
}

[type="search"] {
  -webkit-appearance: textfield; /* Correct the odd appearance in Chrome and Safari */
  outline-offset: -2px; /* Correct the outline style in Safari */
}

/* # ================================================================= # Specify media element style # ================================================================= */
img {
  border-style: none; /* Remove border when inside `a` element in IE 8/9/10 */
}

/* Add the correct vertical alignment in Chrome, Firefox, and Opera */
progress {
  vertical-align: baseline;
}

svg:not(:root) {
  overflow: hidden; /* Internet Explorer 11- */
}

audio,
canvas,
progress,
video {
  display: inline-block; /* Internet Explorer 11+, Windows Phone 8.1+ */
}

/* # ================================================================= # Accessibility # ================================================================= */
/* Hide content from screens but not screenreaders */
@media screen {
  [hidden~="screen"] {
    display: inherit;
  }
  [hidden~="screen"]:not(:active):not(:focus):not(:target) {
    position: absolute !important;
    clip: rect(0 0 0 0) !important;
  }
}
/* Specify the progress cursor of updating elements */
[aria-busy="true"] {
  cursor: progress;
}

/* Specify the pointer cursor of trigger elements */
[aria-controls] {
  cursor: pointer;
}

/* Specify the unstyled cursor of disabled, not-editable, or otherwise inoperable elements */
[aria-disabled] {
  cursor: default;
}

/* # ================================================================= # Selection # ================================================================= */
/* Specify text selection background color and omit drop shadow */
::-moz-selection {
  background-color: #b3d4fc; /* Required when declaring ::selection */
  color: #000;
  text-shadow: none;
}

::selection {
  background-color: #b3d4fc; /* Required when declaring ::selection */
  color: #000;
  text-shadow: none;
}

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

Defaults Styles

======================================================================*/
html {
  font-size: 62.5%;
}

body {
  margin: 0;
  padding: 0;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.6;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 400;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
}

* {
  margin: 0;
  padding: 0;
}

/*selection*/
::-moz-selection {
  background-color: #b3d4fc;
  color: #333;
  text-shadow: none;
}

::selection {
  background-color: #b3d4fc;
  color: #333;
  text-shadow: none;
}

/*placeholder*/
::-webkit-input-placeholder-shown {
  color: #333;
}
:-ms-input-placeholder-shown {
  color: #333;
}
::-ms-input-placeholder-shown {
  color: #333;
}
::placeholder-shown {
  color: #333;
}

/* Google Chrome, Safari, Opera 15+, Android, iOS */
::-webkit-input-placeholder {
  color: #333;
}

/* Firefox 18- */
::-moz-placeholder {
  color: #333;
  opacity: 1;
}

/* Firefox 19+ */
::-moz-placeholder {
  color: #333;
  opacity: 1;
}

/* IE 10+ */
::-ms-input-placeholder {
  color: #333;
}

img,
svg {
  border: 0;
  border-style: none;
  vertical-align: top;
  font-size: 0;
  line-height: 0;
  max-width: 100%;
  height: auto;
  -ms-interpolation-mode: bicubic;
}

ul,
dl,
ol {
  list-style-type: none;
}

/*    Link
--------------------------------------------------------------------------------*/
a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-decoration: none;
}

a:link {
  color: #000;
  text-decoration: none;
}

a:visited {
  color: #000;
  text-decoration: none;
}

a:hover {
  opacity: 0.6;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  a:hover {
    opacity: 1;
  }
}

a:active {
  color: #000;
  text-decoration: none;
}

*:focus {
  outline: none;
}

/*    Base Styles
--------------------------------------------------------------------------------*/
.alL {
  text-align: left;
}

.alC {
  text-align: center;
}

.alR {
  text-align: right;
}

.vaT {
  vertical-align: top;
}

.vaM {
  vertical-align: middle;
}

.vaB {
  vertical-align: bottom;
}

.disnon {
  display: none;
}

.nowrap {
  white-space: nowrap;
}

.w100per {
  width: 100%;
  height: auto;
}

/*clear*/
.clearfix {
  clear: both;
  background: transparent;
  height: 1px;
  font-size: 1px;
}

/* clearfix micro */
.cf:before,
.cf:after {
  content: "";
  display: table;
}

.cf:after {
  clear: both;
}

/*IE6,7対策 （haslayout対策）*/
.cf {
  *zoom: 1;
}

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

common parts

================================================================================*/
.pcOnly {
  display: block;
}
@media screen and (max-width: 768px) {
  .pcOnly {
    display: none;
  }
}

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

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

.c-title {
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .c-title {
    margin-bottom: 40px;
  }
}
.c-title span {
  display: block;
  text-align: center;
}
.c-title .-en {
  font-size: 120px;
  color: #cdd7e3;
  line-height: 1;
  letter-spacing: 5px;
}
@media screen and (max-width: 768px) {
  .c-title .-en {
    font-size: 60px;
    letter-spacing: 3px;
  }
}
.c-title .-jp {
  color: #1a6ca2;
  font-size: 32px;
  font-weight: bold;
  letter-spacing: 3px;
  margin-top: 15px;
}
@media screen and (max-width: 768px) {
  .c-title .-jp {
    font-size: 18px;
    letter-spacing: 2px;
  }
}

.c-subtitle {
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 1px;
  background: #f4f4f4;
  padding: 10px;
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .c-subtitle {
    margin-bottom: 30px;
  }
}

.c-h3 {
  color: #fff;
  font-size: 46px;
  background: #1a6ca2;
  text-align: center;
  padding: 15px;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .c-h3 {
    font-size: 30px;
    padding: 10px;
    margin-bottom: 20px;
  }
}

.c-h4 {
  font-size: 36px;
  border-bottom: 2px solid #1a6ca2;
  text-align: center;
  padding-bottom: 10px;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .c-h4 {
    font-size: 22px;
    padding: 10px;
  }
}

.c-btn a {
  color: #fff;
  font-size: 16px;
  font-family: a-otf-ryumin-pr6n, serif;
  letter-spacing: 2px;
  display: block;
  position: relative;
  background: #000;
  width: 240px;
  padding: 15px;
  text-align: center;
}

.c-bold {
  font-weight: bold;
}

.-fadeup {
  -webkit-animation: fadeup 1s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
  animation: fadeup 1s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
}

@-webkit-keyframes fadeup {
  0% {
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeup {
  0% {
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
/*================================================================================

container

================================================================================*/
/*    div.container
--------------------------------------------------------------------------------*/
/*    header
--------------------------------------------------------------------------------*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 90px;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .header {
    height: 70px;
  }
}
.header .header_logo {
  margin-left: 80px;
  float: left;
}
@media screen and (max-width: 768px) {
  .header .header_logo {
    margin-left: 20px;
  }
}
.header .header_logo a {
  width: 300px;
  display: block;
  padding: 25px 0;
}
@media screen and (max-width: 768px) {
  .header .header_logo a {
    width: 250px;
    padding: 20px 0;
  }
}
.header .header_links_pc {
  overflow: hidden;
}
.header .header_links_pc .icon-in {
  float: left;
}
.header .header_links_pc .icon-in a {
  width: 30px;
  display: block;
  margin: 33px 20px 0 70px;
}
.header .header_links_pc .header_items {
  float: right;
}
.header .header_links_pc .header_items ul {
  float: right;
}
.header .header_links_pc .header_items ul li {
  padding: 0 20px;
  display: inline-block;
}
.header .header_links_pc .header_items ul li:last-child {
  padding-right: 0;
}
.header .header_links_pc .header_items ul li a {
  color: #1a6ca2;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 2px;
  display: block;
  padding: 30px 20px;
}
.header .header_links_pc .header_items ul li.btn-contact a {
  width: 380px;
  color: #fff;
  background: #1a6ca2;
  position: relative;
  padding: 33px 30px 28px;
}
.header .header_links_pc .header_items ul li.btn-contact a::before,
.header .header_links_pc .header_items ul li.btn-contact a::after {
  content: "";
  position: absolute;
}
.header .header_links_pc .header_items ul li.btn-contact a::before {
  width: 30px;
  height: 2px;
  background: #fff;
  top: 50%;
  right: 25px;
}
.header .header_links_pc .header_items ul li.btn-contact a::after {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 8px;
  border-color: transparent transparent transparent #fff;
  top: 50%;
  right: 20px;
  margin-top: -5px;
}
@media screen and (max-width: 1150px) {
  .header .header_links_pc {
    display: none;
  }
}
.header .header_links_sp {
  display: none;
}
@media screen and (max-width: 1150px) {
  .header .header_links_sp {
    display: block;
    position: relative;
  }
  .header .header_links_sp .humburger {
    position: absolute;
    width: 50px;
    height: 50px;
    top: 40px;
    right: 60px;
  }
  .header .header_links_sp .humburger .burger-lines {
    position: relative;
  }
  .header .header_links_sp .humburger .burger-lines span {
    position: absolute;
    width: 50px;
    height: 3px;
    background: #1a6ca2;
    left: 0;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .header .header_links_sp .humburger .burger-lines span:first-child {
    top: 0;
  }
  .header .header_links_sp .humburger .burger-lines span:nth-child(2) {
    top: 20px;
  }
  .header .header_links_sp .spNav {
    display: block;
    width: 0;
    height: 100vh;
    -webkit-transition: margin-right 2s 2s;
    transition: margin-right 2s 2s;
    position: absolute;
    top: 0;
    right: -50%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .header .header_links_sp.-active {
    -webkit-transition: 0.8s;
    transition: 0.8s;
    right: 0;
  }
  .header .header_links_sp.-active .burger-lines span {
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .header .header_links_sp.-active .burger-lines span:first-child {
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    top: 10px;
  }
  .header .header_links_sp.-active .burger-lines span:nth-child(2) {
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
    top: 10px;
    width: 50px;
  }
  .header .header_links_sp.-active .spNav {
    display: block;
    background: #fff;
    width: 50%;
    height: 100vh;
    position: absolute;
    top: 90px;
    right: 0;
    padding: 60px 40px;
  }
  .header .header_links_sp.-active .spNav .spNav_items li {
    margin-bottom: 40px;
  }
  .header .header_links_sp.-active .spNav .spNav_items li.top {
    margin-top: 60px;
  }
  .header .header_links_sp.-active .spNav .spNav_items li a {
    color: #1a6ca2;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 2px;
    text-align: center;
    display: block;
    padding: 20px;
  }
  .header .header_links_sp.-active .spNav .spNav_items li.btn-contact a {
    width: 100%;
    color: #fff;
    background: #1a6ca2;
    position: relative;
    padding: 25px;
  }
  .header .header_links_sp.-active .spNav .spNav_items li.btn-contact a::before,
  .header .header_links_sp.-active .spNav .spNav_items li.btn-contact a::after {
    content: "";
    position: absolute;
  }
  .header
    .header_links_sp.-active
    .spNav
    .spNav_items
    li.btn-contact
    a::before {
    width: 30px;
    height: 2px;
    background: #fff;
    top: 50%;
    right: 25px;
  }
  .header .header_links_sp.-active .spNav .spNav_items li.btn-contact a::after {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 0 6px 8px;
    border-color: transparent transparent transparent #fff;
    top: 50%;
    right: 20px;
    margin-top: -5px;
  }
  .header .header_links_sp.-active .spNav .icon-in a {
    width: 40px;
    display: block;
    margin: 50px auto 0;
  }
}
@media screen and (max-width: 768px) {
  .header .header_links_sp .humburger {
    width: 40px;
    height: 40px;
    top: 25px;
    right: 25px;
  }
  .header .header_links_sp .humburger .burger-lines span {
    width: 40px;
  }
  .header .header_links_sp .humburger .burger-lines span:first-child {
    top: 2px;
  }
  .header .header_links_sp .humburger .burger-lines span:nth-child(2) {
    top: 18px;
  }
  .header .header_links_sp.-active .burger-lines span:first-child {
    top: 10px;
  }
  .header .header_links_sp.-active .burger-lines span:nth-child(2) {
    top: 10px;
    width: 40px;
  }
  .header .header_links_sp.-active .spNav {
    padding: 40px 20px;
    width: 100%;
    top: 70px;
  }
  .header .header_links_sp.-active .spNav .spNav_items li {
    margin-bottom: 20px;
  }
  .header .header_links_sp.-active .spNav .spNav_items li a {
    font-size: 18px;
  }
  .header .header_links_sp.-active .spNav .spNav_items li.btn-contact a {
    text-align: left;
    padding: 20px 15px;
  }
  .header
    .header_links_sp.-active
    .spNav
    .spNav_items
    li.btn-contact
    a::before {
    width: 20px;
    right: 15px;
  }
  .header .header_links_sp.-active .spNav .spNav_items li.btn-contact a::after {
    right: 14px;
  }
}

/*    div.contents
--------------------------------------------------------------------------------*/
/*    main
--------------------------------------------------------------------------------*/
.contents {
  margin-top: 90px;
}
@media screen and (max-width: 768px) {
  .contents {
    margin-top: 70px;
  }
}

.sec .inner {
  width: 1100px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .sec .inner {
    width: 100%;
    padding: 0 30px;
  }
}
.sec .inner- {
  width: 100%;
}

.sec + .sec {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .sec + .sec {
    margin-top: 80px;
  }
}

/*    aside
----------------------------------------------------------------------------*/
/*    article & section
----------------------------------------------------------------------------*/
/*    footer
----------------------------------------------------------------------------*/
.footer {
  overflow: hidden;
  background: url(../img/ft_bg.jpg) no-repeat;
  background-size: cover;
  margin-top: 100px;
}
@media screen and (max-width: 768px) {
  .footer {
    margin-top: 80px;
  }
}
.footer .inner {
  width: 500px;
  margin: 0 auto;
  padding: 80px 0;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .footer .inner {
    width: auto;
    padding: 35px 25px;
  }
}
.footer .inner .logo {
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .footer .inner .logo {
    margin-bottom: 30px;
  }
}
.footer .inner .logo a {
  display: block;
}
.footer .inner .footer_links .item {
  float: left;
}
@media screen and (max-width: 768px) {
  .footer .inner .footer_links .item {
    float: none;
  }
}
.footer .inner .footer_links .item:last-child {
  float: right;
}
@media screen and (max-width: 768px) {
  .footer .inner .footer_links .item:last-child {
    float: none;
  }
}
.footer .inner .footer_links .item a {
  color: #1a6ca2;
  font-size: 22px;
  font-weight: bold;
  display: block;
}
@media screen and (max-width: 768px) {
  .footer .inner .footer_links .item a {
    font-size: 16px;
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .footer .inner .footer_links .item + .item {
    margin-top: 15px;
  }
}
.footer .copyArea {
  background: #1a6ca2;
}
.footer .copyArea .copyright a {
  color: #fff;
  padding: 15px 0;
  text-align: center;
  display: block;
}
@media screen and (max-width: 768px) {
  .footer .copyArea .copyright a {
    padding: 15px 0;
  }
}

.pageTop {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 500;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.pageTop a {
  display: block;
  width: 40px;
  height: 40px;
  position: relative;
  font-size: 1px;
  background: #1a6ca2;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-weight: bold;
}
.pageTop a::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 22px;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
  width: 10px;
  height: 10px;
  border-left: 2px solid #fff;
  border-top: 2px solid #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.pageTop a:hover::before {
  margin-top: -5px;
}
.pageTop.-active {
  position: absolute;
  top: -30px;
  bottom: auto;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

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

/* 修正 */
/* header */

header .header_links_pc .header_items {
  display: flex;
  align-items: center;
}
header .header_links_pc .header_items .insta_box a {
  width: 260px;
  line-height: 50px;
  text-align: center;
  display: flex;
  gap: 0 10px;
  justify-content: center;
  align-items: center;
  color: #fff;
  background: linear-gradient(90deg, #f58529 0%, #d62976 100%);
  border-radius: 100px;
}

@media screen and (max-width: 1250px) {
  header .header_links_pc .header_items {
    zoom: 0.8;
  }
} /*max-width:1250px*/

.header_links_sp .insta_box a {
  width: 260px;
  line-height: 50px;
  text-align: center;
  display: flex;
  gap: 0 10px;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
  color: #fff;
  background: linear-gradient(90deg, #f58529 0%, #d62976 100%);
  border-radius: 100px;
}

/* 会社概要 */
.data_tit {
  margin-bottom: 50px;
}
.data_box {
  max-width: 900px;
  margin: 0 auto;
}
.data_box li {
  margin-bottom: 30px;
}
.data_box li:last-child {
  margin-bottom: 0;
}
