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

@media screen and (min-width: 768px) {
  .is-sp {
    display: none;
  }
}

body {
  font-size: 16px;
  color: #202532;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.7;
  background: #fff;
  letter-spacing: 1px;
}

@media screen and (max-width: 767px) {
  body {
    font-size: 14px;
  }
}

.inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

@media screen and (max-width: 767px) {
  .inner {
    padding: 0 20px;
  }
}

.header-inner {
  margin: 0 auto;
  padding: 0 40px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

@media screen and (max-width: 767px) {
  .header-inner {
    padding: 0 20px;
  }
}

.footer-inner {
  margin: 0 auto;
  padding: 0 40px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

@media screen and (max-width: 767px) {
  .footer-inner {
    padding: 0 20px;
  }
}

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

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

::-webkit-input-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 #707070;
  background: #fff;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  width: 100%;
  padding: 0;
  margin: 0;
  outline: none;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 20px 0;
}

@media screen and (max-width: 767px) {
  .header {
    padding: 10px 0;
  }
}

.header .logo {
  max-width: 250px;
}

@media screen and (max-width: 767px) {
  .header .logo {
    max-width: 150px;
  }
}

.header .logo a {
  -webkit-transition: .3s;
  transition: .3s;
}

.header .logo a:hover {
  opacity: .6;
}

.header .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header .flex .header-nav {
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 30px;
  border-radius: 60px;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  background: rgba(255, 255, 255, 0.5);
  -webkit-transition: .3s;
  transition: .3s;
}

.header .flex .header-nav.is-active {
  background: #fff;
  -webkit-transition: .3s;
  transition: .3s;
}

@media screen and (max-width: 1200px) {
  .header .flex .header-nav {
    display: none;
  }
}

.header .flex .header-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header .flex .header-nav ul li {
  margin-right: 20px;
}

.header .flex .header-nav ul li a {
  color: #202532;
  font-size: 14px;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 500;
  white-space: nowrap;
  -webkit-transition: .3s;
  transition: .3s;
}

.header .flex .header-nav ul li a:hover {
  color: #CA2A79;
}

.header .flex .header-nav ul li a:hover span {
  background: #CA2A79;
}

.header .flex .header-nav ul li a.active span {
  background: #CA2A79;
}

.header .flex .header-nav ul li span {
  width: 10px;
  height: 10px;
  background: #202532;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  top: 3px;
  margin-right: 4px;
}

.header .flex .header-nav ul li .en {
  margin-bottom: 5px;
}

.header .flex .header-nav .btn-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header .flex .header-nav .btn-area .btn:first-child {
  margin-right: 20px;
}

.header .flex .header-nav .btn-area .btn a {
  color: #202532;
  line-height: 1;
  white-space: nowrap;
  border-radius: 40px;
  -webkit-transition: .3s;
  transition: .3s;
  color: #fff;
  font-weight: 500;
  font-size: 15px;
  display: block;
  width: 100%;
  width: 150px;
  text-align: center;
  padding: 15px 0;
}

.header .flex .header-nav .btn-area .btn1 a {
  border: 1px solid #CA2A79;
  background: #CA2A79;
}

.header .flex .header-nav .btn-area .btn1 a:hover {
  background: #fff;
  color: #CA2A79;
}

.header .flex .header-nav .btn-area .btn2 a {
  border: 1px solid #443FAD;
  background: #443FAD;
}

.header .flex .header-nav .btn-area .btn2 a:hover {
  background: #fff;
  color: #443FAD;
}

body,
html {
  overflow-x: hidden;
}

body {
  padding-top: 127px;
}

@media screen and (max-width: 767px) {
  body {
    padding-top: 71px;
  }
}

.mv {
  padding: 40px 0 200px;
  position: relative;
}

.mv .inner {
  position: relative;
  z-index: 1;
}

.mv .flower {
  width: 20%;
  position: absolute;
  top: 70%;
  right: 0%;
  z-index: 10;
}

@media screen and (max-width: 767px) {
  .mv .flower {
    top: 0px;
  }
}

.mv .right {
  position: absolute;
  top: -45%;
  right: -20%;
  width: 65%;
}

@media screen and (max-width: 767px) {
  .mv .right {
    position: absolute;
    top: -27%;
    right: -17%;
    width: 68%;
  }
}

.mv .right .wrap {
  position: relative;
}

.mv .contents .hana-img {
  max-width: 200px;
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .mv .contents .hana-img {
    max-width: 100px;
  }
}

.mv .contents .title {
  font-size: 46px;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  margin-bottom: 0px;
  z-index: 2;
  position: relative;
}

@media screen and (max-width: 767px) {
  .mv .contents .title {
    font-size: 7vw;
  }
}

.mv .contents .en {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 60px;
}

@media screen and (max-width: 767px) {
  .mv .contents .en {
    font-size: 4vw;
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 767px) {
  .mv .btn {
    text-align: center;
  }
}

.scrolldown1 {
  /*描画位置※位置は適宜調整してください*/
  position: absolute;
  left: 50%;
  bottom: 60px;
  /*全体の高さ*/
  height: 50px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

/*Scrollテキストの描写*/
.scrolldown1 span {
  /*描画位置*/
  position: absolute;
  left: -15px;
  bottom: 0;
  /*テキストの形状*/
  color: #202532;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  /* テキストを垂直方向に書く */
  font-size: 14px;
  font-weight: bold;
}

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

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

.section-btn {
  position: relative;
  z-index: 3;
}

.section-btn a {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  background: -webkit-gradient(linear, left top, right top, from(#CA2A79), to(#443FAD));
  background: linear-gradient(to right, #CA2A79, #443FAD);
  display: inline-block;
  min-width: 200px;
  text-align: center;
  padding: 18px 40px;
  border-radius: 40px;
  line-height: 1;
  -webkit-transition: .3s;
  transition: .3s;
  min-width: 250px;
}

.section-btn a:hover {
  background: -webkit-gradient(linear, left top, right top, from(#443FAD), to(#CA2A79));
  background: linear-gradient(to right, #443FAD, #CA2A79);
  opacity: .6;
}

.drawer-icon {
  position: fixed;
  top: 30px;
  right: 20px;
  z-index: 300;
  -webkit-transition: -webkit-transform .5s ease 0s;
  transition: -webkit-transform .5s ease 0s;
  transition: transform .5s ease 0s;
  transition: transform .5s ease 0s, -webkit-transform .5s ease 0s;
  padding: 10px;
  border-radius: 50%;
  background: #CA2A79;
}

@media screen and (min-width: 1201px) {
  .drawer-icon {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .drawer-icon {
    top: 13px;
  }
}

.drawer-icon.is-active .drawer-icon-bar1 {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 11px;
  -webkit-transition: .3s;
  transition: .3s;
}

.drawer-icon.is-active .drawer-icon-bar2 {
  opacity: 0;
  -webkit-transition: .3s;
  transition: .3s;
}

.drawer-icon.is-active .drawer-icon-bar3 {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 11px;
  -webkit-transition: .3s;
  transition: .3s;
}

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

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

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

.drawer-icon-bar2 {
  top: 11px;
  -webkit-transition: .3s;
  transition: .3s;
}

.drawer-icon-bar3 {
  top: 22px;
  -webkit-transition: .3s;
  transition: .3s;
}

.drawer-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  background: url(../img/drawer-bg.jpg) no-repeat center center/cover;
  z-index: 250;
  display: none;
  -webkit-transition: all .5s ease 0s;
  transition: all .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: 50px;
}

.drawer-icon-nav ul li a {
  display: block;
  color: #202532;
}

.drawer-mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/drawer-bg.jpg) no-repeat center center/cover;
  z-index: 220;
  display: none;
}

.drawer-mask.is-active {
  display: block;
}

.drawer-content .header-ul li {
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .drawer-content .header-ul li {
    margin-bottom: 20px;
  }
}

.drawer-content .header-ul li a {
  text-align: center;
  font-weight: 500;
}

.drawer-content .header-ul li a .en {
  font-weight: 600;
}

.drawer-content .header-ul li a .title {
  font-size: 16px;
}

.drawer-content .header-ul li a:hover {
  color: #CA2A79;
}

.drawer-content .btn-area .btn:first-child {
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .drawer-content .btn-area .btn:first-child {
    margin-bottom: 20px;
  }
}

.drawer-content .btn-area .btn a {
  color: #202532;
  line-height: 1;
  white-space: nowrap;
  border-radius: 40px;
  -webkit-transition: .3s;
  transition: .3s;
  color: #fff;
  font-weight: 500;
  font-size: 15px;
  display: block;
  width: 100%;
  width: 150px;
  text-align: center;
  padding: 15px 0;
}

.drawer-content .btn-area .btn1 a {
  border: 1px solid #CA2A79;
  background: #CA2A79;
}

.drawer-content .btn-area .btn1 a:hover {
  background: #fff;
  color: #CA2A79;
}

.drawer-content .btn-area .btn2 a {
  border: 1px solid #443FAD;
  background: #443FAD;
}

.drawer-content .btn-area .btn2 a:hover {
  background: #fff;
  color: #443FAD;
}

.section {
  padding: 100px 0;
}

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

.section-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 60px;
}

@media screen and (max-width: 767px) {
  .section-title {
    margin-bottom: 30px;
    line-height: 1.4;
  }
}

.topMessage {
  position: relative;
  overflow-x: hidden;
}

.topMessage .flower2 {
  position: absolute;
  width: 15%;
  top: 0;
  left: -6%;
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
}

.topMessage .flower3 {
  position: absolute;
  width: 15%;
  top: 20%;
  right: -4%;
}

.topMessage .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) {
  .topMessage .flex {
    display: block;
  }
}

.topMessage .flex .contents {
  width: 55%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (min-width: 768px) {
  .topMessage .flex .contents .en-common {
    margin-right: 40px;
  }
}

.topMessage .flex .contents .en-common .wrap {
  position: relative;
  display: inline-block;
  line-height: 1;
}

@media screen and (min-width: 768px) {
  .topMessage .flex .contents .en-common .wrap::after {
    position: absolute;
    top: 110%;
    left: 40%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 1px;
    height: 130px;
    background: #202532;
    content: "";
  }
}

@media screen and (max-width: 767px) {
  .topMessage .flex .contents .en-common .wrap::after {
    position: absolute;
    top: 60%;
    left: 110%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 100px;
    height: 1px;
    background: #202532;
    content: "";
  }
}

@media screen and (min-width: 768px) {
  .topMessage .flex .contents .en-common {
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    font-size: 20px;
    font-weight: bold;
  }
}

@media screen and (max-width: 767px) {
  .topMessage .flex .contents .en-common {
    font-size: 14px;
  }
}

@media screen and (max-width: 767px) {
  .topMessage .flex .contents {
    width: 100%;
    margin-bottom: 20px;
    display: block;
  }
}

.topMessage .flex .img {
  width: 40%;
}

@media screen and (max-width: 767px) {
  .topMessage .flex .img {
    width: 70%;
    margin: 50px auto 0;
  }
}

.topMessage p {
  font-size: 16px;
  margin-bottom: 60px;
  font-family: "Noto Serif JP", serif;
}

@media screen and (max-width: 767px) {
  .topMessage p {
    font-size: 14px;
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 767px) {
  .topMessage .btn {
    text-align: center;
  }
}

.topConcept .flex {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.topConcept .flex .contents {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

@media screen and (min-width: 768px) {
  .topConcept .flex .contents .en-common {
    margin-right: 0;
    margin-left: 40px;
  }
}

.topConcept .bottom-area {
  margin-top: 60px;
}

@media screen and (max-width: 767px) {
  .topConcept .bottom-area {
    margin-top: 30px;
  }
}

.topConcept .bottom-area .section-title {
  text-align: center;
}

@media screen and (min-width: 768px) {
  .topConcept .slick-list {
    overflow: visible;
  }
}

.topConcept .slick-slide {
  padding: 0 10px;
}

@media screen and (max-width: 767px) {
  .topConcept .slick-slide {
    padding: 0;
  }
}

.topConcept .slick-dots {
  bottom: -60px;
  padding: 20px 0;
}

.topConcept .btn {
  margin-top: 100px;
}

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

.topConcept .slick-dots li button:before {
  font-size: 12px;
}

.topConcept .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.topConcept .slick-slide {
  height: auto !important;
}

.concept-card {
  height: 100%;
}

.concept-card {
  border-radius: 65px;
  background: #fff;
  padding: 50px;
}

@media screen and (max-width: 767px) {
  .concept-card {
    margin-bottom: 20px;
  }
  .concept-card:last-child {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 767px) {
  .concept-card {
    border-radius: 30px;
    padding: 20px;
  }
}

.concept-card .title {
  font-weight: bold;
  font-size: 28px;
  line-height: 1;
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .concept-card .title {
    font-size: 20px;
    margin-bottom: 20px;
  }
}

.concept-card .title span {
  font-size: 250%;
  line-height: 1;
  display: inline-block;
  margin-left: 10px;
}

.concept-card.card1 {
  border: 7px solid #79A9A8;
}

@media screen and (max-width: 767px) {
  .concept-card.card1 {
    border: 5px solid #79A9A8;
  }
}

.concept-card.card1 .title {
  color: #79A9A8;
}

.concept-card.card2 {
  border: 7px solid #F7D748;
}

@media screen and (max-width: 767px) {
  .concept-card.card2 {
    border: 5px solid #F7D748;
  }
}

.concept-card.card2 .title {
  color: #F7D748;
}

.concept-card.card3 {
  border: 7px solid #D7915B;
}

@media screen and (max-width: 767px) {
  .concept-card.card3 {
    border: 5px solid #D7915B;
  }
}

.concept-card.card3 .title {
  color: #D7915B;
}

.concept-card.card4 {
  border: 7px solid #91B4DD;
}

@media screen and (max-width: 767px) {
  .concept-card.card4 {
    border: 5px solid #91B4DD;
  }
}

.concept-card.card4 .title {
  color: #91B4DD;
}

.concept-card .concept-card-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) {
  .concept-card .concept-card-flex {
    display: block;
  }
}

.concept-card .concept-card-flex .left {
  width: 50%;
}

@media screen and (max-width: 1000px) {
  .concept-card .concept-card-flex .left {
    width: 100%;
    margin-bottom: 10px;
  }
}

.concept-card .concept-card-flex .right {
  width: 47%;
}

@media screen and (max-width: 1000px) {
  .concept-card .concept-card-flex .right {
    width: 100%;
  }
}

.concept-card .textarea {
  font-size: 16px;
  font-family: "Noto Serif JP", serif;
}

@media screen and (max-width: 767px) {
  .concept-card .textarea {
    font-size: 14px;
  }
}

.en-section {
  font-size: 20px;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .en-section {
    font-size: 14px;
  }
}

.event .btn {
  text-align: right;
  margin-top: 60px;
}

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

.event ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (min-width: 768px) {
  .event ul li {
    width: calc(33.3333% - 40px * 2/3);
    margin-right: 40px;
  }
  .event ul li:nth-child(3n) {
    margin-right: 0;
  }
  .event ul li:nth-child(n + 4) {
    margin-top: 60px;
  }
}

@media screen and (max-width: 767px) {
  .event ul li {
    width: 100%;
    margin-bottom: 20px;
  }
  .event ul li:last-child {
    margin-bottom: 0;
  }
}

.event ul li .img {
  position: relative;
  -webkit-transition: .3s;
  transition: .3s;
  overflow: hidden;
}

.event ul li .img .wrap {
  position: relative;
  padding-top: 65%;
  margin-bottom: 20px;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .event ul li .img .wrap {
    margin-bottom: 10px;
  }
}

.event ul li .img .wrap img {
  position: absolute;
  -webkit-transition: .3s;
  transition: .3s;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.event ul li .row {
  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;
  margin-bottom: 15px;
}

.event ul li .row .category {
  font-size: 11.5px;
  text-align: center;
  padding: 5px 15px;
  border-radius: 15px;
  background: #B9CB59;
  color: #fff;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .event ul li .row .category {
    display: inline-block;
    margin-bottom: 5px;
  }
}

.event ul li .row .time {
  font-size: 11px;
  font-weight: bold;
  color: #202532;
}

.event ul li .title {
  margin-bottom: 10px;
  color: #202532;
  font-size: 13px;
  font-weight: bold;
  line-height: 1.3;
}

.event ul li .textarea {
  font-size: 12px;
  color: #707070;
}

.event ul li a {
  background: #fff;
  display: block;
  padding: 30px;
  border-radius: 43px;
  border: 1px solid #EAEAF6;
  -webkit-box-shadow: 1px 1px 24px #EAEAF6;
          box-shadow: 1px 1px 24px #EAEAF6;
  -webkit-transition: .3s;
  transition: .3s;
}

.event ul li a:hover {
  -webkit-box-shadow: 2px 3px 14px #d4d4d5;
          box-shadow: 2px 3px 14px #d4d4d5;
}

.event ul li a:hover .img {
  overflow: hidden;
  -webkit-transition: .3s;
  transition: .3s;
}

.event ul li a:hover .img img {
  -webkit-transition: .3s;
  transition: .3s;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

@media screen and (max-width: 767px) {
  .event ul li a {
    padding: 20px 15px;
    border-radius: 20px;
  }
}

html {
  scroll-behavior: smooth;
}

#join,
#pro {
  position: relative;
  top: -120px;
}

@media screen and (max-width: 767px) {
  #join,
  #pro {
    top: -70px;
  }
}

.news {
  position: relative;
}

.news .color1-news {
  position: absolute;
  top: -7%;
  left: 0%;
  width: 30%;
  -webkit-animation: ripples_anim 2s linear infinite;
          animation: ripples_anim 2s linear infinite;
}

.news .color2-news {
  position: absolute;
  top: 35%;
  left: -3%;
  width: 40%;
  -webkit-animation: ripples_anim 2.5s linear infinite;
          animation: ripples_anim 2.5s linear infinite;
}

.news .color3-news {
  position: absolute;
  top: -15%;
  right: -5%;
  width: 45%;
  -webkit-animation: ripples_anim 3s linear infinite;
          animation: ripples_anim 3s linear infinite;
}

.news .flower4 {
  position: absolute;
  width: 15%;
  top: 50%;
  left: -5%;
}

.news .circle1-news img {
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.08);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.08);
  position: absolute;
  z-index: 0;
  top: 80%;
  right: -2%;
  width: 8%;
  -webkit-animation: fluffy-rotate 14s linear infinite;
          animation: fluffy-rotate 14s linear infinite;
}

.news .section-title,
.news .en-section {
  text-align: center;
}

.news .box {
  padding: 40px 40px 60px;
  border-radius: 26px;
  background: white;
  position: relative;
}

@media screen and (max-width: 767px) {
  .news .box {
    padding: 30px 20px;
  }
}

.news ul {
  max-width: 850px;
  margin: 0 auto;
}

.news ul li a {
  padding: 20px;
  display: block;
  border-bottom: 1px dashed #B7B7B7;
  -webkit-transition: .3s;
  transition: .3s;
}

@media screen and (max-width: 767px) {
  .news ul li a {
    padding: 15px 0;
  }
}

.news ul li a:hover {
  background: #eceaea;
}

.news ul li a .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: 767px) {
  .news ul li a .flex {
    display: block;
  }
}

.news ul li a .flex .time {
  font-size: 14px;
  color: #443FAD;
  white-space: nowrap;
  margin-right: 60px;
  font-weight: bold;
}

.news ul li a .flex .title {
  color: #202532;
  font-size: 14px;
  font-weight: bold;
}

.news .btn {
  margin-top: 60px;
  text-align: center;
}

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

.join .section-title {
  text-align: center;
}

.mail {
  position: relative;
  overflow: hidden;
  padding-top: 0;
}

.mail .color1-mail {
  position: absolute;
  top: 18%;
  left: -5%;
  width: 40%;
  -webkit-animation: ripples_anim 2s linear infinite;
          animation: ripples_anim 2s linear infinite;
}

.mail .color2-mail {
  position: absolute;
  top: 35%;
  left: -2%;
  width: 60%;
  -webkit-animation: ripples_anim 2.5s linear infinite;
          animation: ripples_anim 2.5s linear infinite;
}

.mail .color3-mail {
  position: absolute;
  top: 25%;
  right: -5%;
  width: 65%;
  -webkit-animation: ripples_anim 3s linear infinite;
          animation: ripples_anim 3s linear infinite;
}

.mail .box {
  position: relative;
  z-index: 2;
}

.mail .now {
  position: absolute;
  top: -100px;
  left: -120px;
}

@media screen and (max-width: 767px) {
  .mail .now {
    top: -10px;
    left: -80px;
  }
}

.mail .now::after {
  position: absolute;
  content: "";
  top: 70%;
  right: 4px;
  border-style: solid;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 30px solid #CA2A79;
  border-right: 0;
  -webkit-transform: rotate(40deg);
          transform: rotate(40deg);
}

@media screen and (max-width: 767px) {
  .mail .now::after {
    -webkit-transform: rotate(20deg);
            transform: rotate(20deg);
    top: 40%;
    right: -3px;
  }
}

.mail .now-wrap {
  background: #CA2A79;
  position: relative;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .mail .now-wrap {
    width: 70px;
    height: 70px;
  }
}

.mail .now-wrap .now-contents {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  color: #fff;
  font-size: 22px;
  line-height: 1.3;
  font-family: "Noto Serif JP", serif;
  z-index: 2;
}

@media screen and (max-width: 767px) {
  .mail .now-wrap .now-contents {
    font-size: 13px;
  }
}

.mail .small2 {
  font-size: 85%;
}

.mail .topHeading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.mail .topHeading .img {
  width: 25%;
}

.mail .box {
  max-width: 850px;
  margin: 0 auto;
  margin-top: -100px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.93);
  position: relative;
  padding: 80px 20px;
}

@media screen and (max-width: 767px) {
  .mail .box {
    margin-top: 0;
    padding: 30px 0px;
  }
}

.mail .box-inner {
  max-width: 550px;
  margin: 0 auto;
}

.mail .lead {
  font-size: 14px;
  text-align: center;
  color: #707070;
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .mail .lead {
    text-align: left;
  }
}

.mail .title {
  color: #707070;
  font-size: 30px;
  text-align: center;
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .mail .title {
    line-height: 1.4;
    font-size: 18px;
  }
}

.mail .title .small {
  font-size: 70%;
}

.mail .title .red {
  color: #CA2A79;
}

.mail .title .wrap {
  position: relative;
  display: inline-block;
}

.mail .email {
  margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
  .mail .email {
    margin-bottom: 20px;
  }
}

.mail input[type="email"] {
  padding: 20px;
  border: 4px solid #707070;
  width: 100%;
  font-size: 14px;
  text-align: center;
}

.mail .mail-submit-design {
  cursor: pointer;
  border: 1px solid #46A48A;
  background: #46A48A;
  text-align: center;
  padding: 15px 0;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  border-radius: 60px;
  -webkit-transition: .3s;
  transition: .3s;
}

@media screen and (max-width: 767px) {
  .mail .mail-submit-design {
    font-size: 16px;
    padding: 10px 0 !important;
  }
}

.mail .mail-submit-design .big {
  font-size: 150%;
}

@media screen and (max-width: 767px) {
  .mail .mail-submit-design .big {
    font-size: 135%;
  }
}

@media screen and (max-width: 767px) {
  .mail .mail-submit-design {
    padding: 0;
    font-size: 16px;
  }
}

.mail .mail-submit-design:hover {
  color: #46A48A;
  background: #fff;
}

.mail input[type="submit"] {
  opacity: 0;
  position: absolute;
  left: -1000px;
}

.footer {
  padding: 60px 0 30px;
}

@media screen and (max-width: 767px) {
  .footer {
    padding: 40px 0 20px;
  }
}

.footer .logo {
  max-width: 250px;
}

@media screen and (max-width: 800px) {
  .footer .logo {
    margin: 0 auto;
  }
}

@media screen and (max-width: 767px) {
  .footer .logo {
    max-width: 250px;
    margin-bottom: 10px;
  }
}

.footer .logo a {
  -webkit-transition: .3s;
  transition: .3s;
}

.footer .logo a:hover {
  opacity: .6;
}

.footer .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: 1200px) {
  .footer .flex {
    display: block;
  }
}

.footer .flex .header-nav {
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 30px;
  border-radius: 60px;
  -webkit-transition: .3s;
  transition: .3s;
}

@media screen and (max-width: 1200px) {
  .footer .flex .header-nav {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media screen and (max-width: 800px) {
  .footer .flex .header-nav {
    display: block;
  }
}

.footer .flex .header-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 800px) {
  .footer .flex .header-nav ul {
    margin-bottom: 40px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media screen and (max-width: 767px) {
  .footer .flex .header-nav ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: initial;
        -ms-flex-pack: initial;
            justify-content: initial;
  }
}

.footer .flex .header-nav ul li {
  margin-right: 20px;
}

@media screen and (max-width: 767px) {
  .footer .flex .header-nav ul li {
    width: calc(50% - 20px * 1/2);
    margin-right: 20px;
  }
  .footer .flex .header-nav ul li:nth-child(2n) {
    margin-right: 0;
  }
  .footer .flex .header-nav ul li:nth-child(n + 3) {
    margin-top: 30px;
  }
}

.footer .flex .header-nav ul li a {
  color: #202532;
  font-size: 14px;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 500;
  white-space: nowrap;
  -webkit-transition: .3s;
  transition: .3s;
}

.footer .flex .header-nav ul li a:hover {
  color: #CA2A79;
}

.footer .flex .header-nav ul li a:hover span {
  background: #CA2A79;
}

.footer .flex .header-nav ul li a.active span {
  background: #CA2A79;
}

.footer .flex .header-nav ul li span {
  width: 10px;
  height: 10px;
  background: #202532;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  top: 3px;
  margin-right: 4px;
}

.footer .flex .header-nav ul li .en {
  margin-bottom: 5px;
}

.footer .flex .header-nav .btn-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 800px) {
  .footer .flex .header-nav .btn-area {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.footer .flex .header-nav .btn-area .btn:first-child {
  margin-right: 20px;
}

.footer .flex .header-nav .btn-area .btn a {
  color: #202532;
  line-height: 1;
  white-space: nowrap;
  border-radius: 40px;
  -webkit-transition: .3s;
  transition: .3s;
  color: #fff;
  font-weight: 500;
  font-size: 15px;
  display: block;
  width: 100%;
  width: 150px;
  text-align: center;
  padding: 15px 0;
}

.footer .flex .header-nav .btn-area .btn1 a {
  border: 1px solid #CA2A79;
  background: #CA2A79;
}

.footer .flex .header-nav .btn-area .btn1 a:hover {
  background: #fff;
  color: #CA2A79;
}

.footer .flex .header-nav .btn-area .btn2 a {
  border: 1px solid #443FAD;
  background: #443FAD;
}

.footer .flex .header-nav .btn-area .btn2 a:hover {
  background: #fff;
  color: #443FAD;
}

@media screen and (max-width: 767px) {
  .event .btn {
    text-align: center;
  }
}

.footer .flex2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

@media screen and (max-width: 767px) {
  .footer .flex2 {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.footer .flex2 .item {
  margin-right: 20px;
}

.footer .flex2 .item:last-child {
  margin-right: 0;
}

.footer .flex2 a {
  font-size: 13px;
  color: #202532;
  font-weight: bold;
  -webkit-transition: .3s;
  transition: .3s;
}

.footer .flex2 a:hover {
  color: #CA2A79;
}

.footer .sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 60px;
  margin-top: 20px;
}

@media screen and (max-width: 767px) {
  .footer .sns {
    margin-top: 20px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-left: 0px;
  }
}

.footer .sns .item {
  margin-right: 10px;
}

@media screen and (max-width: 767px) {
  .footer .sns .item {
    margin-right: 20px;
  }
}

.footer .sns .item:last-child {
  margin-right: 0;
}

.footer .sns .item a {
  width: 30px;
  display: inline-block;
  -webkit-transition: .3s;
  transition: .3s;
}

@media screen and (max-width: 767px) {
  .footer .sns .item a {
    width: 40px;
  }
}

.footer .sns .item a:hover {
  opacity: .6;
}

.copyright {
  font-size: 12px;
  font-weight: bold;
  text-align: center;
  margin-top: 40px;
}

@media screen and (max-width: 767px) {
  .copyright {
    font-size: 10px;
    margin-top: 30px;
  }
}

@media screen and (min-width: 768px) {
  .footer .flex .header-nav {
    padding-right: 0;
  }
}

@media screen and (max-width: 767px) {
  .project .section-title {
    line-height: 1.4;
  }
}

@media screen and (min-width: 768px) {
  .project .slick-list {
    overflow: visible;
  }
}

.project .img {
  width: 100%;
}

.project .img .wrap {
  position: relative;
  padding-top: 65%;
}

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

.project .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.project .slick-slide {
  height: auto !important;
  background: #fff;
  border-radius: 30px;
  border: 1px solid #EAEAF6;
  -webkit-box-shadow: 1px 1px 13px #EAEAF6;
          box-shadow: 1px 1px 13px #EAEAF6;
  padding-bottom: 30px;
}

.project .slick-slide {
  margin: 0 30px;
}

@media screen and (max-width: 767px) {
  .project .slick-slide {
    margin: 0;
  }
}

.project .slider {
  width: 70%;
  margin: 0 auto;
  height: auto;
}

.project .slick-dots {
  bottom: -50px;
}

.project .slick-dots li button:before {
  font-size: 12px;
}

.project ul .li {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -ms-flex-direction: column;
      flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  position: relative;
}

.project ul .li .contents {
  padding: 30px;
  font-size: 14px;
  color: #707070;
}

.project ul .li .btn {
  text-align: center;
  margin-top: auto;
  margin: 0 0px;
}

.project ul .li .btn a {
  text-align: center;
  border-radius: 30px;
  padding: 15px 0px;
  display: inline-block;
  color: #fff;
  font-size: 16px;
  background: #443FAD;
  border: 1px solid #443FAD;
  -webkit-transition: .3s;
  transition: .3s;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .project ul .li .btn a {
    font-size: 14px;
    padding: 10px 15px;
  }
}

.project ul .li .btn a:hover {
  background: #fff;
  color: #443FAD;
}

@media screen and (max-width: 767px) {
  .mv .flower {
    top: 380px;
    width: 20%;
    left: 70%;
  }
  .topMessage .flower2 {
    position: absolute;
    top: 0;
    width: 27%;
    right: -10%;
  }
  .topMessage .flower3 {
    width: 27%;
    right: -10%;
  }
  .news .flower4 {
    width: 27%;
    left: -10%;
  }
  .news .circle1-news img {
    width: 15%;
  }
  .news .color1-news {
    width: 60%;
    top: -19%;
  }
  .news .color2-news {
    width: 60%;
  }
  .news .color3-news {
    width: 60%;
  }
}

.privacy .lead {
  font-size: 16px;
  margin-bottom: 60px;
}

@media screen and (max-width: 767px) {
  .privacy .lead {
    font-size: 14px;
    margin-bottom: 30px;
  }
}

.privacy .wrap {
  margin-bottom: 60px;
}

@media screen and (max-width: 767px) {
  .privacy .wrap {
    margin-bottom: 30px;
  }
}

.privacy h2 {
  border-bottom: 1px solid #CA2A79;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .privacy h2 {
    font-size: 18px;
  }
}

.privacy h3 {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 600;
  margin-top: 20px;
}

@media screen and (max-width: 767px) {
  .privacy h3 {
    font-size: 16px;
  }
}

.contact .section-title {
  text-align: center;
}

.contact .box {
  background: #fff;
  border-radius: 60px;
  border: 1px solid #EAEAF6;
  -webkit-box-shadow: 1px 1px 24px #EAEAF6;
          box-shadow: 1px 1px 24px #EAEAF6;
  padding: 80px;
}

@media screen and (max-width: 767px) {
  .contact .box {
    padding: 30px 20px;
    border-radius: 20px;
  }
}

.contact .box .row {
  margin-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: initial;
      -ms-flex-align: initial;
          align-items: initial;
}

@media screen and (max-width: 767px) {
  .contact .box .row {
    margin-bottom: 20px;
    display: block;
  }
}

.contact .box .row .dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 250px;
}

@media screen and (max-width: 767px) {
  .contact .box .row .dt {
    margin-bottom: 10px;
    width: 100%;
  }
}

.contact .box .row .dt .text {
  font-size: 16px;
  font-weight: bold;
  margin-right: 20px;
}

.contact .box .row .dt .required {
  background: #CA2A79;
  padding: 3px 15px;
  color: #fff;
  font-size: 14px;
  border-radius: 15px;
}

.contact .box .row .dd {
  width: calc(100% - 250px);
}

@media screen and (max-width: 767px) {
  .contact .box .row .dd {
    width: 100%;
  }
}

.contact input[type="text"],
.contact input[type="email"],
.contact textarea {
  padding: 10px;
  border-radius: 10px;
  border: none;
  background: #F2F2F2;
}

.contact textarea {
  resize: none;
  height: 300px;
}

.contact .textarea-row {
  -webkit-box-align: start !important;
      -ms-flex-align: start !important;
          align-items: flex-start !important;
}

@media screen and (min-width: 768px) {
  .contact .textarea-row .dt {
    padding-top: 10px;
  }
}

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

.contact .submit input {
  background: #443FAD;
  border: 1px solid #443FAD;
  cursor: pointer;
  -webkit-transition: .3s;
  transition: .3s;
  border-radius: 40px;
  line-height: 1;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  color: #fff;
  padding: 18px 0;
  font-weight: 500;
}

.contact .submit input:hover {
  background: #fff;
  color: #443FAD;
}

.contact .check {
  margin-bottom: 40px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .contact .check {
    margin-bottom: 30px;
  }
}

.contact .check .wpcf7-list-item-label {
  position: relative;
  padding-left: 30px;
}

.contact .check .wpcf7-list-item-label::before {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border: 1px solid #202532;
}

.contact .check .wpcf7-list-item-label::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 6px;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%) rotate(-53deg);
  transform: translateY(-50%) rotate(-53deg);
  border-bottom: 4px solid #443FAD;
  border-left: 4px solid #443FAD;
  opacity: 0;
}

.contact .wpcf7-spinner {
  display: none;
}

.contact input[type="checkbox"]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}

.contact .wpcf7-list-item {
  margin-left: 0;
}

.contact input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  left: -1000px;
}

.contact .thanks {
  margin-bottom: 60px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .contact .thanks {
    margin-bottom: 30px;
    text-align: left;
  }
}

.footer {
  background: #fff;
}

.guide1 {
  background: #FDFCF8;
}

@media screen and (min-width: 768px) {
  .guide1 {
    padding: 60px 0;
  }
}

.guide1 .section-title {
  text-align: center;
}

.guide2 {
  background: #fff;
}

.guide2 .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) {
  .guide2 .flex {
    display: block;
  }
}

