@charset "UTF-8";
/*==================================
      レスポンシブ設定 マップ型変数breakpointsを定義
      =================================*/
/*==================================
      # 色、フォントファミリー
      =================================*/
/*==================================
      common(一般) - 全体に共通するスタイル
      =================================*/
@media screen and (max-width: 767px) {
  .is-pc {
    display: none !important;
  }
}
@media screen and (min-width: 768px) {
  .is-sp {
    display: none !important;
  }
}
body {
  font-size: 16px;
  color: #222;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.7;
  background: #fff;
  letter-spacing: 1px;
  padding-top: 101px;
}
@media screen and (max-width: 767px) {
  body {
    padding-top: 71px;
    font-size: 14px;
  }
}

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

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

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

::-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 #bb3333;
  background: #fcf3f3;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  margin: 0;
  outline: none;
}

.section {
  padding: 100px 0 120px;
}
@media screen and (max-width: 767px) {
  .section {
    padding: 50px 0;
  }
}

.drawer-icon {
  position: fixed;
  top: 25px;
  right: 15px;
  z-index: 300;
  -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: 768px) {
  .drawer-icon {
    display: none;
  }
}
.drawer-icon.is-active .drawer-icon-bar1 {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 8px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.drawer-icon.is-active .drawer-icon-bar2 {
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.drawer-icon.is-active .drawer-icon-bar3 {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 8px;
  -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: #222;
  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: rgb(255, 255, 255);
  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: 30px;
}
.drawer-icon-nav ul li a {
  display: block;
  color: #222;
  font-size: 16px;
  font-weight: bold;
  font-family: "agenda", sans-serif;
}
.drawer-icon-nav ul li a.contact-btn {
  color: #338CFA;
}

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

.back-to-top {
  position: fixed;
  bottom: 5%;
  right: 5%;
  z-index: 100;
  max-width: 50px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .back-to-top {
    max-width: 35px;
    bottom: 3%;
    right: 3%;
  }
}
.back-to-top:hover {
  opacity: 0.6;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 300;
  padding: 10px 0;
  background: #fff;
}
.header .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;
}
.header .flex .logo {
  max-width: 80px;
}
@media screen and (max-width: 767px) {
  .header .flex .logo {
    max-width: 50px;
  }
}
.header .flex .logo a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header .flex .logo a:hover {
  opacity: 0.6;
}
.header .flex .right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header .flex ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header .flex ul li {
  margin-right: 30px;
}
@media screen and (max-width: 1100px) {
  .header .flex ul li {
    margin-right: 20px;
  }
}
@media screen and (max-width: 900px) {
  .header .flex ul li {
    margin-right: 15px;
  }
}
.header .flex ul li a {
  font-weight: bold;
  color: #222;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  letter-spacing: 0;
  white-space: nowrap;
}
@media screen and (max-width: 1100px) {
  .header .flex ul li a {
    font-size: 14px;
  }
}
@media screen and (max-width: 900px) {
  .header .flex ul li a {
    font-size: 12px;
  }
}
.header .flex ul li a:hover {
  color: #bb3333;
}

.header-btn1 {
  margin-right: 10px;
}
@media screen and (max-width: 767px) {
  .header-btn1 {
    margin-right: 0;
    margin-bottom: 20px;
  }
}
.header-btn1 a {
  border: 1px solid #222;
  border-radius: 40px;
  display: inline-block;
  padding: 8px 35px;
  color: #222;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-weight: 500;
  white-space: nowrap;
}
@media screen and (max-width: 1100px) {
  .header-btn1 a {
    font-size: 14px;
    padding: 5px 20px;
  }
}
@media screen and (max-width: 900px) {
  .header-btn1 a {
    font-size: 12px;
    padding: 5px 10px;
  }
}
@media screen and (max-width: 767px) {
  .header-btn1 a {
    padding: 8px 35px;
    font-size: 16px;
  }
}
.header-btn1 a:hover {
  background: #222;
  color: #fff;
}

.header-btn2 a {
  border: 1px solid #bb3333;
  border-radius: 40px;
  display: inline-block;
  background: #bb3333;
  padding: 8px 35px;
  color: #bb3333;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
}
@media screen and (max-width: 1100px) {
  .header-btn2 a {
    font-size: 14px;
    padding: 5px 20px;
  }
}
@media screen and (max-width: 900px) {
  .header-btn2 a {
    font-size: 12px;
    padding: 5px 10px;
  }
}
@media screen and (max-width: 767px) {
  .header-btn2 a {
    padding: 8px 35px;
    font-size: 16px;
  }
}
.header-btn2 a:hover {
  background: #fff;
  color: #bb3333;
}

.mv {
  padding: 100px 0;
  max-width: 1800px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .mv {
    padding: 50px 0;
  }
}
.mv .img {
  width: 100%;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .section-title {
    margin-bottom: 40px;
  }
}
.section-title .en {
  color: #bb3333;
  font-size: 60px;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 5px;
}
@media screen and (max-width: 767px) {
  .section-title .en {
    font-size: 36px;
    margin-bottom: 0;
  }
}
.section-title .en.page-en {
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .section-title .en.page-en {
    font-size: 14px;
  }
}
.section-title .ja {
  font-size: 20px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .section-title .ja {
    font-size: 14px;
  }
}
.section-title .ja.page-ja {
  font-size: 36px;
}
@media screen and (max-width: 767px) {
  .section-title .ja.page-ja {
    font-size: 22px;
  }
}
.section-title .section-circle {
  width: 30px;
  height: 30px;
  background: #bb3333;
  border-radius: 50%;
  text-align: center;
  margin: 0 auto;
  margin-top: 15px;
}
@media screen and (max-width: 767px) {
  .section-title .section-circle {
    width: 20px;
    height: 20px;
    margin-top: 5px;
  }
}
.section-title .section-circle.small-circle {
  width: 15px;
  height: 15px;
}
@media screen and (max-width: 767px) {
  .section-title .section-circle.small-circle {
    width: 15px;
    height: 15px;
    margin-top: 5px;
  }
}

.footer {
  background: #eeeeee;
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 40px 0;
  }
}
.footer .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 1px solid #bbb;
  padding-bottom: 60px;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .footer .flex {
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .footer .flex {
    display: block;
  }
}
.footer .flex .left {
  width: calc(100% - 500px);
}
@media screen and (max-width: 767px) {
  .footer .flex .left {
    width: 100%;
    margin-bottom: 40px;
  }
}
.footer .flex .right {
  width: 500px;
}
@media screen and (max-width: 767px) {
  .footer .flex .right {
    width: 100%;
  }
}
.footer .flex .logo {
  max-width: 80px;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .footer .flex .logo {
    max-width: 50px;
    margin: 0 auto 20px;
  }
}
.footer .flex .logo a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.footer .flex .logo a:hover {
  opacity: 0.6;
}
@media screen and (max-width: 767px) {
  .footer .flex .address {
    text-align: center;
  }
}
.footer .flex .address .heading {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .footer .flex .address .heading {
    font-size: 16px;
  }
}
.footer .flex .address .bottom {
  font-size: 16px;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .footer .flex .address .bottom {
    font-size: 14px;
  }
}
.footer .right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.footer .right .right-ul {
  width: 50%;
}
.footer .right .right-ul ul li {
  margin-bottom: 20px;
}
.footer .right .right-ul ul li a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #222;
  display: inline-block;
  font-weight: bold;
  font-size: 16px;
}
.footer .right .right-ul ul li a .flex-a {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .footer .right .right-ul ul li a {
    font-size: 14px;
  }
}
.footer .right .right-ul ul li a:hover {
  color: #bb3333;
}
.footer .right .right-ul ul li a .arrow {
  width: 8px;
  position: relative;
  top: -6px;
  margin-right: 10px;
}
.footer .right .right-ul .sub-ul .sub-ul-link {
  margin-bottom: 5px;
}
.footer .right .right-ul .sub-ul .sub-ul-link a {
  display: inline-block;
  font-size: 15px;
  color: #222;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.footer .right .right-ul .sub-ul .sub-ul-link a:hover {
  color: #bb3333;
}
.footer .footer-bottom {
  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;
}
@media screen and (max-width: 767px) {
  .footer .footer-bottom {
    display: block;
  }
}
.footer .footer-bottom .ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .footer .footer-bottom .ul {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.footer .footer-bottom .ul .list {
  margin-right: 60px;
}
.footer .footer-bottom .ul .list:last-child {
  margin-right: 0;
}
@media screen and (max-width: 767px) {
  .footer .footer-bottom .ul .list {
    margin-right: 0;
  }
}
.footer .footer-bottom .ul .flex2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.footer .footer-bottom .ul a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #222;
  display: inline-block;
  font-weight: 400;
  font-size: 14px;
}
.footer .footer-bottom .ul a .flex-a {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .footer .footer-bottom .ul a {
    font-size: 14px;
  }
}
.footer .footer-bottom .ul a:hover {
  opacity: 0.6;
}
.footer .footer-bottom .ul a .arrow {
  width: 8px;
  position: relative;
  top: -6px;
  margin-right: 10px;
}
@media screen and (max-width: 767px) {
  .footer .footer-bottom .ul a .arrow {
    top: -5px;
  }
}
.footer .footer-bottom .copyright {
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .footer .footer-bottom .copyright {
    font-size: 11px;
    text-align: center;
    margin-top: 30px;
  }
}

