@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=DotGothic16&display=swap");


/* アニメーションベンダープレフィックス込み指定 */


/* アニメーションベンダープレフィックス込み指定 */

body {
  background-color: #c8eafa;
  background-repeat: repeat;
  background-position: center;
  color: #333333;
  font-family: "YakuHanJP", Lato, "M PLUS Rounded 1c", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.6rem;
  line-height: 1.6;
  letter-spacing: .1rem;
}

a {
  color: #009bde;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #59c3f0;
}

.dotfont {
  font-family: "DotGothic16", sans-serif;
}

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

h1, h2, h3, h4, h5, h6, p, span, b, i, dl, dt, dd, ol, ul, li, table, caption, tbody, tfoot, thead, tr, th, td {
  transform: rotate(0.05deg);
}


/* loadingAnim
----------------------------------*/

.loadingAnim {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
}

.loadingAnim_line {
  line-height: 1;
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: inline-block;
  overflow: hidden;
  width: 150px;
  height: 1.25em;
  margin: auto;
  transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
  transition-delay: .6s;
  text-align: center;
}

.loadingAnim_line:after {
  position: absolute;
  z-index: 100;
  top: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 0;
  height: 100%;
  margin: auto auto auto 0;
  content: ' ';
  -webkit-animation: loadingAnim 2s ease-in-out .1s infinite normal backwards;
  animation: loadingAnim 2s ease-in-out .1s infinite normal backwards;
  background-color: #59c3f0;
  will-change: transform, width;
}

.loadingAnim_line:before {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  display: block;
  content: 'LOADING';
  -webkit-animation: loadingAnim_text 1s ease .1s infinite alternate both;
  animation: loadingAnim_text 1s ease .1s infinite alternate both;
  letter-spacing: .5em;
  color: #fff;
  will-change: opacity;
}

.loaded .loadingAnim_line {
  overflow: hidden;
  height: 0;
}

.loaded .loadingAnim_line:after {
  -webkit-animation: none;
  animation: none;
}

.loaded .loadingAnim_line:before {
  -webkit-animation: none;
  animation: none;
  content: 'LOADED!';
  color: #ccc;
}

.loadingAnim:before, .loadingAnim:after {
  line-height: 1;
  position: fixed;
  z-index: 99;
  right: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 50%;
  margin-right: auto;
  margin-left: auto;
  content: ' ';
  transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
  transition-delay: .3s;
  background-color: #eee;
}

.loadingAnim:before {
  top: 0;
}

.loadingAnim:after {
  bottom: 0;
}

.loaded .loadingAnim:before {
  height: 0;
  -webkit-transform: translateY(-1%);
  -ms-transform: translateY(-1%);
  transform: translateY(-1%);
}

.loaded .loadingAnim:after {
  height: 0;
  -webkit-transform: translateY(1%);
  -ms-transform: translateY(1%);
  transform: translateY(1%);
}


/* header
----------------------------------*/

#header {
  background-image: url(../img/mascot1.png),url(../img/mascot3.png);
  background-size: 150px,150px;
  background-repeat: no-repeat;
  background-position: top 16px left 16px,bottom right 16px;
}

#header .inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  margin: 0 auto;
  width: 1200px;
  max-width: 100%;
  padding: 35px 0;
}

#header .inner #logo {
  width: 450px;
}

#header .inner #head_right {

}
#header .inner #head_right .head_telbox {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  color: #fff;
}
#header .inner #head_right #tel,
#header .inner #head_right #fax  {
  margin-right: 15px;
  line-height: 1.1;
  text-align: right;
  font-size: 1.5rem;
}

#header .inner #head_right #tel span,
#header .inner #head_right #fax span {
  font-size: 2.5rem;
  font-weight: 500;
  letter-spacing: 0;
}

/* #header .inner #head_right #tel span:before {
  font-family: "Font Awesome 5 Free";
  content: "\f095";
  font-weight: 900;
  margin-right: 10px;
  color: #59c3f0;
} */

#header .inner #head_right #mail a {
  display: block;
  background: #003bbb;
  color: #FFFFFF;
  font-size: 1.5rem;
  width: 100%;
  border-radius: 10px;
  text-align: center;
  padding: 16px;
  margin-top: 16px;
}

#header .inner #head_right #mail a:hover {
  background: #0050ff;
}

#header .inner #head_right #mail a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: 900;
}


/* navi
----------------------------------*/

#navi {
  width: 1400px;
  max-width: 100%;
  margin: 0 auto 30px;
  padding: 16px;
  background: #1a1a1a;
  border: 2px solid #1a1a1a;
  border-radius: 16px;
  box-shadow: 0 0 0 4px #fff inset;
  color: #fff;
  text-align: center;
}
#navi p {
  font-size: 22px;
  padding: 16px 0;
}
#navi ul {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 16px;
}

#navi ul li {
  position: relative;
}

#navi ul li a {
  display: flex;
  align-items: center;
  font-size: 18px;
  color: #fff;
  line-height: 1;
}

#navi ul li a:hover .icon_navi,
.top_navi li a:hover .icon_navi,
.abtn a:hover .icon_navi,
.abtn button:hover .icon_navi {
  opacity: 1;
}

#navi ul li a .icon_navi,
.top_navi li a .icon_navi,
.abtn a .icon_navi,
.abtn button .icon_navi {
  opacity: 0;
  display: block;
  margin-right: 8px;
}


/* page-top
----------------------------------*/

#page-top {
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 9999;
}

#page-top a {
  display: block;
  background: #388e3c;
  color: #FFFFFF;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
}

#page-top a:hover {
  background: #689f38;
}

#page-top a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f077";
  font-weight: 900;
}


/* footer
----------------------------------*/

#footer {
  padding: 60px 16px;
  background-image: url(../img/mascot12.png);
  background-size: 275px;
  background-repeat: repeat-x;
  background-position: center bottom;
  color: #fff;
}

#footer .inner {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#footer .inner .flogo {
  width: 300px;
}
#footer .inner #foot_right {

}
#footer .inner #foot_right .foot_telbox {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  color: #fff;
}
#footer .inner #foot_right #tel,
#footer .inner #foot_right #fax  {
  margin-right: 15px;
  line-height: 1.1;
  text-align: right;
  font-size: 1.5rem;
}

#footer .inner #foot_right #tel span,
#footer .inner #foot_right #fax span {
  font-size: 2.5rem;
  font-weight: 500;
  letter-spacing: 0;
}

/* #header .inner #head_right #tel span:before {
  font-family: "Font Awesome 5 Free";
  content: "\f095";
  font-weight: 900;
  margin-right: 10px;
  color: #59c3f0;
} */

#footer .inner #foot_right .mail a {
  display: block;
  background: #003bbb;
  color: #FFFFFF;
  font-size: 1.5rem;
  width: 100%;
  border-radius: 10px;
  text-align: center;
  padding: 16px;
  margin-top: 16px;
}

#footer .inner #foot_right .mail a:hover {
  background: #0050ff;
}

#footer .inner #foot_right .mail a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: 900;
}

#footer .inner .foot_navi {
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
  width: 600px;
  font-size: 1.4rem;
}

#footer .inner .foot_navi li {
  width: 33.3%;
  margin-bottom: 10px;
}
#footer .inner .foot_navi li a {
  display: flex;
  align-items: center;
  color: #fff;
}
#footer .inner .foot_navi li a .icon_navi {
  opacity: 0;
  display: block;
  margin-right: 8px;
}
#footer .inner .foot_navi li a:hover {
  color: #fff;
}
#footer .inner .foot_navi li a:hover .icon_navi {
  opacity: 1;
}

#footer .copyright {
  text-align: center;
  font-size: 1.2rem;
  color: #fff;
}