.guide2 .flex .box {
  width: 45%;
}

@media screen and (max-width: 767px) {
  .guide2 .flex .box {
    width: 100%;
  }
  .guide2 .flex .box:first-child {
    margin-bottom: 30px;
  }
}

.guide2 .flex .box .title {
  font-size: 18px;
  color: #443FAD;
  font-weight: 600;
  border-bottom: 2px solid #443FAD;
  padding: 5px;
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .guide2 .flex .box .title {
    font-size: 16px;
  }
}

.guide2 .flex .box .text {
  font-size: 14px;
  color: #707070;
}

@media screen and (max-width: 767px) {
  .guide2 .flex .box .text {
    font-size: 14px;
  }
}

.guide3 .box {
  background: #fff;
  border-radius: 60px;
  border: 1px solid #CA2A79;
  padding: 80px 40px;
}

@media screen and (max-width: 767px) {
  .guide3 .box {
    padding: 30px 20px;
    border-radius: 20px;
  }
}

.guide3 .section-title {
  color: #CA2A79;
  text-align: center;
}

.guide3 .en-section {
  color: #CA2A79;
  text-align: center;
}

.guide3 .flex .box2 {
  width: 100%;
}

.guide3 .flex .box2 ul {
  padding-left: 20px;
}

.guide3 .flex .box2 li {
  list-style: disc;
}