html,
body {
  overflow-x: hidden;
}

@media screen and (max-width: 767px) {
  body {
    max-width: 450px;
    margin: 0 auto;
    -webkit-box-shadow: 0 3px 6px rgba(62, 62, 62, 0.1);
            box-shadow: 0 3px 6px rgba(62, 62, 62, 0.1);
  }
}

.top-service .inner {
  position: relative;
}
.top-service .circle1 {
  width: 250px;
  height: 250px;
  background: #bb3333;
  border-radius: 50%;
  position: absolute;
  top: 40%;
  left: -10%;
}
@media screen and (max-width: 767px) {
  .top-service .circle1 {
    width: 150px;
    height: 150px;
    top: 30%;
  }
}
.top-service .circle2 {
  width: 250px;
  height: 250px;
  background: transparent;
  border-radius: 50%;
  position: absolute;
  top: 62%;
  right: -15%;
  border: 4px solid #bbb;
}
@media screen and (max-width: 767px) {
  .top-service .circle2 {
    width: 150px;
    height: 150px;
  }
}
.top-service ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 2;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .top-service ul {
    margin-bottom: 30px;
    display: block;
  }
}
.top-service ul li {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  -webkit-box-shadow: 3px 3px 12px #f4c1c1;
          box-shadow: 3px 3px 12px #f4c1c1;
}
@media screen and (max-width: 767px) {
  .top-service ul li {
    -webkit-box-shadow: 3px 3px 6px #f4c1c1;
            box-shadow: 3px 3px 6px #f4c1c1;
    padding: 20px 15px 30px;
    border-radius: 10px;
  }
}
@media screen and (min-width: 768px) {
  .top-service ul li {
    width: calc(50% - 20px);
    margin-right: 40px;
  }
  .top-service ul li:nth-child(2n) {
    margin-right: 0;
  }
  .top-service ul li:nth-child(n+3) {
    margin-top: 40px;
  }
}
@media screen and (max-width: 767px) {
  .top-service ul li {
    width: 100%;
    margin-bottom: 20px;
  }
  .top-service ul li:last-child {
    margin-bottom: 0;
  }
}
.top-service ul li .heading {
  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;
  margin-bottom: 40px;
}
@media screen and (max-width: 1100px) {
  .top-service ul li .heading {
    display: block;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .top-service ul li .heading {
    display: block;
    margin-bottom: 20px;
  }
}
.top-service ul li h3 {
  font-size: 24px;
  font-weight: bold;
  color: #bb3333;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .top-service ul li h3 {
    font-size: 22px;
    line-height: 1.3;
    margin-bottom: 10px;
    text-align: center;
  }
}
.top-service ul li .btn {
  position: relative;
  z-index: 2;
}
.top-service ul li .btn a {
  border-radius: 40px;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-width: 250px;
  background: #ddd;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: #222;
  padding: 15px 20px 15px;
  width: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: 15px;
}
.top-service ul li .btn a:hover {
  opacity: 0.6;
}
.top-service ul li .btn a .btn-arrow {
  width: 30px;
}
@media screen and (max-width: 767px) {
  .top-service ul li .btn a .btn-arrow {
    width: 20px;
  }
}
@media screen and (max-width: 767px) {
  .top-service ul li .btn a {
    font-size: 14px;
    min-width: initial;
    width: 100%;
    padding: 5px 20px 5px;
    max-width: 220px;
    white-space: nowrap;
    margin: 0 auto;
  }
}
.top-service ul li .bottom .row a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px 0;
  border-bottom: 1px solid #bb3333;
  color: #222;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.top-service ul li .bottom .row a:hover {
  opacity: 0.6;
}
.top-service ul li .bottom .row .bottom-arrow {
  width: 20px;
  min-width: 20px;
  position: relative;
  top: -3px;
  margin-right: 15px;
}
@media screen and (max-width: 767px) {
  .top-service ul li .bottom .row .bottom-arrow {
    top: 0;
    margin-right: 5px;
  }
}
.top-service ul li .bottom .row .text {
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .top-service ul li .bottom .row .text {
    font-size: 14px;
  }
}
.top-service .shop-area {
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}
.top-service .shop-area a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding: 40px 20px;
  border-top: 1px solid #bbb;
  border-bottom: 1px solid #bbb;
  display: block;
}
@media screen and (max-width: 767px) {
  .top-service .shop-area a {
    padding: 15px 10px;
  }
}
.top-service .shop-area a:hover {
  opacity: 0.6;
}
.top-service .shop-area a .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;
}
.top-service .shop-area a .flex .text {
  color: #222;
  font-weight: bold;
  font-size: 26px;
}
@media screen and (max-width: 767px) {
  .top-service .shop-area a .flex .text {
    font-size: 18px;
  }
}
.top-service .shop-area a .flex .arrow {
  width: 30px;
}
@media screen and (max-width: 767px) {
  .top-service .shop-area a .flex .arrow {
    width: 20px;
  }
}
@media screen and (max-width: 767px) {
  .top-service .shop-area {
    margin-bottom: 30px;
  }
}
.top-service .banner {
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .top-service .banner {
    margin-bottom: 30px;
  }
}
.top-service .banner a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.top-service .banner a:hover {
  opacity: 0.6;
}