/* sp_navi
----------------------------------*/

#sp_navi, #humberger, #drawernav {
  display: none;
}


/* contact_btn
----------------------------------*/

.contact_btn {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  margin-top: 30px;
}

.contact_btn li {
  width: 40%;
  margin: 0 2%;
}

.contact_btn li a, .contact_btn li span {
  display: block;
  border: 1px solid #f8ad32;
  border-radius: 100px;
  padding: .4em 0;
  text-align: center;
  font-size: 2rem;
}

.contact_btn li a:before, .contact_btn li span:before {
  margin-right: 10px;
}

.contact_btn li a.tel_btn, .contact_btn li span.tel_btn {
  background: #FFFFFF;
  border: 1px solid #f8ad32;
  color: #f8ad32;
}

.contact_btn li a.tel_btn:before, .contact_btn li span.tel_btn:before {
  font-family: "Font Awesome 5 Free";
  content: "\f095";
  font-weight: 900;
}

.contact_btn li a.mail_btn, .contact_btn li span.mail_btn {
  background: #f8ad32;
  color: #FFFFFF;
}

.contact_btn li a.mail_btn:hover, .contact_btn li span.mail_btn:hover {
  background: #FFFFFF;
  color: #f8ad32;
}

.contact_btn li a.mail_btn:before, .contact_btn li span.mail_btn:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: 900;
}

.contact_btn.contact_btn_02 li {
  margin: 0 0 15px;
  width: 100%;
}

.contact_btn.contact_btn_02 li:last-child {
  margin-bottom: 0;
}

.contact_btn.contact_btn_03 li a {
  font-size: 1.5rem;
}


/* slider
----------------------------------*/

#slider {
  position: relative;
  margin: 0 auto 70px;
  width: 100%;
}

#slider #catch {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 500px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 1px 1px #000);
}

.slick-slide img {
  width: 100%;
  height: auto;
}

.slick-prev {
  left: 20px;
}

.slick-next {
  right: 20px;
}

.slick-dots {
  position: absolute;
  bottom: -30px;
  left: 0;
  width: 100%;
  font-size: 0;
  text-align: center;
  list-style: none;
}

.slick-dots li {
  display: inline-block;
  margin: 0 8px;
}

.slick-dots li button {
  display: block;
  font-size: 0;
  line-height: 0;
  width: 12px;
  height: 12px;
  background: #ddd;
  border: 0;
  border-radius: 50%;
  color: transparent;
  cursor: pointer;
}

.slick-dots .slick-active button, .slick-dots li button:hover {
  background: #009bde;
}

.slick-slide {
  overflow: hidden;
}

