@charset "UTF-8";
/* CSS Document */
/*reset--------------------------------------*/
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;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
}

body {
  font-weight: 500;
}

body.active {
  height: 100%;
  overflow: hidden;
}

ul {
  list-style-type: none;
}

img {
  max-width: 100%;
  height: auto;
}

.STIX {
  font-family: "STIX Two Text", serif;
}

.header {
  position: relative;
  width: 1280px;
  margin: 0 auto;
  height: 100px;
  background-color: #fff;
}
@media screen and (max-width: 1280px) {
  .header {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .header .logo {
    width: 280px;
  }
}
.header .header_sub {
  height: 100px;
}
@media screen and (max-width: 1280px) {
  .header .header_sub {
    display: none;
  }
}
.header .list1 {
  display: flex;
  justify-content: end;
  margin-top: 20px;
}
.header .list1 a {
  font-size: 12px;
  margin-left: 20px;
  color: #000;
  display: block;
  line-height: 1;
  font-family: "游ゴシック体", "游ゴシック", YuGothic, "Yu Gothic";
  font-weight: 500;
  text-decoration: none;
  position: relative;
  transition: 0.15s;
}
.header .list1 a::after {
  position: absolute;
  bottom: -4px !important;
  left: 0;
  content: "";
  width: 0;
  height: 1px;
  background-color: #000;
  transition: 0.15s;
}
.header .list1 a:hover::after {
  width: 100%;
}
.header .list2 {
  display: flex;
  justify-content: end;
  margin-top: 26px;
}
.header .list2 li:nth-child(n+2) {
  border-left: 1px solid #D5D5D5;
}
.header .list2 a {
  margin: 0 30px;
  color: #000;
  display: block;
  line-height: 1;
  color: #0E2850;
  font-weight: 600;
  letter-spacing: 1px;
  text-decoration: none;
  position: relative;
  transition: 0.15s;
}
.header .list2 a::after {
  position: absolute;
  bottom: -4px !important;
  left: 0;
  content: "";
  width: 0;
  height: 1px;
  background-color: #0E2850;
  transition: 0.15s;
}
.header .list2 a:hover::after {
  width: 100%;
}
.header .list2 li:last-child a {
  margin: 0 0 0 30px;
}

@media screen and (max-width: 767px) {
  .header {
    position: fixed;
    margin: 0px;
    width: 100%;
    height: auto;
    background-color: #fff;
    z-index: 999999;
  }
}
/*------------------------------------------------------------------------------
  ハンバーガー
------------------------------------------------------------------------------*/
.sp_menu {
  display: none;
  /*ハンバーガーアイコンをCSSだけで表現*/
  /*中身*/
  /*:beforeにぼかし効果を設定する*/
  /*チェックが入ったら表示する内容*/
  /*三本線を動かす*/
}
@media screen and (max-width: 1280px) {
  .sp_menu {
    display: block;
  }
}
.sp_menu .g-navi {
  position: fixed;
  z-index: 999999;
  top: 0;
  width: 100%;
  height: 100vh;
}
.sp_menu #nav-open {
  float: right;
  width: 25px;
  height: 25px;
  margin: 5px 15px 0 0;
  vertical-align: middle;
  /* background-color: #FFF; */
}
.sp_menu #nav-open span, .sp_menu #nav-open span:before, .sp_menu #nav-open span:after {
  position: absolute;
  transition: all 0.4s;
  height: 3px;
  /*線の太さ*/
  width: 25px;
  /*長さ*/
  border-radius: 3px;
  background: #0E2850;
  display: block;
  content: "";
  cursor: pointer;
  z-index: 9999;
  /*最前面*/
}
.sp_menu #nav-open span:before {
  bottom: -8px;
}
.sp_menu #nav-open span:after {
  bottom: -16px;
}
.sp_menu #nav-content {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transition: 0.2s ease-in-out;
}
.sp_menu #nav-content.open {
  display: block;
  opacity: 1;
  overflow: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9998;
  width: 100%;
  height: 100%;
  background: rgba(14, 40, 80, 0.9);
  /*背景色*/
  /* overflow: hidden; */
  overflow-y: scroll;
  /* IE, Edge 対応 */
  -ms-overflow-style: none;
  /* Firefox 対応 */
  scrollbar-width: none;
  /*ブラー効果でボヤけた部分を非表示*/
}

.sp_menu #nav-content.open::-webkit-scrollbar {
  display:none;
}

.sp_menu #nav-content.open:before {
  content: "";
  overflow: hidden;
  -moz-filter: blur(10px);
  -o-filter: blur(10px);
  -ms-filter: blur(10px);
  filter: blur(10px);
  z-index: -1;
  /*重なり順序を一番下にしておく*/
}
.sp_menu .hamburger-top {
  height: 40px;
  /*×ボタンと被らないように*/
}
.sp_menu .category {
  text-align: center;
  margin-top: 0.5rem;
}
.sp_menu .category-title {
  padding: 1.5rem;
  list-style: none;
}
.sp_menu .category-title2 {
  padding: 2rem;
  margin: 20px 80px;
  list-style: none;
  border-top: 1px solid #fff;
}
.sp_menu .category-title a,
.sp_menu .category-title2 a {
  color: #fff;
  text-decoration: none;
}

.sp_menu #nav-open.active{
  position: fixed;
  top: 35px;
  right: 0px;
  z-index: 10000;
}
@media screen and (max-width: 767px) {
  .sp_menu #nav-open.active{
    position: fixed;
    top: 10px;
    right: 0px;
    z-index: 10000;
  }
}

.sp_menu #nav-open.active span {
  transform: translateY(8px) rotate(-45deg);
  background-color: #888;
}
.sp_menu #nav-open.active span:before {
  /*打ち消す*/
  transform: translateY(-8px) rotate(45deg);
  /*打ち消す*/
  opacity: 0;
}
.sp_menu #nav-open.active span:after {
  transform: translateY(-16px) rotate(90deg);
  background-color: #888;
}

/*------------------------------------------------------------------------------
  メイン
------------------------------------------------------------------------------*/
@media screen and (max-width: 767px) {
  .box__area {
    padding-top: 50px;
  }
}
.box {
  width: 100%;
  height: 100vh;
}

@media screen and (max-width: 767px) {
  .box {
    width: 100%;
    height: 100vh;
  }
}
.box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.box p {
  font-size: 30px;
  color: #FFFFFF;
  letter-spacing: 5px;
  font-weight: 500;
  line-height: 1.5;
}

@media screen and (max-width: 767px) {
  .box p {
    font-size: 1.5em;
  }
}
.box p span {
  color: #CCB506;
  font-weight: bold;
}

.box__bg_photo {
  background-image: url(../img/main_bg_c.jpg);
  background-size: cover;
  background-position: center;
}

/*------------------------------------------------------------------------------
  fadein
------------------------------------------------------------------------------*/
.u-fade-type-up {
  transform: translateY(50px);
  opacity: 0;
}

.u-fade-type-up.is-active {
  transition: 0.6s;
  transform: translateY(0);
  opacity: 1;
}

/*------------------------------------------------------------------------------
  scroll
------------------------------------------------------------------------------*/
/*スクロールダウン全体の場所*/
.scrolldown {
  /*描画位置※位置は適宜調整してください*/
  position: absolute;
  left: 50%;
  bottom: 10px;
  /*全体の高さ*/
  height: 50px;
}

/*Scrollテキストの描写*/
.scrolldown span {
  /*描画位置*/
  position: absolute;
  left: -15px;
  top: -15px;
  /*テキストの形状*/
  color: #eee;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
}