@media screen and (min-width: 768px) {
  .guide3 .flex .box2:first-child {
    margin-bottom: 60px;
  }
}

@media screen and (max-width: 767px) {
  .guide3 .flex .box2 {
    width: 100%;
  }
  .guide3 .flex .box2:first-child {
    margin-bottom: 30px;
  }
}

.guide3 .flex .box2 .title {
  font-size: 18px;
  color: #CA2A79;
  font-weight: 600;
  border-bottom: 2px solid #CA2A79;
  padding: 5px;
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .guide3 .flex .box2 .title {
    font-size: 16px;
  }
}

.guide3 .flex .box2 .text {
  font-size: 14px;
  color: #707070;
}

@media screen and (max-width: 767px) {
  .guide3 .flex .box2 .text {
    font-size: 14px;
  }
}

.guide3 .flex .box2 .text p {
  color: #CA2A79;
  margin-top: 20px;
}

.guide4 {
  background: #F9F2E9;
}

.guide4 .section-title {
  text-align: center;
}

.guide4 .en-section {
  text-align: center;
}

.guide4 .box {
  position: relative;
  background: #fff;
  border-radius: 60px;
  padding: 80px 40px;
}

.guide4 .box .img1 {
  width: 150px;
  position: absolute;
  bottom: -50px;
  left: -50px;
}

