@charset "UTF-8";
/*------------------------------------------------------------
	Reset
------------------------------------------------------------*/
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, dialog, figure, footer, header,
nav, section,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  box-sizing: border-box;
}

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

html {
  font-size: 62.5%;
}

body {
  -webkit-text-size-adjust: 100%;
}

body, table,
input, textarea, select, option,
h1, h2, h3, h4, h5, h6 {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
}

table,
input, textarea, select, option {
  line-height: 1.1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

:focus {
  outline: 0;
}

ins {
  text-decoration: none;
}

del {
  text-decoration: line-through;
}

img {
  vertical-align: top;
}

a,
a img {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover,
a:hover img {
  opacity: 0.80;
  filter: alpha(opacity=80);
  -ms-filter: "alpha(opacity=80)";
}

img {
  max-width: 100%;
}

.sp-only {
  display: none;
}

@media only screen and (max-width: 767px) {
  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }
}

/*≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡
// Layout .l-
≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡*/
/* Header
------------------------------------------------------------*/
.c-header {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  position: relative;
  height: 100px;
}

@media only screen and (max-width: 1024px) {
  .c-header {
    height: 60px;
  }
}

@media only screen and (max-width: 1024px) {
  .c-header img {
    width: 200px;
  }
}

/*------------------------------------------------------------
footer
------------------------------------------------------------*/
.c-footer1 {
  padding: 40px 0px;
  text-align: center;
  background: #faaf3b;
}

@media only screen and (max-width: 1024px) {
  .c-footer1 {
    padding: 20px;
  }
}

/*------------------------------------------------------------
sidebar
------------------------------------------------------------*/
/* Breadcrumb
------------------------------------------------------------*/
.c-breadcrumb {
  padding-bottom: 50px;
}

@media only screen and (max-width: 1024px) {
  .c-breadcrumb {
    padding: 0 15px 40px;
  }
}

.c-breadcrumb__inner {
  padding: 10px 0px;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
}

.c-breadcrumb__inner ul {
  display: -webkit-box;
  display: flex;
}

.c-breadcrumb__inner ul li {
  padding-right: 30px;
  color: #666666;
}

.c-breadcrumb__inner ul li a {
  color: #666666;
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 500;
  cursor: pointer;
  position: relative;
}

.c-breadcrumb__inner ul li a:before {
  content: "";
  position: absolute;
  width: 5px;
  height: 9px;
  background: url("../img/arrow-right.png") no-repeat;
  background-size: cover;
  right: -18px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.c-breadcrumb__inner ul li a i {
  font-size: 1.5rem;
}

.c-breadcrumb__inner ul li:last-child {
  padding-right: 0;
}

.c-breadcrumb__inner ul li:last-child a:before {
  display: none;
}

/* layout
------------------------------------------------------------*/
body {
  font-family: "メイリオ", "Meiryo", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", sans-serif;
  font-size: 1.4rem;
  min-width: 1200px;
  line-height: 1.5;
}

@media only screen and (max-width: 767px) {
  body {
    min-width: 320px;
  }
}

.l-container {
  width: 1200px;
  margin: 0 auto;
}

@media only screen and (max-width: 1024px) {
  .l-container {
    width: 100%;
    margin: 0;
  }
}

.l-container2 {
  width: 1120px;
  margin: 0 auto;
}

@media only screen and (max-width: 1024px) {
  .l-container2 {
    width: 100%;
    margin: 0;
  }
}

.c-mainvisual{
  overflow: hidden;
}

/*@media only screen and (max-width: 1024px) {
  .c-mainvisual {
    height: 460px;
  }
}*/

.c-mainvisual--subpage {
  height: 400px;
}

.c-mainvisual img {
  width: 100vw;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.c-mainvisual__inner {
  position: relative;
  height: 100%;
  width: 100vw;
}

.c-mainvisual__slider{
  /*position: relative;
  height: 100%;
  width: 1000px;*/
}

.c-mainvisual__cnt {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.c-mainvisual__cnt .l-container {
  position: relative;
  height: 100%;
}

.c-mainvisual__box {
  width: 100%;
  height: 100%;
}

.c-mainvisual__logo {
  width: 15.7645822386vw;
  position: absolute;
  top: 30px;
  left: calc((100% - 1175px) / 2);
  z-index: 1001;
}

@media only screen and (max-width: 1024px) {
  .c-mainvisual__logo {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 150px;
    z-index: 999;
  }
}

.c-mainvisual--subpage .c-mainvisual__logo {
  width: 150px;
}

.c-mainvisual__logo a:hover{
  opacity: 1;
}

.c-mainvisual__logo a:hover img{
  opacity: 1;
}

.c-mainvisual__text {
  width: 8.72306883868vw;
  position: absolute;
  top: 14vw;
  left: 8.4077771939vw;
}

@media only screen and (max-width: 1024px) {
  .c-mainvisual__text {
    width: 100px;
    left: 38px;
    top: 135px;
    z-index: 100;
  }
}

.c-mainvisual__image {
  width: 44.6663163426vw;
  position: absolute;
  top: 0.52548607461vw;
  left: 20.7566999475vw;
}

@media only screen and (max-width: 1024px) {
  .c-mainvisual__image {
    width: 366px;
    top: 115px;
    left: 40px;
    z-index: 99;
  }
}

.c-mainvisual__txt{
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
}

.c-mainvisual__txt h2{
  font-size: 2.6rem;
  line-height: 0.923077;
  color: #ffffff;
  letter-spacing: 5px;
  text-align: center;
  font-family: "游ゴシック";
  width: 300px;
  height: 80px;
  border: 2px solid #ffffff;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
}

.c-mainvisual__gallery{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  width: 23200px;
}

.c-mainvisual__gallery1{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  width: 4500px;
}

.c-mainvisual__slide{
  float: left;
  position: relative;
}

.c-mainvisual__slide .c-slide{
  display: flex;
  flex-wrap: wrap;
}

.c-slide__item{
  position: relative;
}

/*≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡
// Component .c-
≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡*/
/*------------------------------------------------------------
btn
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
.c-btn1 {
  width: 400px;
  margin: 60px auto 0px;
  height: 60px;
  color: #ffffff;
  background: #f05a24;
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 600;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  border-radius: 3px;
  cursor: pointer;
}

@media only screen and (max-width: 767px) {
  .c-btn1 {
    width: 100%;
    margin: 30px auto 0px;
    font-size: 1.6rem;
    height: 45px;
  }
}

.c-btn__top {
  position: fixed;
  z-index: 1000;
  bottom: 80px;
  right: 30px;
  opacity: 0;
  display: block;
  -webkit-transform: translateY(80px);
  transform: translateY(80px);
  -webkit-transition: all 1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 1s cubic-bezier(0.645, 0.045, 0.355, 1);
  -webkit-transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
  transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
}

@media only screen and (max-width: 1024px) {
  .c-btn__top {
    bottom: 80px;
    right: 20px;
  }
}

.c-btn__top--none {
  opacity: 1;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}

/*------------------------------------------------------------
title
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
.c-title1 {
  font-size: 4rem;
  line-height: 1.2;
  color: #000000;
  position: relative;
  text-align: center;
  padding-bottom: 47px;
}

@media only screen and (max-width: 1024px) {
  .c-title1 {
    font-size: 2.2rem;
    padding-bottom: 25px;
  }
}

.c-title1:before {
  content: "";
  position: absolute;
  width: 150px;
  height: 5px;
  background: #c0272d;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media only screen and (max-width: 1024px) {
  .c-title1:before {
    height: 3px;
  }
}

.c-title2 {
  font-size: 1.6rem;
  font-weight: 600;
  color: #ffffff;
  height: 55px;
  background-color: #faaf3b;
  line-height: 1.8;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  padding-left: 15px;
}

/*------------------------------------------------------------
icon
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
/*------------------------------------------------------------
form
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
/*------------------------------------------------------------
text
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
/*------------------------------------------------------------
navi
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
/*------------------------------------------------------------
img
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
/*------------------------------------------------------------
list
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
/*------------------------------------------------------------
table
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
/*------------------------------------------------------------
line
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
/*------------------------------------------------------------
video
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
/*------------------------------------------------------------
video
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
/*------------------------------------------------------------
title
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
.c-post1 {
  display: -webkit-box;
  display: flex;
  border-top: 1px solid #cbcbcb;
  padding: 18px 0px 17px;
}

@media only screen and (max-width: 767px) {
  .c-post1 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
}

.c-post1:last-child {
  border-bottom: 1px solid #cbcbcb;
}

.c-post1__box {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
}

@media only screen and (max-width: 767px) {
  .c-post1__box {
    margin-bottom: 15px;
  }
}

.c-post1__date {
  font-size: 1.4rem;
  line-height: 1.2;
  color: #333333;
  margin-right: 20px;
}

.c-post1__cat {
  font-size: 1.2rem;
  line-height: 1.2;
  color: #ffffff;
  background: #058778;
  width: 100px;
  height: 24px;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  margin-right: 20px;
}

.c-post1__title {
  font-size: 1.4rem;
  line-height: 1.2;
  color: #333333;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
}

.c-post2 {
  width: 100%;
  display: -webkit-box;
  display: flex;
  padding-bottom: 40px;
  padding-top: 40px;
  border-bottom: 1px solid #e6e6e6;
}

@media only screen and (max-width: 1024px) {
  .c-post2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
}

.c-post2:first-child {
  padding-top: 0;
}

.c-post2:last-child {
  margin-bottom: 50px;
}

.c-post2__image {
  width: 280px;
  margin-right: 35px;
}

.c-post2__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media only screen and (max-width: 1024px) {
  .c-post2__image {
    width: 100%;
    margin-right: 0px;
    margin-bottom: 20px;
  }
}

.c-post2__text {
  position: relative;
  padding-bottom: 50px;
  position: relative;
}

@media only screen and (max-width: 1024px) {
  .c-post2__text {
    width: 100%;
  }
}

.c-post2__title {
  font-size: 2rem;
  line-height: 1.2;
  color: #4d4d4d;
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
  overflow: hidden;
  -webkit-line-clamp: 1;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.c-post2__txt {
  font-size: 1.4rem;
  line-height: 1.75;
  color: #333333;
  font-weight: 500;
  max-height: 125px;
  overflow: hidden;
  -webkit-line-clamp: 5;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-align: justify;
}

.c-post2__box {
  display: -webkit-box;
  display: flex;
  position: absolute;
  bottom: 0;
}

.c-post2__cat {
  background-color: #058778;
  font-size: 1.2rem;
  line-height: 0.57143;
  padding: 0 20px;
  height: 25px;
  margin-right: 12px;
  color: #ffffff;
  font-weight: 500;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
}

.c-post2__date {
  position: relative;
  font-size: 1.4rem;
  line-height: 1.75;
  color: #333333;
  font-weight: 500;
  padding-left: 20px;
}

.c-post2__date:before {
  content: "";
  position: absolute;
  left: 0px;
  top: 4px;
  background: url(../img/ico-clock.png) no-repeat;
  width: 16px;
  height: 16px;
}

.c-post3 {
  width: 100%;
  padding: 20px 15px;
  border-right: 1px solid #dddddd;
  border-left: 1px solid #dddddd;
  border-bottom: 1px solid #dddddd;
  display: -webkit-box;
  display: flex;
}

.c-post3:nth-child(1) {
  border-top: 1px solid #dddddd;
}

.c-post3__image {
  width: 100px;
  height: 100px;
  margin-right: 20px;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
}

@media only screen and (max-width: 1024px) {
  .c-post3__image {
    width: 35%;
    margin-right: 5%;
    height: 25vw;
  }
}

.c-post3__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 8px;
}

.c-post3__text {
  width: 150px;
}

@media only screen and (max-width: 1024px) {
  .c-post3__text {
    width: 60%;
  }
}

.c-post3__text > a{
  overflow: hidden;
  -webkit-line-clamp: 3;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  word-break: break-all;
}

.c-post3__date {
  position: relative;
  padding-left: 25px;
  font-size: 1.4rem;
  line-height: 1.2;
  margin-bottom: 10px;
}

.c-post3__date:before {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  background: url(../img/ico-clock.png) no-repeat;
  width: 16px;
  height: 16px;
}

.c-post3__title:hover {
  text-decoration: underline;
}

.c-post4 {
  width: 240px;
  margin-bottom: 25px;
}

@media only screen and (max-width: 767px) {
  .c-post4 {
    width: 100%;
  }
}

.c-post4:nth-child(3n + 2) {
  margin: 0 15px;
}

@media only screen and (max-width: 767px) {
  .c-post4:nth-child(3n + 2) {
    margin: 0 0 25px;
  }
}

.c-post4__image {
  position: relative;
  overflow: hidden;
  padding-top: 66.66%;
}

.c-post4__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.c-post4 p {
  margin-top: 15px;
  overflow: hidden;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.c-post5 {
  width: 100%;
  padding: 20px 15px;
  border-right: 1px solid #989898;
  border-left: 1px solid #989898;
  border-bottom: 1px solid #989898;
  display: -webkit-box;
  display: flex;
}

.c-post5__text > a{
  overflow: hidden;
  -webkit-line-clamp: 1;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  word-break: break-all;
  color: #333333;
}

.c-post5__date {
  position: relative;
  padding-left: 25px;
  font-size: 1.4rem;
  line-height: 1.2;
  margin-bottom: 10px;
  color: #333333;
}

.c-post5__date:before {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  background: url(../img/ico-clock.png) no-repeat;
  width: 16px;
  height: 16px;
}

.c-post5__title{
  font-weight: 600;
  font-size: 1.6rem;
  line-height: 1.2;
}

.c-post5__title:hover {
  text-decoration: underline;
}

.c-post5__desc{
  overflow: hidden;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  word-break: break-all;
  color: #333333;
  font-size: 1.3rem;
  line-height: 1.61538461538;
  padding-top: 5px;
}


/*------------------------------------------------------------
other
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
.c-copyright {
  height: 80px;
  color: #ffffff;
  font-size: 1.6rem;
  line-height: 1;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  background: #4d4d4d;
  font-weight: 600;
}

@media only screen and (max-width: 1024px) {
  .c-copyright {
    height: auto;
    padding: 20px;
    font-size: 1.4rem;
    font-weight: 500;
    text-align: center;
    line-height: 1.5;
  }
}

.c-widget form {
  margin-bottom: 50px;
  margin-top: 20px;
  position: relative;
  overflow: hidden;
}

.c-widget form input[type="search"] {
  width: 100%;
  border: none;
  background: #f2f2f2;
  height: 40px;
  padding: 0px 10px;
  font-size: 1.8rem;
  line-height: 1;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  padding-right: 40px;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.c-widget__cnt ul {
  padding: 10px 15px 25px;
}

.c-widget__cnt ul li a {
  font-size: 1.6rem;
  line-height: 1.8;
  padding: 5px 0px;
  display: block;
  font-family: "Meiryo";
  font-weight: 500;
}

.c-widget__cnt ul li a:hover {
  text-decoration: none;
  color: #0056b3;
  opacity: 1;
}

.c-widget--modify1 {
  margin-bottom: 60px;
}

.c-widget--modify2 .c-widget__cnt ul {
  padding: 0;
}

.c-widget--modify2 .c-widget__cnt ul li a {
  padding: 10px 18px;
  border-top: none;
  border-right: 1px solid #dddddd;
  border-left: 1px solid #dddddd;
  border-bottom: 1px solid #dddddd;
  display: block;
}

.c-widget--modify2 .c-widget__cnt ul li:nth-child(1) a {
  border-top: 1px solid #dddddd;
}

.c-form__search {
  width: 40px;
  height: 40px;
  position: absolute;
  right: 0px;
  top: 0px;
  background-color: #222222;
  overflow: hidden;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
}

.c-form__search input[type="submit"] {
  border: 0;
  background: url(../img/ico-search.png) no-repeat;
  text-indent: 40px;
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.c-pagination{
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  width: 100%;
}

@media only screen and (max-width: 1024px) {
  .c-pagination{
    margin-bottom: 50px;
  }
}

.c-pagination a, .c-pagination a:hover, .c-pagination span{
  font-size: 1.7rem;
  line-height: 1.0588;
  color: #4d4d4d;
  padding: 15px 18px;
}

.c-pagination .current{
  background-color: #aaa;
  color: #fff;
}

.groupbtn{
  width: 100%;
  margin-bottom: 40px;
}

.groupbtn ul{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
}

.groupbtn ul li a{
  font-size: 1.6rem;
  line-height: 1;
  font-weight: 600;
  text-transform: uppercase;
}


/*≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡
// Project .p-
≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡*/
/*------------------------------------------------------------
Css of home page
------------------------------------------------------------*/
.p-top {
  line-height: 2;
}

.p-top1 {
  padding-top: 74px;
  background: #fcf5f0;
}

@media only screen and (max-width: 1024px) {
  .p-top1 {
    padding: 40px 20px 0px;
  }
}

.p-top1__cnt {
  padding-top: 60px;
  width: 1000px;
  margin: 0 auto;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 30px;
}

@media only screen and (max-width: 1024px) {
  .p-top1__cnt {
    width: 100%;
    padding-top: 40px;
    padding-bottom: 5px;
  }
}

.p-top1__image {
  width: 475px;
  height: 262px;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  background: #ffffff;
  border: 1px solid #cbcbcb;
  margin-right: 50px;
  box-sizing: border-box;
  margin-bottom: 40px;
}

@media only screen and (max-width: 1024px) {
  .p-top1__image {
    margin-right: 0;
    width: 49%;
    margin-bottom: 25px;
  }
  .p-top1__image:nth-child(2n + 1) {
    margin-right: 1%;
  }
  .p-top1__image:nth-child(2n) {
    margin-left: 1%;
  }
}

@media only screen and (max-width: 767px) {
  .p-top1__image {
    width: 100%;
  }
}

.p-top1__image a{
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.p-top1__image:nth-child(2n) {
  margin-right: 0;
}

.p-top2 {
  padding-top: 90px;
  background: url("../img/top2_bg.png") no-repeat;
}

@media only screen and (max-width: 1024px) {
  .p-top2 {
    padding: 40px 20px 0px;
  }
}

.p-top2__cnt {
  width: 800px;
  margin: 0 auto;
  padding: 65px 0px 95px;
}

@media only screen and (max-width: 1024px) {
  .p-top2__cnt {
    width: 100%;
    padding: 40px 0px 40px;
  }
}

/*------------------------------------------------------------
Css of home page
------------------------------------------------------------*/
.p-about {
  line-height: 2;
}

/*------------------------------------------------------------
Css of news page
------------------------------------------------------------*/
.p-news1 {
  padding-bottom: 50px;
}

@media only screen and (max-width: 1024px) {
  .p-news1 {
    padding-bottom: 30px;
  }
}

.p-news1__inner {
  width: 100%;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
}

@media only screen and (max-width: 1024px) {
  .p-news1__inner {
    padding: 0 15px;
  }
}

.p-news1__cnt {
  padding-top: 0px;
}

.p-news1__left {
  width: 750px;
  margin-right: 70px;
}

@media only screen and (max-width: 1024px) {
  .p-news1__left {
    width: 100%;
    margin-right: 0;
  }
}

.p-news1__right {
  width: 300px;
}

@media only screen and (max-width: 1024px) {
  .p-news1__right {
    width: 100%;
  }
}

.p-news2 {
  padding-bottom: 80px;
}

@media only screen and (max-width: 767px) {
  .p-news2 {
    padding-bottom: 30px;
  }
}

.p-news2__inner {
  width: 100%;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
}

@media only screen and (max-width: 1024px) {
  .p-news2__inner {
    padding: 0 15px;
  }
}

.p-news2__cnt {
  padding: 35px 0 40px;
  font-size: 1.4rem;
  line-height: 1.7857143;
  color: #333333;
}

.p-news2__left {
  width: 750px;
  margin-right: 70px;
}

@media only screen and (max-width: 1024px) {
  .p-news2__left {
    width: 100%;
    margin-right: 0;
  }
}

.p-news2__right {
  width: 300px;
}

@media only screen and (max-width: 1024px) {
  .p-news2__right {
    width: 100%;
  }
}

.p-news2__image {
  position: relative;
  overflow: hidden;
  padding-top: 56.266%;
  margin-bottom: 20px;
}

.p-news2__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.p-news2__box {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
}

.p-news2__box span {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  background-color: #058778;
  color: #ffffff;
  font-size: 1.2rem;
  line-height: 1.5;
  height: 24px;
  padding: 0 24px;
}

.p-news2__box p {
  font-size: 1.4rem;
  line-height: 1.75;
  font-family: "Arial";
  margin-left: 13px;
  padding-left: 25px;
  position: relative;
}

.p-news2__box p::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 15px;
  background: url(../img/ico-clock.png) no-repeat;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.p-news2__title {
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 600;
  color: #4d4d4d;
  padding-top: 30px;
  padding-bottom: 23px;
  border-bottom: 1px solid #e6e6e6;
}

.p-news2__note {
  padding: 30px 23px;
  background-color: #fafafa;
  margin: 40px 0px 45px;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
}

@media only screen and (max-width: 767px) {
  .p-news2__note {
    padding: 15px;
  }
}

.p-news2__note p {
  line-height: 1;
}

.p-news2__pencil {
  position: relative;
  padding: 0px 15px 0px 20px;
  border-right: 1px solid #dcdcdc;
}

@media only screen and (max-width: 767px) {
  .p-news2__pencil {
    width: 50%;
  }
}

.p-news2__pencil:after {
  content: "";
  background: url(../img/ico-edit.png) no-repeat;
  left: 0;
  width: 15px;
  height: 14px;
  position: absolute;
  top: 6px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.p-news2__file {
  position: relative;
  padding: 0px 20px 0px 35px;
  border-right: none;
}

@media only screen and (max-width: 767px) {
  .p-news2__file {
    width: 50%;
  }
}

.p-news2__file:after {
  content: "";
  background: url(../img/ico-folder.png) no-repeat;
  left: 15px;
  width: 15px;
  height: 14px;
  position: absolute;
  top: 6px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.p-news2__related--cnt {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  padding-top: 40px;
}

/*≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡
// Utility .u-
≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡*/

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

input[type='button'], input[type='checkbox'], input[type='submit'], input[type='search'] {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
}

.skitter{
  max-width: 100%!important;
  margin-bottom: 0px!important;
}

.skitter .info_slide_dots{
  bottom: 20px!important;
}

.skitter .progressbar{
  top: auto!important;
  background: #FFF;
  position: absolute;
  bottom: 0!important;
  left: 0px;
  height: 5px;
  width: 100%;
  z-index: 99;
  border-radius: 8px;
  opacity: 0.6;
}

.skitter-square .info_slide_dots .image_number.image_number_select{
  background-color: #f05a24;
}