/* 線の描写 */
.scrolldown::after {
  content: "";
  /*描画位置*/
  position: absolute;
  top: 0;
  /*線の形状*/
  width: 1px;
  height: 30px;
  background: #eee;
  /*線の動き1.4秒かけて動く。永遠にループ*/
  -webkit-animation: pathmove 1.4s ease-in-out infinite;
  animation: pathmove 1.4s ease-in-out infinite;
  opacity: 0;
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@-webkit-keyframes pathmove {
  0% {
    height: 0;
    top: 0;
    opacity: 0;
  }
  30% {
    height: 30px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 50px;
    opacity: 0;
  }
}
@keyframes pathmove {
  0% {
    height: 0;
    top: 0;
    opacity: 0;
  }
  30% {
    height: 30px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 50px;
    opacity: 0;
  }
}
/*------------------------------------------------------------------------------
  parts
------------------------------------------------------------------------------*/
/********************************/
.contents {
  width: 100%;
  margin: 0;
}

/********************************/
.section1 {
  margin: 0;
  background-color: #FFFFFF;
}
.section1 h2 {
  margin-top: 110px;
  font-size: 50px;
}
@media screen and (max-width: 767px) {
  .section1 h2 {
    margin-top: 100px;
    font-size: 40px;
  }
}
.section1 p {
  color: #666;
  font-size: 18px;
  letter-spacing: 1px;
  font-weight: 600;
}
.section1 .line {
  border-bottom: 2px solid #CDCDCD;
  width: 30px;
  margin: 22px auto 0;
}
@media screen and (max-width: 767px) {
  .section1 .line {
    margin-top: 20px;
  }
}
.section1 dl {
  display: flex;
  flex-wrap: wrap;
  width: 1160px;
  margin: 0 auto;
  padding: 40px 100px 48px;
}
@media screen and (max-width: 1280px) {
  .section1 dl {
    width: 100%;
  }
}
@media screen and (max-width: 1030px) {
  .section1 dl {
    padding: 20px 50px 24px;
  }
}
@media screen and (max-width: 767px) {
  .section1 dl {
    display: block;
    padding: 40px 20px 48px;
  }
}
.section1 dl dt {
  width: 200px;
  text-align: left;
  height: 90px;
  line-height: 90px;
  border-bottom: 1px solid #cdcdcd;
}
@media screen and (max-width: 1160px) {
  .section1 dl dt {
    width: 21%;
  }
}
@media screen and (max-width: 900px) {
  .section1 dl dt {
    width: 25%;
  }
}
@media screen and (max-width: 767px) {
  .section1 dl dt {
    width: 100%;
    border-bottom: initial;
    height: initial;
    line-height: initial;
  }
}
.section1 dl dt time {
  text-align: left;
  width: 110px;
  display: inline-block;
  padding: 0 4px;
}
@media screen and (max-width: 1160px) {
  .section1 dl dt time {
    width: 90px;
  }
}
@media screen and (max-width: 767px) {
  .section1 dl dt time {
    height: initial;
    line-height: initial;
    padding: 25px 0 0;
  }
}
.section1 dl dt span {
  width: 60px;
  height: 18px;
  line-height: 18px;
  background: #179ACC;
  color: #fff;
  font-size: 12px;
  display: inline-block;
  text-align: center;
}
.section1 dl dd {
  width: 760px;
  display: flex;
  align-items: center;
  height: 90px;
  border-bottom: 1px solid #cdcdcd;
}
@media screen and (max-width: 1160px) {
  .section1 dl dd {
    width: 78%;
  }
}
@media screen and (max-width: 900px) {
  .section1 dl dd {
    width: 75%;
  }
}
@media screen and (max-width: 767px) {
  .section1 dl dd {
    width: 100%;
    height: initial;
    line-height: initial;
    padding: 10px 0 25px;
  }
}
.section1 dl dd a {
  margin-top: 0;
  font-size: 16px;
  color: #0E2850 !important;
  width: 100%;
  text-align: left;
  margin-left: 60px;
  text-decoration: none;
  transition: 0.15s;
}
@media screen and (max-width: 767px) {
  .section1 dl dd a {
    margin-left: initial;
  }
}
.section1 dl dd a span {
  position: relative;
  display: inline;
  transition: background 0.15s;
  text-decoration: none;
  padding-bottom: 0.1em;
  background: linear-gradient(#0E2850, #0E2850) 0 100%/0 2px no-repeat;
  background-size: 100% 1px;
}
.section1 dl dd a:hover span {
  transition: background 0.15s;
  background-size: 100% 0px;
}
.section1 dl dd .arrow {
  position: relative;
  display: inline-block;
  padding: 0 50px 0 0;
  color: #000;
  vertical-align: middle;
}
.section1 dl dd .arrow::before,
.section1 dl dd .arrow::after {
  position: absolute;
  top: 0;
  bottom: 0 !important;
  right: 16px !important;
  left: initial !important;
  margin: auto;
  content: "";
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .section1 dl dd .arrow::before,
.section1 dl dd .arrow::after {
    right: 10px !important;
  }
}
.section1 dl dd .arrow_circle_right::before {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #0E2850;
}
.section1 dl dd .arrow_circle_right::after {
  right: 24px !important;
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}
@media screen and (max-width: 767px) {
  .section1 dl dd .arrow_circle_right::after {
    right: 18px !important;
  }
}

.section2 {
  margin: 0;
  background-color: #E6E9ED;
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .section2 {
    padding: 50px 20px 100px;
  }
}
.section2 h2 {
  font-size: 50px;
}
@media screen and (max-width: 767px) {
  .section2 h2 {
    font-size: 40px;
  }
}
.section2 p {
  color: #666;
  font-size: 18px;
  letter-spacing: 1px;
  font-weight: 600;
}
.section2 .line {
  border-bottom: 2px solid #CDCDCD;
  width: 30px;
  margin: 22px auto 0;
}
@media screen and (max-width: 767px) {
  .section2 .line {
    margin-top: 20px;
  }
}
.section2 .gold {
  color: #946525;
}

.section3 {
  margin: 0;
  background-color: #F2F4F6;
  padding: 100px 40px 0;
}
@media screen and (max-width: 767px) {
  .section3 {
    padding: 50px 20px 100px;
  }
}
.section3 p {
  font-size: 18px;
  line-height: 25px;
  color: #666;
  letter-spacing: 1px;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .section3 p {
    margin-top: 12px;
  }
}
.section3 h2 {
  font-size: 50px;
}
@media screen and (max-width: 767px) {
  .section3 h2 {
    font-size: 40px;
  }
}
.section3 .gold {
  color: #946525;
}
.section3 .line {
  border-bottom: 2px solid #CDCDCD;
  width: 30px;
  margin: 22px auto 0;
}
@media screen and (max-width: 767px) {
  .section3 .line {
    margin-top: 30px;
  }
}
.section3 .text {
  font-size: 16px;
  text-align: left;
  width: 1160px;
  margin: 80px auto 0;
  padding: 0 20px;
  line-height: 2.2;
  font-weight: 500;
}
@media screen and (max-width: 1280px) {
  .section3 .text {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .section3 .text {
    width: 100%;
    margin-top: 40px;
    line-height: 1.8;
  }
}

/***************** ボタン４列 */
.makerlist {
  display: flex;
  flex-wrap: wrap;
  width: 1160px;
  margin: 0 auto;
  padding-bottom: 70px;
  margin-top: 50px;
}
@media screen and (max-width: 1280px) {
  .makerlist {
    width: 100%;
    padding: 0 0 70px;
  }
}
@media screen and (max-width: 767px) {
  .makerlist {
    margin-top: 40px;
    padding: initial;
  }
}

.makerlist li {
  width: 25%;
  padding: 20px;
  box-sizing: border-box;
  overflow: hidden;
}
@media screen and (max-width: 1280px) {
  .makerlist li {
    width: 33.3333333333%;
  }
}

.makerlist li figure {
  margin: 0;
  width: 260px;
  height: 88px;
  background: #FFF;
}
@media screen and (max-width: 1280px) {
  .makerlist li figure {
    width: 100%;
    height: 100%;
  }
}

.makerlist li img {
  max-width: 100%;
  /*画像のはみだしを防ぐ*/
  height: auto;
  /*画像の縦横比を維持 */
  padding: 4px 10px;
}

@media screen and (max-width: 767px) {
  .makerlist li {
    width: 50%;
    padding: 10px;
  }
  .makerlist li figure {
    width: 100%;
    height: auto;
  }
}
/***************** ボタン拡大 */
figure img {
  transform: scale(1);
  transition: 0.3s ease-in-out;
}

figure:hover img {
  transform: scale(1.05);
}

/*------------------------------------------------------------------------------
  ボタン素材
------------------------------------------------------------------------------*/
/*基本シンプルボタン*/
.button {
  color: #fff;
  display: inline-block;
  width: 400px;
  height: 80px;
  text-align: center;
  text-decoration: none;
  outline: none;
  background-color: #0E2850;
  border: 1px solid #0E2850;
  color: #fff;
  line-height: 80px;
  font-weight: 500;
  text-decoration: none;
}

@media screen and (max-width: 767px) {
  .button {
    width: 90%;
    height: auto;
  }
}
.button:hover {
  background-color: #fff;
  border-color: #0E2850;
  color: #0E2850;
  text-decoration: none;
}

.button::before,
.button::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: "";
}

.button::after {
  bottom: 0 !important;
}

.button,
.button::before,
.button::after {
  box-sizing: border-box;
  transition: all 0.3s;
}

/*リンク画像拡大ボタン*/
.hover01 {
  width: 260px;
  height: 88px;
  margin: 0;
  padding: 0;
  background-color: #F2F4F6;
  overflow: hidden;
}

.hover01:hover + span {
  bottom: -36px;
  opacity: 1;
}

.hover01 img {
  transform: scale(1);
  transition: 0.3s ease-in-out;
}

.hover01:hover img {
  transform: scale(1.1);
}

/*------------------------------------------------------------------------------
  タブ切替
------------------------------------------------------------------------------*/
/*タブ切り替え全体のスタイル*/
.tabs {
  background-color: #fff;
  /*box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);*/
  width: 1280px;
  margin: 50px auto 0;
}
@media screen and (max-width: 1280px) {
  .tabs {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .tabs {
    margin: 50px 0 0;
  }
}

/*タブのスタイル*/
.tab_item {
  width: 50%;
  height: 100px;
  background-color: #7A889E;
  line-height: 100px;
  font-size: 24px;
  text-align: center;
  color: #FFF;
  display: block;
  float: left;
  text-align: center;
  font-weight: bold;
  transition: all 0.2s;
}
.tab_item .product {
  width: 210px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1280px) {
  .tab_item .product {
    display: block;
    width: initial;
    width: 100%;
    text-align: center;
  }
}
.tab_item .product .first {
  font-size: 24px;
  letter-spacing: 1px;
}
@media screen and (max-width: 767px) {
  .tab_item .product .first {
    font-size: 20px;
    margin-left: 14px;
  }
}
@media screen and (max-width: 640px) {
  .tab_item .product .first {
    font-size: 18px;
  }
}
@media screen and (max-width: 480px) {
  .tab_item .product .first {
    margin-left: 14px;
  }
}
.tab_item .product .second {
  font-size: 16px;
}
@media screen and (max-width: 1280px) {
  .tab_item .product .second {
    display: none;
  }
}
.tab_item .product .third {
  font-size: 16px;
  letter-spacing: 1px;
}
@media screen and (max-width: 1280px) {
  .tab_item .product .third {
    display: none;
  }
}
.tab_item .solution {
  width: 344px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1280px) {
  .tab_item .solution {
    display: block;
    width: initial;
    width: 100%;
    text-align: center;
  }
}
.tab_item .solution .first {
  font-size: 24px;
  letter-spacing: 1px;
}
@media screen and (max-width: 767px) {
  .tab_item .solution .first {
    font-size: 20px;
    margin-left: 14px;
  }
}
@media screen and (max-width: 640px) {
  .tab_item .solution .first {
    font-size: 18px;
  }
}
@media screen and (max-width: 480px) {
  .tab_item .solution .first {
    font-size: 16px;
    margin-left: 22px;
  }
}
.tab_item .solution .second {
  font-size: 16px;
}
@media screen and (max-width: 1280px) {
  .tab_item .solution .second {
    display: none;
  }
}
.tab_item .solution .third {
  font-size: 16px;
  letter-spacing: 1px;
}
@media screen and (max-width: 1280px) {
  .tab_item .solution .third {
    display: none;
  }
}

.tab_item.arrow {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  text-decoration: none;
  font-size: 15px;
}

.tab_item.arrow::before,
.tab_item.arrow::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
}

.tab_item.circle_arrow::before {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  left: 26%;
}
@media screen and (max-width: 640px) {
  .tab_item.circle_arrow::before {
    width: 14px;
    height: 14px;
  }
}

.tab_item.circle_arrow::after {
  left: calc(26% + 6px);
  width: 6px;
  height: 6px;
  border-top: 2px solid #7A889E;
  border-right: 2px solid #7A889E;
  transform: rotate(45deg);
}
@media screen and (max-width: 640px) {
  .tab_item.circle_arrow::after {
    left: calc(26% + 3px);
  }
}

.tab_item.circle_arrow.solution_tab::before {
  left: 16%;
}
@media screen and (max-width: 640px) {
  .tab_item.circle_arrow.solution_tab::before {
    width: 14px;
    height: 14px;
    left: calc(16% - 10px);
  }
}

.tab_item.circle_arrow.solution_tab::after {
  left: calc(16% + 6px);
}
@media screen and (max-width: 640px) {
  .tab_item.circle_arrow.solution_tab::after {
    left: calc(16% + 4px - 11px);
  }
}

@media screen and (max-width: 767px) {
  .tab_item {
    font-size: 15px;
    height: 70px;
    line-height: 70px;
  }
}
.tab_item img {
  display: flex;
  align-items: center;
  margin: 0 auto;
}

.tab_item:hover {
  /*  opacity: 0.75;*/
  background-color: #0E2850;
}

/*ラジオボタンを全て消す*/
input[name=tab_item] {
  display: none;
}

/*タブ切り替えの中身のスタイル*/
.tab_content {
  display: none;
  padding: 50px 60px 0;
  clear: both;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .tab_content {
    padding: 50px 20px 20px;
  }
}
.tab_content ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.tab_content ul li {
  width: 30%;
  margin-bottom: 56px;
}
@media screen and (max-width: 767px) {
  .tab_content ul li {
    width: 47%;
    margin-bottom: 30px;
  }
}
.tab_content ul li a {
  color: #0E2850;
  text-decoration: none;
  transition: 0.3s;
}
.tab_content ul li a p {
  margin-top: 18px;
  letter-spacing: 1px;
  display: initial;
}
@media screen and (max-width: 767px) {
  .tab_content ul li a p {
    margin-top: 10px;
    font-size: 16px;
  }
}
.tab_content ul li a:hover {
  opacity: 0.7;
  transition: 0.3s;
}

/*選択されているタブのコンテンツのみを表示*/
#all:checked ~ #all_content,
#programming:checked ~ #programming_content,
#design:checked ~ #design_content {
  display: block;
}

/*選択されているタブのスタイルを変える*/
.tabs input:checked + .tab_item {
  background-color: #FFF;
  color: #0E2850;
}

/*選択されているタブのスタイルを変える*/
.tabs input:checked + .tab_item.circle_arrow::before {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #179ACC;
  left: 26%;
}
@media screen and (max-width: 640px) {
  .tabs input:checked + .tab_item.circle_arrow::before {
    width: 14px;
    height: 14px;
  }
}

.tabs input:checked + .tab_item.circle_arrow::after {
  left: calc(26% + 7px);
  width: 6px;
  height: 6px;
  bottom: 2px;
  border-bottom: 2px solid #fff;
  border-top: initial;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}
@media screen and (max-width: 640px) {
  .tabs input:checked + .tab_item.circle_arrow::after {
    left: calc(26% + 4px);
  }
}

.tabs input:checked + .tab_item.circle_arrow.solution_tab::before {
  left: 16%;
}
@media screen and (max-width: 640px) {
  .tabs input:checked + .tab_item.circle_arrow.solution_tab::before {
    left: calc(16% - 10px);
  }
}

.tabs input:checked + .tab_item.circle_arrow.solution_tab::after {
  left: calc(16% + 7px);
  border-top: initial;
}
@media screen and (max-width: 640px) {
  .tabs input:checked + .tab_item.circle_arrow.solution_tab::after {
    left: calc(16% + 4px - 10px);
  }
}

/*　青#0E2850 　   */
/*------------------------------------------------------------------------------
  基本CSS
------------------------------------------------------------------------------*/
body {
  margin-left: 0px;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  color: #0E2850;
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
}

/*a:link { color: #0E2850;}
a:visited { color: #0E2850; }
a:active { color: #0E2850; }
a:hover { text-decoration: none;}*/
/* 半透明:opacity: 0.5; */
/********** 配置色々 **********/
.mt0 {
  margin-top: 0px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.mt60 {
  margin-top: 60px !important;
}

.mt70 {
  margin-top: 70px !important;
}

.mt80 {
  margin-top: 80px !important;
}

.mt90 {
  margin-top: 90px !important;
}

.mt100 {
  margin-top: 100px !important;
}

.mb0 {
  margin-bottom: 0px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}

.mb70 {
  margin-bottom: 70px !important;
}

.mb80 {
  margin-bottom: 80px !important;
}

.mb90 {
  margin-bottom: 90px !important;
}

.mb100 {
  margin-bottom: 100px !important;
}

.alC {
  text-align: center;
}

.alL {
  text-align: left;
}

.alR {
  text-align: right;
}

/*パンくず ---------------------------------*/
.pan {
  width: 1200px;
  height: 20px;
  font-size: 12px;
  padding-left: 10px;
  display: flex;
  align-items: center;
  margin: 30px auto;
}

.pan img {
  margin: 0;
}

.pan a:link {
  color: #0E2850;
}

.pan a:visited {
  color: #0E2850;
}

.pan a:active {
  color: #0E2850;
}

@media screen and (max-width: 767px) {
  .pan {
    width: 100%;
    height: 20px;
    font-size: 12px;
    padding-left: 10px;
    display: flex;
    align-items: center;
    margin: 20px auto;
  }
}
/*ＰＣ・スマホ表示 ---------------------------------*/
.pc_only {
  display: block;
  text-align: center;
  margin: 0 auto;
}

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

@media screen and (max-width: 767px) {
  .sp_only {
    display: block !important;
    width: 100%;
  }
  .sp_only p img {
    width: 100%;
  }
}
/********** ページＴＯＰへ **********/
#page_top {
  width: 50px;
  height: 50px;
  position: fixed;
  right: 30px;
  bottom: 30px;
  background: #0E2850;
  border-radius: 50%;
  z-index: 999;
  opacity: 0.9;
}

#page_top a {
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  text-decoration: none;
}