@media screen and (max-width: 767px) {
  .guide4 .box .img1 {
    width: 50px;
    bottom: -10px;
    left: -10px;
  }
}

.guide4 .box .img2 {
  width: 200px;
  position: absolute;
  top: -10px;
  right: -50px;
}

@media screen and (max-width: 767px) {
  .guide4 .box .img2 {
    width: 70px;
    top: -20px;
    right: -10px;
  }
}

@media screen and (max-width: 767px) {
  .guide4 .box {
    padding: 30px 20px;
    border-radius: 20px;
  }
}

.guide4 .box .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 650px;
  margin: 0 auto 40px;
}

@media screen and (max-width: 767px) {
  .guide4 .box .row {
    margin-bottom: 20px;
  }
}

.guide4 .box .row .icon {
  width: 30px;
  min-width: 30px;
}

@media screen and (max-width: 767px) {
  .guide4 .box .row .icon {
    width: 20px;
    min-width: 20px;
  }
}

.guide4 .box .row .text {
  width: calc(100% - 50px);
}

@media screen and (max-width: 767px) {
  .guide4 .box .row .text {
    width: calc(100% - 30px);
  }
}

.guide5 .section-title {
  text-align: center;
}

.guide5 .en-section {
  text-align: center;
}

.guide5 .text {
  color: #707070;
  font-size: 20px;
  max-width: 600px;
  margin: 0 auto 20px;
  font-weight: 600;
}