.slick-slide img {
  transform: scale(1.2);
  transition: 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.slick-current img {
  transform: scale(1);
}


/* contents
----------------------------------*/

.single {
  margin: 0 auto;
  width: 1200px;
  max-width: 100%;
  padding: 80px 0;
}

.single_inner {
  margin: 0 auto;
  width: 768px;
  max-width: 100%;
}

.single_01 {
  margin: 0 auto;
  width: 95%;
  padding-bottom: 50px;
}

.single_02 {
  margin: 0 auto;
  width: 1200px;
  max-width: 100%;
  padding-bottom: 50px;
}

.main_contents {
  padding-top: 30px;
}


/* bg
----------------------------------*/

.bg_common {
  padding-top: 50px;
}
.bg_white {
  background-color: #fcfdfe;
}
.bg_lblue {
  background-color: #f1fbff;
}

.bg_b {
  margin-bottom: 50px;
}

.bg_01 {
  background-color: #f1fbff;
}
.top_bg2 {
  background-color: #f1fbff;
  background-image: url(../img/mascot8.png),url(../img/mascot4.png);
  background-size: 150px,150px;
  background-repeat: no-repeat;
  background-position: top 16px left 16px,top 50% right 16px;
}
.bg_top {
  background-color: #fcfdfe;
  background-image: url(../img/mascot9.png),url(../img/mascot11.png),url(../img/mascot10.png);
  background-size: 140px;
  background-repeat: no-repeat;
  background-position: left 16px top 32px,left 36% bottom 16px,right 9% top 32px;
}
.top_bg3,
.top_bg4,
.top_bg5 {
  background-size: 150px;
  background-repeat: no-repeat;
  background-position: top 50% left 16px;
}
.top_bg3 {
  background-image: url(../img/mascot13.png);
}
.top_bg4 {
  background-image: url(../img/mascot10.png);
}
.top_bg5 {
  background-image: url(../img/mascot11.png);
}
.bg_works1 {
  background-image: url(../img/mascot22.png),
  url(../img/mascot15.png),
  url(../img/mascot4.png),
  url(../img/mascot11.png),
  url(../img/mascot10.png),
  url(../img/mascot13.png);
  background-size: 160px;
  background-repeat: no-repeat;
  background-position: top 32px left,
  top 20% left 55%,
  top right,
  top 50% left 32px,
  bottom 15% right 16px,
  bottom 16px left 20%;
}
.bg_works2 {
  background-image: url(../img/mascot3.png),
  url(../img/mascot23.png),
  url(../img/mascot9.png),
  url(../img/mascot8.png),
  url(../img/mascot18.png),
  url(../img/mascot17.png);
  background-size: 160px;
  background-repeat: no-repeat;
  background-position: bottom 32px right,
  bottom 5% right 55%,
  bottom left,
  bottom 50% right 32px,
  top 15% left 16px,
  top 16px right 20%;
}
@media screen and (max-width: 768px) {
  .bg_works1 {
    background-size: 100px;
  }
  .bg_works2 {
    background-size: 100px;
  }
}

/* column
----------------------------------*/

.half {
  display: flex;
  justify-content: space-between;
}

.half .child {
  width: 50%;
}

.triple {
  display: flex;
  justify-content: space-between;
}

.triple .child {
  width: 33.3%;
}

.column2 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.column2 .child {
  width: 48.44%;
  margin: 0 3% 3% 0;
}

.column2 .child:nth-child(2n) {
  margin: 0 0 3% 0;
}
.column2 .child.last_col {
  width: 100%;
}

.column3 {
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
}

.column3 .child {
  width: 31.3%;
  margin: 0 3% 3% 0;
}

.column3 .child:nth-child(3n) {
  margin: 0 0 3% 0;
}

.column4 {
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
  align-items: stretch;
  margin-bottom: -3%;
}

.column4 .child {
  width: 22.7%;
  margin: 0 3% 3% 0;
}

.column4 .child:nth-child(4n) {
  margin: 0 0 3% 0;
}

.column5 {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: -1%;
}

.column5 .child {
  width: 19.2%;
  margin: 0 1% 1% 0;
}

.column5 .child:nth-child(5n) {
  margin: 0 0 1% 0;
}


/* mtitle
----------------------------------*/

.mtitle_big {
  position: relative;
  margin-bottom: 20px;
  font-size: 4rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.2;
}

.mtitle_big span {
  display: block;
  color: #f8ad32;
  font-family: "YakuHanJP", "Roboto", "sans-serif";
  font-size: 1.5rem;
}

.mtitle_middle {
  background-color: #333333;
  color: #FFFFFF;
  padding: 8px 0 8px 10px;
  font-size: 1.8rem;
  letter-spacing: .1em;
  margin-bottom: 20px;
  border-left: 5px solid #59c3f0;
  box-sizing: border-box;
}

.mtitle_small {
  position: relative;
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 30px;
}

.mtitle_small:before {
  content: '';
  width: 30px;
  height: 1px;
  background-color: #59c3f0;
  position: absolute;
  left: 0;
  bottom: -15px;
}

.mtitle {
  position: relative;
  margin-bottom: 20px;
  padding: 0 0 5px 0;
  font-size: 3rem;
  font-weight: 500;
}
.mtitle.ttl_ico1,
.mtitle.ttl_ico2,
.mtitle.ttl_ico3 {
  display: flex;
  align-items: center;
  justify-content: center;
}
.mtitle.ttl_ico1:before {
  background-image: url(../img/mascot16.png);
}
.mtitle.ttl_ico2:before {
  background-image: url(../img/mascot17.png);
}
.mtitle.ttl_ico3:before {
  background-image: url(../img/mascot19.png);
}
.mtitle.ttl_ico1:before,
.mtitle.ttl_ico2:before,
.mtitle.ttl_ico3:before {
  content: "";
  display: inline-block;
  padding: 3rem;
  margin-right: 1rem;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  left: calc(50% - 13rem);
}

.mtitle_gothic {
  font-family: "YakuHanJP", Lato, "M PLUS Rounded 1c", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.mtitle_sub {
  position: relative;
  margin-bottom: 10px;
  font-size: 1.8rem;
  font-weight: 500;
}
.mtitle_slct {
  margin-bottom: 10px;
  font-size: 1.8rem;
  font-weight: 500;
}
.mtitle_slct:before {
  content: "▶";
  margin-right: 1rem;
}

/* btn
----------------------------------*/

.cbtn {
  margin-top: 30px;
}

.cbtn a, .cbtn button {
  display: block;
  position: relative;
  width: 320px;
  max-width: 100%;
  background: #59c3f0;
  color: #FFFFFF;
  padding: 20px 0;
  text-align: center;
  font-weight: 500;
  letter-spacing: .3em;
}

.cbtn a:after, .cbtn button:after {
  position: absolute;
  right: 15px;
  font-family: "Font Awesome 5 Free";
  content: "\f105";
  font-weight: 900;
  transition: .2s;
}

.cbtn a:hover:after, .cbtn button:hover:after {
  right: 10px;
}

.cbtn.cbtn_01 {
  position: absolute;
  bottom: -8%;
}

.cbtn.cbtn_02 a, .cbtn.cbtn_02 button {
  margin: 0 auto;
}


/* news
----------------------------------*/

.news_box {
  display: flex;
}

.news_box .news_ttile {
  background: #1a1a1a;
  border: 2px solid #1a1a1a;
  border-radius: 16px;
  box-shadow: 0 0 0 4px #fff inset;
  color: #fff;
  width: 230px;
  padding: 20px 0;
  margin-right: 8px;
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
}

.news_box .news_bx {
  width: 100%;
  padding: 20px;
  background: #1a1a1a;
  border: 2px solid #1a1a1a;
  border-radius: 16px;
  box-shadow: 0 0 0 4px #fff inset;
  color: #fff;
}
.news-top {
  display: flex;
  flex-wrap: wrap;
}
.news-top dt {
  width: 20%;
  padding: 16px;
}
.news-top dd {
  width: 80%;
  padding: 16px;
}
.news-top dd a {
  color: #fff;
}
.news-top dd a:hover {
  color: #ddd;
}
.news-top dd:after {
  content: '▶';
  margin-left: 8px;
  animation: ozPulse 1s infinite ease;
}
@keyframes ozPulse {
  from { opacity: 1; }
  to { opacity: 0; }
}
.news-bl dt {
  float: left;
  width: 7em;
  margin-bottom: 10px;
  padding: 3px 5px;
  background: #59c3f0;
  color: #FFFFFF;
  text-align: center;
}
.news-bl dd {
  padding: 0 0 10px 9em;
  line-height: 1.6;
  border-bottom: 1px dotted #CCCCCC;
  margin: 0 0 10px;
}

.news-bl dd:last-child {
  margin: 0;
  border-bottom: none;
}


/* tbl
----------------------------------*/

.tbl {
  width: 100%;
  background-color: #FFFFFF;
}

.tbl th, .tbl td {
  vertical-align: middle;
  border: 1px solid #009bde;
  padding: 10px;
}

.tbl th {
  background: #009bde;
  font-weight: normal;
  color: #fff;
}

.tbl_new {
  width: 100%;
  background-color: #FFFFFF;
}

.tbl_new tr th, .tbl_new tr td {
  vertical-align: top;
  padding: 10px;
}

.tbl_new tr th {
  width: 20%;
  font-weight: normal;
}

.tbl_new tr:nth-child(odd) th, .tbl_new tr:nth-child(odd) td {
  background: #fbf8ef;
}
.tbl_form {
  width: 100%;
}
.tbl_form tr th {
  vertical-align: middle;
  text-align: left;
  width: 25%;
}

.company {
  padding: 16px;
  background: #1a1a1a;
  border: 2px solid #1a1a1a;
  border-radius: 16px;
  box-shadow: 0 0 0 4px #fff inset;
  color: #fff;
}
.company dl {
  display: flex;
  flex-wrap: wrap;
}
.company dl dt {
  width: 30%;
  padding: 16px;
}
.company dl dd {
  width: 70%;
  padding: 16px;
}
@media screen and (max-width: 768px) {
  .company dl dt {
    padding: 5px;
  }
  .company dl dd {
    padding: 5px;
  }
}

.tbl_company {
  width: 100%;
}

.tbl_company th, .tbl_company td {
  vertical-align: middle;
}

.tbl_company th {
  width: 15%;
  border-bottom: 1px solid #59c3f0;
  padding: 12px;
  font-weight: 500;
}

.tbl_company td {
  padding: 22px;
  border-bottom: 1px solid #DDDDDD;
  line-height: 1.8em;
}

.tbl_01 th {
  width: 20%;
}

.tbl_02 th {
  width: 20%;
}

.tbl_02 td {
  width: 30%;
}


/* list
----------------------------------*/

.list_common li {
  padding-bottom: 10px;
  padding-left: 1rem;
  margin-bottom: 10px;
  border-bottom: 1px dotted #CCCCCC;
}

.list_common li:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}

.list_common li:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin: 0 5px 0 -1rem;
  color: #59c3f0;
  padding: 1px;
}

.list_check li:before {
  content: "\f058";
  color: #59c3f0;
}

.list_note li {
  margin-bottom: 5px;
  padding-left: 1.5em;
}

.list_note li:last-child {
  margin-bottom: 0;
}

.list_note li:before {
  content: "※";
  margin: 0 5px 0 -1.5em;
  color: #FF0000;
}

.list_disc li {
  margin-bottom: 5px;
  padding-left: 1.5em;
}

.list_disc li:last-child {
  margin-bottom: 0;
}

.list_disc li:before {
  content: "・";
  margin: 0 5px 0 -1.5em;
  color: #f8ad32;
}

.list_line li {
  position: relative;
  display: inline-block;
  padding: 0 10px;
}

.list_line li:after {
  position: absolute;
  right: 0;
  content: "/";
}

.list_line li:last-child:after {
  display: none;
}

.list_top {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
  font-size: 1.5em;
  font-weight: 500;
}

.list_top li {
  width: 23%;
  margin: 0 2% 1% 0;
}

.list_top li:nth-child(4n) {
  margin: 0 0 1% 0;
}

.list_top li:before {
  font-family: "Font Awesome 5 Free";
  content: "\f11e";
  font-weight: 900;
  color: #59c3f0;
  margin-right: 10px;
}

.rounded-list {
  counter-reset: li;
  padding-left: 1em;
  list-style: none;
}

.rounded-list li {
  position: relative;
  padding: .4em .4em .4em 2em;
  margin: .5em 0;
  background: #fafafa;
  border-radius: .3em;
  transition: all .3s ease-out;
  box-sizing: border-box;
}