.section-btn {
  text-align: center;
}
.section-btn a {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  display: block;
  width: 100%;
  max-width: 350px;
  margin: 0 auto;
  border-radius: 40px;
  background: #bb3333;
  padding: 15px 30px 15px 35px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border: 1px solid #bb3333;
}
@media screen and (max-width: 767px) {
  .section-btn a {
    max-width: 250px;
    padding: 12px 20px 12px 20px;
    font-size: 15px;
  }
}
.section-btn a:hover {
  opacity: 0.6;
}
.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: 35px;
}
@media screen and (max-width: 767px) {
  .section-btn a .section-btn-arrow {
    width: 25px;
  }
}

.strength {
  background: linear-gradient(to bottom, #fff 130px, #f6f6f6 130px);
}
@media screen and (max-width: 767px) {
  .strength {
    background: #f6f6f6;
  }
}
.strength .inner {
  position: relative;
}
.strength .section-title {
  position: relative;
  z-index: 2;
}
.strength .circle1 {
  width: 250px;
  height: 250px;
  background: #eae9e9;
  border-radius: 50%;
  position: absolute;
  top: -100px;
  left: 15%;
  opacity: 0.5;
}
@media screen and (max-width: 767px) {
  .strength .circle1 {
    width: 150px;
    height: 150px;
    top: -80px;
    left: -5%;
  }
}
.strength .circle2 {
  width: 250px;
  height: 250px;
  background: #f5e1e1;
  border-radius: 50%;
  position: absolute;
  bottom: -200px;
  right: 5%;
  opacity: 0.5;
}
@media screen and (max-width: 767px) {
  .strength .circle2 {
    width: 150px;
    height: 150px;
    bottom: -100px;
    right: 0;
  }
}
.strength ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 70px;
}
@media screen and (max-width: 767px) {
  .strength ul {
    display: block;
    margin-top: 30px;
  }
}
.strength ul li {
  position: relative;
  padding: 30px 30px;
  border-radius: 20px;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .strength ul li {
    padding: 30px 20px 20px;
    margin-bottom: 40px;
  }
  .strength ul li:last-child {
    margin-bottom: 0;
  }
}
.strength ul li:nth-child(1) {
  background: #bb3333;
}
.strength ul li:nth-child(1) .num {
  color: #bb3333;
}
.strength ul li:nth-child(2) {
  background: #555;
}
.strength ul li:nth-child(2) .num {
  color: #555;
}
.strength ul li:nth-child(3) {
  background: #d43333;
}
.strength ul li:nth-child(3) .num {
  color: #d43333;
}
.strength ul li:nth-child(4) {
  background: #222;
}
.strength ul li:nth-child(4) .num {
  color: #222;
}
.strength ul li:nth-child(5) {
  background: #bb3333;
}
.strength ul li:nth-child(5) .num {
  color: #bb3333;
}
@media screen and (min-width: 768px) {
  .strength ul li {
    width: calc(33.333% - 20px);
    margin-right: 30px;
  }
  .strength ul li:nth-child(3n) {
    margin-right: 0;
  }
  .strength ul li:nth-child(n+4) {
    margin-top: 70px;
  }
}
.strength ul .num {
  font-family: "Josefin Sans", serif;
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  background: #fff;
  position: absolute;
  left: 50%;
  top: -27px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.strength ul .num .wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.strength .title {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  height: 130px;
  position: relative;
  line-height: 1.3;
}
@media screen and (max-width: 1100px) {
  .strength .title {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .strength .title {
    height: auto;
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 20px;
  }
}
.strength .title .wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .strength .title .wrap {
    position: initial;
    -webkit-transform: initial;
            transform: initial;
  }
}
.strength .img {
  width: auto;
  height: 140px;
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 1100px) {
  .strength .img {
    height: 110px;
  }
}
@media screen and (max-width: 900px) {
  .strength .img {
    height: 90px;
  }
}
.strength .img img {
  width: auto;
  height: 140px;
}
@media screen and (max-width: 1100px) {
  .strength .img img {
    height: 110px;
  }
}
@media screen and (max-width: 900px) {
  .strength .img img {
    height: 90px;
  }
}
@media screen and (max-width: 767px) {
  .strength .text {
    font-size: 14px;
  }
}

.voice {
  background: linear-gradient(to top, #f8eaea 350px, #fff 200px);
}
@media screen and (max-width: 767px) {
  .voice .section-title {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .voice {
    background: #f8eaea;
  }
}
@media screen and (min-width: 768px) {
  .voice .slick-track {
    padding: 0 10px;
  }
}
.voice .slick-dots li button:before {
  font-size: 16px;
  color: #fff !important;
  opacity: 1 !important;
}
.voice .slick-dots li.slick-active button:before {
  color: #bb3333 !important;
  opacity: 1 !important;
}
.voice .slick-list {
  overflow: visible;
}
.voice .voice-item {
  background: #fff;
  -webkit-box-shadow: 0 3px 6px rgba(62, 62, 62, 0.5);
          box-shadow: 0 3px 6px rgba(62, 62, 62, 0.5);
  padding: 30px;
  border-radius: 10px;
  margin: 0 20px;
}
@media screen and (max-width: 767px) {
  .voice .voice-item {
    padding: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
  }
}
.voice .voice-item .title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .voice .voice-item .title {
    font-size: 16px;
    margin-bottom: 10px;
  }
}
.voice .voice-item .text {
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .voice .voice-item .text {
    font-size: 14px;
  }
}
.voice .slick-dots {
  bottom: -43px;
}
.voice .ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.voice .ul .voice-item {
  width: calc(33.33333% - 26.6666666667px);
  margin: 0;
  margin-right: 40px;
}
@media screen and (min-width: 768px) {
  .voice .ul .voice-item:nth-child(3n) {
    margin-right: 0;
  }
  .voice .ul .voice-item:nth-child(n+4) {
    margin-top: 60px;
  }
}
@media screen and (max-width: 767px) {
  .voice .ul {
    display: block;
  }
  .voice .ul .voice-item {
    width: 100%;
    margin-right: 0;
    margin: 0 10px;
  }
}

.contents-section ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .contents-section ul {
    display: block;
  }
}
.contents-section ul li {
  border-radius: 10px;
}
@media screen and (min-width: 768px) {
  .contents-section ul li {
    width: calc(33.3333% - 26.6666666667px);
    margin-right: 40px;
    overflow: hidden;
  }
  .contents-section ul li:nth-child(3n) {
    margin-right: 0;
  }
  .contents-section ul li:nth-child(n+4) {
    margin-top: 60px;
  }
}
.contents-section ul li .contents {
  background: #f6f6f6;
  padding: 20px 30px;
}
@media screen and (max-width: 767px) {
  .contents-section ul li .contents {
    padding: 30px 20px;
  }
}
.contents-section ul li a {
  color: #222;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.contents-section ul li a:hover {
  opacity: 0.6;
}
.contents-section ul li a .img .wrap {
  padding-top: 60%;
  position: relative;
}
.contents-section ul li a .img .wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.contents-section ul li .time {
  color: #bb3333;
  font-family: "Josefin Sans", serif;
  font-weight: 700;
  font-style: italic;
  font-size: 18px;
  margin-bottom: 5px;
  line-height: 1.3;
}
.contents-section ul li .title {
  font-weight: 700;
  color: #222;
  line-height: 1.5;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .contents-section ul li .title {
    font-size: 16px;
    line-height: 1.5;
  }
}
.contents-section .slick-dots li button:before {
  font-size: 16px;
  color: #bbb !important;
  opacity: 1 !important;
}
.contents-section .slick-dots li.slick-active button:before {
  color: #bb3333 !important;
  opacity: 1 !important;
}
.contents-section .inner {
  position: relative;
}
.contents-section .circle1 {
  width: 250px;
  height: 250px;
  opacity: 0.9;
  border-radius: 50%;
  position: absolute;
  bottom: -350px;
  right: -22%;
  background: #bb3333;
}
@media screen and (max-width: 1300px) {
  .contents-section .circle1 {
    right: -12%;
  }
}
@media screen and (max-width: 767px) {
  .contents-section .circle1 {
    width: 120px;
    height: 120px;
    bottom: -100px;
    right: -22%;
  }
}
.contents-section .circle2 {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  position: absolute;
  top: 15%;
  left: -15%;
  border: 2px solid #bb3333;
}
@media screen and (max-width: 767px) {
  .contents-section .circle2 {
    width: 150px;
    height: 150px;
    top: 10%;
  }
}

.top-company {
  background: linear-gradient(to bottom, #fff 130px, #f6f6f6 130px);
}
@media screen and (max-width: 767px) {
  .top-company {
    background: #f6f6f6;
  }
}
.top-company .wrapper {
  max-width: 900px;
  margin: 0 auto;
}
.top-company .row {
  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;
  padding: 25px 0;
  line-height: 1.5;
  border-bottom: 1px solid #a5a578;
}
@media screen and (max-width: 767px) {
  .top-company .row {
    padding: 15px 0;
  }
}
.top-company .row:first-child {
  border-top: 1px solid #a5a578;
}
.top-company .row .dt {
  width: 250px;
  font-size: 19px;
  color: #bb3333;
  font-weight: bold;
  padding-left: 35px;
}
@media screen and (max-width:1000px) {
  .top-company .row .dt {
    padding-left: 10px;
    width: 180px;
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .top-company .row .dt {
    padding-left: 0px;
    font-size: 15px;
    width: 80px;
    white-space: nowrap;
  }
}
.top-company .row .dd {
  width: calc(100% - 250px);
  font-size: 16px;
}
@media screen and (max-width:1000px) {
  .top-company .row .dd {
    width: calc(100% - 180px);
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .top-company .row .dd {
    font-size: 14px;
    width: calc(100% - 80px);
  }
}
.top-company .red {
  color: #bb3333;
  font-size: 70%;
}
.top-company .btn {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .top-company .btn {
    margin-top: 30px;
  }
}

.news .btn {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .news .btn {
    margin-top: 30px;
  }
}
.news .section-title {
  position: relative;
  z-index: 2;
}
.news .inner {
  position: relative;
}
.news .circle1 {
  width: 300px;
  height: 300px;
  background: #eae9e9;
  border-radius: 50%;
  position: absolute;
  top: -180px;
  left: 10%;
  opacity: 0.5;
}
@media screen and (max-width: 767px) {
  .news .circle1 {
    width: 150px;
    height: 150px;
    top: -80px;
    left: -5%;
  }
}
.news .circle2 {
  width: 250px;
  height: 250px;
  background: #f5e1e1;
  border-radius: 50%;
  position: absolute;
  bottom: -200px;
  left: -15%;
  opacity: 0.9;
}
@media screen and (max-width: 767px) {
  .news .circle2 {
    width: 150px;
    height: 150px;
    bottom: -100px;
    right: 0;
  }
}
.news ul {
  position: relative;
  z-index: 2;
}
.news ul li {
  margin-bottom: 10px;
}
.news ul li a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
  background: #f6f6f6;
  display: block;
  border-radius: 10px;
  padding: 30px 80px 30px 40px;
}
@media screen and (max-width: 767px) {
  .news ul li a {
    padding: 30px 40px 30px 20px;
  }
}
.news ul li a .arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 20px;
  right: 40px;
}
@media screen and (max-width: 767px) {
  .news ul li a .arrow {
    right: 10px;
  }
}
.news ul li a:hover {
  opacity: 0.6;
}
.news ul li a .heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .news ul li a .heading {
    margin-bottom: 10px;
  }
}
.news ul li a .heading .time {
  color: #bb3333;
  font-size: 15px;
  font-weight: bold;
  margin-right: 20px;
}
@media screen and (max-width: 767px) {
  .news ul li a .heading .time {
    font-size: 12px;
  }
}
.news ul li a .heading .category .item {
  border-radius: 40px;
  padding: 5px 30px;
  background: #555;
  color: #fff;
  font-weight: 500;
  font-size: 15px;
  margin-right: 5px;
  margin-bottom: 5px;
}
@media screen and (max-width: 767px) {
  .news ul li a .heading .category .item {
    padding: 5px 20px;
    font-size: 12px;
  }
}
.news ul li a .bottom .title {
  font-size: 16px;
  font-weight: 500;
  color: #222;
}
@media screen and (max-width: 767px) {
  .news ul li a .bottom .title {
    font-size: 14px;
  }
}
.news .btn {
  position: relative;
  z-index: 2;
}

.gray-bg-c {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #fff), color-stop(50%, #eee));
  background: linear-gradient(to bottom, #fff 50%, #eee 50%);
}

.gray-bg-c2 {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #f6f6f6), color-stop(50%, #eee));
  background: linear-gradient(to bottom, #f6f6f6 50%, #eee 50%);
}

.contact-banner {
  background: #bb3333;
  border-radius: 0 400px 400px 0;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 1100px) {
  .contact-banner {
    border-radius: 0;
  }
}
.contact-banner .section-title .en {
  color: #fff;
}
.contact-banner .section-title .ja {
  color: #fff;
}
.contact-banner .section-title .section-circle {
  background: #fff;
}
.contact-banner .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 auto;
}
@media screen and (max-width: 1300px) {
  .contact-banner .flex {
    max-width: 900px;
  }
}
@media screen and (max-width: 767px) {
  .contact-banner .flex {
    display: block;
  }
}
.contact-banner .flex .box {
  border-radius: 10px;
  background: #fff;
  width: 48%;
  padding: 50px 40px;
}
@media screen and (max-width: 767px) {
  .contact-banner .flex .box {
    width: 100%;
    margin-bottom: 10px;
    padding: 20px 20px 30px;
  }
  .contact-banner .flex .box:last-child {
    margin-bottom: 0;
  }
}
.contact-banner .flex .title {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .contact-banner .flex .title {
    font-size: 20px;
    margin-bottom: 10px;
  }
}
.contact-banner .flex .text {
  text-align: center;
  font-size: 16px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .contact-banner .flex .text {
    font-size: 14px;
  }
}
.contact-banner .flex .btn {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .contact-banner .flex .btn {
    margin-top: 15px;
  }
}
.contact-banner .box1 .text {
  color: #555;
}
.contact-banner .box1 .title {
  color: #555;
}
.contact-banner .box1 .section-btn a {
  background: #555;
  border: 1px solid #555;
}
.contact-banner .box2 .text {
  color: #bb3333;
}
.contact-banner .box2 .title {
  color: #bb3333;
}

.common-mv {
  background: #f6f6f6;
}

.bread {
  padding: 20px 0 10px;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .bread {
    font-size: 12px;
    padding: 10px 0 10px;
  }
}
.bread .bread-wrap {
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.bread .center {
  margin: 0 10px;
}
@media screen and (max-width: 767px) {
  .bread .center {
    margin: 0 5px;
  }
}
.bread a {
  color: #222;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.bread a:hover {
  opacity: 0.6;
}
.bread .bread-main {
  color: #bb3333;
}

.common-mv-contents {
  padding: 100px 0 80px;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 767px) {
  .common-mv-contents {
    padding: 40px 0;
  }
}
.common-mv-contents .section-title {
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}
.common-mv-contents .section-title .ja {
  margin-top: 15px;
  font-size: 22px;
}
@media screen and (max-width: 767px) {
  .common-mv-contents .section-title .ja {
    margin-top: 10px;
    font-size: 16px;
  }
}
.common-mv-contents::after {
  position: absolute;
  top: 0%;
  -webkit-transform: translate(-50%, 0%);
          transform: translate(-50%, 0%);
  content: "";
  left: 50%;
  background: #fff;
  width: 1000px;
  height: 1000px;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .common-mv-contents::after {
    width: 400px;
    height: 400px;
    top: 0;
  }
}

.company {
  position: relative;
  z-index: 2;
  background: #fff;
}

@media screen and (min-width: 768px) {
  .company2 {
    padding-bottom: 200px;
  }
}
@media screen and (max-width: 767px) {
  .company2 {
    padding-bottom: 100px;
  }
}
.company2 .map {
  width: 100%;
}
.company2 .map .wrap {
  position: relative;
  padding-top: 50%;
}
@media screen and (min-width: 1600px) {
  .company2 .map .wrap {
    padding-top: 30%;
  }
}
@media screen and (max-width: 767px) {
  .company2 .map .wrap {
    padding-top: 100%;
  }
}
.company2 .map .wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.footer {
  position: relative;
  z-index: 2;
}

.contact {
  position: relative;
  z-index: 2;
}
.contact .contact-wrap {
  max-width: 800px;
  margin: 0 auto;
}
.contact .check {
  text-align: center;
}
.contact .check a {
  color: #bb3333;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.contact .check a:hover {
  opacity: 0.6;
}
.contact .submit input[type=submit] {
  position: absolute;
  left: -1000%;
  opacity: 0;
}
.contact .submit .btn {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .contact .submit .btn {
    margin-top: 30px;
  }
}
.contact .submit .section-btn {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  display: block;
  width: 100%;
  max-width: 350px;
  margin: 0 auto;
  border-radius: 40px;
  background: #bb3333;
  padding: 15px 30px 15px 35px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border: 1px solid #bb3333;
  cursor: pointer;
  max-width: 250px;
  letter-spacing: 10px;
}
@media screen and (max-width: 767px) {
  .contact .submit .section-btn {
    max-width: 250px;
    padding: 12px 20px 12px 20px;
    font-size: 15px;
  }
}
.contact .submit .section-btn:hover {
  opacity: 0.6;
}
.contact .submit .section-btn .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;
}
.contact .submit .section-btn .section-btn-arrow {
  width: 35px;
}
@media screen and (max-width: 767px) {
  .contact .submit .section-btn .section-btn-arrow {
    width: 25px;
  }
}
@media screen and (max-width: 767px) {
  .contact .submit .section-btn {
    letter-spacing: 4px;
  }
}
.contact .row {
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .contact .row {
    margin-bottom: 20px;
  }
}
.contact .row .dt {
  width: 100%;
  margin-bottom: 5px;
  font-size: 16px;
  font-weight: 600;
}
.contact .row .dd {
  width: 100%;
}
.contact textarea {
  height: 200px;
  resize: none;
}

.thanks {
  position: relative;
  z-index: 2;
}
.thanks .text {
  font-weight: 500;
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .thanks .text {
    font-size: 14px;
  }
}
.thanks .btn {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .thanks .btn {
    margin-top: 30px;
  }
}

.column {
  position: relative;
  z-index: 2;
}
.column ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  z-index: 2;
}
.column ul li {
  border-radius: 10px;
}
@media screen and (min-width: 768px) {
  .column ul li {
    width: calc(33.3333% - 26.6666666667px);
    margin-right: 40px;
    overflow: hidden;
  }
  .column ul li:nth-child(3n) {
    margin-right: 0;
  }
  .column ul li:nth-child(n+4) {
    margin-top: 60px;
  }
}
@media screen and (max-width: 767px) {
  .column ul li {
    width: calc(50% - 5px);
    margin-right: 10px;
    overflow: hidden;
  }
  .column ul li:nth-child(2n) {
    margin-right: 0;
  }
  .column ul li:nth-child(n+3) {
    margin-top: 30px;
  }
}
.column ul li .contents {
  background: #f6f6f6;
  padding: 20px 30px;
}
@media screen and (max-width: 767px) {
  .column ul li .contents {
    padding: 15px 10px;
  }
}
.column ul li a {
  color: #222;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.column ul li a:hover {
  opacity: 0.6;
}
.column ul li a .img .wrap {
  padding-top: 60%;
  position: relative;
}
.column ul li a .img .wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.column ul li .time {
  color: #bb3333;
  font-family: "Josefin Sans", serif;
  font-weight: 700;
  font-style: italic;
  font-size: 18px;
  margin-bottom: 5px;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .column ul li .time {
    font-size: 12px;
  }
}
.column ul li .title {
  font-weight: 700;
  color: #bb3333;
  line-height: 1.5;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .column ul li .title {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 10px;
  }
}
.column ul li .category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 7px;
}
@media screen and (max-width: 767px) {
  .column ul li .category {
    margin-bottom: 0;
  }
}
.column ul li .category .category-item {
  border-radius: 20px;
  background: #ddd;
  display: inline-block;
  padding: 3px 10px;
  font-size: 12px;
  margin-right: 5px;
  margin-bottom: 5px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .column ul li .category .category-item {
    font-size: 9px;
    padding: 3px 8px;
    margin-right: 3px;
  }
}
.column ul li .text {
  font-size: 14px;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .column ul li .text {
    font-size: 13px;
  }
}
.column .slick-dots li button:before {
  font-size: 16px;
  color: #bbb !important;
  opacity: 1 !important;
}
.column .slick-dots li.slick-active button:before {
  color: #bb3333 !important;
  opacity: 1 !important;
}
.column .inner {
  position: relative;
}
.column .circle1 {
  width: 250px;
  height: 250px;
  opacity: 0.9;
  border-radius: 50%;
  position: absolute;
  bottom: -350px;
  right: -22%;
  background: #bb3333;
}
@media screen and (max-width: 1300px) {
  .column .circle1 {
    right: -12%;
  }
}
@media screen and (max-width: 767px) {
  .column .circle1 {
    width: 120px;
    height: 120px;
    bottom: -100px;
    right: -22%;
  }
}
.column .circle2 {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  position: absolute;
  top: 15%;
  left: -15%;
  border: 2px solid #bb3333;
}
@media screen and (max-width: 767px) {
  .column .circle2 {
    width: 150px;
    height: 150px;
    top: 10%;
  }
}