@media screen and (max-width: 767px) {
  .guide5 .text {
    font-size: 16px;
  }
}

.guide5 .date {
  font-size: 20px;
  font-weight: bold;
  text-align: right;
}

@media screen and (max-width: 767px) {
  .guide5 .date {
    font-size: 16px;
  }
}

.guide5 .box {
  padding: 50px 40px;
  max-width: 900px;
  margin: 0 auto;
  background: #F7F7F7;
  border: 1px solid #707070;
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 767px) {
  .guide5 .box {
    padding: 30px 20px;
  }
}

.guide5 .box .wrap {
  position: relative;
  z-index: 3;
}

.guide5 .box::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  border: 1px solid #707070;
  -webkit-transform: rotate(1deg);
          transform: rotate(1deg);
  z-index: 2;
}

.concept-wrap {
  position: relative;
  z-index: 2;
}

.concept {
  position: relative;
}

.concept .flower1 {
  width: 10%;
  position: absolute;
  top: 20%;
  left: -4%;
}

.concept .flower2 {
  position: absolute;
  width: 15%;
  top: 40%;
  right: -7%;
}

.concept .flower3 {
  position: absolute;
  width: 15%;
  top: 70%;
  right: -4%;
}

.concept .section-title {
  text-align: center;
}

.concept .box {
  border: 1px solid #EAEAF6;
  border-radius: 60px;
  margin-bottom: 80px;
  -webkit-box-shadow: 1px 1px 24px #EAEAF6;
          box-shadow: 1px 1px 24px #EAEAF6;
  padding: 80px 20px;
  text-align: center;
  color: #707070;
  line-height: 2;
  background: rgba(255, 255, 255, 0.7);
}