.rounded-list li:before {
  content: counter(li);
  counter-increment: li;
  position: absolute;
  left: -1.3em;
  top: 50%;
  margin-top: -1.3em;
  background: #59c3f0;
  color: #FFFFFF;
  height: 2em;
  width: 2em;
  line-height: 2em;
  border: .3em solid #fff;
  text-align: center;
  font-weight: 500;
  border-radius: 2em;
  transition: all .3s ease-out;
}


/* works-area
----------------------------------*/

.works-area {
  display: table;
  width: 100%;
  margin-bottom: 40px;
}

.works-area .before-img, .works-area p, .works-area .after-img {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}

.works-area .before-img, .works-area .after-img {
  background-color: #f8f8f8;
  width: 45%;
}

.works-area p {
  padding: 0 2%;
}

.works-area div img {
  width: auto;
  max-width: 4100px;
  height: 100%;
  max-height: 330px;
}

.works-area:last-child {
  margin-bottom: 0;
}


/* ggmap
----------------------------------*/

.ggmap {
  position: relative;
  padding-bottom: 50.25%;
  height: 0;
  overflow: hidden;
}

.ggmap iframe, .ggmap object, .ggmap embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ggmap.ggmap_02 {
  padding-bottom: 70.25%;
}


/* rss
----------------------------------*/

#rss li {
  border-bottom: 1px solid #CCCCCC;
}

#rss li a {
  display: block;
  padding: 10px;
  color: #333333;
  position: relative;
}

#rss li a:after {
  position: absolute;
  top: 50%;
  right: 3%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-family: "Font Awesome 5 Free";
  content: "\f105";
  font-weight: 900;
  color: #59c3f0;
}

#rss li a:hover {
  background: #F8F8F8;
}


/* sns_list
----------------------------------*/

.sns_list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.sns_list li {
  width: 31.3%;
  margin-right: 3%;
}

.sns_list li:last-child {
  margin: 0;
}

.sns_btn {
  overflow: hidden;
  color: #FFFFFF;
  position: relative;
  display: block;
  border-radius: 100px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  vertical-align: middle;
}

.sns_btn:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.sns_btn i {
  font-size: 2rem;
  position: relative;
  top: 3px;
  margin-right: 10px;
}

.sns_btn span {
  display: inline-block;
  position: relative;
  transition: .5s;
}

.sns_btn:hover {
  color: #FFFFFF;
}

.sns_btn:hover span {
  -webkit-transform: rotateX(360deg);
  -ms-transform: rotateX(360deg);
  transform: rotateX(360deg);
}

.facebook_btn {
  background: #4267b2;
}

.insta_btn {
  background: -webkit-linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
  background: linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
}