.single-column {
  background: #f6f6f6;
}
.single-column .inner {
  max-width: 900px;
}
.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-column .single-column-heading {
    margin-bottom: 30px;
    display: block;
  }
}
.single-column .single-column-heading .img {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .single-column .single-column-heading .img {
    width: 100%;
    margin-bottom: 10px;
  }
}
.single-column .single-column-heading .right {
  width: 47%;
}
@media screen and (max-width: 767px) {
  .single-column .single-column-heading .right {
    width: 100%;
  }
}
.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-column .single-column-heading .right .category {
    margin-bottom: 10px;
  }
}
.single-column .single-column-heading .right .category .category-item {
  background: #fff;
  border-radius: 20px;
  padding: 3px 20px;
  margin-right: 5px;
  margin-bottom: 5px;
  color: #bb3333;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .single-column .single-column-heading .right .category .category-item {
    font-size: 12px;
    padding: 3px 10px;
  }
}
.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-column .single-column-heading .right h1 {
    font-size: 22px;
    margin-bottom: 15px;
  }
}
.single-column .single-column-heading .right .c-name {
  font-weight: bold;
  color: #bb3333;
  font-size: 22px;
}
@media screen and (max-width: 767px) {
  .single-column .single-column-heading .right .c-name {
    font-size: 18px;
  }
}