@media screen and (max-width: 767px) {
  .concept .box {
    border-radius: 20px;
    margin-bottom: 30px;
    padding: 30px 20px;
    text-align: left;
  }
}

.concept .concept-card {
  margin-bottom: 40px;
  max-width: 850px;
}

@media screen and (max-width: 767px) {
  .concept .concept-card {
    width: 100%;
    margin-bottom: 20px;
  }
}

.concept .concept-card:nth-child(2n) {
  margin-left: auto;
}

@media screen and (max-width: 767px) {
  .concept .flower2 {
    position: absolute;
    top: 50%;
    width: 27%;
    right: -10%;
  }
  .concept .flower3 {
    top: 70%;
    width: 27%;
    right: -10%;
  }
}

.concept2 {
  position: relative;
}

.concept2 .section-title {
  text-align: center;
}

@media screen and (max-width: 767px) {
  .event .section-title {
    text-align: center;
  }
  .event .en-section {
    text-align: center;
  }
  .section-title {
    text-align: center;
  }
}

.pageBute {
  margin-top: 60px;
  text-align: center;
}

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

.pageBute a {
  font-size: 16px;
  font-weight: bold;
  width: 30px;
  height: 30px;
  display: inline-block;
  margin: 0 5px;
  color: #202532;
  -webkit-transition: .3s;
  transition: .3s;
}

.pageBute a:hover {
  opacity: .6;
}

.pageBute span {
  font-size: 16px;
  color: #fff;
  font-weight: bold;
  background: #443FAD;
  border-radius: 50%;
  width: 30px;
  margin: 0 5px;
  display: inline-block;
  height: 30px;
}

.single-wrap {
  max-width: 800px;
  margin: 0 auto;
}

.single-wrap h1 {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .single-wrap h1 {
    margin-bottom: 20px;
    font-size: 20px;
  }
}

.single-wrap .img {
  margin-bottom: 20px;
}

.single-wrap .row {
  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;
  margin-bottom: 15px;
}

.single-wrap .row .category {
  font-size: 14px;
  text-align: center;
  padding: 5px 15px;
  border-radius: 15px;
  background: #B9CB59;
  color: #fff;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .single-wrap .row .category {
    display: inline-block;
    margin-bottom: 5px;
  }
}

.single-wrap .row .time {
  font-size: 13px;
  font-weight: bold;
  color: #202532;
}

.single-wrap h2 {
  font-size: 20px;
  line-height: 1.4;
  border-bottom: 3px solid #443FAD;
  font-weight: bold;
  padding-bottom: 5px;
  margin-bottom: 20px;
  margin-top: 30px;
}

