@charset "UTF-8";
/*==================================
      レスポンシブ設定 マップ型変数breakpointsを定義
      =================================*/
/*==================================
      # 色、フォントファミリー
      =================================*/
/*==================================
      common(一般) - 全体に共通するスタイル
      =================================*/
@media screen and (max-width: 1000px) {
  .is-pc {
    display: none !important;
  }
}
@media screen and (min-width: 1001px) {
  .is-sp {
    display: none !important;
  }
}
body,
html {
  overflow-x: hidden;
}

body {
  font-size: 16px;
  color: #222;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.5;
  background: #fff;
  min-width: initial;
  padding-top: 106.5px;
}
@media screen and (max-width: 1000px) {
  body {
    padding-top: 58.25px;
    padding-bottom: 46px;
    max-width: 500px;
    margin: 0 auto;
  }
}

.inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
@media screen and (max-width: 1000px) {
  .inner {
    padding: 0 20px;
    max-width: 500px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 370px) {
  .inner {
    padding: 0 15px;
  }
}

.l-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
@media screen and (max-width: 1000px) {
  .l-inner {
    padding: 0 20px;
  }
}
@media screen and (max-width: 370px) {
  .l-inner {
    padding: 0 15px;
  }
}

.header-inner {
  margin: 0 auto;
  padding: 0 40px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
@media screen and (max-width: 1000px) {
  .header-inner {
    padding: 0 20px;
  }
}

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

a {
  font-family: "Noto Sans JP", sans-serif;
  color: #222;
}

::-webkit-input-placeholder {
  color: rgba(62, 62, 62, 0.5);
}

::-moz-placeholder {
  color: rgba(62, 62, 62, 0.5);
}

:-ms-input-placeholder {
  color: rgba(62, 62, 62, 0.5);
}

::-ms-input-placeholder {
  color: rgba(62, 62, 62, 0.5);
}

::placeholder {
  color: rgba(62, 62, 62, 0.5);
}

input[type=text],
input[type=email],
input[type=submit],
select,
textarea {
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid #E1D2C1;
  background: #fff;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 4px;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  width: 100%;
  padding: 10px;
  margin: 0;
  outline: none;
}

.drawer-icon {
  position: fixed;
  top: 17px;
  right: 20px;
  z-index: 600;
  -webkit-transition: -webkit-transform 0.5s ease 0s;
  transition: -webkit-transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s;
}
@media screen and (min-width: 1001px) {
  .drawer-icon {
    display: none;
  }
}
.drawer-icon.is-active .drawer-icon-bar1 {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 8px;
  background: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.drawer-icon.is-active .drawer-icon-bar2 {
  opacity: 0;
}
.drawer-icon.is-active .drawer-icon-bar3 {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 8px;
  background: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.drawer-icon-bars {
  width: 25px;
  height: 16px;
  display: block;
  position: relative;
}

.drawer-icon-bar1,
.drawer-icon-bar2,
.drawer-icon-bar3 {
  position: absolute;
  width: 25px;
  height: 2px;
  background: #fff;
  top: 0;
  left: 0;
}

.drawer-icon-bar1 {
  top: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.drawer-icon-bar2 {
  top: 8px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.drawer-icon-bar3 {
  top: 16px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.drawer-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  background: #0F93E8;
  z-index: 250;
  display: none;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
.drawer-content.is-active {
  display: block;
}

.drawer-icon-nav {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.drawer-icon-nav ul li {
  margin-bottom: 20px;
}
.drawer-icon-nav ul li a {
  display: block;
  color: #ffffff;
}

.drawer-mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 220;
  display: none;
}
.drawer-mask.is-active {
  display: block;
}

.header {
  padding: 15px 0;
  background: #0F93E8;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 500;
}
@media screen and (max-width: 1000px) {
  .header {
    padding: 10px 0;
  }
}
.header .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header .flex .logo {
  max-width: 240px;
}
@media screen and (max-width: 1000px) {
  .header .flex .logo {
    max-width: 120px;
  }
}
.header .flex .logo a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header .flex .logo a:hover {
  opacity: 0.6;
}
.header .flex .right ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1;
}
.header .flex .right ul li {
  margin-right: 40px;
}
@media screen and (max-width: 1200px) {
  .header .flex .right ul li {
    margin-right: 25px;
  }
}
.header .flex .right ul li:last-child {
  margin-right: 0;
}
.header .flex .right ul li a {
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
  white-space: nowrap;
}
.header .flex .right ul li a:hover {
  opacity: 0.6;
}
@media screen and (max-width: 1200px) {
  .header .flex .right ul li a {
    font-size: 16px;
  }
}

.copyright {
  background: #103476;
  padding: 20px 0;
}
@media screen and (max-width: 1000px) {
  .copyright {
    padding: 10px 0;
  }
}
.copyright p {
  text-align: right;
  font-size: 15px;
  color: #fff;
  font-weight: 500;
}
@media screen and (max-width: 1000px) {
  .copyright p {
    font-size: 12px;
    text-align: center;
  }
}

.footer {
  padding: 120px 0 30px;
  background: url(../img/footer-bg.jpg) no-repeat top center/cover;
}
@media screen and (max-width: 1000px) {
  .footer {
    padding: 40px 0 20px;
  }
}
.footer .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1000px) {
  .footer .flex {
    display: block;
  }
}
.footer .flex .left {
  color: #fff;
}
.footer .flex .left .logo {
  max-width: 240px;
  margin-bottom: 40px;
}
@media screen and (max-width: 1000px) {
  .footer .flex .left .logo {
    margin-bottom: 20px;
    max-width: 120px;
    margin-left: auto;
    margin-right: auto;
  }
}
.footer .flex .left .logo a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.footer .flex .left .logo a:hover {
  opacity: 0.6;
}
.footer .flex .left .name {
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 10px;
}
@media screen and (max-width: 1000px) {
  .footer .flex .left .name {
    font-size: 20px;
    text-align: center;
  }
}
.footer .flex .left .address {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
}
@media screen and (max-width: 1000px) {
  .footer .flex .left .address {
    font-size: 14px;
    margin-bottom: 30px;
    text-align: center;
  }
}
.footer .flex .right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1000px) {
  .footer .flex .right {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.footer .flex .right ul li {
  margin-bottom: 8px;
}
.footer .flex .right ul li:last-child {
  margin-bottom: 0;
}
.footer .flex .right ul li a {
  line-height: 1;
  display: inline-block;
  font-size: 16px;
  color: #fff;
  font-weight: 600;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 1000px) {
  .footer .flex .right ul li a {
    font-size: 14px;
  }
}
.footer .flex .right ul li a:hover {
  opacity: 0.6;
}
.footer .flex .right .ul1 {
  margin-right: 40px;
}
.footer .flex .right .ul2 {
  margin-bottom: 15px;
}
.footer .btn-area .btn1 {
  margin-bottom: 10px;
}
.footer .btn-area .btn1 a {
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  display: block;
  max-width: 170px;
  color: #fff;
  padding: 8px 0;
  border-radius: 30px;
  background: #FF8F39;
  text-align: center;
  border: 1.5px solid #fff;
  letter-spacing: 1px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.footer .btn-area .btn1 a:hover {
  opacity: 0.6;
}
.footer .btn-area .btn2 a {
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  display: block;
  max-width: 170px;
  color: #fff;
  padding: 8px 0;
  border-radius: 30px;
  background: #103476;
  text-align: center;
  border: 1.5px solid #fff;
  letter-spacing: 1px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.footer .btn-area .btn2 a:hover {
  opacity: 0.6;
}

.section {
  padding: 70px 0;
}
@media screen and (max-width: 1000px) {
  .section {
    padding: 40px 0;
  }
}

.en {
  font-family: "Dela Gothic One", sans-serif;
}

a {
  cursor: pointer;
}

.cta {
  background: url(../img/cta-bg.jpg) no-repeat center center/cover;
  position: relative;
}
.cta .ul-wrap {
  position: relative;
}
.cta .bg {
  position: absolute;
  left: 93%;
  bottom: -70px;
  width: 18%;
}
@media screen and (max-width: 1200px) {
  .cta .bg {
    width: 15%;
    left: 80%;
  }
}
@media screen and (max-width: 1000px) {
  .cta .bg {
    bottom: -40px;
    width: 30%;
    left: 70%;
  }
}
.cta h2 {
  text-align: center;
  line-height: 1;
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 10px;
}
@media screen and (max-width: 1000px) {
  .cta h2 {
    margin-bottom: 10px;
  }
}
.cta h2 .wrap {
  display: inline-block;
  border-bottom: 8px solid #FFEF35;
}
@media screen and (max-width: 1000px) {
  .cta h2 .wrap {
    border-bottom: 6px solid #FFEF35;
  }
}
.cta .lead {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
}
@media screen and (max-width: 1000px) {
  .cta .lead {
    font-size: 20px;
  }
}
@media screen and (max-width: 370px) {
  .cta .lead {
    font-size: 19px;
  }
}
.cta ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #222;
  color: #fff;
  border: 4px solid #FFFFFF;
  border-radius: 4px;
}
@media screen and (max-width: 1000px) {
  .cta ul {
    border: 3px solid #FFFFFF;
    display: block;
  }
}
.cta ul li {
  width: 33.333%;
  border-right: 2px solid #fff;
  text-align: center;
  padding: 15px 10px 25px;
}
.cta ul li:last-child {
  border-right: none;
}
@media screen and (max-width: 1000px) {
  .cta ul li {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #fff;
  }
  .cta ul li:last-child {
    border-bottom: none;
  }
}
.cta ul li .icon {
  width: 20%;
  margin: 0 auto 10px;
}
.cta ul li h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 5px;
}
@media screen and (max-width: 1000px) {
  .cta ul li h3 {
    font-size: 22px;
  }
}
.cta ul li p {
  font-size: 15px;
  margin-bottom: 15px;
  font-weight: 500;
}
.cta ul .btn1 {
  text-align: center;
}
.cta ul .btn1 a {
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  display: block;
  max-width: 220px;
  margin: 0 auto;
  color: #fff;
  padding: 15px 0;
  border-radius: 30px;
  background: #FF8F39;
  text-align: center;
  border: 3px solid #fff;
  letter-spacing: 1px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.cta ul .btn1 a:hover {
  opacity: 0.6;
}
.cta ul .btn2 {
  text-align: center;
}
.cta ul .btn2 a {
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  display: block;
  max-width: 220px;
  margin: 0 auto;
  color: #fff;
  padding: 15px 0;
  border-radius: 30px;
  background: #47C65D;
  text-align: center;
  border: 3px solid #fff;
  letter-spacing: 1px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.cta ul .btn2 a:hover {
  opacity: 0.6;
}
.cta ul .btn3 {
  text-align: center;
}
.cta ul .btn3 a {
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  display: block;
  max-width: 220px;
  margin: 0 auto;
  color: #fff;
  padding: 15px 0;
  border-radius: 30px;
  background: #103476;
  text-align: center;
  border: 3px solid #fff;
  letter-spacing: 1px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.cta ul .btn3 a:hover {
  opacity: 0.6;
}

.section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  position: relative;
  line-height: 2;
  margin-bottom: 20px;
  text-align: center;
}
@media screen and (max-width: 1000px) {
  .section-title {
    margin-bottom: 10px;
    font-size: 22px;
  }
}
.section-title .section-icon {
  width: 60px;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 100%;
}
@media screen and (max-width: 1000px) {
  .section-title .section-icon {
    width: 30px;
  }
}
.section-title span {
  line-height: 1;
  display: inline-block;
}
.section-title .big {
  font-size: 110%;
}
.section-title .section-title-wrap {
  display: inline;
  border-bottom: 8px solid #EAE258;
}
@media screen and (max-width: 1000px) {
  .section-title .section-title-wrap {
    border-bottom: 6px solid #EAE258;
  }
}
.section-title .dot {
  position: relative;
}
.section-title .dot::before {
  position: absolute;
  bottom: 100%;
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #EE4903;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 1000px) {
  .section-title .dot::before {
    width: 5px;
    height: 5px;
    bottom: 95%;
  }
}
.section-title .small-text {
  font-size: 24px;
  font-weight: 500;
}
@media screen and (max-width: 1000px) {
  .section-title .small-text {
    font-size: 16px;
  }
}

.plan-slider-sec {
  padding: 60px 0;
  background: #f3f3f3;
}

.plan-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 24px;
  position: relative;
}

.plan-title::after {
  content: "";
  display: block;
  width: 220px;
  height: 6px;
  background: #e7e853;
  margin: 10px auto 0;
}

/* 位置の基準 */
.plan-slider-wrap {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 0px;
  /* 矢印の余白 */
}

/* slick本体 */
.plan-slider {
  overflow: visible;
  /* 左右見せるため */
}

.plan-slide {
  padding: 0 40px;
  /* スライド間余白 */
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.plan-slide img {
  width: 100%;
  height: auto;
  background: #fff;
  display: block;
}

/* カスタム矢印（丸＋線のやつ） */
.plan-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 3px solid #5aa7ff;
  background: #fff;
  cursor: pointer;
  z-index: 5;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  background: #E1ECF1;
}

.plan-arrow:hover {
  -webkit-transform: translateY(-50%) scale(1.05);
          transform: translateY(-50%) scale(1.05);
}

.plan-prev {
  left: -10px;
}

.plan-next {
  right: -10px;
}

/* 中の矢印（擬似要素で描画） */
.plan-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  border-top: 3px solid #222;
  border-right: 3px solid #222;
  -webkit-transform-origin: center;
          transform-origin: center;
}
@media screen and (max-width: 1000px) {
  .plan-arrow::before {
    width: 8px;
    height: 8px;
  }
}

.plan-prev::before {
  -webkit-transform: translate(-35%, -50%) rotate(-135deg);
          transform: translate(-35%, -50%) rotate(-135deg);
}

.plan-next::before {
  -webkit-transform: translate(-65%, -50%) rotate(45deg);
          transform: translate(-65%, -50%) rotate(45deg);
}

/* ドット */
.plan-slider .slick-dots {
  bottom: -35px;
}

.plan-slider .slick-dots li button:before {
  color: #aaa;
  opacity: 1;
  content: "";
  background: transparent;
  border-radius: 50%;
  border: 1px solid #A2A2A2;
  border-radius: 50%;
  width: 10px;
  height: 10px;
}

.plan-slider .slick-dots li.slick-active button:before {
  background: #A2A2A2;
  width: 10px;
  height: 10px;
}

.plan-next {
  right: 0.5%;
}

.plan-prev {
  left: 0.5%;
}

/* SP調整 */
@media (max-width: 768px) {
  .plan-slider-wrap {
    padding: 0 20px;
  }
  .plan-arrow {
    width: 44px;
    height: 44px;
  }
}
@media screen and (max-width: 768px) and (max-width: 1000px) {
  .plan-arrow {
    width: 30px;
    height: 30px;
  }
}
@media (max-width: 768px) {
  .plan-prev {
    left: 0px;
  }
  .plan-next {
    right: 0px;
  }
  .plan-slide {
    padding: 0 5px;
  }
}
.top-point .ul-wrap {
  position: relative;
}
.top-point .ul-wrap .right-icon {
  position: absolute;
  top: -19%;
  width: 17%;
  right: 0%;
}
@media screen and (max-width: 1000px) {
  .top-point .ul-wrap .right-icon {
    top: -2%;
    width: 20%;
  }
}
.top-point ul {
  background: #0F93E8;
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1000px) {
  .top-point ul {
    padding: 20px;
    display: block;
  }
}
.top-point ul li {
  width: 48%;
  background: #fff;
  border: 2px solid #222;
}
@media screen and (max-width: 1000px) {
  .top-point ul li {
    width: 100%;
    margin-bottom: 20px;
  }
  .top-point ul li:last-child {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1001px) {
  .top-point ul li:nth-child(n+3) {
    margin-top: 15px;
  }
}
.top-point ul li .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1000px) {
  .top-point ul li .flex {
    display: block;
  }
}
.top-point ul li .flex .left {
  width: 50%;
  padding: 0px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 1000px) {
  .top-point ul li .flex .left {
    padding: 15px;
    width: 100%;
  }
}
.top-point ul li .flex .left .point {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  line-height: 1;
  margin-bottom: 30px;
}
@media screen and (max-width: 1200px) {
  .top-point ul li .flex .left .point {
    margin-bottom: 10px;
  }
}
.top-point ul li .flex .left .point .text1 {
  font-size: 23px;
}
@media screen and (max-width: 1200px) {
  .top-point ul li .flex .left .point .text1 {
    font-size: 20px;
  }
}
@media screen and (max-width: 1000px) {
  .top-point ul li .flex .left .point .text1 {
    font-size: 16px;
  }
}
.top-point ul li .flex .left .point .text2 {
  font-size: 40px;
  letter-spacing: 3px;
  position: relative;
  top: -3px;
  margin-left: 3px;
}
@media screen and (max-width: 1000px) {
  .top-point ul li .flex .left .point .text2 {
    font-size: 26px;
    letter-spacing: 0;
  }
}
.top-point ul li .flex .left h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 3px;
}
.top-point ul li .flex .left h3 .wrap {
  display: inline-block;
  background: #EAE258;
}
@media screen and (max-width: 1200px) {
  .top-point ul li .flex .left h3 {
    font-size: 20px;
  }
}
@media screen and (max-width: 1000px) {
  .top-point ul li .flex .left h3 {
    font-size: 18px;
  }
}
.top-point ul li .flex .left p {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
}
@media screen and (max-width: 1300px) {
  .top-point ul li .flex .left p {
    font-size: 16px;
  }
}
@media screen and (max-width: 1200px) {
  .top-point ul li .flex .left p {
    font-size: 12px;
  }
}
@media screen and (max-width: 1000px) {
  .top-point ul li .flex .left p {
    font-size: 13px;
  }
}
.top-point ul li .flex .right {
  width: 50%;
}
@media screen and (max-width: 1000px) {
  .top-point ul li .flex .right {
    width: 100%;
    margin-top: 10px;
  }
}

.top-plan {
  background: #EEEEEE;
}
.top-plan .slick-slider .slick-track,
.top-plan .slick-slider .slick-list {
  overflow: visible;
}
.top-plan .btn {
  margin-top: 60px;
}
@media screen and (max-width: 1000px) {
  .top-plan .btn {
    margin-top: 40px;
  }
}

@media screen and (max-width: 1000px) {
  .top-point ul li .flex .right .wrap {
    position: relative;
    padding-top: 40%;
  }
  .top-point ul li .flex .right .wrap img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.plan-box {
  border: 2px solid #222;
  padding: 20px;
  background: #fff;
}
@media screen and (max-width: 1000px) {
  .plan-box {
    padding: 10px;
  }
}
.plan-box .heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  white-space: nowrap;
}
@media screen and (max-width: 1000px) {
  .plan-box .heading {
    display: block;
  }
}
.plan-box .heading .left {
  width: 330px;
  background: #79C5F7;
  padding: 15px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1000px) {
  .plan-box .heading .left {
    width: 100%;
  }
}
.plan-box .heading .left .text1 {
  background: #fff;
  border-radius: 50px;
  text-align: center;
  font-weight: 800;
  line-height: 1.2;
  padding: 10px 5px;
  position: relative;
  width: 24px;
  min-width: 24px;
}
@media screen and (max-width: 1000px) {
  .plan-box .heading .left .text1 {
    font-size: 13px;
    padding: 15px 5px;
    margin-right: 5px;
  }
}
.plan-box .heading .left .text1 .wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.plan-box .heading .left .text2 {
  line-height: 1;
  font-size: 70px;
  padding-right: 15px;
  border-right: 2px solid #fff;
}
@media screen and (max-width: 1000px) {
  .plan-box .heading .left .text2 {
    font-size: 40px;
  }
}
.plan-box .heading .left .text2 span {
  font-size: 40%;
}
.plan-box .heading .left .text3 {
  font-size: 25px;
  font-weight: 700;
  padding-left: 15px;
  line-height: 1.3;
}
@media screen and (max-width: 1000px) {
  .plan-box .heading .left .text3 {
    line-height: 1;
  }
}
.plan-box .heading .left-wrap {
  width: calc(100% - 30px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (max-width: 1000px) {
  .plan-box .heading .left-wrap {
    width: 100%;
    -webkit-box-pack: initial;
        -ms-flex-pack: initial;
            justify-content: initial;
  }
}
.plan-box .heading .right {
  width: calc(100% - 340px);
  padding: 10px;
  font-weight: 600;
  white-space: wrap;
}
@media screen and (max-width: 1000px) {
  .plan-box .heading .right {
    width: 100%;
    font-size: 14px;
  }
}
.plan-box .bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 20px;
}
.plan-box .bottom .img1 {
  width: 40%;
}
.plan-box .bottom .img2 {
  width: 57%;
}

.section-btn {
  text-align: center;
}
.section-btn a {
  display: inline-block;
  background: #FF8F39;
  border: 4px solid #fff;
  border-radius: 10px;
  padding: 20px 40px;
  color: #fff;
  font-weight: 800;
  font-size: 20px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.section-btn a:hover {
  opacity: 0.6;
}
@media screen and (max-width: 1000px) {
  .section-btn a {
    border: 2px solid #fff;
    font-size: 16px;
    padding: 15px 20px;
  }
}
.section-btn a .section-btn-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.section-btn a .section-btn-arrow {
  width: 40px;
  margin-left: 20px;
}
@media screen and (max-width: 1000px) {
  .section-btn a .section-btn-arrow {
    width: 20px;
    margin-left: 13px;
  }
}

.about {
  background: url(../img/about-bg.jpg) no-repeat top center/cover;
}
.about .btn {
  margin-top: 50px;
}
@media screen and (max-width: 1000px) {
  .about .btn {
    margin-top: 25px;
  }
}
.about ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 1000px) {
  .about ul {
    display: block;
  }
}
@media screen and (min-width: 1001px) {
  .about ul li {
    width: calc(33.333% - 26.6666666667px);
    margin-right: 40px;
  }
  .about ul li:nth-child(3n) {
    margin-right: 0;
  }
  .about ul li:nth-child(n+4) {
    margin-top: 40px;
  }
}
@media screen and (max-width: 1000px) {
  .about ul li {
    margin-bottom: 30px;
  }
  .about ul li:last-child {
    margin-bottom: 0;
  }
}
.about ul li .img {
  max-width: 200px;
  margin: 0 auto;
}
.about ul li .num {
  font-family: "Dela Gothic One", sans-serif;
  font-size: 40px;
  text-align: center;
  line-height: 1;
  margin-top: -20px;
  margin-bottom: 20px;
}
@media screen and (max-width: 1000px) {
  .about ul li .num {
    font-size: 36px;
    margin-bottom: 5px;
  }
}
.about ul li h3 {
  font-size: 22px;
  text-align: center;
  font-weight: 800;
  margin-bottom: 10px;
}
@media screen and (max-width: 1000px) {
  .about ul li h3 {
    font-size: 20px;
  }
}
.about ul li h3 span {
  background: #e7e853;
}
.about ul li p {
  font-size: 17px;
  font-weight: 500;
}
@media screen and (max-width: 1000px) {
  .about ul li p {
    font-size: 14px;
  }
}

.case-slider {
  max-width: 1200px;
  margin: 0 auto;
}
.top-case {
  background: #222;
}
.top-case .section-title {
  color: #fff;
}
.top-case .btn {
  margin-top: 60px;
}
@media screen and (max-width: 1000px) {
  .top-case .btn {
    margin-top: 40px;
  }
}
@media screen and (min-width: 1001px) {
  .top-case .section-title .dot::before {
    bottom: 110%;
  }
}
.top-case .item {
  padding: 0 15px;
}
@media screen and (max-width: 1000px) {
  .top-case .item {
    padding: 0 20px;
  }
}
.top-case .item .img .wrap {
  position: relative;
  padding-top: 65%;
}
.top-case .item .img .wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-case .item .contents {
  padding: 10px;
}
.top-case .item .contents h3 {
  font-size: 22px;
  margin-bottom: 8px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #fff;
}
@media screen and (max-width: 1000px) {
  .top-case .item .contents h3 {
    font-size: 20px;
  }
}
.top-case .item .contents .category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.top-case .item .contents .category .item {
  background: #fff;
  color: #222;
  padding: 5px 5px;
  line-height: 1;
  margin-bottom: 7px;
  margin-right: 7px;
  font-weight: 500;
  font-size: 14px;
}
@media screen and (max-width: 1000px) {
  .top-case .item .contents .category .item {
    font-size: 13px;
  }
}
.top-case .slick-dots li button::before {
  width: 10px;
  height: 10px;
  min-width: 10px;
  min-height: 10px;
  border: 1px solid #A2A2A2;
  border-radius: 50%;
  opacity: 1;
  content: "";
}
.top-case .slick-dots {
  bottom: -35px;
}
@media screen and (max-width: 1000px) {
  .top-case .slick-dots {
    bottom: -25px;
  }
}
.top-case .slick-dots li.slick-active button:before {
  background: #A2A2A2;
}

.top-model {
  background: #E1ECF1;
}
.top-model .m-icon {
  position: absolute;
  left: 3%;
  top: 0;
  width: 15%;
  z-index: 23;
}
@media screen and (max-width: 1000px) {
  .top-model .m-icon {
    left: 0;
    width: 20%;
    top: -40px;
  }
}
.top-model .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .top-model .flex {
    display: block;
  }
}
@media screen and (max-width: 1000px) {
  .top-model .flex .img {
    width: 100%;
    margin-bottom: 10px;
  }
}
.top-model .flex .contents {
  background: #fff;
  border-radius: 12px;
  border: 4px solid #0F93E8;
  width: 520px;
  min-width: 520px;
  padding: 15px;
  position: relative;
  z-index: 2;
  margin-left: auto;
  left: -5%;
}
@media screen and (max-width: 1000px) {
  .top-model .flex .contents {
    min-width: initial;
    left: 0;
    border: 3px solid #0F93E8;
    width: 100%;
  }
}
.top-model .flex .section-btn {
  text-align: left;
}
@media screen and (max-width: 1000px) {
  .top-model .flex .section-btn {
    text-align: center;
  }
}
.top-model h3 {
  font-size: 24px;
  font-weight: 800;
  padding-bottom: 10px;
  line-height: 1;
  border-bottom: 2px solid #222;
  margin-bottom: 10px;
}
@media screen and (max-width: 1000px) {
  .top-model h3 {
    font-size: 20px;
    text-align: center;
  }
}
.top-model .map2 {
  position: absolute;
  right: 15px;
  bottom: 25px;
  max-width: 147px;
}
@media screen and (max-width: 1000px) {
  .top-model .map2 {
    position: initial;
    width: 40%;
    margin: 0 auto 10px;
  }
}
.top-model p {
  max-width: 330px;
  margin-bottom: 10px;
}
@media screen and (max-width: 1000px) {
  .top-model p {
    width: 100%;
  }
}
.top-model .btn {
  text-align: left;
  position: relative;
  z-index: 4;
}
@media screen and (max-width: 1000px) {
  .top-model .btn {
    text-align: center;
  }
}

.footer-fixed {
  position: fixed;
  z-index: 50;
  right: 0;
  top: 120px;
}
@media screen and (max-width: 1000px) {
  .footer-fixed {
    display: none;
  }
}
.footer-fixed li {
  width: 60px;
  margin-bottom: 10px;
}
.footer-fixed li a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.footer-fixed li a:hover {
  opacity: 0.6;
}

.footer-fixed-sp {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 55;
}
.footer-fixed-sp ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.footer-fixed-sp ul li {
  width: 33.33333%;
  white-space: nowrap;
}
.footer-fixed-sp .btn1 {
  text-align: center;
}
.footer-fixed-sp .btn1 a {
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  display: block;
  max-width: 220px;
  margin: 0 auto;
  color: #fff;
  padding: 15px 0;
  background: #FF8F39;
  text-align: center;
  border: 1px solid #fff;
  letter-spacing: 1px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.footer-fixed-sp .btn1 a:hover {
  opacity: 0.6;
}
.footer-fixed-sp .btn2 {
  text-align: center;
}
.footer-fixed-sp .btn2 a {
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  display: block;
  max-width: 220px;
  margin: 0 auto;
  color: #fff;
  padding: 15px 0;
  background: #47C65D;
  text-align: center;
  border: 1px solid #fff;
  letter-spacing: 1px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.footer-fixed-sp .btn2 a:hover {
  opacity: 0.6;
}
.footer-fixed-sp .btn3 {
  text-align: center;
}
.footer-fixed-sp .btn3 a {
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  display: block;
  max-width: 220px;
  margin: 0 auto;
  color: #fff;
  padding: 15px 0;
  background: #103476;
  text-align: center;
  border: 1px solid #fff;
  letter-spacing: 1px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 370px) {
  .footer-fixed-sp .btn3 a {
    font-size: 11px;
  }
}
.footer-fixed-sp .btn3 a:hover {
  opacity: 0.6;
}
.footer-fixed-sp span {
  width: 15px;
  display: inline-block;
}
.footer-fixed-sp span img {
  vertical-align: middle;
  position: relative;
  top: -1px;
}

.common-heading {
  background: #E1ECF1;
  padding: 60px 0;
}
@media screen and (max-width: 1000px) {
  .common-heading {
    padding: 30px 0;
  }
}
.common-heading .title {
  text-align: center;
}
.common-heading .title .en {
  text-align: center;
  line-height: 1;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 10px;
}
.common-heading .title .en .wrap {
  display: inline-block;
  border-bottom: 8px solid #FFEF35;
}
@media screen and (max-width: 1000px) {
  .common-heading .title .en .wrap {
    border-bottom: 6px solid #FFEF35;
  }
}
.common-heading .title .main-title {
  font-size: 50px;
  font-weight: 700;
  line-height: 1.3;
}
@media screen and (max-width: 1000px) {
  .common-heading .title .main-title {
    font-size: 24px;
  }
}
@media screen and (max-width: 370px) {
  .common-heading .title .main-title {
    font-size: 20px;
  }
}

.bread {
  padding: 10px 0;
  line-height: 1.3;
}
@media screen and (max-width: 1000px) {
  .bread {
    padding: 8px 0;
  }
}
.bread a,
.bread span {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  color: #666666;
}
@media screen and (max-width: 1000px) {
  .bread a,
  .bread span {
    font-size: 11px;
  }
}
.bread a {
  white-space: nowrap;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.bread a:hover {
  opacity: 0.6;
}

.plan {
  padding-bottom: 0;
  /* タブの並び */
  /* 屋根型タブ */
  /* アクティブタブ */
  /* 下の中身パネル */
  /* スマホは縦並びでもOKなら */
}
@media screen and (max-width: 1000px) {
  .plan .l-inner {
    padding: 0;
  }
}
.plan .heading2 {
  background: #fff;
}
.plan .bottom2 {
  background: #E1ECF1;
  padding: 50px 0;
}
@media screen and (max-width: 1000px) {
  .plan .bottom2 {
    padding: 30px 0;
  }
}
.plan .house-tabs {
  margin: 0 auto;
}
.plan .house-tabs__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  margin-bottom: -1px;
  /* 下のパネルの枠とくっつける */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: initial;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1000px) {
  .plan .house-tabs__nav {
    gap: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.plan .house-tab {
  background: #E1ECF1;
  white-space: nowrap;
  font-weight: 700;
  padding: 10px 10px 10px;
  cursor: pointer;
  /* 屋根のシェイプ */
  clip-path: polygon(0% 35%, 50% 0%, 100% 35%, 100% 100%, 0% 100%);
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
  width: 31%;
}
@media screen and (max-width: 1000px) {
  .plan .house-tab {
    width: 32%;
    padding: 5px;
  }
}
.plan .house-tab .wrap {
  background: #fff;
  padding: 15px 10px 0px;
  clip-path: polygon(0% 40%, 50% 0%, 100% 40%, 100% 100%, 0% 100%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  position: relative;
  z-index: 4;
}
@media screen and (max-width: 1000px) {
  .plan .house-tab .wrap {
    padding: 10px 10px 0px;
  }
}
.plan .house-tab .text {
  font-size: 60px;
  font-family: "Dela Gothic One", sans-serif;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 1000px) {
  .plan .house-tab .text {
    font-size: 20px;
    position: relative;
    z-index: 6;
  }
}
.plan .house-tab span {
  font-weight: 700;
  font-size: 28px;
  display: inline-block;
}
@media screen and (max-width: 1000px) {
  .plan .house-tab span {
    font-size: 12px;
  }
}
.plan .house-tab span {
  display: inline-block;
  position: relative;
  z-index: 2;
}
.plan .house-tab .icon {
  width: 100px;
  margin-right: 10px;
  height: 96px;
}
@media screen and (max-width: 1000px) {
  .plan .house-tab .icon {
    height: 18px;
    position: absolute;
    left: 0;
    top: 0;
    margin-right: 0;
    display: none;
  }
}
.plan .house-tab .icon img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
}
.plan .house-tab.is-active {
  position: relative;
  z-index: 2;
  /* パネルより前に */
}
.plan .house-tab.is-active .wrap {
  background: #E1ECF1;
}
.plan .house-tabs__panels {
  position: relative;
  z-index: 1;
}
.plan .house-panel {
  display: none;
  -webkit-animation: fade 0.8s ease;
          animation: fade 0.8s ease;
}
.plan .house-panel.is-active {
  display: block;
}
@-webkit-keyframes fade {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fade {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.plan .img-h {
  max-width: 200px;
  margin: 0 auto;
}
@media screen and (max-width: 1000px) {
  .plan .img-h {
    max-width: 150px;
  }
}
.plan .section-title .section-icon {
  bottom: 86%;
}
.plan .section-title-wrap {
  border-bottom: none !important;
}
.plan .plan-box {
  max-width: 900px;
  margin: 0 auto;
  margin-bottom: 40px;
}
@media screen and (max-width: 1000px) {
  .plan .plan-box {
    margin-bottom: 20px;
  }
}
.plan .plan-box:last-child {
  margin-bottom: 0;
}

.features1 .box-wrap {
  position: relative;
}
.features1 .box-wrap .bg1 {
  position: absolute;
  top: -10%;
  left: -2%;
  width: 22%;
  z-index: 2;
}
@media screen and (max-width: 1000px) {
  .features1 .box-wrap .bg1 {
    width: 26%;
  }
}
.features1 .box-wrap .bg2 {
  position: absolute;
  top: -2%;
  right: -5%;
  width: 25%;
}
@media screen and (max-width: 1000px) {
  .features1 .box-wrap .bg2 {
    width: 34%;
    top: -15%;
  }
}
.features1 .box-wrap .bg3 {
  position: absolute;
  bottom: -15%;
  left: 0%;
  width: 30%;
}
@media screen and (max-width: 1000px) {
  .features1 .box-wrap .bg3 {
    bottom: -10%;
    width: 30%;
  }
}
.features1 .box-wrap .bg4 {
  position: absolute;
  bottom: -10%;
  right: 0%;
  width: 20%;
  z-index: 2;
}
.features1 .box {
  background: #79C5F7;
  padding: 60px 40px;
  max-width: 800px;
  margin: 0 auto;
  clip-path: polygon(100% 0, 100% 90%, 50% 100%, 0 90%, 0 0);
}
@media screen and (max-width: 1000px) {
  .features1 .box {
    padding: 40px 20px;
    clip-path: polygon(100% 0, 100% 95%, 50% 100%, 0 95%, 0 0);
  }
}
.features1 .lead {
  text-align: center;
  margin-bottom: 10px;
}
.features1 .lead .wrap {
  background: #fff;
  display: inline-block;
  line-height: 1.4;
  padding: 5px 10px;
  font-size: 24px;
  font-weight: 700;
}
@media screen and (max-width: 1000px) {
  .features1 .lead .wrap {
    font-size: 16px;
  }
}
.features1 p {
  font-weight: 500;
  font-size: 18px;
  text-align: center;
}
@media screen and (max-width: 1000px) {
  .features1 p {
    text-align: left;
    font-size: 14px;
  }
}
.features1 p .white-span {
  padding: 5px;
  background: #fff;
  font-weight: 700;
}
@media screen and (max-width: 1000px) {
  .features1 p .white-span {
    padding: 2px 5px;
  }
}
.features1 p .big {
  font-size: 135%;
}

.features2 {
  background: #0F93E8;
}
@media screen and (min-width: 1001px) {
  .features2 {
    padding-top: 120px;
  }
}
.features2 .ff1 {
  position: absolute;
  left: 0;
  bottom: -50%;
  width: 45%;
  z-index: 2;
}
@media screen and (max-width: 1000px) {
  .features2 .ff1 {
    width: 25%;
    bottom: 0;
  }
}
.features2 .ff2 {
  position: absolute;
  right: 0;
  bottom: -50%;
  width: 45%;
  z-index: 2;
}
@media screen and (max-width: 1000px) {
  .features2 .ff2 {
    width: 25%;
    bottom: 0;
  }
}
.features2 .box {
  background: #fff;
  padding: 40px 40px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  margin-bottom: 100px;
  width: 95%;
  margin-left: auto;
}
@media screen and (max-width: 1000px) {
  .features2 .box {
    margin-bottom: 30px;
    max-width: 0;
  }
}
.features2 .box .img {
  width: 40%;
  position: absolute;
  left: -5%;
  top: -40px;
}
@media screen and (max-width: 1000px) {
  .features2 .box .img {
    width: 100%;
    margin-bottom: 10px;
    position: initial;
  }
}
.features2 .box:nth-child(2n) {
  -webkit-box-orient: initial;
  -webkit-box-direction: initial;
      -ms-flex-direction: initial;
          flex-direction: initial;
  margin-right: auto;
  margin-left: initial;
}
@media screen and (max-width: 1000px) {
  .features2 .box:nth-child(2n) {
    margin-right: initial;
  }
}
.features2 .box:nth-child(2n) .img {
  width: 40%;
  position: absolute;
  right: -5%;
  left: initial;
  top: -40px;
}
@media screen and (max-width: 1000px) {
  .features2 .box:nth-child(2n) .img {
    width: 100%;
    margin-bottom: 10px;
    position: initial;
    margin: 0;
  }
}
@media screen and (max-width: 1000px) {
  .features2 .box {
    padding: 20px 20px;
    display: block;
  }
}
.features2 .box .contents {
  width: 60%;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .features2 .box .contents {
    width: 100%;
  }
}
.features2 .num {
  font-family: "Dela Gothic One", sans-serif;
  font-size: 60px;
  position: absolute;
  top: -65px;
  right: 0;
  line-height: 1;
}
@media screen and (max-width: 1000px) {
  .features2 .num {
    font-size: 40px;
    top: -40px;
  }
}
.features2 .cate {
  background: #FFEF35;
  line-height: 1;
  padding: 5px 10px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 18px;
  display: inline-block;
  margin-bottom: 10px;
}
@media screen and (max-width: 1000px) {
  .features2 .cate {
    font-size: 16px;
  }
}
.features2 h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}
@media screen and (max-width: 1000px) {
  .features2 h3 {
    font-size: 20px;
  }
}
.features2 p {
  font-size: 18px;
  font-weight: 600;
}
@media screen and (max-width: 1000px) {
  .features2 p {
    font-size: 14px;
  }
}
.features2 .inner {
  max-width: 1000px;
}
@media screen and (max-width: 1000px) {
  .features2 .img {
    margin-top: 15px;
  }
}

@media screen and (max-width: 1000px) {
  body {
    -webkit-box-shadow: 0 3px 6px rgba(62, 62, 62, 0.5);
            box-shadow: 0 3px 6px rgba(62, 62, 62, 0.5);
  }
  .features2 .box {
    max-width: 100%;
    width: 100%;
  }
  .footer-fixed-sp .btn1 a {
    max-width: 100%;
  }
  .footer-fixed-sp .btn2 a {
    max-width: 100%;
  }
  .footer-fixed-sp .btn3 a {
    max-width: 100%;
  }
  .features2 .box:last-child {
    margin-bottom: 0;
  }
}
.model1 {
  background: #79C5F7;
}
.model1 .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1000px) {
  .model1 .flex {
    display: block;
  }
}
.model1 .flex .left {
  width: 48%;
}
@media screen and (max-width: 1000px) {
  .model1 .flex .left {
    width: 100%;
    margin-bottom: 15px;
  }
}
.model1 .flex .left h3 {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1.4;
}
@media screen and (max-width: 1000px) {
  .model1 .flex .left h3 {
    font-size: 20px;
  }
}
@media screen and (max-width: 370px) {
  .model1 .flex .left h3 {
    font-size: 18px;
  }
}
.model1 .flex .left .white-box {
  display: inline-block;
  background: #fff;
  padding: 5px 10px;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}
@media screen and (max-width: 1000px) {
  .model1 .flex .left .white-box {
    font-size: 16px;
  }
}
.model1 .flex .left .text1 {
  width: 90%;
  margin-bottom: 10px;
}
@media screen and (max-width: 1000px) {
  .model1 .flex .left .text1 {
    width: 100%;
  }
}
.model1 .flex .left p {
  font-weight: 600;
}
.model1 .flex .right {
  width: 48%;
}
@media screen and (max-width: 1000px) {
  .model1 .flex .right {
    width: 100%;
  }
}

.model2 {
  background: #222;
  border-bottom: 40px solid #79C5F7;
}
@media screen and (max-width: 1000px) {
  .model2 {
    border-bottom: 20px solid #79C5F7;
  }
}
.model2 .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #fff;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1000px) {
  .model2 .flex {
    display: block;
  }
}
.model2 .flex .img {
  width: 47%;
}
@media screen and (max-width: 1000px) {
  .model2 .flex .img {
    width: 100%;
    margin-bottom: 15px;
  }
}
.model2 .flex .contents {
  width: 47%;
}
@media screen and (max-width: 1000px) {
  .model2 .flex .contents {
    width: 100%;
  }
}
.model2 .heading {
  padding: 20px;
  background: #E1ECF1;
  margin-bottom: 30px;
  color: #222;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1000px) {
  .model2 .heading {
    margin-bottom: 15px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.model2 .heading .left {
  padding: 15px;
  background: #fff;
  line-height: 1;
  margin-right: 20px;
  border: 2px solid #222;
}
.model2 .heading .left .text1 {
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  border-bottom: 1px solid #222;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.model2 .heading .left .text2 {
  font-size: 54px;
  font-family: "Dela Gothic One", sans-serif;
  white-space: nowrap;
}
@media screen and (max-width: 1000px) {
  .model2 .heading .left .text2 {
    font-size: 30px;
  }
}
.model2 .heading .left .text2 span {
  font-size: 60%;
}
.model2 .heading .text3 {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 10px;
}
@media screen and (max-width: 1000px) {
  .model2 .heading .text3 {
    font-size: 20px;
    margin-bottom: 5px;
  }
}
.model2 .heading .text4 {
  font-size: 18px;
  font-weight: 600;
}
@media screen and (max-width: 1000px) {
  .model2 .heading .text4 {
    font-size: 14px;
  }
}
.model2 .bottom {
  font-size: 14px;
}
@media screen and (max-width: 1000px) {
  .model2 .bottom {
    font-size: 12px;
  }
}

.contents-ul li {
  margin-bottom: 60px;
  position: relative;
}
.contents-ul li .img {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  width: 45%;
  z-index: 2;
}
.contents-ul li .img .wrap {
  padding-top: 55%;
  position: relative;
}
.contents-ul li .img .wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1000px) {
  .contents-ul li {
    margin-bottom: 30px;
  }
}
.contents-ul li:last-child {
  margin-bottom: 0;
}
.contents-ul li .contents {
  background: #0F93E8;
  padding: 40px 180px 40px 40px;
  max-width: 800px;
}
@media screen and (max-width: 1000px) {
  .contents-ul li .contents {
    padding: 20px;
  }
}
.contents-ul li:nth-child(2n) .contents {
  margin-left: auto;
  padding: 40px 40px 40px 180px;
}
.contents-ul li:nth-child(2n) .img {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: initial;
  left: 0;
  width: 45%;
  z-index: 2;
}
.contents-ul li .cate {
  font-size: 24px;
  line-height: 1;
  padding: 5px 10px;
  background: #fff;
  font-weight: 700;
  display: inline-block;
  border-radius: 50px;
  margin-bottom: 10px;
}
.contents-ul li p {
  color: #fff;
  font-size: 18px;
}
@media screen and (max-width: 1000px) {
  .contents-ul li p {
    font-size: 14px;
  }
}
.contents-ul li .en {
  font-size: 80px;
  color: rgba(255, 255, 255, 0.12);
  line-height: 1;
  margin-top: -20px;
}

@media screen and (max-width: 1000px) {
  .contents-ul li .img {
    position: initial;
    width: 100%;
    -webkit-transform: initial;
            transform: initial;
  }
  .contents-ul li .en {
    word-wrap: break-word;
    font-size: 40px;
    margin-top: 0;
  }
  .contents-ul li:nth-child(2n) .contents {
    padding: 20px;
  }
  .contents-ul li:nth-child(2n) .contents .img {
    position: initial;
    width: 100%;
    -webkit-transform: initial;
            transform: initial;
  }
  .contents-ul li:nth-child(2n) .img {
    -webkit-transform: initial;
            transform: initial;
    position: initial;
    width: 100%;
  }
}
.access .btn {
  text-align: left !important;
}
.access .btn .section-btn {
  text-align: left;
}
@media screen and (max-width: 1000px) {
  .access .btn .section-btn {
    text-align: center;
  }
}
.access .section-btn a {
  background: #D91620;
}
.access .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1000px) {
  .access .flex {
    display: block;
  }
}
.access .flex .left {
  width: 50%;
  background: #222;
  color: #fff;
  padding: 60px;
}
@media screen and (max-width: 1000px) {
  .access .flex .left {
    width: 100%;
    padding: 20px;
  }
}
.access .flex .left h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 10px;
}
@media screen and (max-width: 1000px) {
  .access .flex .left h3 {
    font-size: 18px;
  }
}
.access .flex .left p {
  font-size: 18px;
  margin-bottom: 60px;
}
@media screen and (max-width: 1000px) {
  .access .flex .left p {
    font-size: 14px;
    margin-bottom: 20px;
  }
}
.access .flex .right {
  width: 50%;
}
@media screen and (max-width: 1000px) {
  .access .flex .right {
    width: 100%;
  }
}
.access .flex .right .map3 .wrap {
  padding-top: 65%;
  position: relative;
}
.access .flex .right .map3 .wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.company .bg {
  position: absolute;
  top: -5%;
  right: 8%;
  width: 20%;
}
@media screen and (max-width: 1000px) {
  .company .bg {
    width: 30%;
    top: -50px;
  }
}
.company .box {
  background: #E1ECF1;
  padding: 80px;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .company .box {
    padding: 20px;
  }
}
.company .box .row {
  padding: 30px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #fff;
}
.company .box .row:last-child {
  border-bottom: none;
}
@media screen and (max-width: 1000px) {
  .company .box .row {
    padding: 10px 0;
  }
}
.company .box .row .dt {
  width: 250px;
  font-size: 20px;
  font-weight: 700;
}
@media screen and (max-width: 1000px) {
  .company .box .row .dt {
    font-size: 13px;
    width: 120px;
  }
}
.company .box .row .dd {
  width: calc(100% - 250px);
  font-size: 18px;
  font-weight: 600;
}
@media screen and (max-width: 1000px) {
  .company .box .row .dd {
    font-size: 12px;
    width: calc(100% - 120px);
  }
}

.works h3 {
  font-size: 22px;
  margin-bottom: 8px;
  font-weight: 800;
  margin-bottom: 10px;
}
@media screen and (max-width: 1000px) {
  .works h3 {
    font-size: 20px;
  }
}
.works .category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.works .category .item {
  background: #0F93E8;
  color: #fff;
  padding: 5px 5px;
  line-height: 1;
  margin-bottom: 7px;
  margin-right: 7px;
  font-weight: 500;
  font-size: 16px;
}
@media screen and (max-width: 1000px) {
  .works .category .item {
    font-size: 13px;
  }
}
.works ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (min-width: 1001px) {
  .works ul li {
    width: calc(33.333% - 26.6666666667px);
    margin-right: 40px;
  }
  .works ul li:nth-child(3n) {
    margin-right: 0;
  }
  .works ul li:nth-child(n+4) {
    margin-top: 40px;
  }
}
@media screen and (max-width: 1000px) {
  .works ul li {
    width: 100%;
    margin-bottom: 30px;
  }
  .works ul li:last-child {
    margin-bottom: 0;
  }
}
.works a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.works a:hover {
  opacity: 0.6;
}
.works .img .wrap {
  padding-top: 60%;
  position: relative;
  overflow: hidden;
}
.works .img .wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.single-works1 .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1000px) {
  .single-works1 .flex {
    display: block;
  }
}
.single-works1 .flex .left {
  width: 45%;
}
@media screen and (max-width: 1000px) {
  .single-works1 .flex .left {
    width: 100%;
    margin-bottom: 15px;
  }
}
.single-works1 .flex .right {
  width: 50%;
}
@media screen and (max-width: 1000px) {
  .single-works1 .flex .right {
    width: 100%;
  }
}
.single-works1 .category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.single-works1 .category .item {
  background: #0F93E8;
  color: #fff;
  padding: 5px 5px;
  line-height: 1;
  margin-bottom: 7px;
  margin-right: 7px;
  font-weight: 500;
  font-size: 16px;
}
@media screen and (max-width: 1000px) {
  .single-works1 .category .item {
    font-size: 13px;
  }
}
.single-works1 .en {
  display: inline-block;
  border-bottom: 8px solid #FFEF35;
  line-height: 1;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 10px;
}
@media screen and (max-width: 1000px) {
  .single-works1 .en {
    border-bottom: 6px solid #FFEF35;
  }
}
.single-works1 h1 {
  font-size: 24px;
  margin-bottom: 8px;
  font-weight: 800;
  margin-bottom: 15px;
}
@media screen and (max-width: 1000px) {
  .single-works1 h1 {
    font-size: 20px;
  }
}
.single-works1 p {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
}
@media screen and (max-width: 1000px) {
  .single-works1 p {
    font-size: 14px;
  }
}
.single-works1 .black-box {
  background: #222;
  margin-top: 20px;
  color: #fff;
  padding: 20px 20px 20px 60px;
  position: relative;
  min-height: 140px;
}
@media screen and (max-width: 1000px) {
  .single-works1 .black-box {
    font-size: 14px;
    min-height: 130px;
  }
}
.single-works1 .black-box .data {
  position: absolute;
  width: 25px;
  left: 15px;
  top: 0;
}
@media screen and (max-width: 1000px) {
  .single-works1 .black-box .data {
    width: 20px;
  }
}

.contact .inner {
  max-width: 880px;
}
.contact h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 50px;
}
@media screen and (max-width: 1000px) {
  .contact h2 {
    font-size: 20px;
    margin-bottom: 30px;
  }
}
.contact .contact-wrap .row {
  margin-bottom: 30px;
}
@media screen and (max-width: 1000px) {
  .contact .contact-wrap .row {
    margin-bottom: 20px;
  }
}
.contact .contact-wrap .dt {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}
@media screen and (max-width: 1000px) {
  .contact .contact-wrap .dt {
    font-size: 14px;
  }
}
.contact .contact-wrap .dt .small {
  font-size: 80%;
}
.contact textarea {
  height: 150px;
  resize: none;
}
.contact .required {
  margin-left: 15px;
  background: #DC1C1C;
  color: #fff;
  line-height: 1;
  font-size: 12px;
  border-radius: 4px;
  padding: 3px 5px;
  font-weight: 500;
  position: relative;
  top: -2px;
}
.contact .checkbox {
  margin-bottom: 80px;
}
@media screen and (max-width: 1000px) {
  .contact .checkbox {
    margin-bottom: 30px;
  }
}
.contact .checkbox a {
  color: #0F93E8;
  font-weight: 700;
  text-decoration: underline;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.contact .checkbox a:hover {
  opacity: 0.6;
}

input[type=submit] {
  cursor: pointer;
  display: block;
  padding: 20px;
  background: #D91620;
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  max-width: 480px;
  margin: 0 auto;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-radius: 8px;
}
input[type=submit]:hover {
  opacity: 0.6;
}
@media screen and (max-width: 1000px) {
  input[type=submit] {
    font-size: 16px;
  }
}

.news .ul2 {
  max-width: 800px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 50px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 1000px) {
  .news .ul2 {
    margin-bottom: 30px;
  }
}
.news .ul2 li {
  width: 23%;
}
.news .ul2 li.active a {
  background: #0F93E8;
  border: 1px solid #0F93E8;
  color: #fff;
}
@media screen and (max-width: 1000px) {
  .news .ul2 li {
    width: 48%;
    margin-bottom: 10px;
  }
}
.news .ul2 li a {
  display: block;
  border-radius: 20px;
  padding: 10px 20px;
  font-weight: 500;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: #fff;
  border: 1px solid #0F93E8;
  color: #0F93E8;
}
.news .ul2 li a:hover {
  opacity: 0.6;
}
@media screen and (max-width: 1000px) {
  .news .ul2 li a {
    font-size: 13px;
    padding: 10px;
  }
}
.news .ul1 {
  max-width: 800px;
  margin: 0 auto;
}
.news .ul1 li {
  margin-bottom: 20px;
}
.news .ul1 li .left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.news .ul1 li .left .time {
  margin-right: 10px;
}
.news .ul1 li a {
  padding: 10px 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  display: block;
}
.news .ul1 li a:hover {
  opacity: 0.6;
}
.news .category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.news .category .item {
  background: #fff;
  color: #222;
  padding: 5px 5px;
  line-height: 1;
  margin-bottom: 7px;
  margin-right: 7px;
  font-weight: 500;
  font-size: 14px;
  background: #0F93E8;
  color: #fff;
}
@media screen and (max-width: 1000px) {
  .news .category .item {
    font-size: 13px;
  }
}
.news h3 {
  font-weight: 600;
}

.single-wrap .single-column .inner {
  max-width: 900px;
}
.single-wrap .single-column .single-column-heading {
  margin-bottom: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .single-wrap .single-column .single-column-heading {
    margin-bottom: 30px;
    display: block;
  }
}
.single-wrap .single-column .single-column-heading .img {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .single-wrap .single-column .single-column-heading .img {
    width: 100%;
    margin-bottom: 10px;
  }
}
.single-wrap .single-column .single-column-heading .right {
  width: 47%;
}
@media screen and (max-width: 767px) {
  .single-wrap .single-column .single-column-heading .right {
    width: 100%;
  }
}
.single-wrap .single-column .single-column-heading .right .category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .single-wrap .single-column .single-column-heading .right .category {
    margin-bottom: 10px;
  }
}
.single-wrap .single-column .single-column-heading .right .category .category-item {
  background: #fff;
  border-radius: 20px;
  padding: 3px 20px;
  margin-right: 5px;
  margin-bottom: 5px;
  color: #0F93E8;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .single-wrap .single-column .single-column-heading .right .category .category-item {
    font-size: 12px;
    padding: 3px 10px;
  }
}
.single-wrap .single-column .single-column-heading .right h1 {
  font-size: 28px;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .single-wrap .single-column .single-column-heading .right h1 {
    font-size: 22px;
    margin-bottom: 15px;
  }
}
.single-wrap .single-column .single-column-heading .right .c-name {
  font-weight: bold;
  color: #0F93E8;
  font-size: 22px;
}
@media screen and (max-width: 767px) {
  .single-wrap .single-column .single-column-heading .right .c-name {
    font-size: 18px;
  }
}
.single-wrap .single-main-box {
  background: #fff;
  padding: 60px;
  -webkit-box-shadow: 0 3px 6px rgba(155, 154, 154, 0.5);
  box-shadow: 0 3px 6px rgba(155, 154, 154, 0.5);
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .single-wrap .single-main-box {
    padding: 30px 20px;
  }
}
.single-wrap .single-main-box img {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .single-wrap .single-main-box img {
    margin-bottom: 30px;
  }
}
.single-wrap .single-main-box h2 {
  font-size: 24px;
  margin-bottom: 30px;
  color: #0F93E8;
  font-weight: 700;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .single-wrap .single-main-box h2 {
    margin-bottom: 15px;
    font-size: 20px;
  }
}
.single-wrap .single-main-box h3 {
  font-size: 22px;
  margin-bottom: 30px;
  color: #0F93E8;
  font-weight: 700;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .single-wrap .single-main-box h3 {
    margin-bottom: 15px;
    font-size: 18px;
  }
}
.single-wrap .single-main-box h4,
.single-wrap .single-main-box h5,
.single-wrap .single-main-box h6 {
  font-weight: bold;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .single-wrap .single-main-box h4,
  .single-wrap .single-main-box h5,
  .single-wrap .single-main-box h6 {
    margin-bottom: 15px;
  }
}
.single-wrap .single-main-box p {
  margin-bottom: 60px;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .single-wrap .single-main-box p {
    margin-bottom: 30px;
    font-size: 14px;
  }
}
.single-wrap .common-mv-contents2 {
  position: relative;
}
.single-wrap .common-mv-contents2::before {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, 0%);
  transform: translate(-50%, 0%);
  content: "";
  left: 50%;
  background: #f6f6f6;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  z-index: 1;
}
.single-wrap .row1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 10px;
}
.single-wrap .row1 .left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.single-wrap h1 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 30px;
}
@media screen and (max-width: 1000px) {
  .single-wrap h1 {
    font-size: 22opx;
    margin-bottom: 10px;
  }
}
.single-wrap .category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.single-wrap .category .item {
  background: #fff;
  color: #222;
  padding: 5px 5px;
  line-height: 1;
  margin-bottom: 7px;
  margin-right: 7px;
  font-weight: 500;
  font-size: 14px;
  background: #0F93E8;
  color: #fff;
}
@media screen and (max-width: 1000px) {
  .single-wrap .category .item {
    font-size: 13px;
  }
}

.single-wrap .single-main-box {
  -webkit-box-shadow: none;
          box-shadow: none;
  padding: 0;
}

.single-wrap .single-main-box h2 {
  background: #0F93E8;
  color: #fff;
  padding: 10px;
}

.single-wrap h3 {
  border-left: 4px solid #0F93E8;
  padding-left: 10px;
}
.single-wrap h4 {
  border-bottom: 1px solid #0F93E8;
  font-size: 20px;
  line-height: 1.5;
}
@media screen and (max-width: 1000px) {
  .single-wrap h4 {
    font-size: 16px;
  }
}

@media screen and (max-width: 1000px) {
  .single-wrap .row1 {
    display: block;
  }
  .single-wrap .row1 .left {
    display: block;
  }
  .single-wrap .date {
    text-align: right;
  }
}
.privacy p {
  margin-bottom: 30px;
}
@media screen and (max-width: 1000px) {
  .privacy p {
    margin-bottom: 20px;
  }
}
.privacy h2 {
  margin-top: 30px;
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 700;
}
.privacy ul {
  margin: 10px 0;
  padding-left: 20px;
}
.privacy ul li {
  list-style-type: auto;
}

.pagination {
  margin-top: 60px;
  text-align: center;
}
@media screen and (max-width: 1000px) {
  .pagination {
    margin-top: 30px;
  }
}
.pagination a, .pagination span {
  display: inline-block;
  margin: 0 10px;
  font-size: 20px;
  font-weight: 700;
}
.pagination span {
  color: #0F93E8;
}

.top-case .item a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.top-case .item a:hover {
  opacity: 0.6;
}

.plan .plan-box .btn {
  margin-top: 30px;
}
@media screen and (max-width: 1000px) {
  .plan .plan-box .btn {
    margin-top: 10px;
  }
}

@media screen and (min-width: 1001px) {
  .gallry .section-title {
    margin-bottom: 40px;
  }
  .gallry .contents-ul li .contents {
    height: 265px;
    max-width: 670px;
    padding-right: 40px;
    width: 100%;
  }
  .gallry .contents-ul li .img {
    position: initial;
    -webkit-transform: initial;
            transform: initial;
  }
  .gallry .contents-ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .gallry .contents-ul li:nth-child(2n) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .gallry .contents-ul li {
    position: relative;
  }
  .gallry .contents-ul li .contents {
    position: relative;
  }
  .gallry .contents-ul li .en {
    position: absolute;
    bottom: 20px;
    left: 40px;
  }
}
@media screen and (max-width: 1000px) {
  .gallry .section-title {
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 1001px) {
  .gallry .contents-ul li:nth-child(2n) .contents {
    padding-left: 40px;
  }
}

.contact .checkbox {
  text-align: center;
}

.wpcf7-list-item {
  margin: 0;
  margin-right: 30px;
}