.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-main-box {
    padding: 30px 20px;
  }
}
.single-main-box img {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .single-main-box img {
    margin-bottom: 30px;
  }
}
.single-main-box h2 {
  font-size: 24px;
  margin-bottom: 30px;
  color: #bb3333;
  font-weight: 700;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .single-main-box h2 {
    margin-bottom: 15px;
    font-size: 20px;
  }
}
.single-main-box h3 {
  font-size: 22px;
  margin-bottom: 30px;
  color: #bb3333;
  font-weight: 700;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .single-main-box h3 {
    margin-bottom: 15px;
    font-size: 18px;
  }
}
.single-main-box h4,
.single-main-box h5,
.single-main-box h6 {
  font-weight: bold;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .single-main-box h4,
  .single-main-box h5,
  .single-main-box h6 {
    margin-bottom: 15px;
  }
}
.single-main-box p {
  margin-bottom: 60px;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .single-main-box p {
    margin-bottom: 30px;
    font-size: 14px;
  }
}

.common-mv-contents2 {
  position: relative;
}
.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;
}
@media screen and (max-width: 767px) {
  .common-mv-contents2::before {
    display: none;
  }
}
.common-mv-contents2 .btn-area {
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .common-mv-contents2 .btn-area {
    margin-top: 30px;
  }
}
.common-mv-contents2 .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 700px !important;
  margin: 0 auto;
}
@media screen and (max-width: 1300px) {
  .common-mv-contents2 .flex {
    max-width: 900px;
  }
}
@media screen and (max-width: 767px) {
  .common-mv-contents2 .flex {
    display: block;
  }
}
.common-mv-contents2 .flex .box {
  width: 48%;
}
@media screen and (max-width: 767px) {
  .common-mv-contents2 .flex .box {
    width: 100%;
    margin-bottom: 10px;
  }
  .common-mv-contents2 .flex .box:last-child {
    margin-bottom: 0;
  }
}
.common-mv-contents2 .flex .title {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .common-mv-contents2 .flex .title {
    font-size: 20px;
    margin-bottom: 10px;
  }
}
.common-mv-contents2 .flex .text {
  text-align: center;
  font-size: 16px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .common-mv-contents2 .flex .text {
    font-size: 14px;
  }
}
.common-mv-contents2 .flex .btn {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .common-mv-contents2 .flex .btn {
    margin-top: 30px;
  }
}
.common-mv-contents2 .box1 .text {
  color: #555;
}
.common-mv-contents2 .box1 .title {
  color: #555;
}
.common-mv-contents2 .box1 .section-btn a {
  background: #555;
  border: 1px solid #555;
}
.common-mv-contents2 .box2 .text {
  color: #bb3333;
}
.common-mv-contents2 .box2 .title {
  color: #bb3333;
}

