@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap");

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

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  font-weight: normal;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

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

nav,
ul,
li {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  resize: none;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  outline: none;
  border: none;
  width: 100%;
}

img {
  vertical-align: bottom;
  width: 100%;
}

body {
	font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", Meiryo, "メイリオ", sans-serif;
  color: #101010;
  position: relative;
}

.SiteWrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
}

main {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  overflow-x: hidden;
}

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

@media print, screen and (min-width: 737px) {
  .sp_only {
    display: none !important;
  }
}

/* 共通クラス */
.inner {
  max-width: 1300px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 40px;
}

.triangle {
  display: block;
  position: absolute;
  right: 0;
  top: 0px;
  left: 0;
  width: 0px;
  height: 0px;
  margin: auto;
  border-style: solid;
  border-color: #ffffff transparent transparent transparent;
  border-width: 300px 300px 0 300px;
  z-index: -1;
}

.txt-s {
  font-size: 18px;
  letter-spacing: 0.06em;
  font-weight: 200;
  line-height: 1.5;
  color: #484848;
}

.txt-l {
  font-size: 24px;
  font-weight: 600;
}

.txt-m {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.5;
  text-align: center;
  color: #fff;
}

.sec-top {
  display: block;
  font-size: 20px;
  letter-spacing: 0.06em;
  text-align: center;
  margin-bottom: 10px;
  color: #6c9caa;
}

.sec-ttl {
  font-size: 50px;
  letter-spacing: 0.06em;
  text-align: center;
  font-weight: 600;
  color: #6c9caa;
}