#page_top a::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f106";
  font-size: 25px;
  color: #fff;
  position: absolute;
  width: 25px;
  height: 25px;
  top: -5px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}

@media screen and (max-width: 767px) {
  #page_top {
    right: 20px;
    bottom: 100px;
  }
}
/*------------------------------------------------------------------------------
  下層ページ
------------------------------------------------------------------------------*/
.titlebar {
  width: 100%;
  height: 150px;
  color: #fff;
  font-size: 2em;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #0E2850;
  position: relative;
}

@media screen and (max-width: 767px) {
  .titlebar {
    margin: 0 auto;
    color: #fff;
    font-size: 1em;
  }
}
.page_wrap {
  margin: 0 auto;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .page_wrap img {
    width: 100%;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .chat-text-right {
    text-align: left;
  }
}
.header_title_box {
  padding: 112px 50px;
  border-bottom: 1px solid #E8E8E8;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #0E2850;
}
@media screen and (max-width: 767px) {
  .header_title_box {
    padding: 132px 50px 86px;
  }
}
.header_title_box .header_title {
  font-size: 30px;
  text-align: center;
  letter-spacing: 6px;
  line-height: 1;
  color: white;
  font-weight: 600;
}
.header_title_box .sub_header_title {
  font-size: 14px;
  text-align: center;
  letter-spacing: 3px;
  line-height: 2;
  color: #7F7F80;
  margin: 0;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}

.breadcrumb_rail {
  background-color: #F0F0F0;
  border-bottom: 1px solid #CDCDCD;
}
.breadcrumb_rail ul {
  margin: 0 auto;
  padding: 16px 50px;
  width: 1280px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1280px) {
  .breadcrumb_rail ul {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .breadcrumb_rail ul {
    padding: 16px 20px;
  }
}
.breadcrumb_rail ul li {
  margin-right: 10px;
  color: #000000;
  font-size: 12px;
}
@media screen and (max-width: 767px) {
  .breadcrumb_rail ul li {
    margin-right: 6px;
  }
}
.breadcrumb_rail ul li a {
  color: #000000;
  font-size: 12px;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}
.breadcrumb_rail ul li:nth-child(n) {
  display: flex;
  align-items: center; /* 垂直中心 */
  justify-content: center; /* 水平中心 */
}
.breadcrumb_rail ul li:nth-child(n+2)::before {
  border-top: 1px solid;
  width: 10px; /* 線の長さ */
  color: black;
  margin-right: 10px;
}

.company_block {
  width: 1280px;
  margin: 0 auto;
  padding: 90px 60px 230px;
}
@media screen and (max-width: 1280px) {
  .company_block {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .company_block {
    padding: 40px 20px 140px;
  }
}
.company_block .link_button {
  margin-top: 54px;
}
.company_block .link_button .link {
  display: inline-block;
  width: 400px;
  height: 80px;
  text-align: center;
  text-decoration: none;
  outline: none;
  border: 1px solid #0e2850;
  line-height: 80px;
  font-weight: 500;
  color: #0e2850;
}
@media screen and (max-width: 767px) {
  .company_block .link_button .link {
    width: 100%;
  }
}
.company_block .link_button .link:hover {
  background-color: #0e2850;
  border-color: #0e2850;
  color: #fff;
}
.company_block .link_button .link::before,
.company_block .link_button .link::after {
  position: absolute;
  z-index: 0;
  display: block;
  content: "";
}
.company_block .link_button .link,
.company_block .link_button .link::before,
.company_block .link_button .link::after {
  box-sizing: border-box;
  transition: all 0.3s;
}
.company_block .link_button .arrow {
  position: relative;
  display: inline-block;
  color: #0e2850;
  vertical-align: middle;
  text-decoration: none;
}
.company_block .link_button .arrow::before,
.company_block .link_button .arrow::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
}
.company_block .link_button .link_arrow::before {
  right: 30px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #0e2850;
  border-right: 2px solid #0e2850;
  transform: rotate(45deg);
}
.company_block .link_button .link_arrow:hover:before {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}
.company_block p {
  color: #0e2850;
}
.company_block h3 {
  color: #0e2850;
  font-size: 26px;
  letter-spacing: 1px;
}
@media screen and (max-width: 767px) {
  .company_block h3 {
    font-size: 24px;
  }
}
.company_block .hello .line {
  border-bottom: 2px solid #179acc;
  width: 30px;
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .company_block .hello .line {
    margin-top: 30px;
  }
}
.company_block .hello .hello_box {
  display: flex;
  justify-content: space-between;
  margin-top: 70px;
}
@media screen and (max-width: 767px) {
  .company_block .hello .hello_box {
    display: block;
    margin-top: 30px;
  }
}
.company_block .hello .hello_box .left {
  width: 43.104%;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .company_block .hello .hello_box .left {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .company_block .hello .hello_box .left img {
    width: 100%;
  }
}
.company_block .hello .hello_box .right {
  width: 100%;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .company_block .hello .hello_box .right {
    width: 100%;
    margin-top: 26px;
  }
}
@media screen and (max-width: 767px) {
  .company_block .hello .hello_box .right {
    font-size: 16px;
  }
}
.company_block .hello .hello_box .right .description {
  line-height: 35px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .company_block .hello .hello_box .right .description {
    line-height: 36px;
  }
}
.company_block .hello .hello_box .right_text1 {
  margin-top: 66px;
}
@media screen and (max-width: 767px) {
  .company_block .hello .hello_box .right_text1 {
    margin-top: 12px;
  }
}
.company_block .hello .hello_box .right_text2 {
  margin-top: 16px;
}
@media screen and (max-width: 767px) {
  .company_block .hello .hello_box .right_text2 {
    margin-top: 2px;
  }
}
.company_block .hello .hello_box .right_text3 {
  width: 131px;
  margin-top: 22px;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .company_block .hello .hello_box .right_text3 {
    margin-top: 12px;
  }
}
.company_block .hello .company_overview {
  margin-top: 166px;
}
@media screen and (max-width: 767px) {
  .company_block .hello .company_overview {
    margin-top: 140px;
  }
}
.company_block .hello .company_overview .company_overview_box {
  margin-top: 67px;
}
@media screen and (max-width: 767px) {
  .company_block .hello .company_overview .company_overview_box {
    margin-top: 40px;
  }
}
.company_block .hello .company_overview .company_overview_box .company_overview_box_inner {
  display: flex;
  letter-spacing: 1px;
}
@media screen and (max-width: 767px) {
  .company_block .hello .company_overview .company_overview_box .company_overview_box_inner {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .company_block .hello .company_overview .company_overview_box .company_overview_box_inner {
    margin: 0 calc(50% - 50vw);
    width: 100vw;
  }
}
.company_block .hello .company_overview .company_overview_box .company_overview_box_inner .first {
  padding: 18px 20px;
  width: 416px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .company_block .hello .company_overview .company_overview_box .company_overview_box_inner .first {
    padding: 18px 20px 0px 20px;
  }
}
@media screen and (max-width: 767px) {
  .company_block .hello .company_overview .company_overview_box .company_overview_box_inner .first {
    width: 100%;
  }
}
.company_block .hello .company_overview .company_overview_box .company_overview_box_inner .second {
  padding: 18px 20px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .company_block .hello .company_overview .company_overview_box .company_overview_box_inner .second {
    padding: 6px 20px 18px 20px;
  }
}
.company_block .hello .company_overview .company_overview_box .company_overview_box_inner:nth-child(odd) {
  background-color: #f0f0f0;
}
.company_block .hello .corporate_history {
  margin-top: 206px;
}
@media screen and (max-width: 767px) {
  .company_block .hello .corporate_history {
    margin-top: 140px;
  }
}
.company_block .hello .corporate_history .chronology {
  margin: 0 auto;
  width: 860px;
  margin-top: 76px;
}
.company_block .hello .corporate_history .chronology p {
  font-weight: 500;
}
@media screen and (max-width: 860px) {
  .company_block .hello .corporate_history .chronology {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .company_block .hello .corporate_history .chronology {
    margin-top: 70px;
  }
}
.company_block .hello .corporate_history .chronology dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.company_block .hello .corporate_history .chronology dl dt {
  text-align: left;
  font-size: 16px;
  width: 178px;
  padding: 0.5em 1em 0.5em 0.5em;
  position: relative;
  color: #666666;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .company_block .hello .corporate_history .chronology dl dt {
    width: 27.47%;
  }
}
@media screen and (max-width: 500px) {
  .company_block .hello .corporate_history .chronology dl dt {
    width: 130px;
  }
}
.company_block .hello .corporate_history .chronology dl dt::after {
  content: "●";
  position: absolute;
  right: -0.55em;
  top: 10px;
  font-size: 11px;
  color: #179acc;
}
.company_block .hello .corporate_history .chronology dl dd {
  width: calc(100% - 178px);
  padding: 0.5em 60px 3em;
  border-left: 2px solid #f0f0f0;
}
@media screen and (max-width: 767px) {
  .company_block .hello .corporate_history .chronology dl dd {
    width: 72.53%;
  }
}
@media screen and (max-width: 500px) {
  .company_block .hello .corporate_history .chronology dl dd {
    width: calc(100% - 130px);
  }
}
@media screen and (max-width: 500px) {
  .company_block .hello .corporate_history .chronology dl dd {
    padding: 0.5em 0px 3em 20px;
  }
}
.company_block .hello .corporate_history .chronology dl dd h2 {
  font-size: 16px;
  font-weight: bold;
  margin: 0 0 5px;
}

.contact_block {
  width: 1280px;
  margin: 0 auto;
  padding: 90px 60px 230px;
}
@media screen and (max-width: 1280px) {
  .contact_block {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .contact_block {
    padding: 40px 23px 140px;
  }
}
.contact_block p {
  color: #0e2850;
}
.contact_block h3 {
  color: #0e2850;
  font-size: 26px;
  letter-spacing: 1px;
}
@media screen and (max-width: 767px) {
  .contact_block h3 {
    font-size: 24px;
  }
}
.contact_block .border-top,
.contact_block .border-bottom {
  border-color: #E2E2E2 !important;
}
.contact_block .contack_checkbox {
  padding: 18px 0px 18px 13px;
}
.contact_block .contact_overview {
  margin-top: 56px;
}
@media screen and (max-width: 767px) {
  .contact_block .contact_overview {
    margin-top: 27px;
  }
}
.contact_block .contact_overview .contact_overview_box .required_description {
  font-family: "游ゴシック体", "游ゴシック", YuGothic, "Yu Gothic", sans-serif;
}
.contact_block .contact_overview .contact_overview_box .contact_overview_box_inner {
  display: flex;
  letter-spacing: 1px;
}
@media screen and (max-width: 767px) {
  .contact_block .contact_overview .contact_overview_box .contact_overview_box_inner {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .contact_block .contact_overview .contact_overview_box .contact_overview_box_inner {
    margin: 0 calc(50% - 50vw);
    width: 100vw;
  }
}
.contact_block .contact_overview .contact_overview_box .contact_overview_box_inner .first {
  padding: 18px 12px;
  line-height: 1.2;
  width: 340px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .contact_block .contact_overview .contact_overview_box .contact_overview_box_inner .first {
    padding: 25px 12px 0px 25px;
  }
}
@media screen and (max-width: 767px) {
  .contact_block .contact_overview .contact_overview_box .contact_overview_box_inner .first {
    width: 100%;
  }
}
.contact_block .contact_overview .contact_overview_box .contact_overview_box_inner .second {
  padding: 18px 0 18px 20px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .contact_block .contact_overview .contact_overview_box .contact_overview_box_inner .second {
    padding: 13px 25px 29px 25px;
  }
}
.contact_block .contact_overview .contact_overview_box .contact_overview_box_inner .second input:not([type=submit]) {
  height: 60px;
  width: 100%;
  max-width: 800px;
}
.contact_block .contact_overview .contact_overview_box .contact_overview_box_inner .second input:not([type=submit]),
.contact_block .contact_overview .contact_overview_box .contact_overview_box_inner .second textarea {
  background-color: #ececec;
}
.contact_block .contact_overview .contact_overview_box .contact_overview_box_inner .second input:not([type=submit]):focus-visible,
.contact_block .contact_overview .contact_overview_box .contact_overview_box_inner .second textarea:focus-visible {
  outline-color: #0e2850;
}
@media screen and (max-width: 767px) {
  .contact_block .contact_overview .contact_overview_box .contact_overview_box_inner .second input:not([type=submit]),
.contact_block .contact_overview .contact_overview_box .contact_overview_box_inner .second textarea {
    max-height: 130px;
  }
}
.contact_block .contact_overview .contact_overview_box .link {
  text-decoration: underline;
  color: #0e2850;
}
.contact_block .contact_overview .contact_overview_box .link:hover {
  text-decoration: none;
  opacity: 0.7;
}
.contact_block .contact_overview .contact_overview_box .form-bottom {
  font-family: "游ゴシック体", "游ゴシック", YuGothic, "Yu Gothic", sans-serif;
}
.contact_block .contact_overview .contact_overview_box .form-bottom .button {
  font-size: 20px;
  font-family: "Noto Serif JP", "游明朝体", "YuMincho", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}
@media screen and (max-width: 767px) {
  .contact_block .contact_overview .contact_overview_box .form-bottom .button {
    width: 100%;
  }
}

.product_block {
  width: 1280px;
  margin: 0 auto;
  padding: 90px 60px 20px;
}
@media screen and (max-width: 1280px) {
  .product_block {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .product_block {
    padding: 40px 20px 140px;
  }
}
@media screen and (max-width: 767px) {
  .product_block p {
    font-size: 14px;
  }
}
.product_block .anchor {
  display: block;
  padding-top: 70px;
  margin-top: -70px;
}
.product_block .achieve {
  padding-top: 50px;
}
.product_block .achieve .tabs_2 {
  /*選択されているタブのコンテンツのみを表示*/
}
.product_block .achieve .tabs_2 .tab_item {
  width: calc(50% - 15px);
  background-color: #f0f0f0;
  color: #0e2850;
  letter-spacing: 0.2em;
}
.product_block .achieve .tabs_2 .tab_item:hover {
  opacity: 0.8;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .product_block .achieve .tabs_2 .tab_item {
    width: calc(50% - 5px);
  }
}
.product_block .achieve .tabs_2 .tab_item .tab_ttl_1 {
  letter-spacing: 0.2em;
  text-indent: 1.2em;
}
.product_block .achieve .tabs_2 .tab_item_pro {
  margin-right: 30px;
}
@media screen and (max-width: 767px) {
  .product_block .achieve .tabs_2 .tab_item_pro {
    margin-right: 10px;
  }
}
.product_block .achieve .tabs_2 input:checked + .tab_item {
  background-color: #0e2850;
  color: #fff;
  position: relative;
}
.product_block .achieve .tabs_2 input:checked + .tab_item:hover {
  cursor: default;
  opacity: 1;
}
.product_block .achieve .tabs_2 input:checked + .tab_item::after {
  display: block;
  position: absolute;
  content: "";
  left: 50%;
  transform: translateX(-50%);
  border-top: 10px solid #0e2850;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
}
@media screen and (max-width: 767px) {
  .product_block .achieve .tabs_2 input:checked + .tab_item::after {
    display: none;
  }
}
.product_block .achieve .tabs_2 .tab_ttl_line {
  display: none;
  position: relative;
  width: 100%;
  height: 8px;
  background-color: #0e2850;
}
@media screen and (max-width: 767px) {
  .product_block .achieve .tabs_2 .tab_ttl_line {
    display: inline-block;
  }
}
.product_block .achieve .tabs_2 #pro:checked ~ #pro_content,
.product_block .achieve .tabs_2 #sol:checked ~ #sol_content {
  display: block;
}
.product_block .achieve .tabs_2 .tab_content {
  padding: 50px 0 0 0;
}
@media screen and (max-width: 767px) {
  .product_block .achieve .tabs_2 .tab_content {
    padding: 0;
  }
}
@media screen and (max-width: 767px) {
  .product_block .achieve .tabs_2 .tab_content > ul {
    padding: 0 10px;
  }
}
.product_block .achieve .tabs_2 .tab_content > ul a:hover {
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .product_block .achieve .tabs_2 .tab_content > ul a {
    width: 46%;
  }
}
.product_block .achieve .tabs_2 .tab_content > ul a li {
  width: 220px;
  text-align: center;
  border-bottom: 2px solid #7a889e;
  font-weight: bold;
  margin: 0;
  padding: 30px;
  letter-spacing: 0.1em;
  color: #0e2850;
}
.product_block .achieve .tabs_2 .tab_content > ul a li:hover {
  border-bottom: 2px solid #179acc;
}
@media screen and (max-width: 767px) {
  .product_block .achieve .tabs_2 .tab_content > ul a li {
    width: 100%;
    padding: 20px 10px;
  }
}
@media screen and (max-width: 767px) {
  .product_block .achieve .tabs_2 .tab_content > ul a li p {
    font-size: 14px;
  }
}
.product_block .achieve .tabs_2 .tab_content > ul::after {
  width: 220px;
  display: block;
  content: "";
}
.product_block .achieve .tabs_2 .tab_content .achieve_list {
  padding: 160px 0;
}
@media screen and (max-width: 767px) {
  .product_block .achieve .tabs_2 .tab_content .achieve_list {
    padding: 80px 0;
  }
}
.product_block .achieve .tabs_2 .tab_content .achieve_list .achieve_block {
  margin-bottom: 90px;
}
@media screen and (max-width: 767px) {
  .product_block .achieve .tabs_2 .tab_content .achieve_list .achieve_block {
    margin-bottom: 50px;
  }
}
.product_block .achieve .tabs_2 .tab_content .achieve_list .achieve_block .achieve_ttl {
  border-bottom: solid 2px #0e2850;
  font-size: 24px;
  padding: 20px 5px;
  position: relative;
  letter-spacing: 0.1em;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .product_block .achieve .tabs_2 .tab_content .achieve_list .achieve_block .achieve_ttl {
    padding: 10px 5px;
  }
}
.product_block .achieve .tabs_2 .tab_content .achieve_list .achieve_block .achieve_ttl::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 2px;
  background-color: #179acc;
  left: 0px;
  bottom: -2px;
}
@media screen and (max-width: 767px) {
  .product_block .achieve .tabs_2 .tab_content .achieve_list .achieve_block .achieve_ttl::after {
    width: 50px;
  }
}
.product_block .achieve .tabs_2 .tab_content .achieve_list .achieve_block .archive_desc {
  padding: 50px 0;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .product_block .achieve .tabs_2 .tab_content .achieve_list .achieve_block .archive_desc {
    display: block;
    padding: 30px 0 0;
  }
}
.product_block .achieve .tabs_2 .tab_content .achieve_list .achieve_block .archive_desc .left.type1 {
  position: relative;
  width: 100%;
  max-width: 540px;
  height: 450px;
}
@media screen and (max-width: 1200px) {
  .product_block .achieve .tabs_2 .tab_content .achieve_list .achieve_block .archive_desc .left.type1 {
    height: 400px;
  }
}
@media screen and (max-width: 1100px) {
  .product_block .achieve .tabs_2 .tab_content .achieve_list .achieve_block .archive_desc .left.type1 {
    height: 350px;
  }
}
@media screen and (max-width: 1000px) {
  .product_block .achieve .tabs_2 .tab_content .achieve_list .achieve_block .archive_desc .left.type1 {
    height: 300px;
  }
}
@media screen and (max-width: 900px) {
  .product_block .achieve .tabs_2 .tab_content .achieve_list .achieve_block .archive_desc .left.type1 {
    height: 250px;
  }
}
@media screen and (max-width: 767px) {
  .product_block .achieve .tabs_2 .tab_content .achieve_list .achieve_block .archive_desc .left.type1 {
    max-width: initial;
    height: 620px;
  }
}
@media screen and (max-width: 700px) {
  .product_block .achieve .tabs_2 .tab_content .achieve_list .achieve_block .archive_desc .left.type1 {
    height: 550px;
  }
}
@media screen and (max-width: 650px) {
  .product_block .achieve .tabs_2 .tab_content .achieve_list .achieve_block .archive_desc .left.type1 {
    height: 500px;
  }
}
@media screen and (max-width: 600px) {
  .product_block .achieve .tabs_2 .tab_content .achieve_list .achieve_block .archive_desc .left.type1 {
    height: 450px;
  }
}
@media screen and (max-width: 550px) {
  .product_block .achieve .tabs_2 .tab_content .achieve_list .achieve_block .archive_desc .left.type1 {
    height: 400px;
  }
}
@media screen and (max-width: 500px) {
  .product_block .achieve .tabs_2 .tab_content .achieve_list .achieve_block .archive_desc .left.type1 {
    height: 350px;
  }
}
@media screen and (max-width: 450px) {
  .product_block .achieve .tabs_2 .tab_content .achieve_list .achieve_block .archive_desc .left.type1 {
    height: 340px;
  }
}
@media screen and (max-width: 415px) {
  .product_block .achieve .tabs_2 .tab_content .achieve_list .achieve_block .archive_desc .left.type1 {
    height: 320px;
  }
}
@media screen and (max-width: 400px) {
  .product_block .achieve .tabs_2 .tab_content .achieve_list .achieve_block .archive_desc .left.type1 {
    height: 280px;
  }
}
.product_block .achieve .tabs_2 .tab_content .achieve_list .achieve_block .archive_desc .left.type1 img:nth-child(1) {
  max-width: 70%;
}
.product_block .achieve .tabs_2 .tab_content .achieve_list .achieve_block .archive_desc .left.type1 img:nth-child(2) {
  max-width: 70%;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -10;
}
.product_block .achieve .tabs_2 .tab_content .achieve_list .achieve_block .archive_desc .left.type2 {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  max-width: 540px;
}
.product_block .achieve .tabs_2 .tab_content .achieve_list .achieve_block .archive_desc .left.type2 img:nth-child(1), .product_block .achieve .tabs_2 .tab_content .achieve_list .achieve_block .archive_desc .left.type2 img:nth-child(2), .product_block .achieve .tabs_2 .tab_content .achieve_list .achieve_block .archive_desc .left.type2 img:nth-child(4), .product_block .achieve .tabs_2 .tab_content .achieve_list .achieve_block .archive_desc .left.type2 img:nth-child(5) {
  width: 25%;
}
@media screen and (max-width: 885px) {
  .product_block .achieve .tabs_2 .tab_content .achieve_list .achieve_block .archive_desc .left.type2 img:nth-child(1), .product_block .achieve .tabs_2 .tab_content .achieve_list .achieve_block .archive_desc .left.type2 img:nth-child(2), .product_block .achieve .tabs_2 .tab_content .achieve_list .achieve_block .archive_desc .left.type2 img:nth-child(4), .product_block .achieve .tabs_2 .tab_content .achieve_list .achieve_block .archive_desc .left.type2 img:nth-child(5) {
    width: 50%;
  }
}
@media screen and (max-width: 767px) {
  .product_block .achieve .tabs_2 .tab_content .achieve_list .achieve_block .archive_desc .left.type2 img:nth-child(1), .product_block .achieve .tabs_2 .tab_content .achieve_list .achieve_block .archive_desc .left.type2 img:nth-child(2), .product_block .achieve .tabs_2 .tab_content .achieve_list .achieve_block .archive_desc .left.type2 img:nth-child(4), .product_block .achieve .tabs_2 .tab_content .achieve_list .achieve_block .archive_desc .left.type2 img:nth-child(5) {
    width: 25%;
  }
}
.product_block .achieve .tabs_2 .tab_content .achieve_list .achieve_block .archive_desc .left.type2 img:nth-child(3), .product_block .achieve .tabs_2 .tab_content .achieve_list .achieve_block .archive_desc .left.type2 img:nth-child(6) {
  width: 50%;
}
@media screen and (max-width: 885px) {
  .product_block .achieve .tabs_2 .tab_content .achieve_list .achieve_block .archive_desc .left.type2 img:nth-child(3), .product_block .achieve .tabs_2 .tab_content .achieve_list .achieve_block .archive_desc .left.type2 img:nth-child(6) {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .product_block .achieve .tabs_2 .tab_content .achieve_list .achieve_block .archive_desc .left.type2 img:nth-child(3), .product_block .achieve .tabs_2 .tab_content .achieve_list .achieve_block .archive_desc .left.type2 img:nth-child(6) {
    width: 50%;
  }
}
.product_block .achieve .tabs_2 .tab_content .achieve_list .achieve_block .archive_desc .right {
  margin-left: 60px;
  width: 100%;
  max-width: 600px;
}
@media screen and (max-width: 767px) {
  .product_block .achieve .tabs_2 .tab_content .achieve_list .achieve_block .archive_desc .right {
    margin-top: 40px;
    margin-left: 0px;
  }
}
.product_block .achieve .tabs_2 .tab_content .achieve_list .achieve_block .archive_desc .right .archive_txt_1 {
  font-size: 20px;
  padding: 10px 0;
  margin-bottom: 30px;
  border-bottom: 1px solid #cdcdcd;
}
@media screen and (max-width: 767px) {
  .product_block .achieve .tabs_2 .tab_content .achieve_list .achieve_block .archive_desc .right .archive_txt_1 {
    font-size: 16px;
    padding: 5px 0;
    margin-bottom: 15px;
  }
}
.product_block .achieve .tabs_2 .tab_content .achieve_list .achieve_block .archive_desc .right .archive_txt_2 {
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .product_block .achieve .tabs_2 .tab_content .achieve_list .achieve_block .archive_desc .right .archive_txt_2 {
    margin-bottom: 40px;
  }
}
.product_block .achieve .tabs_2 .tab_content .achieve_list .achieve_block .supply_corp .supply_corp_ttl {
  border-bottom: 1px solid #cdcdcd;
  padding-bottom: 10px;
  font-size: 24px;
}
@media screen and (max-width: 767px) {
  .product_block .achieve .tabs_2 .tab_content .achieve_list .achieve_block .supply_corp .supply_corp_ttl {
    font-size: 16px;
    padding: 5px 0;
  }
}
.product_block .achieve .tabs_2 .tab_content .achieve_list .achieve_block .supply_corp ul {
  display: flex;
  padding: 20px 0 50px;
}
@media screen and (max-width: 767px) {
  .product_block .achieve .tabs_2 .tab_content .achieve_list .achieve_block .supply_corp ul {
    padding: 20px 0 30px;
  }
}
.product_block .achieve .tabs_2 .tab_content .achieve_list .achieve_block .supply_corp ul li {
  width: 33.3333333333%;
  text-align: left;
  padding: 0 20px 0 0;
  margin: 0;
  border: 0px;
  font-size: 12px;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: normal;
  line-height: 2.2em;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .product_block .achieve .tabs_2 .tab_content .achieve_list .achieve_block .supply_corp ul li {
    width: 48%;
    padding: 0;
    line-height: 1.2em;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 767px) {
  .product_block .achieve .tabs_2 .tab_content .achieve_list .achieve_block .supply_corp ul li:nth-child(2n) {
    padding: 0;
  }
}
.product_block .achieve .tabs_2 .tab_content .achieve_list .achieve_block .supply_corp .supply_corp_link {
  text-align: right;
}
.product_block .achieve .tabs_2 .tab_content .achieve_list .achieve_block .supply_corp .supply_corp_link p {
  display: inline-block;
  text-decoration: none;
  color: #0e2850;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 12px;
  font-weight: bold;
  position: relative;
}
.product_block .achieve .tabs_2 .tab_content .achieve_list .achieve_block .supply_corp .supply_corp_link p::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 3px;
  display: inline;
  border-right: 6px solid transparent;
  border-bottom: 10.3923px solid #0e2850;
  border-left: 6px solid transparent;
}

.maker_block {
  width: 1280px;
  margin: 0 auto;
  padding: 90px 60px 150px;
}
@media screen and (max-width: 1280px) {
  .maker_block {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .maker_block {
    padding: 40px 20px 50px;
  }
}
.maker_block .maker_ttl {
  font-size: 24px;
  border-bottom: 2px solid #0e2850;
  position: relative;
  padding-bottom: 20px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .maker_block .maker_ttl {
    margin-bottom: 20px;
  }
}
.maker_block .maker_ttl::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -2px;
  background-color: #179acc;
  width: 100px;
  height: 2px;
}
@media screen and (max-width: 767px) {
  .maker_block .maker_ttl::after {
    width: 50px;
  }
}
.maker_block .gojuon .tabs_3 {
  /*選択されているタブのコンテンツのみを表示*/
}
.maker_block .gojuon .tabs_3 .tab_item {
  font-size: 16px;
  background-color: inherit;
  color: #0e2850;
  font-weight: normal;
  width: 10%;
  border-right: solid 2px #f0f0f0;
  height: auto;
  line-height: 1em;
  margin: 60px 0;
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .maker_block .gojuon .tabs_3 .tab_item {
    width: 16.6666666667%;
    margin: 10px 0;
    font-size: 12px;
    border-collapse: collapse;
  }
}
@media screen and (max-width: 767px) {
  .maker_block .gojuon .tabs_3 .tab_item.first {
    border-left: solid 2px #f0f0f0;
  }
}
.maker_block .gojuon .tabs_3 .tab_item.last {
  border-right: 0px;
}
@media screen and (max-width: 767px) {
  .maker_block .gojuon .tabs_3 .tab_item.last {
    border-right: solid 2px #f0f0f0;
  }
}
.maker_block .gojuon .tabs_3 .tab_item:hover {
  opacity: 0.8;
  cursor: pointer;
}
.maker_block .gojuon .tabs_3 .tab_item_en {
  font-size: 16px;
  background-color: inherit;
  color: #0e2850;
  font-weight: normal;
  width: 10%;
  border-right: solid 2px #f0f0f0;
  height: auto;
  line-height: 1em;
  margin: 25px 0;
  text-decoration: underline;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .maker_block .gojuon .tabs_3 .tab_item_en {
    width: 16.6666666667%;
    margin: 10px 0;
    font-size: 12px;
    border-collapse: collapse;
  }
}
@media screen and (max-width: 767px) {
  .maker_block .gojuon .tabs_3 .tab_item_en.first {
    border-left: solid 2px #f0f0f0;
  }
}
.maker_block .gojuon .tabs_3 .tab_item_en.last {
  border-right: 0px;
}
@media screen and (max-width: 767px) {
  .maker_block .gojuon .tabs_3 .tab_item_en.last {
    border-right: solid 2px #f0f0f0;
  }
}
.maker_block .gojuon .tabs_3 .tab_item_en:hover {
  opacity: 0.8;
  cursor: pointer;
}
.maker_block .gojuon .tabs_3 #maker_a:checked ~ #maker_a_content,
.maker_block .gojuon .tabs_3 #maker_b:checked ~ #maker_b_content,
.maker_block .gojuon .tabs_3 #maker_c:checked ~ #maker_c_content,
.maker_block .gojuon .tabs_3 #maker_d:checked ~ #maker_d_content,
.maker_block .gojuon .tabs_3 #maker_e:checked ~ #maker_e_content,
.maker_block .gojuon .tabs_3 #maker_f:checked ~ #maker_f_content,
.maker_block .gojuon .tabs_3 #maker_g:checked ~ #maker_g_content,
.maker_block .gojuon .tabs_3 #maker_h:checked ~ #maker_h_content,
.maker_block .gojuon .tabs_3 #maker_i:checked ~ #maker_i_content,
.maker_block .gojuon .tabs_3 #maker_j:checked ~ #maker_j_content,
.maker_block .gojuon .tabs_3 #maker_k:checked ~ #maker_k_content,
.maker_block .gojuon .tabs_3 #maker_n:checked ~ #maker_n_content,
.maker_block .gojuon .tabs_3 #maker_m:checked ~ #maker_m_content,
.maker_block .gojuon .tabs_3 #maker_l:checked ~ #maker_l_content,
.maker_block .gojuon .tabs_3 #maker_o:checked ~ #maker_o_content,
.maker_block .gojuon .tabs_3 #maker_p:checked ~ #maker_p_content,
.maker_block .gojuon .tabs_3 #maker_q:checked ~ #maker_q_content,
.maker_block .gojuon .tabs_3 #maker_r:checked ~ #maker_r_content,
.maker_block .gojuon .tabs_3 #maker_s:checked ~ #maker_s_content,
.maker_block .gojuon .tabs_3 #maker_t:checked ~ #maker_t_content,
.maker_block .gojuon .tabs_3 #maker_u:checked ~ #maker_u_content,
.maker_block .gojuon .tabs_3 #maker_v:checked ~ #maker_v_content,
.maker_block .gojuon .tabs_3 #maker_x:checked ~ #maker_x_content,
.maker_block .gojuon .tabs_3 #maker_y:checked ~ #maker_y_content,
.maker_block .gojuon .tabs_3 #maker_z:checked ~ #maker_z_content,
.maker_block .gojuon .tabs_3 #maker_w:checked ~ #maker_w_content {
  display: block;
}
.maker_block .gojuon .tabs_3 .tab_content {
  padding: 40px 0;
}
.maker_block .gojuon .tabs_3 .tab_content .tab_content_ttl {
  font-size: 24px;
  letter-spacing: 0.1em;
  padding: 10px 25px;
  background-color: #f0f0f0;
}
@media screen and (max-width: 767px) {
  .maker_block .gojuon .tabs_3 .tab_content .tab_content_ttl {
    font-size: 20px;
    padding: 8px 15px;
  }
}
.maker_block .gojuon .tabs_3 .tab_content .tab_content_ttl span {
  font-size: 30px;
}
@media screen and (max-width: 767px) {
  .maker_block .gojuon .tabs_3 .tab_content .tab_content_ttl span {
    font-size: 24px;
  }
}
.maker_block .gojuon .tabs_3 .tab_content ul {
  padding: 25px 10px;
  width: 100%;
}
.maker_block .gojuon .tabs_3 .tab_content ul::after {
  content: "";
  display: block;
  width: 30%;
}
.maker_block .gojuon .tabs_3 .tab_content ul li {
  padding: 20px 20px 20px 0;
  margin: 0;
  width: 30%;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}
@media screen and (max-width: 767px) {
  .maker_block .gojuon .tabs_3 .tab_content ul li {
    width: 100%;
    padding: 5px 0;
    font-size: 14px;
  }
}

.policy_block {
  width: 1280px;
  margin: 0 auto;
  padding: 90px 60px 50px;
}
@media screen and (max-width: 1280px) {
  .policy_block {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .policy_block {
    padding: 40px 20px 50px;
  }
}
.policy_block .principle h3 {
  font-size: 30px;
  letter-spacing: 0.1em;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .policy_block .principle h3 {
    font-size: 24px;
    padding: 15px 0;
  }
}
.policy_block .principle .line {
  border-bottom: 2px solid #179acc;
  width: 30px;
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .policy_block .principle .line {
    margin-top: 25px;
  }
}
.policy_block .principle .policy_ttl {
  font-size: 24px;
  line-height: 1.8em;
  padding: 70px 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .policy_block .principle .policy_ttl {
    font-size: 20px;
    padding-bottom: 35px;
  }
}
.policy_block .principle .policy_desc {
  font-size: 14px;
  line-height: 2.2em;
  padding-bottom: 70px;
}
.policy_block .principle .policy_list ul {
  counter-reset: number;
}
.policy_block .principle .policy_list ul li {
  padding: 35px 115px;
  position: relative;
  border-top: solid 1px #f0f0f0;
}
@media screen and (max-width: 767px) {
  .policy_block .principle .policy_list ul li {
    padding: 25px 0px 25px 35px;
  }
}
.policy_block .principle .policy_list ul li::before {
  position: absolute;
  left: 50px;
  counter-increment: number;
  content: counter(number) ".";
  color: #179acc;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .policy_block .principle .policy_list ul li::before {
    left: 2px;
    font-size: 20px;
  }
}
.policy_block .principle .policy_list ul li:last-child {
  border-bottom: solid 1px #f0f0f0;
}
.policy_block .principle .policy_list ul li .policy_text_1 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 25px;
}
.policy_block .principle .policy_list ul li .policy_text_2 {
  margin-bottom: 15px;
  line-height: 1.8em;
}
@media screen and (max-width: 767px) {
  .policy_block .principle .policy_list ul li .policy_text_2 {
    font-size: 14px;
  }
}
.policy_block .principle .policy_info {
  text-align: right;
  margin-top: 60px;
  padding: 0 50px;
  line-height: 1.8em;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .policy_block .principle .policy_info {
    margin-top: 30px;
    padding: 0;
  }
}

.division_block {
  width: 1280px;
  margin: 0 auto;
  padding: 90px 60px 140px;
}
@media screen and (max-width: 1280px) {
  .division_block {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .division_block {
    padding: 40px 20px 70px;
  }
}
.division_block .office .office_intro {
  margin-bottom: 120px;
}
@media screen and (max-width: 767px) {
  .division_block .office .office_intro {
    margin-bottom: 60px;
  }
}
.division_block .office .office_block {
  margin-bottom: 120px;
}
@media screen and (max-width: 767px) {
  .division_block .office .office_block {
    margin-bottom: 80px;
  }
}
.division_block .office .office_block .office_ttl {
  font-size: 26px;
  border-bottom: 2px solid #0e2850;
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 70px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .division_block .office .office_block .office_ttl {
    margin-bottom: 35px;
    padding-bottom: 5px;
  }
}
.division_block .office .office_block .office_ttl::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -2px;
  background-color: #179acc;
  width: 100px;
  height: 2px;
}
@media screen and (max-width: 767px) {
  .division_block .office .office_block .office_ttl::after {
    width: 50px;
  }
}
.division_block .office .office_block .office_text {
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  letter-spacing: 0.1em;
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .division_block .office .office_block .office_text {
    font-size: 14px;
    margin-bottom: 50px;
  }
}
.division_block .office .office_block .office_text span {
  font-size: 24px;
}
@media screen and (max-width: 767px) {
  .division_block .office .office_block .office_text span {
    font-size: 20px;
  }
}
.division_block .office .office_block .map {
  color: #0e2850;
}
.division_block .office .office_block .map p {
  margin-top: 28px;
  display: inline-block;
  text-decoration: underline;
}
.division_block .office .office_block .map i {
  padding-right: 10px;
}
.division_block .office .office_block .office_dept_list .office_dept {
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .division_block .office .office_block .office_dept_list .office_dept {
    margin-bottom: 40px;
  }
}
.division_block .office .office_block .office_dept_list .office_dept .dept_ttl {
  font-size: 24px;
  border-bottom: solid 1px #cdcdcd;
  padding-bottom: 10px;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .division_block .office .office_block .office_dept_list .office_dept .dept_ttl {
    font-size: 20px;
    padding-bottom: 5px;
    margin-bottom: 10px;
  }
}
.division_block .office .office_block .office_dept_list .office_dept .dept_text {
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .division_block .office .office_block .office_dept_list .office_dept .dept_text {
    font-size: 14px;
  }
}
.division_block .office .office_block .office_dept_list .office_dept .dept_text .caution {
  padding-top: 20px;
}
.division_block .office .office_block .main {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .division_block .office .office_block .main {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.division_block .office .office_block .main .left {
  width: 100%;
  max-width: 550px;
  margin-right: 110px;
}
@media screen and (max-width: 767px) {
  .division_block .office .office_block .main .left {
    order: 2;
    margin-right: 0px;
  }
}
@media screen and (max-width: 767px) {
  .division_block .office .office_block .main .right {
    width: 70%;
    order: 1;
    margin-bottom: 30px;
  }
}
.division_block .office .office_block .sales {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .division_block .office .office_block .sales {
    display: block;
  }
}
.division_block .office .office_block .sales .left {
  width: 100%;
  max-width: 550px;
  margin-right: 30px;
}
@media screen and (max-width: 767px) {
  .division_block .office .office_block .sales .left {
    margin-right: 0px;
  }
}
.division_block .office .office_block .sales .right {
  width: 100%;
  max-width: 550px;
  margin-left: 30px;
}
@media screen and (max-width: 767px) {
  .division_block .office .office_block .sales .right {
    margin-left: 0px;
  }
}

.whatsnew_block {
  width: 1280px;
  margin: 0 auto;
  padding: 90px 60px 140px;
}
@media screen and (max-width: 1280px) {
  .whatsnew_block {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .whatsnew_block {
    padding: 40px 20px 70px;
  }
}
.whatsnew_block h3 {
  font-size: 24px;
}
@media screen and (max-width: 767px) {
  .whatsnew_block h3 {
    font-size: 20px;
  }
}
.whatsnew_block .line {
  border-bottom: 2px solid #179acc;
  width: 30px;
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .whatsnew_block .line {
    margin-top: 30px;
  }
}
.whatsnew_block .news_block {
  margin-top: 75px;
}
@media screen and (max-width: 767px) {
  .whatsnew_block .news_block {
    margin-top: 50px;
  }
}
.whatsnew_block .news_block .news_topic {
  display: flex;
  align-items: center;
  background-color: #f0f0f0;
  padding: 20px 50px;
}
@media screen and (max-width: 767px) {
  .whatsnew_block .news_block .news_topic {
    flex-wrap: wrap;
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    padding: 30px 20px;
  }
}
.whatsnew_block .news_block .news_topic .news_date {
  color: #666666;
}
@media screen and (max-width: 767px) {
  .whatsnew_block .news_block .news_topic .news_date {
    font-size: 20px;
    font-weight: bold;
  }
}
.whatsnew_block .news_block .news_topic .news_tag {
  background-color: #179acc;
  color: #fff;
  font-size: 12px;
  padding: 1px 10px;
  margin-left: 45px;
}
@media screen and (max-width: 767px) {
  .whatsnew_block .news_block .news_topic .news_tag {
    font-size: 14px;
    padding: 0px 12px;
    margin-left: 25px;
  }
}
.whatsnew_block .news_block .news_topic .news_ttl {
  margin-left: 45px;
}
@media screen and (max-width: 767px) {
  .whatsnew_block .news_block .news_topic .news_ttl {
    width: 100%;
    margin-left: 0px;
    margin-top: 5px;
    font-size: 18px;
    font-weight: bold;
  }
}
.whatsnew_block .news_block .news_contents {
  padding: 25px 50px;
}
@media screen and (max-width: 767px) {
  .whatsnew_block .news_block .news_contents {
    padding: 15px 0px 30px;
    font-size: 12px;
    line-height: 1.8em;
  }
}
.whatsnew_block .news_block .news_contents .news_btn_list {
  display: flex;
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .whatsnew_block .news_block .news_contents .news_btn_list {
    width: 100%;
    justify-content: space-between;
    margin-top: 30px;
  }
}
@media screen and (max-width: 767px) {
  .whatsnew_block .news_block .news_contents a {
    width: 48%;
  }
}
.whatsnew_block .news_block .news_contents a .news_btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  justify-content: center;
  border: solid 1px #cdcdcd;
  width: 220px;
  padding: 20px 25px;
  color: #0e2850;
  margin-right: 15px;
  font-weight: bold;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .whatsnew_block .news_block .news_contents a .news_btn {
    width: 100%;
    margin: 0;
    padding: 10px 5px;
    font-weight: normal;
  }
}
.whatsnew_block .news_block .news_contents a .news_btn i {
  padding-right: 10px;
  font-size: 1.5em;
}
.whatsnew_block .news_block .news_contents a .news_btn i.fa-envelope {
  color: #179acc;
}
.whatsnew_block .news_block .news_contents a .news_btn i.fa-file-pdf {
  color: #f73831;
}
.whatsnew_block .news_block .news_contents a:hover {
  text-decoration: none;
}
.whatsnew_block .news_block .news_contents a:hover .news_btn {
  background-color: #0e2850;
  color: #fff;
}
.whatsnew_block .news_block .news_contents .news_link {
  margin-top: 35px;
}
@media screen and (max-width: 767px) {
  .whatsnew_block .news_block .news_contents .news_link {
    margin-top: 15px;
  }
}
.whatsnew_block .news_block .news_contents .news_link a {
  color: #0e2850;
  font-weight: bold;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .whatsnew_block .news_block .news_contents .news_link a {
    font-weight: normal;
    background: linear-gradient(90deg, #fff 0px, #fff 18px, #0e2850 18px, #0e2850 100%) 0 100%/0 2px no-repeat;
    background-size: 100% 1px;
  }
}
.whatsnew_block .news_block .news_contents .news_link a::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  left: 0;
  transition: 0.15s;
  background: linear-gradient(90deg, #fff 0px, #fff 20px, #0e2850 20px, #0e2850 100%) 0 100%/0 2px no-repeat;
  background-size: 100% 1px;
}
@media screen and (max-width: 767px) {
  .whatsnew_block .news_block .news_contents .news_link a::before {
    display: none;
  }
}
.whatsnew_block .news_block .news_contents .news_link a::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -2;
  left: 0;
  background: linear-gradient(90deg, #fff 0px, #fff 20px, #fff 20px, #fff 100%) 0 100%/0 2px no-repeat;
  background-size: 100% 1px;
}
@media screen and (max-width: 767px) {
  .whatsnew_block .news_block .news_contents .news_link a::after {
    display: none;
  }
}
.whatsnew_block .news_block .news_contents .news_link a:hover::before {
  opacity: 0;
}
.whatsnew_block .news_block .news_contents .news_link a i {
  padding-right: 5px;
}
.whatsnew_block .news_block .news_contents .news_img {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .whatsnew_block .news_block .news_contents .news_img {
    margin-top: 10px;
  }
}
.whatsnew_block .news_block .news_contents .news_img img {
  max-width: 140px;
  margin-right: 10px;
}
@media screen and (max-width: 767px) {
  .whatsnew_block .news_block .news_contents .news_img img {
    margin-top: 10px;
  }
}
.whatsnew_block .news_block .news_list_btn {
  text-align: center;
}
.whatsnew_block .news_block .news_list_btn a {
  color: #0e2850;
}
.whatsnew_block .news_block .news_list_btn a div {
  width: 400px;
  margin: 90px auto;
  border: 1px solid #0e2850;
  padding: 30px;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .whatsnew_block .news_block .news_list_btn a div {
    width: 100%;
    margin: 40px auto;
    padding: 20px;
  }
}
.whatsnew_block .news_block .news_list_btn a:hover {
  text-decoration: none;
}
.whatsnew_block .news_block .news_list_btn a:hover div {
  background-color: #0e2850;
  color: #fff;
}

.whatsnew2_block {
  width: 1280px;
  margin: 0 auto;
  padding: 90px 60px 230px;
}
@media screen and (max-width: 1280px) {
  .whatsnew2_block {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .whatsnew2_block {
    padding: 40px 20px 140px;
  }
}
.whatsnew2_block h3 {
  font-size: 24px;
}
@media screen and (max-width: 767px) {
  .whatsnew2_block h3 {
    font-size: 20px;
  }
}
.whatsnew2_block .line {
  border-bottom: 2px solid #179acc;
  width: 30px;
  margin-top: 50px;
  margin-bottom: 45px;
}
@media screen and (max-width: 767px) {
  .whatsnew2_block .line {
    margin-top: 30px;
    margin-bottom: 10px;
  }
}
.whatsnew2_block .news_list .news_item {
  border-bottom: solid 1px #cdcdcd;
  padding: 35px 5px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .whatsnew2_block .news_list .news_item {
    flex-wrap: wrap;
  }
}
.whatsnew2_block .news_list .news_item .news_date {
  color: #666666;
  width: 135px;
}
@media screen and (max-width: 767px) {
  .whatsnew2_block .news_list .news_item .news_date {
    font-size: 20px;
    width: 100px;
  }
}
.whatsnew2_block .news_list .news_item .news_tag {
  background-color: #179acc;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  padding: 2px 10px;
  margin-left: 0px;
}
@media screen and (max-width: 767px) {
  .whatsnew2_block .news_list .news_item .news_tag {
    font-size: 14px;
    padding: 0px 12px;
  }
}
.whatsnew2_block .news_list .news_item .news_ttl {
  margin-left: 60px;
  padding-right: 40px;
  width: 100%;
  color: #0e2850;
  text-decoration: none;
  position: relative;
}
@media screen and (max-width: 767px) {
  .whatsnew2_block .news_list .news_item .news_ttl {
    width: 100%;
    margin-left: 0px;
    margin-top: 5px;
    font-size: 18px;
  }
}
.whatsnew2_block .news_list .news_item .news_ttl::after {
  position: absolute;
  content: "\f138";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .whatsnew2_block .news_list .news_item .news_ttl::after {
    right: 0px;
  }
}
.whatsnew2_block .news_list .news_item .news_ttl p {
  display: inline;
  position: relative;
}
@media screen and (max-width: 767px) {
  .whatsnew2_block .news_list .news_item .news_ttl p {
    background: linear-gradient(90deg, #0e2850 0px, #0e2850 100%) 0 100%/0 2px no-repeat;
    background-size: 100% 1px;
  }
}
.whatsnew2_block .news_list .news_item .news_ttl p::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  left: 0;
  transition: 0.15s;
  background: linear-gradient(90deg, #0e2850 0px, #0e2850 100%) 0 100%/0 2px no-repeat;
  background-size: 100% 1px;
}
@media screen and (max-width: 767px) {
  .whatsnew2_block .news_list .news_item .news_ttl p::before {
    display: none;
  }
}
.whatsnew2_block .news_list .news_item .news_ttl p::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -2;
  left: 0;
  background: linear-gradient(90deg, #fff 0px, #fff 100%) 0 100%/0 2px no-repeat;
  background-size: 100% 1px;
}
@media screen and (max-width: 767px) {
  .whatsnew2_block .news_list .news_item .news_ttl p::after {
    display: none;
  }
}
.whatsnew2_block .news_list .news_item .news_ttl p:hover::before {
  opacity: 0;
}

.sitemap_block {
  width: 1280px;
  margin: 0 auto;
  padding: 90px 60px 140px;
}
@media screen and (max-width: 1280px) {
  .sitemap_block {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .sitemap_block {
    padding: 40px 20px 70px;
  }
}
.sitemap_block .sitemap {
  display: flex;
}
@media screen and (max-width: 767px) {
  .sitemap_block .sitemap {
    display: block;
  }
}
.sitemap_block .sitemap .map_item {
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  margin-bottom: 180px;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .sitemap_block .sitemap .map_item {
    margin-bottom: 70px;
  }
}
.sitemap_block .sitemap .map_item .main_cate {
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 35px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .sitemap_block .sitemap .map_item .main_cate {
    margin-bottom: 25px;
  }
}
.sitemap_block .sitemap .map_item .main_cate a {
  position: relative;
  text-decoration: none;
  color: #0e2850;
}
.sitemap_block .sitemap .map_item .main_cate a::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  left: 0;
  transition: all 0.15s;
  background: linear-gradient(90deg, #fff 0px, #fff 100%) 0 100%/0 2px no-repeat;
  background-size: 100% 1px;
}
@media screen and (max-width: 767px) {
  .sitemap_block .sitemap .map_item .main_cate a::before {
    display: none;
  }
}
.sitemap_block .sitemap .map_item .main_cate a::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -2;
  left: 0;
  background: linear-gradient(90deg, #0e2850 0px, #0e2850 100%) 0 100%/0 2px no-repeat;
  background-size: 100% 1px;
}
@media screen and (max-width: 767px) {
  .sitemap_block .sitemap .map_item .main_cate a::after {
    display: none;
  }
}
.sitemap_block .sitemap .map_item .main_cate a:hover::before {
  opacity: 0;
}
.sitemap_block .sitemap .map_item .main_cate i {
  font-size: 0.6em;
  padding-left: 5px;
}
.sitemap_block .sitemap .map_item .sub_cate ul li {
  position: relative;
  padding: 0 20px;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .sitemap_block .sitemap .map_item .sub_cate ul li {
    margin-bottom: 10px;
  }
}
.sitemap_block .sitemap .map_item .sub_cate ul li::before {
  position: absolute;
  left: 0;
  font-size: 0.9em;
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #179acc;
}
.sitemap_block .sitemap .map_item .sub_cate ul li a {
  position: relative;
  text-decoration: none;
  color: #0e2850;
}
.sitemap_block .sitemap .map_item .sub_cate ul li a::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  left: 0;
  transition: all 0.15s;
  background: linear-gradient(90deg, #fff 0px, #fff 100%) 0 100%/0 2px no-repeat;
  background-size: 100% 1px;
}
@media screen and (max-width: 767px) {
  .sitemap_block .sitemap .map_item .sub_cate ul li a::before {
    display: none;
  }
}
.sitemap_block .sitemap .map_item .sub_cate ul li a::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -2;
  left: 0;
  background: linear-gradient(90deg, #0e2850 0px, #0e2850 100%) 0 100%/0 2px no-repeat;
  background-size: 100% 1px;
}
@media screen and (max-width: 767px) {
  .sitemap_block .sitemap .map_item .sub_cate ul li a::after {
    display: none;
  }
}
.sitemap_block .sitemap .map_item .sub_cate ul li a:hover::before {
  opacity: 0;
}
.sitemap_block .sitemap .map_item .map_maker {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .sitemap_block .sitemap .map_item .map_maker {
    display: block;
  }
}
.sitemap_block .sitemap .left {
  width: 33.3333333333%;
}
@media screen and (max-width: 767px) {
  .sitemap_block .sitemap .left {
    width: 100%;
  }
}
.sitemap_block .sitemap .right {
  width: 66.6666666667%;
}
@media screen and (max-width: 767px) {
  .sitemap_block .sitemap .right {
    width: 100%;
  }
}

.recruit_block {
  width: 1280px;
  margin: 0 auto;
  padding: 90px 60px 230px;
  /*選択されているタブのコンテンツのみを表示*/
  /*選択されているタブのスタイルを変える*/
  /*選択されているタブのスタイルを変える*/
}
@media screen and (max-width: 1280px) {
  .recruit_block {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .recruit_block {
    padding: 40px 23px 140px;
  }
}
.recruit_block p {
  color: #0e2850;
}
.recruit_block h3 {
  color: #0e2850;
  font-size: 26px;
  letter-spacing: 1px;
}
@media screen and (max-width: 767px) {
  .recruit_block h3 {
    font-size: 24px;
  }
}
.recruit_block a img:hover {
  opacity: 0.6;
}
.recruit_block .border-top,
.recruit_block .border-bottom {
  border-color: #E2E2E2 !important;
}
.recruit_block #new:checked ~ #new_content,
.recruit_block #mid_career:checked ~ #mid_career_content {
  display: block;
}
.recruit_block .tabs input + .tab_item div {
  background-color: #f0f0f0;
  color: #0e2850;
  font-size: 24px;
}
@media screen and (max-width: 767px) {
  .recruit_block .tabs input + .tab_item div {
    font-size: 1rem;
  }
}
.recruit_block .tabs input:checked + .tab_item div {
  background-color: #0e2850;
  color: #f0f0f0;
}
.recruit_block .tabs input:checked + .tab_item.arrow::before {
  content: "";
  position: absolute;
  left: calc(50% - 10px);
  top: auto;
  bottom: -20px;
  border: solid transparent;
  border-top-width: 10px;
  border-bottom-width: 10px;
  border-left-width: 10px;
  border-right-width: 10px;
  border-color: rgba(0, 0, 255, 0);
  border-top-color: #0e2850;
}
@media screen and (max-width: 767px) {
  .recruit_block .tabs input:checked + .tab_item.arrow::before {
    width: calc(200% - 0.5rem);
    border: none;
    background-color: #0e2850;
    height: 8px;
    bottom: -8px;
  }
}
@media screen and (max-width: 767px) {
  .recruit_block .tabs input:checked + .tab_item.arrow[for=new]::before {
    left: 0.25rem;
  }
  .recruit_block .tabs input:checked + .tab_item.arrow[for=mid_career]::before {
    left: calc(-100% + 0.25rem);
  }
}
.recruit_block .recruit_ttl {
  font-size: 24px;
  border-bottom: 2px solid #0e2850;
  position: relative;
  padding-bottom: 20px;
  font-weight: 700;
}
.recruit_block .recruit_ttl::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 2px;
  background-color: #179acc;
  left: 0px;
  bottom: -2px;
}
@media screen and (max-width: 767px) {
  .recruit_block .recruit_ttl::after {
    width: 50px;
  }
}
.recruit_block .tab_content.new_content .new_text {
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .recruit_block .tab_content.new_content .new_text {
    font-size: 1rem;
  }
}
.recruit_block .tab_content.mid_career_content {
  padding-top: 50px;
}
@media screen and (max-width: 767px) {
  .recruit_block .tab_content.mid_career_content {
    padding-top: 30px;
  }
}
.recruit_block .tab_content.mid_career_content .title {
  font-size: 20px;
}
.recruit_block .tab_content.mid_career_content .title .border-bottom {
  border-width: 2px !important;
}
.recruit_block .tab_content.mid_career_content .title .border-bottom:first-child {
  border-color: #179ACC !important;
}
.recruit_block .tab_content.mid_career_content .title .border-bottom:last-child {
  border-color: #7A889E !important;
}
@media screen and (max-width: 767px) {
  .recruit_block .tab_content.mid_career_content .title {
    font-size: 1rem;
  }
}
.recruit_block .tab_content table {
  border-color: #cdcdcd;
  border-top: none;
}
.recruit_block .tab_content table td,
.recruit_block .tab_content table th {
  border-color: #cdcdcd;
}
@media screen and (max-width: 767px) {
  .recruit_block .tab_content table td,
.recruit_block .tab_content table th {
    border: none;
    padding-left: 1rem;
  }
}
.recruit_block .tab_content table th {
  background-color: #F0F0F0;
}
@media screen and (max-width: 767px) {
  .recruit_block .tab_content table th {
    border-top: 1px solid #cdcdcd;
    border-bottom: 1px solid #cdcdcd;
  }
}

/********************************/
.footer {
  width: 100%;
  background-color: #0E2850;
  padding: 0 0 80px;
}
.footer a {
  position: relative;
  display: inline-block;
  transition: 0.3s;
}
.footer a::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: "";
  width: 0;
  height: 1px;
  background-color: #fff;
  transition: 0.3s;
}
.footer a:hover::after {
  width: 100%;
}

.footer a:link {
  color: #fff;
}

.footer a:visited {
  color: #fff;
}

.footer a:active {
  color: #fff;
}

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

.footer_inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 30px;
}

.footer_left {
  margin: 0;
  float: left;
  padding-top: 10px;
}

.footer_right {
  margin: 0;
  float: right;
}

.copylight {
  padding: 20px 0;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: #fff;
}

.jqa {
  margin: 0 auto;
  padding: 0 20px;
}

.jqa img {
  width: 50px;
}

.footer_link {
  margin-bottom: 10px;
}

.footer_link ul li {
  float: left;
  padding: 0 20px;
  font-size: 12px;
}

.footer_link ul li:first-child {
  padding-left: 0;
}

.footer_link ul li + li {
  border-left: solid 1px #ddd;
}

@media screen and (max-width: 767px) {
  .footer {
    width: 100%;
    background-color: #0E2850;
    padding: 0;
  }
}
@media screen and (max-width: 767px) and (max-width: 571px) {
  .footer {
    text-align: center;
  }
}
@media screen and (max-width: 767px) and (max-width: 571px) {
  .footer .footer_link ul {
    float: initial;
    display: flex;
    justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .footer_inner {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .footer_left {
    margin: 0;
    padding: 10px 0;
    text-align: left;
  }
}
@media screen and (max-width: 767px) and (max-width: 571px) {
  .footer_left {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .footer_right {
    margin: 0;
    float: none;
  }
}
@media screen and (max-width: 767px) {
  .copylight {
    padding: 20px 0;
    font-size: 10px;
    letter-spacing: 0.1em;
    color: #fff;
  }
}
@media screen and (max-width: 767px) and (max-width: 571px) {
  .copylight {
    text-align: center;
  }
}/*# sourceMappingURL=style.css.map */