.red-section {
  position: relative;
  z-index: 3;
  background: #bb3333;
  color: #fff;
}
.red-section .title {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 60px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .red-section .title {
    font-size: 18px;
    margin-bottom: 30px;
  }
}
.red-section .text {
  font-weight: 500;
  text-align: center;
}

.column .btn {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .column .btn {
    margin-top: 30px;
  }
}

.seo {
  background: #f6f6f6;
}
.seo ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.seo ul li {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  -webkit-box-shadow: 0 3px 6px rgba(62, 62, 62, 0.1);
          box-shadow: 0 3px 6px rgba(62, 62, 62, 0.1);
}
@media screen and (min-width: 768px) {
  .seo ul li {
    width: calc(33.3333% - 26.6666666667px);
    margin-right: 40px;
    overflow: hidden;
  }
  .seo ul li:nth-child(3n) {
    margin-right: 0;
  }
  .seo ul li:nth-child(n+4) {
    margin-top: 60px;
  }
}
@media screen and (max-width: 767px) {
  .seo ul li {
    padding: 20px 20px;
    width: 100%;
    margin-bottom: 20px;
    overflow: hidden;
  }
  .seo ul li:last-child {
    margin-bottom: 0;
  }
}
.seo ul li .title {
  color: #bb3333;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .seo ul li .title {
    font-size: 20px;
    margin-bottom: 10px;
  }
}
.seo ul li .text {
  margin-bottom: 40px;
  font-size: 16px;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .seo ul li .text {
    margin-bottom: 30px;
    font-size: 16px;
  }
}
.seo ul li .section-btn a {
  font-size: 16px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-right: 10px;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .seo ul li .section-btn a {
    font-size: 16px;
    padding: 10px 15px;
  }
}
.seo ul li .section-btn a .section-btn-arrow {
  width: 20px;
}
.nayami {
  position: relative;
  z-index: 3;
  background: #bb3333;
  color: #fff;
}
.nayami .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: 767px) {
  .nayami .flex {
    display: block;
  }
}
.nayami .flex .item {
  width: 31%;
  background: #fff;
  color: #bb3333;
  font-weight: 600;
  padding: 30px;
  line-height: 1.5;
  text-align: center;
  border-radius: 20px;
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .nayami .flex .item {
    width: 32%;
    padding: 20px 15px;
    font-size: 16px;
    width: 100%;
    margin-bottom: 10px;
  }
  .nayami .flex .item:last-child {
    margin-bottom: 0;
  }
}
.nayami .icon-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 800px;
  margin: 20px auto;
}
@media screen and (max-width: 767px) {
  .nayami .icon-flex {
    margin: 15px auto 10px;
  }
}
.nayami .icon-flex .item {
  width: 31%;
  text-align: center;
}
.nayami .icon-flex .item img {
  width: 50px;
}
@media screen and (max-width: 767px) {
  .nayami .icon-flex .item img {
    display: none;
  }
}
.nayami .icon-flex .item2 {
  text-align: center;
}
.nayami .icon-flex .item2 img {
  width: 20px;
}
@media screen and (max-width: 767px) {
  .nayami .icon-flex .item2 img {
    display: block;
    margin: 0 auto;
  }
}
.nayami .title {
  text-align: center;
  font-size: 45px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .nayami .title {
    font-size: 24px;
  }
}
.nayami .title .wrap {
  display: inline-block;
  position: relative;
}
.nayami .title .wrap .left {
  position: absolute;
  top: 50%;
  left: -500px;
  width: 450px;
}
@media screen and (max-width:1000px) {
  .nayami .title .wrap .left {
    left: -250px;
    width: 200px;
  }
}
@media screen and (max-width: 767px) {
  .nayami .title .wrap .left {
    width: 100px;
    left: -110px;
  }
}
.nayami .title .wrap .right {
  position: absolute;
  top: 50%;
  right: -500px;
  width: 450px;
}
@media screen and (max-width:1000px) {
  .nayami .title .wrap .right {
    right: -250px;
    width: 200px;
  }
}
@media screen and (max-width: 767px) {
  .nayami .title .wrap .right {
    width: 100px;
    right: -110px;
  }
}