.accordion {
  position: relative;
}
.accordion::before {
  position: absolute;
  content: "";
  top: 50%;
  right: -23px;
  display: block;
  width: 10px;
  height: 2px;
  background-color: #000000;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer;
}
.accordion::after {
  position: absolute;
  content: "";
  top: 50%;
  right: -19px;
  display: block;
  width: 2px;
  height: 10px;
  background-color: #000000;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}

.accordion.open::after {
  top: 25%;
  opacity: 0;
  -webkit-transform: translate(0) rotate(-45deg);
          transform: translate(0) rotate(-45deg);
}

.accordion-open {
  display: none;
}
.accordion-open li {
  margin-top: -6px;
  position: relative;
  padding: 15px 0px 15px 20px;
  border-bottom: 1px solid #d3d3d3 !important;
}
.accordion-open li::before {
  position: absolute;
  left: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  width: 5px;
  border-top: 1px solid #0d0d0d;
}

body.open {
  overflow: hidden;
}

.fadein-a {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

.fadein {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

/* ローディング画面 */
#loading {
  width: 100vw;
  height: 100vh;
  -webkit-transition: all 1s;
  transition: all 1s;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9998;
}

.loaded {
  opacity: 0;
  visibility: hidden;
}

.loader {
  display: block;
  width: 30px;
  height: 30px;
  position: relative;
  border: 4px solid #23C4CC;
  top: 43%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin-left: auto;
  margin-right: auto;
  -webkit-animation: loader 2s infinite ease;
          animation: loader 2s infinite ease;
}

.loader-inner {
  display: block;
  width: 100%;
  background-color: #23C4CC;
  -webkit-animation: loader-inner 2s infinite ease-in;
          animation: loader-inner 2s infinite ease-in;
}

@-webkit-keyframes loader {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  75% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes loader {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  75% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes loader-inner {
  0% {
    height: 0%;
  }
  25% {
    height: 0%;
  }
  50% {
    height: 100%;
  }
  75% {
    height: 100%;
  }
  100% {
    height: 0%;
  }
}
@keyframes loader-inner {
  0% {
    height: 0%;
  }
  25% {
    height: 0%;
  }
  50% {
    height: 100%;
  }
  75% {
    height: 100%;
  }
  100% {
    height: 0%;
  }
}
.load-logo {
  position: absolute;
  -webkit-animation: flash 1s linear infinite;
          animation: flash 1s linear infinite;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 63px;
  z-index: 9999;
  display: block;
}
@-webkit-keyframes flash {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
@keyframes flash {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

.br-sp {
  display: none;
}

.br-tab {
  display: none;
}

.work-ly-sp {
  display: none;
}

.top {
  position: relative;
  width: 100%;
  height: 100px;
  top: 0;
  left: 0;
  position: fixed;
  z-index: 9;
}

.nav-open {
  z-index: 999;
  position: absolute;
  top: 100px;
  display: none;
  width: 100vw;
  min-height: 1000px;
  background-color: #fff;
  opacity: 0.9;
}
.nav-open a {
  color: #101010;
}
.nav-open .accordion::after {
  right: 50px;
}
.nav-open .accordion::before {
  right: 46px;
}
.nav-open li {
  border-bottom: 1px solid #000;
  padding-bottom: 15px;
  padding-top: 15px;
  margin-bottom: 5px;
}

.header {
  width: 100%;
  height: 100px;
  top: 0;
  left: 0;
  position: fixed;
  z-index: 10;
  background: rgba(255, 255, 255, 0.6);
}
.header__inner {
  position: relative;
  height: 100%;
  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-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__logo {
  width: 28%;
  text-align: center;
}
.header__logo img {
  width: 300px;
  margin-bottom: 10px;
}
.header h1 {
  font-size: 20px;
  margin-bottom: 13px;
}
.header h1 span {
  font-weight: 600;
}
.header__list {
  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-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__list img {
  width: 20px;
  height: 20px;
  margin-right: 5px;
  opacity: 0;
}
.header__side-1 {
  opacity: 1 !important;
}
.header__item {
  position: relative;
  text-align: center;
  margin-right: 10px;
  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-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  /* ハンバーガーメニューが開いたとき */
}
.header__item a {
  color: #101010;
  font-size: 16px;
}
.header__item:hover img {
  opacity: 1;
}
.header .burger-btn {
  display: none;
  position: fixed;
  right: 20px;
  height: 30px;
  width: 30px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  cursor: pointer;
  z-index: 15;
}
.header .bar {
  display: block;
  background-color: #383838;
  height: 2px;
  width: 100%;
  border-radius: 1px;
}
.header .bar_top {
  -webkit-transform: translateY(-8px);
          transform: translateY(-8px);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.header .bar_bottom {
  -webkit-transform: translateY(8px);
          transform: translateY(8px);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.header .accordion::before {
  display: none;
}
.header .accordion::after {
  display: none;
}
.header .accordion-open {
  position: absolute;
  width: 100%;
  top: 30px;
  left: 0px;
  background: rgba(255, 255, 255, 0.5);
}
.header .accordion-open li {
  margin-top: -6px;
  position: relative;
  padding: 20px 0px 8px 0px;
  border-bottom: 1px solid #d3d3d3 !important;
}
.header .accordion-open li::before {
  position: absolute;
  left: 30px;
  top: 60%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  width: 5px;
  border-top: 1px solid #0d0d0d;
}
.header .accordion-open-4 {
  width: 150px;
}

.bar.cross.bar_top {
  -webkit-transform: translateY(2px) rotate(-45deg);
          transform: translateY(2px) rotate(-45deg);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.bar.cross.bar_mid {
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.bar.cross.bar_bottom {
  -webkit-transform: translateY(-2px) rotate(45deg);
          transform: translateY(-2px) rotate(45deg);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.mv {
  position: relative;
  max-width: 100%;
  z-index: 5;
}
.mv img {
  -o-object-fit: cover;
     object-fit: cover;
}

.news {
  padding-top: 65px;
}
.news__flex {
  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-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 30px;
  margin-bottom: 23px;
}
.news__flex h2 {
  position: relative;
  font-size: 20px;
  letter-spacing: 0.1em;
  font-weight: bold;
}
.news__flex h2::before {
  position: absolute;
  top: 0;
  left: -15px;
  content: "";
  height: 100%;
  display: inline-block;
  color: #256EC2;
  border-right: 9px solid #256EC2;
}
.news__flex a {
  width: 120px;
  padding: 10px;
  font-size: 16px;
  text-align: center;
  background-color: #256EC2;
  color: #fff;
  -webkit-box-shadow: 3px 3px 0px 0px black;
          box-shadow: 3px 3px 0px 0px black;
}
.news__content {
  width: 100%;
  padding: 20px;
  margin-bottom: 5px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border-top: solid 1px #CCCCCC;
  border-bottom: solid 1px #CCCCCC;
  flex-wrap: wrap;
}
.news__content.end {
  border-top:none;
}
.news__content p {
  max-width: 100%;
  line-height: 1.4rem;
}
.news__content span {
  margin-right: 20px;
 margin-bottom: 10px;
  color: #256EC2;
}

/*お知らせの箇所 ここから*/
.news__content_col2{
 display: flex; margin: 10px 0;
}
.news__content_col2_box{
 width: 40%;text-align: center;
}
.news__content_col2_box img{
 margin-bottom: 5px;
}
/*お知らせの箇所 ここまで*/


.work {
  padding-top: 58px;
}
.work__top {
  font-size: 24px;
  font-weight: 400;
  color: #256EC2;
  text-align: center;
  margin-bottom: 75px;
}
.work__top-sp {
  display: none;
}
.work__container {
  position: relative;
  margin-bottom: 200px;
}
.work__bg-1 {
  margin-top: 200px;
  position: absolute;
}
.work__bg-2 {
  margin-top: -800px;
}
.work__img {
  width: 660px;
  opacity: 0;
  -webkit-transform: translateX(-150px);
          transform: translateX(-150px);
  -webkit-transition: opacity 1s, visibility 1s, -webkit-transform 2s;
  transition: opacity 1s, visibility 1s, -webkit-transform 2s;
  transition: opacity 1s, visibility 1s, transform 2s;
  transition: opacity 1s, visibility 1s, transform 2s, -webkit-transform 2s;
}
.work__img img {
  -o-object-fit: cover;
     object-fit: cover;
}
.work__img-2 {
  margin-left: auto;
  -webkit-transform: translateX(150px);
          transform: translateX(150px);
}
.work__photo_1 {
  max-width: 500px;
  position: absolute;
  top: 30px;
  right: 30px;
  opacity: 0;
  -webkit-transform: translateX(150px);
          transform: translateX(150px);
  -webkit-transition: opacity 1s, visibility 1s, -webkit-transform 2s;
  transition: opacity 1s, visibility 1s, -webkit-transform 2s;
  transition: opacity 1s, visibility 1s, transform 2s;
  transition: opacity 1s, visibility 1s, transform 2s, -webkit-transform 2s;
}
.work__photo_2 {
  max-width: 220px;
  position: absolute;
  top: -60px;
  left: 100px;
  opacity: 0;
  -webkit-transform: translateX(-150px);
          transform: translateX(-150px);
  -webkit-transition: opacity 1s, visibility 1s, -webkit-transform 2s;
  transition: opacity 1s, visibility 1s, -webkit-transform 2s;
  transition: opacity 1s, visibility 1s, transform 2s;
  transition: opacity 1s, visibility 1s, transform 2s, -webkit-transform 2s;
}
.work__photo_3 {
  max-width: 300px;
  position: absolute;
  top: -20px;
  right: 250px;
  opacity: 0;
  -webkit-transform: translateX(150px);
          transform: translateX(150px);
  -webkit-transition: opacity 1s, visibility 1s, -webkit-transform 2s;
  transition: opacity 1s, visibility 1s, -webkit-transform 2s;
  transition: opacity 1s, visibility 1s, transform 2s;
  transition: opacity 1s, visibility 1s, transform 2s, -webkit-transform 2s;
}
.work__photo_4 {
  max-width: 400px;
  position: absolute;
  top: -60px;
  left: 100px;
  opacity: 0;
  -webkit-transform: translateX(-150px);
          transform: translateX(-150px);
  -webkit-transition: opacity 1s, visibility 1s, -webkit-transform 2s;
  transition: opacity 1s, visibility 1s, -webkit-transform 2s;
  transition: opacity 1s, visibility 1s, transform 2s;
  transition: opacity 1s, visibility 1s, transform 2s, -webkit-transform 2s;
}
.work__txt-box {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: opacity 1s, visibility 1s, -webkit-transform 1s;
  transition: opacity 1s, visibility 1s, -webkit-transform 1s;
  transition: opacity 1s, visibility 1s, transform 1s;
  transition: opacity 1s, visibility 1s, transform 1s, -webkit-transform 1s;
  max-width: 663px;
  position: absolute;
  top: 210px;
  left: 520px;
  padding: 60px 30px;
  -webkit-box-shadow: 6px 6px 10px 1px rgba(0, 0, 0, 0.6);
          box-shadow: 6px 6px 10px 1px rgba(0, 0, 0, 0.6);
  background: rgba(255, 255, 255, 0.8);
}
.work__txt-box-2 {
  left: 0;
}
.work__ttl {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.1em;
  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-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.work__ttl::after {
  display: block;
  content: "";
  width: 320px;
  border-bottom: 1px solid #138837;
  height: 1px;
  margin-left: 15px;
}
.work__ttl-3::after {
  display: block;
  content: "";
  width: 240px;
  border-bottom: 1px solid #138837;
  height: 1px;
  margin-left: 15px;
}
.work__ttl-en {
  display: block;
  text-align: right;
  font-size: 14px;
  margin-top: -5px;
  margin-bottom: 30px;
}
.work__txt {
  margin-bottom: 40px;
}
.work__btn {
  display: block;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  width: 250px;
  padding: 15px;
  color: #fff;
  background-color: #004BB1;
  border-radius: 24px;
}
.work__btn-3 {
  width: 365px;
}

.recruit {
  position: relative;
  padding-top: 100px;
  padding-bottom: 100px;
  background-image: url("../img/index/recruit-back.jpg");
  background-position: center;
  background-size: cover;
}
.recruit .sec-top {
  position: relative;
  z-index: 5;
}
.recruit h2 {
  position: relative;
  z-index: 5;
  margin-bottom: 55px;
}
.recruit__inner {
  z-index: 5;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}
.recruit .txt-m {
  margin-bottom: 55px;
}
.recruit__flex {
  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;
}
.recruit__box {
  max-width: 500px;
  background-color: rgba(255, 0, 0, 0);
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: opacity 1s, visibility 1s, -webkit-transform 1s;
  transition: opacity 1s, visibility 1s, -webkit-transform 1s;
  transition: opacity 1s, visibility 1s, transform 1s;
  transition: opacity 1s, visibility 1s, transform 1s, -webkit-transform 1s;
}
.recruit__box h3 {
  position: relative;
  font-size: 20px;
  font-weight: 600;
  padding-bottom: 10px;
  padding: 5px 30px 0px;
  letter-spacing: 0.1em;
  background-color: #fff;
}
.recruit__box h3 img {
  width: 33px;
  padding-top: 6px;
}
.recruit__box p {
  padding: 10px 30px 0 55px;
  background-color: #fff;
  padding-bottom: 25px;
}
.recruit__box img {
  -o-object-fit: cover;
     object-fit: cover;
}
.recruit__box h3 {
  color: #101010;
}
.recruit__icon {
  display: inline-block;
  width: 21px;
  height: 25px;
  margin-right: 6px;
}

.contact {
  position: relative;
  padding-top: 50px;
  padding-bottom: 95px;
  z-index: 5;
  background-color: #F7F9FA;
}
.contact .sec-top {
  color: #6C9CAA;
}
.contact .sec-ttl {
  color: #6C9CAA;
  margin-bottom: 25px;
}
.contact__txt {
  color: #484848;
  margin-bottom: 150px;
}
.contact__flex {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.contact__form {
  width: 360px;
  padding: 20px;
  background-color: #6CAA7F;
}
.contact__form p {
  font-size: 18px;
  letter-spacing: 0.06em;
  color: #fff;
}
.contact__form a {
  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;
}
.contact__form img {
  display: block;
  width: 54px;
  height: 56px;
  margin-right: 20px;
}
.contact__tel {
  width: 360px;
  padding: 20px;
  border: 1px solid #707070;
}
.contact__tel a {
  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;
}
.contact__tel p {
  color: #484848;
  letter-spacing: 0.06em;
  font-weight: 600;
}
.contact__tel p:first-of-type {
  font-size: 28px;
  margin-bottom: 5px;
}
.contact__tel img {
  display: block;
  width: 54px;
  height: 56px;
  margin-right: 20px;
}

.footer {
  padding-bottom: 35px;
}
.footer__flex {
  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;
  margin-bottom: 45px;
}
.footer__img-1 {
  width: 28px;
  height: 28px;
  margin-right: 10px;
}
.footer__img-2 {
  width: 300px;
}
.footer__ttl {
  padding-top: 50px;
  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: 24px;
  margin-bottom: 25px;
}
.footer__ttl span {
  font-weight: 600;
}
.footer__txt {
  margin-bottom: 20px;
}
.footer__tel {
  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;
  margin-bottom: 20px;
}
.footer__tel-ly {
  background-color: #256EC2;
  -webkit-transform: skew(-10deg, 0deg);
          transform: skew(-10deg, 0deg);
  position: relative;
  width: 60px;
  height: 25px;
  margin-right: 10px;
}
.footer__tel-ly span {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) skew(10deg, 0deg);
          transform: translate(-50%, -50%) skew(10deg, 0deg);
  color: #fff;
}
.footer__nav {
  padding-top: 50px;
}
.footer__list {
  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;
}
.footer__list a {
  color: #000000;
}
.footer__list-wrap {
  margin-right: 40px;
}
.footer__item {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 15px;
  cursor: pointer;
}
.footer__map {
  width: 344px;
  height: 237px;
}
.footer__map iframe {
  width: 100%;
  height: 100%;
  display: block;
}
.footer__copy {
  padding-top: 70px;
  color: #484848;
  font-size: 12px;
  text-align: center;
}
.footer__nav-sp {
  width: 100%;
}
.footer__nav-sp {
  display: none;
}
@media screen and (max-width: 1079px) {
  .inner {
    padding: 0 15px;
  }
  .txt-s {
    font-size: 14px;
  }
  .loader {
    top: 38%;
  }
  .br-tab {
    display: block;
  }
  .header__logo {
    width: 100%;
    text-align: left;
  }
  .header__nav {
    display: none;
  }
  .header .burger-btn {
    display: block;
  }
  .work__img {
    width: 500px;
  }
  .work__txt-box {
    max-width: 60%;
    left: 300px;
    padding: 30px 15px;
  }
  .work__txt-box-2 {
    left: 30px;
  }
  .work__ttl::after {
    margin-left: 0;
  }
  .recruit__flex {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .recruit__box {
    max-width: 350px;
  }
  .recruit__box h3 {
    font-size: 16px;
  }
  .recruit__box-1 {
    margin-right: 40px;
  }
  .contact__form {
    max-width: 400px;
  }
  .contact__tel {
    max-width: 400px;
  }
  .contact__tel p:first-of-type {
    font-size: 24px;
  }
}
@media screen and (max-width: 767px) {
  .triangle {
    border-width: 200px 200px 0 200px;
  }
  .txt-m {
    font-size: 14px;
  }
  .sec-ttl {
    font-size: 30px;
  }
  .accordion::before {
    right: 40px;
  }
  .accordion::after {
    right: 44px;
  }
  .accordion-open li {
    font-size: 14px;
  }
  .loader {
    top: 43% !important;
  }
  .br-sp {
    display: block;
  }
  .work-ly-sp {
    display: block;
  }
  .top {
    height: 80px;
  }
  .nav-open {
    top: 80px;
  }
  .header {
    height: 80px;
  }
  .header__logo img {
    width: 250px;
  }
  .header__logo {
    text-align: left;
  }
  .header__logo p {
    font-size: 12px;
  }
  .header h1 {
    font-size: 16px;
  }
  .mv img {
    padding-top: 80px;
  }
  .work__top {
    display: none;
  }
  .work__top-sp {
    display: block;
    color: #256EC2;
    text-align: center;
    margin-bottom: 75px;
    font-size: 16px;
    line-height: 1.5;
    margin-left: auto;
    margin-right: auto;
  }
  .work__container {
    margin-bottom: 80px;
  }
  .work__img {
    width: 100%;
    margin-bottom: 30px;
  }
  .work__txt-box {
    position: static;
    max-width: 100%;
  }
  .work__ttl {
    display: block;
  }
  .work__ttl::after {
    margin-top: 10px;
    width: 300px !important;
  }
  .work__ttl-en {
    text-align: left;
    margin-top: 10px;
  }
  .work__btn {
    font-size: 14px;
  }
  .work__btn {
    width: 100%;
  }
  .work__btn-3 {
    max-width: 100%;
  }
  .recruit__inner {
    padding: 0 20px;
  }
  .recruit__flex {
    display: block;
    max-width: 100%;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .recruit__box {
    max-width: 100%;
  }
  .recruit__box:first-of-type {
    margin-bottom: 50px;
  }
  .recruit__box h3 {
    padding: 10px 15px;
  }
  .recruit__box h3 img {
    width: 25px;
  }
  .recruit__box-1 {
    margin-right: 0 !important;
  }
  .contact__flex {
    display: block;
  }
  .contact__form {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 25px;
  }
  .contact__tel {
    margin-left: auto;
    margin-right: auto;
  }
  .footer__flex {
    display: block;
  }
  .footer__img-2 {
    width: 250px;
  }
  .footer__ttl {
    font-size: 20px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .footer__txt {
    text-align: center;
  }
  .footer__tel {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .footer__nav {
    display: none;
  }
  .footer__list {
    display: block;
  }
  .footer__list-wrap {
    margin-right: 0;
  }
  .footer__item {
    border-bottom: 1px solid #000000;
    margin-bottom: 5px;
    padding-bottom: 15px;
    padding-top: 15px;
    font-size: 14px;
  }
  .footer__nav-sp {
    display: block;
  }
}
@media screen and (max-width: 1200px) {
  .header__list img {
    width: 15px;
    height: 15px;
  }
  .header__item {
    margin-right: 13px;
    font-size: 14px;
  }
  .header__item a {
    font-size: 14px;
  }
  .work__ttl {
    font-size: 20px;
    line-height: 1.5;
  }
  .work__ttl::after {
    width: 200px;
  }
  .footer__nav {
    width: 50%;
    padding-top: 30px;
  }
  .footer__list {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .footer__map {
    width: 80%;
    margin-top: 50px;
    margin-left: auto;
    margin-right: auto;
    height: 300px;
  }
}
@media screen and (max-width: 575px) {

 /*お知らせの箇所 ここから*/
 .news__content_col2_box{
  width: 50%;text-align: center;
 }
 /*お知らせの箇所 ここまで*/


  .recruit__box p {
    padding: 5px 25px 15px;
  }
  .contact__form {
    width: 95%;
  }
  .contact__tel {
    width: 95%;
  }
}
@media screen and (max-width: 1200px) and (max-width: 767px) {
  .footer__map {
    width: 100% !important;
  }
}
/*# sourceMappingURL=style.css.map */