.insta_btn:before {
  background: -webkit-linear-gradient(15deg, #ffdb2c, #f9764c 25%, rgba(255, 77, 64, 0) 50%) no-repeat;
  background: linear-gradient(15deg, #ffdb2c, #f9764c 25%, rgba(255, 77, 64, 0) 50%) no-repeat;
}

.twitter_btn {
  background: #009eee;
}

.line_btn {
  background: #00b82b;
}

.base_btn {
  background: #59c3f0;
}

.base_btn:hover {
  background: #7ec768;
}


/* article
----------------------------------*/

.article {
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  background-color: #FFFFFF;
  border: 2px solid #59c3f0;
}

.article .article_image {
  width: 60%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.article .article_detail {
  position: relative;
  width: 40%;
  box-sizing: border-box;
  padding: 50px 0;
}

.article .article_detail .article_title {
  position: absolute;
  top: -80px;
  right: 80px;
}

.article .article_detail .inner {
  margin: 0 auto;
  width: 80%;
}

.article.article_b {
  margin-bottom: 100px;
}

.article.article_01 .article_image {
  background-image: url(../img/article_01-2.jpg);
}

.article.article_02 .article_image {
  background-image: url(../img/article_02.jpg);
}

.article.article_03 .article_image {
  background-image: url(../img/article_03.jpg);
}

.article.article_04 .article_image {
  background-image: url(../img/article_04.jpg);
}

.article.article_05 .article_image {
  background-image: url(../img/article_05.jpg);
}

.article.article_06 .article_image {
  background-image: url(../img/article_06.jpg);
}


/* link_block
----------------------------------*/

.link_block {
  position: relative;
  background: #FFFFFF;
}

.link_block::before, .link_block::after {
  display: block;
  content: "";
  width: 0;
  height: 1px;
  position: absolute;
  background: #59c3f0;
  -webkit-transition: all 0.4s 0s ease;
  transition: all 0.4s 0s ease;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.link_block::before {
  left: 0;
  top: 0;
}

.link_block::after {
  right: 0;
  bottom: 0;
}

.link_block a {
  display: block;
  padding: 15px;
  color: #333333;
  font-size: 1.8rem;
  font-weight: 500;
  -webkit-transition: all 0.4s 0s ease;
  transition: all 0.4s 0s ease;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.link_block a::before, .link_block a::after {
  display: block;
  content: "";
  width: 1px;
  height: 0;
  position: absolute;
  background: #59c3f0;
  -webkit-transition: all 0.4s 0s ease;
  transition: all 0.4s 0s ease;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.link_block a::before {
  left: 0;
  top: 0;
}

.link_block a::after {
  right: 0;
  bottom: 0;
}

.link_block a .image {
  margin-bottom: 15px;
}

.link_block a figcaption {
  position: relative;
}

.link_block a figcaption .icon_link_arrow {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.link_block a figcaption .icon_link_arrow:before {
  font-family: "Font Awesome 5 Free";
  content: "\f152";
  font-weight: 900;
  color: #59c3f0;
}

.link_block:hover::before, .link_block:hover::after {
  width: 100%;
}

.link_block:hover a::before, .link_block:hover a::after {
  height: 100%;
}


/* category_tab
----------------------------------*/

.category_tab {
  position: relative;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 30px;
}

.category_tab:before {
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 3px;
  content: '';
  background: #59c3f0;
}

.category_tab li {
  position: relative;
  width: 25%;
  box-sizing: border-box;
  background: #59c3f0;
  border-top: 3px solid #59c3f0;
  border-right: 3px solid #59c3f0;
  border-left: 3px solid #59c3f0;
  color: #FFFFFF;
  padding: 20px 10px;
  cursor: pointer;
  margin-left: 20px;
}

.category_tab li:last-child {
  margin-right: 20px;
}

.category_tab li.active {
  background: #FFFFFF;
  color: #333333;
}

.category_tab li.active:before {
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 3px;
  content: '';
  background: #FFFFFF;
}

.panel {
  display: none;
}


/* news_list
----------------------------------*/

.news_list li {
  padding: 20px;
  border-bottom: 1px dotted #333333;
}

.news_list li a {
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
  color: #333333;
}

.news_list li a .news_date {
  margin-right: 20px;
}

.news_list li a .news_category {
  background: #333333;
  color: #FFFFFF;
  padding: 5px;
  margin-right: 30px;
  min-width: 140px;
  text-align: center;
}


/*  ブログページ　blog.php */

.blog_list li {
  width: calc(100% / 3 - 1.5% - 20px);
  margin-right: 1.5%;
  margin-bottom: 1rem;
  float: left;
  border: 1px solid #59c3f0;
  padding: 10px;
}

.blog_list li:nth-child(3n+3) {
  margin-right: 0px;
}

@media screen and (max-width: 768px) {
  .blog_list li {
    width: 94%;
  }
}

.blog_list.col2 li {
  width: calc(100% / 2 - 1.5% - 20px);
}

.blog_list .imgWrap {
  overflow: hidden;
  object-fit: cover;
  height: 200px;
}

.blog_list .imgWrap img {
  width: 100%;
  height: 100%;
  display: block;
  transition-duration: .3s;
}

.blog_list li:hover .imgWrap img {
  transform: scale(1.2);
  transition-duration: .3s;
  opacity: 0.8;
}

.blog_list .date {
  font-size: 1.5rem;
  text-align: left;
  color: gray;
  margin-top: 5px;
  margin-bottom: 0;
  display: block;
}

.blog_list p {
  line-height: 1.5;
  font-size: 1.5rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

.blog_list a {
  color: #7ec768;
}

.blog_list a:link, .blog_list a:visited {
  color: #59c3f0;
}


/* blog
----------------------------------*/

.date {
  display: block;
  margin-bottom: 15px;
  font-family: "YakuHanJP", "Roboto", "sans-serif";
}

.date:before {
  font-family: "Font Awesome 5 Free";
  content: "\f017";
  font-weight: 900;
  margin-right: 5px;
  color: #59c3f0;
}

.blog_contents {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 95%;
  margin: 0 auto;
  padding-bottom: 70px;
}

.blog_contents .blog_main {
  width: 68%;
  padding: 20px;
  background-color: #FFFFFF;
  box-sizing: border-box;
}

.blog_contents .blog_main .blog_list li {
  width: 45%;
  margin-right: 2.5%;
  float: left;
}

.blog_contents .blog_main .blog_list li:nth-child(2n) {
  margin-right: 0;
}

.blog_contents .blog_side {
  width: 30%;
}

.category_nav {
  margin-bottom: 40px;
  background-color: #fff;
  padding: 1rem;
}
.category_nav dd {
  padding-bottom: 1px solid #ddd;
}

.category_nav li {
  border-bottom: 1px dotted #59c3f0;
}

.category_nav li:last-child {
  border-bottom: none;
}

.category_nav li a {
  display: block;
  padding: 10px 15px;
  background-color: #FFFFFF;
}

.category_nav li a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f105";
  font-weight: 900;
  margin-right: 5px;
  color: #59c3f0;
  margin-right: 5px;
}

.category_nav li:last-child a {
  border-bottom: none;
}

.blog_title {
  background: #59c3f0;
  font-weight: bold;
  color: #FFFFFF;
  padding: 10px 15px;
  letter-spacing: .15em;
}

.blog_title:before {
  margin-right: 5px;
}

.blog_title.archive:before {
  font-family: "Font Awesome 5 Free";
  content: "\f187";
  font-weight: 900;
}

.blog_title.new:before {
  font-family: "Font Awesome 5 Free";
  content: "\f044";
  font-weight: 900;
}

.blog_article {
  margin-bottom: 100px;
}

.blog_article:last-child {
  margin-bottom: 0;
}

.blog_new {
  border-bottom: 1px dotted #59c3f0;
}

.blog_new:last-child {
  border-bottom: none;
}

.blog_new a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #FFFFFF;
  padding: 10px;
}

.blog_new a .image {
  width: 40%;
}

.blog_new a .detail {
  width: 50%;
}

.blog_new a .detail .entry_title {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.pages {
  overflow: hidden;
  margin-top: 50px;
}

.pages .page_next, .pages .page_prev {
  display: inline-block;
}

.pages .page_next a, .pages .page_prev a {
  display: block;
  padding: 10px 20px;
  background-color: #FFFFFF;
  border: 1px solid #333333;
}

.pages .page_next {
  float: left;
}

.pages .page_prev {
  float: right;
}


/* company_nav
----------------------------------*/

.company_nav {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.company_nav li {
  width: 48.44%;
  margin: 0 3% 3% 0;
}

.company_nav li:nth-child(2n) {
  margin: 0 0 3% 0;
}

.company_nav li .inner {
  display: block;
  overflow: hidden;
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 100%;
  border: 2px solid #59c3f0;
  height: 250px;
  cursor: pointer;
}

.company_nav li .inner.company_nav_01 {
  /* background-image: url(../img/company_nav_01.jpg); */
  background-image: url(https://placehold.jp/500x250.png);
}

.company_nav li .inner.company_nav_02 {
  /* background-image: url(../img/company_nav_02.jpg); */
  background-image: url(https://placehold.jp/500x250.png);
}

.company_nav li .inner.company_nav_03 {
  /* background-image: url(../img/company_nav_03.jpg); */
  background-image: url(https://placehold.jp/500x250.png);
}

.company_nav li .inner.company_nav_04 {
  /* background-image: url(../img/company_nav_04.jpg); */
  background-image: url(https://placehold.jp/500x250.png);
}

.company_nav li .inner.company_nav_05 {
  /* background-image: url(../img/company_nav_05.jpg); */
  background-image: url(https://placehold.jp/500x250.png);
}

.company_nav li .inner.company_nav_06 {
  /* background-image: url(../img/company_nav_06.jpg); */
  background-image: url(https://placehold.jp/500x250.png);
}

.company_nav li .inner.company_nav_07 {
  /* background-image: url(../img/company_nav_07.jpg); */
  background-image: url(https://placehold.jp/500x250.png);
}

.company_nav li .inner.company_nav_08 {
  /* background-image: url(../img/company_nav_08.jpg); */
  background-image: url(https://placehold.jp/500x250.png);
}

.company_nav li .inner.company_nav_09 {
  /* background-image: url(../img/company_nav_09.jpg); */
  background-image: url(https://placehold.jp/500x250.png);
}

.company_nav li .inner.company_nav_10 {
  /* background-image: url(../img/company_nav_10.jpg); */
  background-image: url(https://placehold.jp/500x250.png);
}

.company_nav li .inner.company_nav_11 {
  /* background-image: url(../img/company_nav_11.jpg); */
  background-image: url(https://placehold.jp/500x250.png);
}

.company_nav li .inner:before {
  display: block;
  content: "";
  background: rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}

.company_nav li .inner:after {
  display: block;
  content: "";
  background: rgba(174, 220, 160, 0.7);
  height: 4rem;
  position: absolute;
  top: 50%;
  right: 24px;
  left: 24px;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  transition-duration: .2s;
  transition-timing-function: cubic-bezier(0, 0, 0.58, 1);
  z-index: 1;
}

.company_nav li .inner .company_nav_title {
  color: #FFFFFF;
  position: absolute;
  top: 50%;
  right: 10px;
  left: 10px;
  z-index: 5;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  text-align: center;
  font-weight: 500;
}

.company_nav li .inner .company_nav_more {
  opacity: 0;
  position: absolute;
  bottom: 20%;
  left: 50%;
  z-index: 5;
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  transition-duration: .2s;
  transition-timing-function: cubic-bezier(0, 0, 0.58, 1);
  border: 1px solid #FFFFFF;
  color: #FFFFFF;
  font-size: 1.2rem;
  padding: 5px 15px;
  text-align: center;
}

.company_nav li .inner .company_nav_more:after {
  font-family: "Font Awesome 5 Free";
  content: "\f105";
  font-weight: 900;
  margin-left: 5px;
}

.company_nav li .inner:hover::after {
  height: 100%;
  left: 0;
  right: 0;
}

.company_nav li .inner:hover .company_nav_more {
  opacity: 1;
}


/* history_list
----------------------------------*/

.history_list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.history_list li .history_list_year {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 40vw;
  min-width: 193px;
  max-width: 193px;
}

.history_list li .history_list_year .year_list .christian {
  margin-left: 10px;
  font-size: 1.5em;
  font-weight: 500;
}

.history_list li .history_list_txt {
  padding: 0 0 30px;
  border-left: 1px dashed #333333;
}

.history_list li .history_list_txt .txt_list {
  position: relative;
  padding: 6px 0 0 45px;
}

.history_list li .history_list_txt .txt_list:before {
  position: absolute;
  top: 16px;
  left: -7px;
  width: 12px;
  height: 12px;
  margin: auto;
  content: '';
  border-radius: 50%;
  background: #59c3f0;
}


/* faq
----------------------------------*/

.faq dt:before, .faq dd:before {
  margin-right: 10px;
  font-size: 2rem;
  color: #FFFFFF;
  width: 35px;
  height: 35px;
  display: inline-block;
  text-align: center;
}

.faq dt:before, .faq dd:before {
  border-radius: 50%;
  text-indent: 0;
}

.faq dt {
  font-weight: 500;
  margin-bottom: 10px;
  padding: 0 0 10px 45px;
  text-indent: -45px;
  border-bottom: 1px dotted #CCCCCC;
}

.faq dt:before {
  content: "Q";
  background: #59c3f0;
}

.faq dd {
  margin-bottom: 20px;
  background: #FFFFFF;
  padding: 0 0 1em 45px;
  text-indent: -45px;
}

.faq dd:before {
  content: "A";
  background: #f8ad32;
}


/* blockquote
----------------------------------*/

.blockquote {
  position: relative;
  padding: 10px 15px 10px 60px;
  box-sizing: border-box;
  font-style: italic;
  background: #f8ad32;
}

.blockquote:before {
  display: inline-block;
  position: absolute;
  top: 18px;
  left: 15px;
  font-family: "Font Awesome 5 Free";
  content: "\f10d";
  font-weight: 900;
  color: #cfcfcf;
  font-size: 3rem;
  line-height: 1;
}

.blockquote p {
  margin: 10px 0;
}

.office_list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.office_list li {
  width: 31.3%;
  margin: 0 2% 2% 0;
}

.office_list li:nth-child(3n) {
  margin: 0 0 2% 0;
}


/* thumb_list
----------------------------------*/

.thumb_list {
  display: block;
  color: #333333;
  font-size: 1.4rem;
}

.thumb_list .thumb_image {
  position: relative;
  margin-bottom: 10px;
  overflow: hidden;
  background: #fff;
}

.thumb_list .thumb_image img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  -webkit-transition: -webkit-transform .3s;
  transition: transform .3s;
}

.thumb_list .thumb_image:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.4);
  -webkit-transition: opacity .3s;
  -o-transition: opacity .3s;
  transition: opacity .3s;
}

.thumb_list .thumb_image:after {
  display: block;
  content: '';
  padding-top: 67%;
}

.thumb_list .thumb_title {
  margin-bottom: 5px;
  font-size: 1.6rem;
  font-weight: 500;
}

.thumb_list:hover {
  color: #333333;
}

.thumb_list:hover .thumb_image img {
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
}

.detail_btn {
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 3;
  text-align: center;
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
  background: #003bbb;
  color: #FFFFFF;
  padding: 3px 10px;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.detail_btn:after {
  font-family: "Font Awesome 5 Free";
  content: "\f105";
  font-weight: 900;
  margin-left: 5px;
}


/* more
----------------------------------*/

.more {
  display: block;
  position: relative;
  padding-bottom: 20px;
  color: #333333;
  font-size: 1.3rem;
}

.more:hover {
  color: #333333;
}

.more:hover .detail_btn {
  background: #FFFFFF;
  color: #003bbb;
}


/* detail
----------------------------------*/

.vertical {
  position: relative;
  display: block;
  width: 100%;
  background-color: #f0f6e6;
}

.vertical:before {
  content: '';
  display: block;
  padding-top: 75%;
}

.vertical img {
  object-fit: contain;
  font-family: 'object-fit:contain';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.thumb_image {
  position: relative;
  overflow: hidden;
  background: #fff;
}

.thumb_image img {
  object-fit: contain;
  font-family: 'object-fit: contain;';
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  -webkit-transition: -webkit-transform .3s;
  transition: transform .3s;
}

.thumb_image:after {
  display: block;
  content: '';
  padding-top: 66%;
}

.close {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
}


/* gallery
----------------------------------*/

.gallery_ul {
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
}

.gallery_ul li {
  width: 31.3%;
  margin: 0 3% 3% 0;
  text-align: center;
}

.gallery_ul li:nth-child(3n) {
  margin: 0 0 3% 0;
}

.gallery_ul li a {
  display: none;
  position: relative;
  overflow: hidden;
  background: #FFFFFF;
}

.gallery_ul li a img {
  display: block;
  object-fit: contain;
  font-family: "object-fit: contain;";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  -webkit-transition: -webkit-transform .3s;
  transition: transform .3s;
}

.gallery_ul li a:before {
  display: block;
  content: '';
  padding-top: 75%;
}

.gallery_ul li a:hover img {
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
}

.gallery_ul li a:first-child {
  display: block;
}

.gallery_ul li span {
  display: block;
  margin-top: 5px;
}


/* download
----------------------------------*/

.download {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  background-color: #f8ad32;
  color: #333333;
}

.download:hover {
  color: #333333;
}

.download .download_image {
  width: 80px;
}

.download .download_detail {
  position: relative;
  width: calc(100% - 120px);
}

.download .download_detail .detail_title {
  margin-top: 20px;
}


/* flow
----------------------------------*/

.flow_title_box {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.flow_title_box .flow_step {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  line-height: 1;
  background: #f8ad32;
  color: #FFFFFF;
  margin-right: 12px;
}

.flow_title_box .flow_step span {
  display: block;
  font-size: 1.2em;
  font-weight: 500;
}

.flow_title_box .flow_title {
  font-size: 1.8rem;
  line-height: 1.4;
  letter-spacing: .1em;
  flex: 1;
}

.flow_icon {
  margin: 0 auto 20px;
  width: 80px;
}


/* top_contents
----------------------------------*/

.top_contents {
  display: flex;
  justify-content: center;
  align-items: center;
}

.top_contents .top_illust {
  width: 10%;
}


/* top_navi
----------------------------------*/

.top_navi {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.top_navi li {
  width: 32%;
  padding: 5rem;
  color: #fff;
  background-color: #1a1a1a;
  border: 2px solid #1a1a1a;
  border-radius: 16px;
  box-shadow: 0 0 0 4px #fff inset;
}

.top_navi li a {
  position: relative;
  display: block;
  width: 100%;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
}

.top_navi li a .img-inav {
  text-align: center;
}

.top_navi li a .img-inav img {
  width: 100%;
  border-radius: 70% 60% 60% 90% / 70% 80% 40% 90%;
}

.top_navi li a .ico-inav {
  width: 65px;
  height: 65px;
  position: absolute;
  bottom: 50px;
  left: 50%;
  margin-left: -32px;
  z-index: 2;
}

.top_navi li a .ico-inav img {
  width: 100%;
}

.top_navi li a .box-inav {
  width: 100%;
  padding-top: 28px;
  text-align: center;
  z-index: 1;
  box-sizing: border-box;
}

.top_navi li a .box-inav div {
  color: #fff;
  font-size: 2rem;
  line-height: 1em;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* .top_navi li a:hover .img-inav img {
  transition: all 0.8s ease-in-out;
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  opacity: 1;
  transform: scale(1.1);
  transform-origin: center center;
} */

.top_navi li:last-child a {
  border-right: none;
}


/* average_price
----------------------------------*/

.blanket {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.blanket .blanket_image, .blanket .blanket_detail {
  width: 50%;
  box-sizing: border-box;
  -webkit-transition-duration: .8s;
  transition-duration: .8s;
}

.blanket .blanket_image {
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
  padding: 16px;
}

.blanket .blanket_image img {
  box-shadow: rgba(255, 255, 255, 0.5) 50px 50px 0 0;
  animation: uneune 5s linear infinite;
}
@keyframes uneune {
  0% {
    border-radius: 60% 50% 70% 80% / 50% 60% 50% 70%;
  }
  25% {
    border-radius: 70% 60% 60% 90% / 70% 80% 40% 90%;
  }
  50% {
    border-radius: 60% 40% 70% 60% / 40% 60% 50% 60%;
  }
  75% {
    border-radius: 90% 60% 40% 70% / 70% 50% 80% 40%;
  }
  100% {
    border-radius: 60% 50% 70% 80% / 50% 60% 50% 70%;
  }
}

.blanket .blanket_detail {
  position: relative;
  margin-top: 20px;
}

.blanket .blanket_text {
  padding: 50px 60px 50px;
  background-image: url(../img/mascot21.png);
  background-size: 200px;
  background-repeat: no-repeat;
  background-position: right bottom;
  color: #fff;
  background-color: #1a1a1a;
  border: 2px solid #1a1a1a;
  border-radius: 16px;
  box-shadow: 0 0 0 4px #fff inset;
}
#works_1 .blanket .blanket_text {
  background-image: url(../img/mascot14.png);
}
#works_2 .blanket .blanket_text {
  background-image: url(../img/mascot20.png);
}
.blanket.sns {
  justify-content: space-between;
}
.blanket.sns .blanket_image {
  width: 33.333%;
}


/* tinycarousel
----------------------------------*/

.tinycarousel {
  overflow: hidden;
  position: relative;
}

.tinycarousel .viewport {
  width: 100%;
  margin: 0 auto;
  height: 260px;
  position: relative;
}

.tinycarousel .buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 50px;
  height: 100%;
  margin: auto;
  color: #59c3f0;
  cursor: pointer;
  font-size: 5rem;
  text-align: center;
}

.tinycarousel .buttons :hover {
  opacity: .6;
}

.tinycarousel .next {
  right: 0;
  left: auto;
}

.tinycarousel .disable {
  visibility: hidden;
}

.tinycarousel .overview {
  list-style: none;
  position: absolute;
  left: 0;
  top: -1px;
}

.tinycarousel .overview li {
  overflow: hidden;
  display: table;
  float: left;
  width: 350px;
  height: 300px;
  margin: 0 1px;
  text-align: center;
  vertical-align: middle;
}

.tinycarousel .overview li p {
  background: #FFFFFF;
  color: #333333;
  padding: 5px 0;
  font-size: 1.3rem;
  text-align: center;
}


/* etc
----------------------------------*/

.mbox {
  padding: 20px;
  background-color: #FFFFFF;
  border: 2px solid #59c3f0;
  box-sizing: border-box;
}

.macker {
  background-image: -webkit-linear-gradient(left, transparent 50%, #fbff00 50%);
  background-image: -moz-linear-gradient(left, transparent 50%, #fbff00 50%);
  background-image: -ms-linear-gradient(left, transparent 50%, #fbff00 50%);
  background-image: -o-linear-gradient(left, transparent 50%, #fbff00 50%);
  background-image: linear-gradient(left, transparent 50%, #fbff00 50%);
  background-repeat: repeat-x;
  background-size: 200% .3em;
  background-position: 0 1em;
  transition: all 3.5s ease;
  font-style: normal;
  font-weight: 500;
  padding: 0 5px;
}

.macker.active {
  background-position: -100% .8em;
}

.policy {
  padding: 30px;
  background-color: #FFFFFF;
  border: 2px solid #59c3f0;
}

.cut {
  overflow: hidden;
  zoom: 1;
}

.num {
  color: #FF0000;
  font-size: 1.5em;
  font-weight: bold;
  margin-right: 5px;
}


/* animation
----------------------------------*/

@-webkit-keyframes loadingAnim {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
    -webkit-transform: translate(100%);
    transform: translate(100%);
  }
}

@keyframes loadingAnim {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
    -webkit-transform: translate(100%);
    transform: translate(100%);
  }
}

@-webkit-keyframes loadingAnim_text {
  0% {
    opacity: 1;
    color: #59c3f0;
  }
  50% {
    color: #333333;
  }
  100% {
    opacity: .5;
    color: #eee;
  }
}

@keyframes loadingAnim_text {
  0% {
    opacity: 1;
    color: #59c3f0;
  }
  50% {
    color: #333333;
  }
  100% {
    opacity: .5;
    color: #eee;
  }
}

@-webkit-keyframes flash {
  0% {
    opacity: .4;
  }
  100% {
    opacity: 1;
  }
}

@keyframes flash {
  0% {
    opacity: .4;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes animation-bar {
  0% {
    left: 0;
    right: auto;
    width: 0;
  }
  50% {
    left: 0;
    right: auto;
    width: 100%;
  }
  51% {
    left: auto;
    right: 0;
    width: 100%;
  }
  100% {
    left: auto;
    right: 0;
    width: 101%;
  }
}

@keyframes animation-bar {
  0% {
    left: 0;
    width: 0;
  }
  50% {
    left: 0;
    width: 100%;
  }
  51% {
    left: 0;
    width: 100%;
  }
  100% {
    left: 101%;
    width: 0;
  }
}

@-webkit-keyframes animation-txt {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes animation-txt {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.animation.move .animation-bar:before {
  -webkit-animation: animation-bar 1s ease 0s 1 normal forwards;
  animation: animation-bar 1s ease 0s 1 normal forwards;
}

.animation.move .animation-txt {
  -webkit-animation: animation-txt 0s ease .5s 1 normal forwards;
  animation: animation-txt 0s ease .5s 1 normal forwards;
}

.animation .animation-box {
  display: block;
  text-align: center;
}

.animation .animation-bar {
  position: relative;
  display: inline-block;
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.animation .animation-bar:before {
  content: '';
  display: inline-block;
  width: 0;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background: #f8ad32;
}

.animation .animation-txt {
  opacity: 0;
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.effect_fade {
  opacity: 0;
  transform: translate(0, 45px);
  transition: all 2s;
}

.effect_fade.effect_scroll {
  opacity: 1;
  transform: translate(0, 0);
}


/* key_visual
----------------------------------*/

.key_visual {
  position: relative;
}

.key_visual .inner {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  margin: 0 auto;
  width: 1200px;
  max-width: 100%;
  height: 320px;
  box-sizing: border-box;
}

.key_visual .inner .content_box {
  max-width: 460px;
  padding: 32px;
  background: #1a1a1a;
  border: 2px solid #1a1a1a;
  border-radius: 16px;
  box-shadow: 0 0 0 4px #fff inset;
}

.key_visual .inner .img_box {
  width: 100%;
  position: absolute;
  height: 320px;
  right: 0;
  top: 0;
  overflow: hidden;
  z-index: -1;
}

.key_visual .inner .img_box img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  font-family: "object-fit: cover";
}

.key_title {
  font-size: 4rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.33;
}

.key_title span {
  font-size: 1.5rem;
}


/* bread_list
----------------------------------*/

.bread_list {
  position: relative;
  margin: -70px auto 100px;
  width: 1200px;
  max-width: 100%;
  padding: 0 10px;
  box-sizing: border-box;
}

.bread_list .inner {
  padding: 10px 20px;
  background-color: #FFFFFF;
  display: inline-block;
}

.bread_list .inner ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
}

.bread_list .inner ul a {
  color: #333333;
}

.bread_list .inner ul a.home:before {
  font-family: "Font Awesome 5 Free";
  content: "\f015";
  font-weight: 900;
}

.bread_list .inner ul a:after {
  font-family: "Font Awesome 5 Free";
  content: "\f105";
  font-weight: 900;
  margin: 0 10px;
  color: #59c3f0;
}


/* form
----------------------------------*/

.form .required {
  background:#003bbb;
  color: #fff;
  padding: 0 5px 0;
  margin-right: 5px;
  font-size: 1.1rem;
  border-radius: 2px;
  position: relative;
  top: -2px;
}

.form .textarea, .form textarea {
  border: 1px solid #ddd;
  padding: 5px;
  width: 100%;
  border-radius: 0;
  -webkit-appearance: none;
  box-sizing: border-box;
}

.form .selectarea {
  border: 1px solid #ddd;
  padding: 5px;
  width: 100%;
  border-radius: 0;
  box-sizing: border-box;
}

.form .textarea {
  height: 30px;
}

.form .textarea02 {
  width: 48.5%;
  margin-right: 3%;
}

.form .textarea02:last-child {
  margin-right: 0;
}

.form .textarea03 {
  width: 40%;
  margin: 0 1%;
}

.form button {
  display: block;
  cursor: pointer;
  transition: all 0.2s ease-in-out 0s;
  font-family: "YakuHanJP", Lato, "M PLUS Rounded 1c", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.6rem;
}

.form label.radio_text {
  cursor: pointer;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
  padding-left: 20px;
  display: inline-block;
}

.form label.radio_text:before {
  position: absolute;
  width: 15px;
  height: 15px;
  border: 1px solid #ccc;
  border-radius: 50%;
  left: 0px;
  top: 2px;
  content: '';
  z-index: 3;
}

.form label.radio_text:after {
  content: '';
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 100%;
  left: 3px;
  top: 5px;
  background-color: #59c3f0;
  z-index: 1;
}

.form label.radio_text input[type="radio"] {
  -moz-appearance: none;
  -webkit-appearance: none;
  position: absolute;
  z-index: 2;
  width: 20px;
  height: 20px;
  left: -23px;
  top: 0px;
  margin: 0px;
  box-shadow: 20px -1px #FFFFFF;
}

.form label.radio_text input[type="radio"]:checked {
  box-shadow: none;
}

.form label.radio_text input[type="radio"]:focus {
  opacity: 0.2;
  box-shadow: 20px -1px #eeebda;
}

.form label.checkbox_text {
  cursor: pointer;
  position: relative;
  padding-left: 25px;
  margin-right: 20px;
  overflow: hidden;
  display: inline-block;
  box-sizing: border-box;
}

.form label.checkbox_text:before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  left: 0px;
  top: 0;
  border: 1px solid #ccc;
  z-index: 3;
}

.form label.checkbox_text:after {
  content: '';
  position: absolute;
  top: 40%;
  left: 5px;
  display: block;
  margin-top: -9px;
  width: 8px;
  height: 12px;
  border-right: 3px solid #59c3f0;
  border-bottom: 3px solid #59c3f0;
  transform: rotate(45deg);
  z-index: 1;
}

.form label.checkbox_text input[type="checkbox"] {
  -moz-appearance: none;
  -webkit-appearance: none;
  position: absolute;
  left: -40px;
  width: 20px;
  height: 20px;
  display: block;
  box-shadow: 41px 0px #FFF;
  z-index: 2;
  margin: 0px;
  padding: 0px;
}

.form label.checkbox_text input[type="checkbox"]:checked {
  box-shadow: none;
}

.form label.checkbox_text input[type="checkbox"]:checked:focus {
  box-shadow: 40px 0px #666;
  opacity: 0.1;
}

.form label.checkbox_text input[type="checkbox"]:focus {
  box-shadow: 41px 0px #EEE;
}

.sp-br {
  display: none;
}

@media screen and (max-width: 768px) {
  .sp-br {
    display: block;
  }
  .blanket.sns .blanket_image {
    width: 100%;
  }
}
.px-16 {
  padding: 0 16px;
}
.py-16 {
  padding: 16px 0;
}
.slide_wrap {
  width: 100%;
  padding: 4rem;
  position: relative;
  background: #003bbb;
}
.estate_slide .swiper-slide {
  padding: 1rem 0.5rem;
}
.estate_slide .swiper-slide p {
  padding: 0.5rem;
  background-color: #f1fbff;
}
.dqwaku_t {
  width: 100%;
}
.dqwaku_t:before {
  content: "";
  width: 64px;
  height: 64px;
  display: inline-block;
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  background-image: url(../img/waku_top_l.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.dqwaku_t:after {
  content: "";
  width: 64px;
  height: 64px;
  display: inline-block;
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background-image: url(../img/waku_top_r.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.dqwaku_b {
  width: 100%;
}
.dqwaku_b:before {
  content: "";
  width: 64px;
  height: 64px;
  display: inline-block;
  position: absolute;
  bottom: 0.5rem;
  left: 0.5rem;
  background-image: url(../img/waku_bottom_l.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.dqwaku_b:after {
  content: "";
  width: 64px;
  height: 64px;
  display: inline-block;
  position: absolute;
  bottom: 0.5rem;
  right: 0.5rem;
  background-image: url(../img/waku_bottom_r.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
#works .abtn a {
  width: 300px;
}

/*Loader*/
#loader {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #009bde;
}
.abtn {
  margin-top: 30px;
}
.abtn a, .abtn button {
  display: flex;
  justify-content: center;
  width: 240px;
  padding: 1rem 4rem 1rem 2rem;
  margin: auto;
  color: #fff;
  background-color: #1a1a1a;
  border: 2px solid #1a1a1a;
  border-radius: 16px;
  box-shadow: 0 0 0 4px #fff inset;
}
.g_wrap {
  padding: 32px;
  background: #1a1a1a;
  border: 2px solid #1a1a1a;
  border-radius: 16px;
  box-shadow: 0 0 0 4px #fff inset;
}
#detail .thumb-item-nav {
  margin-top: 1rem;
}
.blog_list_wrap {
  width: 100%;
}
.blog_list_wrap li {
  width: 33.333%;
  padding: 1rem;
  background-color: #fff;
}
.blog_list_wrap li a {
  display: block;
}
.blog_list_wrap li a img {
  width: 100%;
}
.tbl tbody, .tbl tfoot, .tbl thead, .tbl tr, .tbl th, .tbl td {
    transform: none;
}
.form .tbl_form .textarea, .form .tbl_form textarea {
  margin: 1rem 0;
}
.column2 .detail_left {
  width: 49%;
}
.column2 .detail_right {
  width: 49%;
}
.thumbs-slider .swiper-wrapper {
  /* flex-wrap: wrap;
  justify-content: space-between; */
  /* justify-content: center; */
}
.thumbs-slider .swiper-wrapper .swiper-slide {
  /* width: 10%; */
  margin-top: 2rem;
}
/* .thumbs-slider .swiper-wrapper .swiper-slide:nth-of-type(n + 3) {
  margin-top: 2rem;
} */

.swiper-slide img {
  max-width: 100%;
}
.thumbs-slider .swiper-slide {
  opacity: .5;
  transition: opacity .5s;
  width: calc(100% / 3);
}
.thumbs-slider .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
}
.about_top {
  font-size: 4rem;
}
.tenshu {
  text-align: right;
}
.blog_sub {
  padding: 16px;
  background: #1a1a1a;
  border: 2px solid #1a1a1a;
  border-radius: 16px;
  box-shadow: 0 0 0 4px #fff inset;
  color: #fff;
  margin-bottom: 2rem;
}
.blog_sub_ttl {
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .blog_list_wrap li {
    width: 50%;
  }
  .column2 .detail_left {
    width: 100%;
  }
  .column2 .detail_right {
    width: 100%;
  }
  .thumbs-slider .swiper-wrapper .swiper-slide {
    margin-top: 2rem;
  }
}
.flx_box {
  display: flex;
  flex-wrap: wrap;
}
.jc_center {
  justify-content: center;
}
.jc_start {
  justify-content: flex-start;
}
.jc_between {
  justify-content: space-between;
}
.ai_center {
  align-items: center;
}
.r_reverse {
  flex-direction: row-reverse;
}
.tc_white {
  color: #fff;
}

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