.feature ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-top: 1px solid #bb3333;
  margin-bottom: 80px;
}
.feature ul li:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .feature ul li {
    display: block;
    margin-bottom: 30px;
  }
}
.feature ul li:nth-child(2n) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.feature ul li .img {
  width: 35%;
}
@media screen and (max-width: 767px) {
  .feature ul li .img {
    width: 100%;
    margin-top: 10px;
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
  }
}
.feature ul li .contents {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .feature ul li .contents {
    width: 100%;
  }
}
.feature ul li .num {
  font-family: "Josefin Sans", serif;
  font-size: 90px;
  font-weight: 700;
  color: #ddd;
  letter-spacing: 0;
  line-height: 1;
  margin-top: 20px;
  margin-bottom: -40px;
}
@media screen and (max-width: 767px) {
  .feature ul li .num {
    font-size: 70px;
  }
}
.feature ul li .title {
  font-weight: 700;
  font-size: 26px;
  color: #bb3333;
  line-height: 1.5;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .feature ul li .title {
    font-size: 20px;
    margin-bottom: 15px;
  }
}
.feature ul li .text {
  font-weight: 500;
  font-size: 16px;
}

.output {
  background: #f6f6f6;
}
.output ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  z-index: 2;
}
.output ul li {
  background: #fff;
  border-radius: 10px;
}
@media screen and (min-width: 768px) {
  .output ul li {
    width: calc(33.3333% - 26.6666666667px);
    margin-right: 40px;
    overflow: hidden;
  }
  .output ul li:nth-child(3n) {
    margin-right: 0;
  }
  .output ul li:nth-child(n+4) {
    margin-top: 60px;
  }
}
@media screen and (max-width: 767px) {
  .output ul li {
    width: calc(50% - 5px);
    margin-right: 10px;
    overflow: hidden;
  }
  .output ul li:nth-child(2n) {
    margin-right: 0;
  }
  .output ul li:nth-child(n+3) {
    margin-top: 30px;
  }
}
.output ul li .img .wrap {
  padding-top: 60%;
  position: relative;
}
.output ul li .img .wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.output ul li .title {
  font-weight: 700;
  color: #bb3333;
  line-height: 1.5;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  margin: 30px 0;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .output ul li .title {
    margin: 15px 0;
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 10px;
  }
}
.output ul li .text {
  font-size: 16px;
  letter-spacing: 0;
  font-weight: 500;
  padding: 30px 20px;
}
@media screen and (max-width: 767px) {
  .output ul li .text {
    padding: 20px 15px;
    font-size: 16px;
  }
}

.banner-section2 {
  background: #bb3333;
  padding: 80px 0;
}
.banner-section2 .main-title {
  text-align: center;
  color: #fff;
  font-weight: 700;
  font-size: 26px;
  line-height: 1.5;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .banner-section2 .main-title {
    font-size: 18px;
    margin-bottom: 20px;
  }
}
.banner-section2 .main-title .wrap {
  display: inline-block;
  position: relative;
}
.banner-section2 .main-title .wrap::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: -30px;
  height: 80px;
  width: 1.5px;
  background: #fff;
  -webkit-transform: rotate(-30deg);
          transform: rotate(-30deg);
}
.banner-section2 .main-title .wrap::after {
  position: absolute;
  content: "";
  bottom: 0;
  right: -30px;
  height: 80px;
  width: 1.5px;
  background: #fff;
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
}
@media screen and (max-width: 767px) {
  .banner-section2 {
    padding: 40px 0;
  }
}
.banner-section2 .btn-area {
  position: relative;
  z-index: 3;
}
.banner-section2 .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 700px !important;
  margin: 0 auto;
}
@media screen and (max-width: 1300px) {
  .banner-section2 .flex {
    max-width: 900px;
  }
}
@media screen and (max-width: 767px) {
  .banner-section2 .flex {
    display: block;
  }
}
.banner-section2 .flex .box {
  width: 48%;
}
@media screen and (max-width: 767px) {
  .banner-section2 .flex .box {
    width: 100%;
    margin-bottom: 10px;
  }
  .banner-section2 .flex .box:last-child {
    margin-bottom: 0;
  }
}
.banner-section2 .flex .title {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .banner-section2 .flex .title {
    font-size: 20px;
    margin-bottom: 10px;
  }
}
.banner-section2 .flex .text {
  text-align: center;
  font-size: 16px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .banner-section2 .flex .text {
    font-size: 14px;
  }
}
.banner-section2 .box1 .text {
  color: #555;
}
.banner-section2 .box1 .title {
  color: #555;
}
.banner-section2 .box1 .section-btn a {
  background: #555;
  border: 1px solid #555;
}
.banner-section2 .box2 a {
  color: #bb3333 !important;
  background: #fff !important;
}
.banner-section2 .box2 .title {
  color: #bb3333;
}

.column ul li .contents {
  background: #fff;
}

.case {
  background: #f6f6f6;
}

.page-ja .small-span {
  font-size: 50%;
  display: block;
  font-weight: 500;
}

.plan ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 60px;
}
@media screen and (max-width: 767px) {
  .plan ul {
    display: block;
  }
}
.plan ul li {
  padding: 40px 20px 10px;
  border-radius: 20px;
  letter-spacing: 0;
  color: #fff;
  position: relative;
  width: 31.5%;
}
.plan ul li:nth-child(1) {
  background: #ee4444;
}
.plan ul li:nth-child(1) .heading {
  color: #ee4444;
}
.plan ul li:nth-child(2) {
  background: #bb3333;
}
.plan ul li:nth-child(2) .heading {
  color: #bb3333;
}
.plan ul li:nth-child(3) {
  background: #991111;
}
.plan ul li:nth-child(3) .heading {
  color: #991111;
}
@media screen and (max-width: 767px) {
  .plan ul li {
    width: 100%;
    margin-bottom: 80px;
  }
  .plan ul li:last-child {
    margin-bottom: 0;
  }
}
.plan ul li .heading {
  position: absolute;
  top: -60px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 80px;
  height: 80px;
  font-family: "Josefin Sans", serif;
  background: #fff;
  border-radius: 50%;
  z-index: 1;
  text-align: center;
}
.plan ul li .heading .wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.plan ul li .heading .en1 {
  font-weight: 500;
  line-height: 1;
  margin-bottom: 7px;
}
.plan ul li .heading .en2 {
  font-weight: bold;
  font-size: 38px;
  line-height: 1;
}
.plan ul li .row .title {
  font-weight: 700;
  overflow: hidden;
  text-align: center;
}
.plan ul li .row .title .wrap {
  display: inline-block;
  position: relative;
  font-size: 16px;
}
.plan ul li .row .title .wrap::before {
  position: absolute;
  top: 50%;
  left: -160px;
  width: 150px;
  height: 1px;
  background: #fff;
  content: "";
}
.plan ul li .row .title .wrap::after {
  position: absolute;
  top: 50%;
  right: -160px;
  width: 150px;
  height: 1px;
  background: #fff;
  content: "";
}
.plan ul li .row .contents {
  padding: 15px 0;
}
@media screen and (max-width: 767px) {
  .plan ul li .row .contents {
    padding: 10px 0;
  }
}
.plan ul li .row .contents1 {
  text-align: center;
  font-weight: bold;
}
.plan ul li .row .contents1 span {
  font-size: 250%;
  font-family: "Josefin Sans", serif;
}
.plan ul li .row .contents2 {
  font-weight: 500;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .plan ul li .row .contents2 {
    font-size: 16px;
  }
}
.plan ul li .row .contents3 {
  font-weight: 700;
  text-align: center;
  font-size: 18px;
}
.plan ul li .row .contents3 span {
  font-family: "Josefin Sans", serif;
  font-size: 170%;
}