.single-wrap h3 {
  font-size: 18px;
  line-height: 1.4;
  font-weight: bold;
  border-bottom: 1.5px solid #CA2A79;
  padding-bottom: 5px;
  margin-bottom: 20px;
  margin-top: 30px;
}

.single-wrap h4,
.single-wrap h5,
.single-wrap h6 {
  font-size: 16px;
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 15px;
}

.single-wrap .btn {
  text-align: center;
  margin-top: 60px;
}

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

@media screen and (max-width: 767px) {
  .concept-card .textarea {
    min-height: 170px;
  }
}

@media screen and (max-width: 360px) {
  .concept-card .textarea {
    min-height: 200px;
  }
}

body {
  -webkit-animation-name: fuwa;
          animation-name: fuwa;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
}

@-webkit-keyframes fuwa {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fuwa {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.message {
  position: relative;
}

.message .flower1 {
  width: 10%;
  position: absolute;
  top: 20%;
  left: -4%;
}

.message .flower2 {
  position: absolute;
  width: 15%;
  top: 40%;
  right: -7%;
}

.message .flower3 {
  position: absolute;
  width: 15%;
  top: 70%;
  right: -4%;
}

.message .section-title {
  text-align: center;
}

.message .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;
  margin-bottom: 80px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.message .flex:nth-child(2n) {
  -webkit-box-orient: initial;
  -webkit-box-direction: initial;
      -ms-flex-direction: initial;
          flex-direction: initial;
}

@media screen and (max-width: 767px) {
  .message .flex {
    margin-bottom: 50px;
    display: block;
  }
}

.message .flex .img {
  width: 46%;
}

@media screen and (max-width: 767px) {
  .message .flex .img {
    width: 70%;
    margin: 0 auto 10px;
  }
}

.message .flex .contents {
  width: 46%;
}

@media screen and (max-width: 767px) {
  .message .flex .contents {
    width: 100%;
  }
}

.message .flex .contents .title {
  font-size: 18px;
  font-weight: bold;
  color: #443FAD;
  margin-bottom: 30px;
  line-height: 1.3;
  position: relative;
  padding-bottom: 10px;
}

.message .flex .contents .title::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 2px;
  background: #443FAD;
  content: "";
}

@media screen and (max-width: 767px) {
  .message .flex .contents .title {
    font-size: 16px;
  }
}

.message .flex .contents .text {
  font-size: 16px;
  line-height: 2;
}

@media screen and (max-width: 767px) {
  .message .flex .contents .text {
    font-size: 14px;
  }
}

.message .btn {
  margin-top: 50px;
  text-align: center;
}

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

.project-top 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;
}

.project-top ul li {
  -webkit-box-shadow: 1px 1px 24px #EAEAF6;
          box-shadow: 1px 1px 24px #EAEAF6;
  -webkit-transition: .3s;
  transition: .3s;
  padding: 30px;
  border-radius: 43px;
}

.project-top ul li .contents {
  padding: 0 !important;
  margin-bottom: 10px;
}

@media screen and (min-width: 768px) {
  .project-top ul li {
    width: calc(33.3333% - 40px * 2/3);
    margin-right: 40px;
  }
  .project-top ul li:nth-child(3n) {
    margin-right: 0;
  }
  .project-top ul li:nth-child(n + 4) {
    margin-top: 60px;
  }
}

@media screen and (max-width: 767px) {
  .project-top ul li {
    width: 100%;
    margin-bottom: 20px;
  }
  .project-top ul li:last-child {
    margin-bottom: 0;
  }
}

.project-top ul li .img {
  position: relative;
  -webkit-transition: .3s;
  transition: .3s;
  overflow: hidden;
  margin-bottom: 10px;
}

.project-top ul li .img .wrap {
  position: relative;
  padding-top: 65%;
  overflow: hidden;
}

.project-top ul li .img .wrap img {
  position: absolute;
  -webkit-transition: .3s;
  transition: .3s;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.project-top ul li .row {
  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;
  margin-bottom: 15px;
}

.project-top ul li .row .category {
  font-size: 11.5px;
  text-align: center;
  padding: 5px 15px;
  border-radius: 15px;
  background: #B9CB59;
  color: #fff;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .project-top ul li .row .category {
    display: inline-block;
    margin-bottom: 5px;
  }
}

.project-top ul li .row .time {
  font-size: 11px;
  font-weight: bold;
  color: #202532;
}

.project-top ul li .title {
  margin-bottom: 10px;
  color: #202532;
  font-size: 13px;
  font-weight: bold;
  line-height: 1.3;
}

.project-top ul li .textarea {
  font-size: 12px;
  color: #707070;
}

.project-top ul li a {
  background: #fff;
  display: block;
  padding: 30px;
  border-radius: 43px;
  border: 1px solid #EAEAF6;
}

.project-top ul li a:hover {
  -webkit-box-shadow: 2px 3px 14px #d4d4d5;
          box-shadow: 2px 3px 14px #d4d4d5;
}

.project-top ul li a:hover .img {
  overflow: hidden;
  -webkit-transition: .3s;
  transition: .3s;
}

.project-top ul li a:hover .img img {
  -webkit-transition: .3s;
  transition: .3s;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

@media screen and (max-width: 767px) {
  .project-top ul li a {
    padding: 20px 15px;
    border-radius: 20px;
  }
}

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

.event .section-btn {
  text-align: center;
}

.wp-block-buttons {
  margin-top: 60px;
}

@media screen and (max-width: 767px) {
  .wp-block-buttons {
    margin-top: 30px;
  }
}

.wp-block-buttons a {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  background: #443FAD;
  display: inline-block;
  min-width: 200px;
  text-align: center;
  padding: 18px 40px;
  border-radius: 40px;
  line-height: 1;
  -webkit-transition: .3s;
  transition: .3s;
  min-width: 250px;
}

.wp-block-buttons a:hover {
  opacity: .6;
}

.about1 .section-title {
  text-align: center;
}

.about1 .text {
  font-size: 16px;
  max-width: 800px;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .about1 .text {
    font-size: 14px;
  }
}

.about1 .flower1 {
  width: 10%;
  position: absolute;
  top: 20%;
  left: -4%;
}

.about1 .flower2 {
  position: absolute;
  width: 15%;
  top: 40%;
  right: -7%;
}

.about1 .flower3 {
  position: absolute;
  width: 15%;
  top: 70%;
  right: -4%;
}

.about2 .section-title {
  text-align: center;
}

.about2 .main-img {
  max-width: 700px;
  margin: 0 auto 60px;
}

@media screen and (max-width: 767px) {
  .about2 .main-img {
    margin-bottom: 40px;
  }
}

.about2 .text {
  max-width: 800px;
  margin: 0 auto;
  font-size: 16px;
}

@media screen and (max-width: 767px) {
  .about2 .text {
    font-size: 14px;
  }
}

.about2 .box {
  max-width: 800px;
  margin: 60px auto;
  border-radius: 30px;
  background: #F9F2E9;
  padding: 60px 40px;
}

@media screen and (max-width: 767px) {
  .about2 .box {
    padding: 30px 20px;
    margin: 30px auto;
    border-radius: 20px;
  }
}

.about2 .box ul li {
  margin-bottom: 20px;
  position: relative;
  padding-left: 30px;
}

.about2 .box ul li::before {
  position: absolute;
  content: "";
  top: 3px;
  left: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #F7A439;
}

@media screen and (max-width: 767px) {
  .about2 .box ul li::before {
    top: 1.5px;
  }
}

@media screen and (max-width: 767px) {
  .about2 .box ul li {
    margin-bottom: 10px;
  }
}

.about2 .box ul li:last-child {
  margin-bottom: 0;
}

.about3 {
  background: #EAEAF6;
}

.about3 .box {
  border-radius: 80px;
  background: #fff;
  padding: 60px;
}

@media screen and (max-width: 767px) {
  .about3 .box {
    padding: 30px 20px;
    border-radius: 40px;
  }
}

.about3 .box .section-title {
  text-align: center;
}

.about3 .row {
  margin-bottom: 60px;
}

@media screen and (max-width: 767px) {
  .about3 .row {
    margin-bottom: 40px;
  }
}

.about3 .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 750px;
  margin: 0 auto 0px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.about3 .flex:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  .about3 .flex {
    display: block;
    margin-bottom: 0px;
  }
}