.flow ul {
  padding-top: 40px;
}
.flow li {
  background: #f6f6f6;
  padding: 40px;
  border-radius: 10px;
  position: relative;
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .flow li {
    padding: 30px 15px;
    margin-bottom: 60px;
  }
}
.flow li:last-child {
  margin-bottom: 0;
}
.flow li:last-child .text {
  padding: 0 !important;
}
.flow li:last-child .num {
  color: #fff;
  background: #555;
}
.flow li:nth-child(2n) .img {
  left: initial;
  right: 40px;
}
.flow li:nth-child(2n) .text {
  padding-right: 260px;
  padding-left: 0;
}
.flow li .img {
  position: absolute;
  bottom: 0;
  left: 40px;
  max-width: 220px;
}
@media screen and (max-width: 767px) {
  .flow li .img {
    position: initial;
    margin: 10px auto 0;
    max-width: 200px;
	display: none;
  }
}
.flow li .num {
  background: #bb3333;
  font-family: "Josefin Sans", serif;
  font-size: 30px;
  font-weight: 700;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #fff;
  line-height: 1;
  position: absolute;
}
.flow li .num::before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 100%;
  width: 1.5px;
  height: 55px;
  background: #bb3333;
  content: "";
}
@media screen and (max-width: 767px) {
  .flow li .num::before {
    height: 35px;
  }
}
.flow li .num .wrap {
  position: absolute;
  top: 54%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.flow li:last-child {
  background: #bb3333;
  color: #fff;
}
.flow li:last-child .title {
  color: #fff;
}
.flow li .title {
  text-align: center;
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #bb3333;
}
@media screen and (max-width: 767px) {
  .flow li .title {
    font-size: 20px;
    margin-bottom: 15px;
  }
}
.flow li .text {
  font-weight: 500;
  padding-left: 260px;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .flow li .text {
    padding: 0 !important;
	font-size: 16px;
	text-align: center;
  }
}
.flow li .num {
  position: absolute;
  top: -25px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.search-section {
  padding-top: 100px;
}

.wpcf7-spinner {
  display: none !important;
}

.column2 ul li .contents {
  background: #f6f6f6;
}

.column ul {
  -webkit-box-pack: initial !important;
      -ms-flex-pack: initial !important;
          justify-content: initial !important;
}

.check input {
  position: absolute;
  left: -1000%;
  opacity: 0;
}
.check .wpcf7-list-item-label {
  padding-left: 30px;
  position: relative;
}
.check .wpcf7-list-item-label::before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  width: 25px;
  height: 25px;
  border: none;
  background: #ddd;
  content: "";
}
.check .wpcf7-list-item-label::after {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(40deg);
          transform: translateY(-50%) rotate(40deg);
  left: 7px;
  width: 5px;
  height: 23px;
  border: none;
  border-right: 5px solid #bb3333;
  border-bottom: 5px solid #bb3333;
  opacity: 0;
  content: "";
}
.check input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}

.news-category .category-item {
  border: 1px solid #bb3333;
  background: #bb3333;
  color: #fff;
}

.top-contents-section ul li {
  margin: 0 10px;
}
.top-contents-section ul li .slick-list {
  overflow: visible;
}

#toc_container p.toc_title {
  color: #bb3333;
  font-size: 30px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  #toc_container p.toc_title {
    font-size: 20px;
  }
}

#toc_container {
  background: #f8eaea !important;
  border: none !important;
  padding: 30px 40px 50px !important;
  margin-bottom: 60px !important;
}
@media screen and (max-width: 767px) {
  #toc_container {
    margin-bottom: 30px !important;
    padding: 20px 20px !important;
  }
}

#toc_container a {
  color: #222;
  font-size: 20px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding: 5px 0;
  border-bottom: 1px solid #bb3333 !important;
  display: block;
}
#toc_container a:hover {
  text-decoration: none !important;
  opacity: 0.6;
}
@media screen and (max-width: 767px) {
  #toc_container a {
    font-size: 14px;
  }
}

@media screen and (max-width: 767px) {
  .voice .slick-list {
    overflow: hidden;
    padding-bottom: 10px;
  }
}
.contents-section .btn {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .contents-section .btn {
    margin-top: 60px;
  }
}

.voice .btn {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .voice .btn {
    margin-top: 60px;
  }
}

@media screen and (max-width: 767px) {
  .contents-section ul li {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .top-contents-section ul li {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 767px) {
  .top-case ul {
    display: block;
  }
  .top-case ul li {
    margin: 0;
    margin-top: 0 !important;
  }
  .top-case .slick-dots li {
    width: 20px;
    margin: 0 10px !important;
  }
  .top-case .inner {
    padding: 0;
  }
}

@media screen and (max-width: 767px) {
  .contents-section ul li a .img .wrap img {
    border-radius: 5px 5px 0 0;
  }
  .column .btn {
    margin-top: 60px;
  }
  .top-contents-section ul .slick-slide {
    padding: 0 10px;
    margin: 0;
  }
  .top-case ul .slick-slide {
    padding: 0 10px;
  }
  .top-contents-section .inner {
    padding: 0;
  }
}
.bread .bread-wrap {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.pagination {
  text-align: center;
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .pagination {
    margin-top: 30px;
  }
}
.pagination a {
  color: #222;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: 20px;
  margin: 0 5px;
}
.pagination a:hover {
  opacity: 0.6;
}
.pagination span {
  color: #bb3333;
  font-size: 20px;
  margin: 0 5px;
}
.pagination .prev, .pagination .next {
  display: none;
}

#toc_container p.toc_title {
  font-size: 22px;
}
@media screen and (max-width: 767px) {
  #toc_container p.toc_title {
    font-size: 16px;
  }
}

#toc_container a {
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  #toc_container a {
    font-size: 14px;
  }
}

.single-column .single-column-heading .img img {
  height: auto;
}

.section-btn a .section-btn-flex {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.section-btn a .section-btn-arrow {
  margin-left: 10px;
  width: 30px;
}