.about3 .flex .img {
  width: 45%;
}

@media screen and (max-width: 767px) {
  .about3 .flex .img {
    width: 70%;
    margin: 0 auto 10px;
  }
}

.about3 .flex .contents {
  width: 50%;
  font-size: 16px;
}

@media screen and (max-width: 767px) {
  .about3 .flex .contents {
    font-size: 14px;
  }
}

@media screen and (max-width: 767px) {
  .about3 .flex .contents {
    width: 100%;
  }
}

.section-title.red2 {
  color: #CA2A79;
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .section-title.red2 {
    margin-bottom: 25px;
  }
}

.about4 {
  background: #FEFFFA;
}

.about4 .section-title {
  text-align: center;
}

.about4 .main-img {
  max-width: 700px;
  margin: 0 auto;
  margin-bottom: 80px;
}

@media screen and (max-width: 767px) {
  .about4 .main-img {
    margin-bottom: 40px;
  }
}

.about4 .last-text {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .about4 .last-text {
    font-size: 16px;
    text-align: left;
  }
}

@media screen and (min-width: 768px) {
  .mv .right {
    position: absolute;
    top: -55%;
    right: -30%;
  }
}

.mv .right .wrap {
  width: 40vw;
  height: 40vw;
  border-radius: 50%;
}

.mv .right .wrap2 {
  padding-top: 60%;
  position: relative;
}

.mv .right video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}

.mv .right iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}

.topMessage .flex .img img, .topMessage .flex .img img {
  border-radius: 50%;
}

@media screen and (max-width: 767px) {
  .mv .flower {
    top: 60%;
    left: initial;
    right: -10%;
  }
}

.project .section-title {
  text-align: center;
}

.operation .section-title {
  text-align: center;
}

.operation .ope-flex {
  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;
}

@media screen and (min-width: 768px) {
  .operation .ope-flex .u-mbmd {
    width: calc(16.6666% - 30px * 5/6);
    margin-right: 30px;
  }
  .operation .ope-flex .u-mbmd:nth-child(6n) {
    margin-right: 0;
  }
  .operation .ope-flex .u-mbmd:nth-child(n + 7) {
    margin-top: 60px;
  }
  .operation .ope-flex .u-mbmd:last-child {
    margin-right: 0;
  }
}

@media screen and (max-width: 767px) {
  .operation .ope-flex .u-mbmd {
    width: calc(50% - 20px * 1/2);
    margin-right: 20px;
  }
  .operation .ope-flex .u-mbmd:nth-child(2n) {
    margin-right: 0;
  }
  .operation .ope-flex .u-mbmd:nth-child(n + 3) {
    margin-top: 40px;
  }
  .operation .ope-flex .u-mbmd:last-child {
    margin-right: 0;
  }
}

.operation .ope-flex .c-img {
  border-radius: 50%;
  margin-bottom: 10px;
}

.operation .ope-flex .c-img img {
  border-radius: 50%;
}

.operation .ope-flex .pera1-editable {
  text-align: center;
}

.operation .ope-flex .c-btn {
  text-align: center;
}

.operation .ope-flex a {
  padding: 0.5em 1.8em;
  color: #fff;
  background: #28c3d4;
  border: 1px solid #28c3d4;
  display: inline-block;
  margin-top: 5px;
  -webkit-transition: .3s;
  transition: .3s;
}

.operation .ope-flex a:hover {
  color: #28c3d4;
  background: #fff;
}

.operation .ope-flex .pera1-editable {
  font-size: 14px;
  margin-bottom: 5px;
}

@media screen and (max-width: 800px) {
  .operation .ope-flex .pera1-editable {
    font-size: 9px;
  }
}

@media screen and (max-width: 767px) {
  .operation .ope-flex .pera1-editable {
    font-size: 14px;
  }
}

.about4 .main-img {
  max-width: initial;
}

.message .flex:last-child {
  margin-bottom: 0;
}

.about2 .main-img {
  max-width: 800px;
}

@media screen and (max-width: 767px) {
  .mv .flower {
    display: none;
  }
  .topMessage .flower2 {
    left: -6%;
    top: 12%;
    width: 16%;
  }
  .topMessage .flower3 {
    width: 16%;
    right: -6%;
  }
  .concept .flower2 {
    width: 16%;
    right: -6%;
  }
}

.about2 .main-img {
  max-width: 1000px;
}

.radio-row .wpcf7-list-item-label {
  position: relative;
  padding-left: 25px;
  margin-right: 15px;
  margin-bottom: 5px;
  display: inline-block;
}

.radio-row .wpcf7-list-item-label::before {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border: 1px solid #202532;
  border-radius: 50%;
  border: 1px solid #202532;
}

.radio-row .wpcf7-list-item-label::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 15px;
  border-radius: 50%;
  top: 50%;
  left: 3.5px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: #443FAD;
  opacity: 0;
}

.radio-row input:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}

.radio-row input {
  position: absolute;
  top: 0;
  left: -1000%;
  opacity: 0;
}

@media screen and (max-width: 767px) {
  .footer .flex .header-nav ul li span {
    min-width: 10px;
  }
}

.topBusiness .img .img-wrap {
  padding-top: 48%;
}

.support .box {
  border: 1px solid #EAEAF6;
  border-radius: 60px;
  -webkit-box-shadow: 1px 1px 24px #EAEAF6;
          box-shadow: 1px 1px 24px #EAEAF6;
  padding: 80px 20px;
  max-width: 800px;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .support .box {
    border-radius: 20px;
    margin-bottom: 30px;
    padding: 30px 20px;
  }
}

.support .box .flex {
  font-size: 16px;
}

.support .box .flex .row {
  margin-bottom: 30px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .support .box .flex .row {
    margin-bottom: 20px;
  }
}

.support .box .flex .row:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  .support .box .flex {
    font-size: 14px;
  }
}

.support .box .flex .name {
  font-size: 18px;
}

@media screen and (max-width: 767px) {
  .support .box .flex .name {
    font-size: 16px;
  }
}

.support .box .flex a {
  color: #443FAD;
  -webkit-transition: .3s;
  transition: .3s;
}

.support .box .flex a:hover {
  opacity: .6;
}

.topMessage .flex .img img, .topMessage .flex .img img {
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
