@charset "UTF-8";
.animation {
  visibility: hidden;
}

.fadeInDown {
  -webkit-animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  -webkit-animation-name: fadeInDown;
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-name: fadeInDown;
  visibility: visible !important;
}

@-webkit-keyframes fadeInDown {
  0% {
    -webkit-transform: translateY(-20px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeInDown {
  0% {
    -webkit-transform: translateY(-20px);
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    -webkit-transform: translateY(0);
    opacity: 1;
    transform: translateY(0);
  }
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body,
div,
span,
p,
blockquote,
a,
ul,
ol,
li,
dl,
dt,
dd,
header,
footer,
aside,
section,
nav,
strong,
h1,
h2,
h3,
h4,
h5,
table,
tr,
th,
td,
caption {
  color: inherit;
  font-family: "Noto Sans JP", sans-serif;
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
  padding: 0;
}

body {
  color: #000;
  font-size: 16px;
  font-weight: 500;
}

ul,
ol {
  list-style-type: none;
}

table {
  border-collapse: collapse;
}

hr {
  background: #dfdfdf;
  border: none;
  display: block;
  height: 1px;
  width: 100%;
}

img {
  border: 0;
  max-width: 100%;
  vertical-align: middle;
}

br.pc {
  display: none;
}

@media only screen and (max-width: 960px) {
  br.tb {
    display: none;
  }
}

@media only screen and (max-width: 560px) {
  br.pc {
    display: inline-block;
  }

  br.sp {
    display: none;
  }
}

.container {
  margin-left: 40px;
  margin-right: 40px;
  width: calc(100% - 80px);
}

@media only screen and (max-width: 560px) {
  .container {
    margin-left: 20px;
    margin-right: 20px;
    width: calc(100% - 40px);
  }
}

.button {
  -ms-flex-align: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  -webkit-box-pack: center;
  align-items: center;
  background-color: #f4194e;
  color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 96px;
  justify-content: center;
  position: relative;
  width: 416px;
  border-radius: 999px;
  text-decoration: none;

  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  letter-spacing: 2px;
}

.button:hover {
  animation: animScale 0.4s ease-out;
  transform-origin: 50% 50%;
  -webkit-animation: animScale 0.4s ease-out;
  -webkit-transform-origin: 50% 50%;
  -moz-animation: animScale 0.4s ease-out;
  -moz-transform-origin: 50% 50%;
}

.button::before,
.button::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 32px;
  margin: auto;
  content: "";
  vertical-align: middle;

  width: 12px;
  height: 12px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

@media only screen and (max-width: 560px) {
  .button {
    height: 64px;
    width: 100%;
    font-size: 1rem;
  }

  .button::before,
  .button::after {
    top: 0;
    bottom: 0;
    right: 24px;

    width: 8px;
    height: 8px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}

.btnWrapper {
  text-decoration: none;
}

.arrow {
  position: relative;
  margin-left: 88px;
  text-decoration: none;
  font-family: "Roboto", sans-serif;
}

.arrow::before,
.arrow::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -88px;
  margin: auto;
  content: "";
  vertical-align: middle;
}

.arrow::before {
  width: 72px;
  height: 72px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background: #f4194e;
}
.arrow::after {
  left: -60px;
  width: 12px;
  height: 12px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.contactBtn {
  max-width: 1024px;
  height: 208px;
  width: 100%;
  margin: 0 auto 200px;
  padding-right: 72px;
  padding-left: 72px;

  border-radius: 20px;
  background-color: #346cbc;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contactBtn h2 {
  display: flex;
  color: #fff;
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1.1;
  font-family: "Roboto", sans-serif;
}

.contactBtn-arrow {
  display: inline-block;
  position: relative;
  display: inline-block;
  margin-right: 72px;
}

.contactBtn-arrow::before,
.contactBtn-arrow::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
}

.contactBtn-arrow::before {
  width: 72px;
  height: 72px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background: #fff;
}

.contactBtn-arrow::after {
  left: 24px;
  width: 12px;
  height: 12px;
  border-top: 3px solid #222427;
  border-right: 3px solid #222427;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

@media only screen and (max-width: 960px) {
  .btnWrapper {
    display: inline-block;
    margin-left: 40px;
    margin-right: 40px;
    width: calc(100% - 80px);
  }
}

@media only screen and (max-width: 560px) {
  .contactBtn {
    margin-bottom: 120px;
    padding-right: 20px;
    padding-left: 20px;
    height: 120px;
  }

  .contactBtn a {
    margin-left: -24px;
  }

  .contactBtn h2 {
    font-size: 1.5rem;
    margin-bottom: 0px;
  }

  .contactBtn p {
    font-size: 1.25rem;
    margin-right: 20px;
    margin-left: 20px;
    width: calc(100% - 40px);
  }

  .contactBtn-arrow {
    margin-right: 56px;
  }

  .btnWrapper {
    margin-left: 20px;
    margin-right: 20px;
    width: calc(100% - 40px);
  }

  .contactBtn-arrow::before {
    width: 56px;
    height: 56px;
  }

  .contactBtn-arrow::after {
    left: 22px;
    width: 8px;
    height: 8px;
    border-top: 2px solid #222427;
    border-right: 2px solid #222427;
  }
}

h4 {
  font-size: 1.5rem;
}

@media only screen and (max-width: 560px) {
  h4 {
    font-size: 1.3rem;
  }
}

h5 {
  font-size: 1.3rem;
}

p {
  font-size: 1rem;
}

@media only screen and (max-width: 560px) {
  p {
    font-size: 0.8rem;
  }
}

a {
  font-size: 1rem;
}

li {
  font-size: 1rem;
}

/* footer */

footer {
  background-color: #ebebeb;
}

.footer {
  padding-top: 40px;
  padding-bottom: 40px;
  display: flex;
  flex-direction: column;
}

.footer-contents {
  display: flex;
  margin-bottom: 32px;
}

.footer-contents-menu {
  margin-right: 40px;
  font-size: 1rem;
  font-weight: 500;
}

.footer-contents-menu a {
  text-decoration: none;
}

.footer-corporatemark {
  font-size: 0.9rem;
}

.footer-contents-SNS-title {
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 8px;
  font-family: "Roboto", sans-serif;
}

.footer-contents-SNS-description {
  font-size: 1rem;
  font-weight: 400;
}

.footer-contents-SNS-description-en {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
}

.footer-contents-SNS-SNSicon {
  display: flex;
}

.footer-contents-SNS-SNSicon .fab {
  font-size: 24px;
}

.footer-contents-SNS-SNSicon .fa-facebook-f {
  margin-right: 32px;
}

@media only screen and (max-width: 560px) {
  .footer-contents {
    flex-wrap: wrap;
  }

  .footer-contents-menu {
    width: 100%;
    margin-bottom: 24px;
  }

  .footer-contents-right {
    display: none;
  }

  .footer-contents-backToTop {
    display: none;
  }

  .footer-contents-SNS-title {
    font-size: 1rem;
  }

  .footer-contents-SNS-description {
    font-size: 0.8rem;
  }

  .footer {
    padding-top: 40px;
  }

  .footer-corporatemark {
    text-align: center;
  }

  .footer-contents-SNS-SNSicon .fab {
    font-size: 20px;
  }
}

/* header */

header {
  width: 100%;
  height: 96px;
}

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

header .header-pc {
  display: flex;
  height: 96px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

@media only screen and (max-width: 960px) {
  header {
    height: 64px;
  }

  header .header-pc {
    height: 64px;
  }
}

header .header-pc-logo {
  line-height: 96px;
}

@media only screen and (max-width: 960px) {
  header .header-pc-logo {
    line-height: 64px;
  }
}

header .header-pc-logo-img {
  height: auto;
  width: 167px;
}

@media only screen and (max-width: 960px) {
  header .header-pc-logo-img {
    width: 104px;
  }
}

header .header-pc-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  margin-right: 176px;
}

@media only screen and (max-width: 960px) {
  header .header-pc-menu {
    display: none;
  }
}

header .header-pc-menu li {
  margin-right: 32px;
}

@media only screen and (max-width: 960px) {
  header .header-pc-menu li {
    margin-right: 16px;
  }
}

header .header-pc-menu li .current a {
  color: #222427;
}

header .header-pc-menu li .current a::after {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}

.top_page_topImg header .header-pc-menu li a {
  color: #222427;
}

header .header-pc-menu li a {
  color: #222427;
  font-size: 1rem;
  font-weight: bold;
  position: relative;
  text-decoration: none;
  letter-spacing: 2px;
}

@media only screen and (max-width: 960px) {
  header .header-pc-menu li a {
    font-size: 0.9rem;
  }
}

header .header-pc-menu li a::after {
  -webkit-transform: scale(0, 1);
  -webkit-transform-origin: center top;
  -webkit-transition: all 0.3s;
  background: #f4194e;
  bottom: -5px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform: scale(0, 1);
  transform-origin: center top;
  transition: all 0.3s;
  width: 100%;
}

header .header-pc-menu li a:hover {
  color: #f4194e;
}

header .play_button a:hover {
  color: #fff;
}

header .header-pc-menu li a:hover::after {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}

header .play_button a:hover::after {
  transform: scale(0, 0);
}

header .header-pc-menu li:last-of-type {
  margin-right: 0px;
}

header .play_button {
  background-color: #346cbc;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 64px;
  padding: 16px 24px;
  border-radius: 999px;
  position: fixed;
  right: 40px;
  z-index: 999;
  cursor: pointer;
}

header .play_button:hover {
  animation: animScale 0.4s ease-out;
  transform-origin: 50% 50%;
  -webkit-animation: animScale 0.4s ease-out;
  -webkit-transform-origin: 50% 50%;
  -moz-animation: animScale 0.4s ease-out;
  -moz-transform-origin: 50% 50%;
}

header .play_button a {
  color: #fff;
  text-decoration: none;
}

header .play_button img {
  margin-right: 16px;
}

header .header-1-sp {
  display: none;
}

.play_button-sp {
  display: none;
}

@media only screen and (max-width: 960px) {
  header .play_button {
    right: 20px;
    bottom: 20px;
  }

  .play_button-sp {
    background-color: #346cbc;
    display: none;
    justify-content: center;
    align-items: center;
    height: 48px;
    width: 48px;
    border-radius: 999px;
    position: fixed;
    right: 104px;
    z-index: 999;
    cursor: pointer;
  }

  .play_button-sp img {
    object-fit: cover;
    width: 24px;
  }

  header .header-1-sp {
    display: inline-block;
    position: absolute;
    right: 56px;
    top: 12px;
  }
  header .header-1-sp #nav-drawer {
    position: relative;
  }
  header .header-1-sp .nav-unshown {
    display: none;
  }
  header .header-1-sp #nav-open {
    display: inline-block;
    height: 12px;
    vertical-align: middle;
    width: 20px;
  }
  header .header-1-sp #nav-open span,
  header .header-1-sp #nav-open span:before,
  header .header-1-sp #nav-open span:after {
    background: #333;
    /*長さ*/
    border-radius: 3px;
    content: "";
    cursor: pointer;
    display: block;
    height: 2px;
    position: absolute;
    /*線の太さ*/
    width: 32px;
  }
  header .header-1-sp #nav-open span:before {
    bottom: -12px;
  }
  header .header-1-sp #nav-open span:after {
    bottom: -24px;
  }
  header .header-1-sp #nav-close {
    -webkit-transition: 0.3s ease-in-out;
    background: #fff;
    display: none;
    height: 100%;
    /*全体に広がるように*/
    left: 0;
    opacity: 0;
    /*はじめは隠しておく*/
    position: fixed;
    top: 0;
    transition: 0.3s ease-in-out;
    width: 100%;
    z-index: 99;
  }
  header .header-1-sp #nav-content {
    /*滑らかに表示*/
    -webkit-transform: translateX(-105%);
    /*背景色*/
    -webkit-transition: 0.3s ease-in-out;
    background: #fff;
    /*最大幅（調整してください）*/
    height: 100%;
    left: 0;
    /*右側に隙間を作る（閉じるカバーを表示）*/
    max-width: 225px;
    overflow: auto;
    position: fixed;
    top: 0px;
    transform: translateX(-105%);
    transition: 0.3s ease-in-out;
    /*最前面に*/
    width: 80%;
    z-index: 9999;
    /*左に隠しておく*/
  }
  header .header-1-sp #nav-content .drawer-menu {
    padding-top: 20px;
    text-align: left;
  }
  header .header-1-sp #nav-content .drawer-menu .drawer-menu-list {
    margin-bottom: 20px;
    margin-left: 20px;
  }
  header .header-1-sp #nav-content .drawer-menu .drawer-menu-list a {
    text-decoration: none;
    font-family: "Roboto", sans-serif;
  }
  header .header-1-sp #nav-content .drawer-menu .drawer-menu-list a:hover {
    border-bottom: none;
  }
  header .header-1-sp #nav-content .drawer-menu .drawer-menu-list #form2 {
    position: relative;
    width: 150px;
  }

  header .header-1-sp #nav-content .drawer-menu .drawer-menu-list #form2 {
    display: #000000;
  }

  header .header-1-sp #nav-content .drawer-menu .drawer-menu-list #sbox2 {
    border-bottom: 1px solid #fff;
    border-left: none;
    border-radius: 0px;
    border-right: none;
    border-top: none;
    height: auto;
    padding-bottom: 5px;
    width: 100%;
  }
  header .header-1-sp #nav-content .drawer-menu .drawer-menu-list #sbox2:focus {
    outline: 0;
  }
  header .header-1-sp #nav-content .drawer-menu .drawer-menu-list #sbtn2 {
    background: none;
    border: none;
    font-size: 13px;
    height: auto;
    position: absolute;
    right: 0px;
    /*アイコン左右の位置調整*/
    top: 0;
    /*アイコンサイズ*/
  }
  header .header-1-sp #nav-input:checked ~ #nav-close {
    display: block;
    /*カバーを表示*/
    opacity: 0.5;
  }
  header .header-1-sp #nav-input:checked ~ #nav-content {
    /*中身を表示（右へスライド）*/
    -webkit-box-shadow: 6px 0 25px rgba(0, 0, 0, 0.15);
    -webkit-transform: translateX(0%);
    box-shadow: 6px 0 25px rgba(0, 0, 0, 0.15);
    transform: translateX(0%);
  }
}

@media only screen and (max-width: 560px) {
  header {
    height: 64px;
  }

  .play_button-sp {
    margin-right: 56px;
  }

  .play_button-sp {
    height: 48px;
    width: 48px;
    right: 8px;
  }

  header .header-1-sp {
    right: 32px;
  }
}

/* heroImage-container */

.heroImage-container {
  text-align: center;
  position: relative;
  /* height: calc(100vh - 96px); */
  margin-bottom: 200px;
}

.heroImage-container-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);

  max-width: 840px;
  width: 100%;
}

.heroImage-container-clip {
  max-width: 1024px;
  width: 100%;
  height: auto;
}

.heroImage-container-inner .heroImage-container-mainMessage {
  color: #fff;
  font-size: 5rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 4px;
  margin-bottom: 40px;
  text-align: left;
}

@media only screen and (max-width: 960px) {
  .heroImage-container-inner .heroImage-container-mainMessage {
    font-size: 3rem;
  }

  .heroImage-container-inner {
    margin-left: 40px;
    width: calc(100% - 40px);
  }
}

@media only screen and (max-width: 560px) {
  .heroImage-container {
    height: calc(100vh - 64px);
    margin-bottom: 80px;
  }

  .heroImage-container-clip {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
  }

  .heroImage-container-inner {
    margin-left: 0px;
    width: calc(100% - 40px);
    padding-right: 20px;
    padding-left: 20px;
    padding-top: 40px;
  }

  .heroImage-container-inner .heroImage-container-mainMessage {
    font-size: 1.75rem;
    letter-spacing: 2px;
    margin-bottom: 24px;
    line-height: 1.3;
  }
}

/* topFeatured */

.topFeatured {
  margin: 0 auto 200px;
  position: relative;
}

.topFeatured .topFeatured-title {
  font-size: 1.5rem;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  color: #f4194e;

  display: block;
  margin: 0 auto 64px;
  max-width: 1024px;
  width: 100%;
}

.slick-track {
  display: flex !important;
  align-items: baseline !important;
}

.slick-slide {
  margin-right: 24px;
  width: 408px !important;
}

.slick-slide:nth-child(1) {
  margin-left: 24px;
}

.topFeatured-thumnails-thumnail a {
  text-decoration: none;
}

.topFeatured-thumnails-thumnail img {
  object-fit: cover;
  border-radius: 20px;
  width: 100%;
  height: 100%;
  margin-bottom: 16px;
}

.topFeatured-thumnails-thumnail-title {
  font-size: 1.25rem;
  font-weight: 700;
}

.slick-dotted.slick-slider {
  margin-bottom: 0px !important;
}

@media only screen and (max-width: 960px) {
  .topFeatured .topFeatured-title {
    margin-right: 40px;
    margin-left: 40px;
    width: calc(100% - 80px);
  }
}

@media only screen and (max-width: 560px) {
  .topFeatured {
    margin-left: 20px;
    margin-right: 20px;
    margin-bottom: 152px;
    width: calc(100% - 40px);
  }

  .topFeatured .topFeatured-title {
    margin-right: 0px;
    margin-left: 0px;
    width: 100%;
    margin-bottom: 24px;
  }

  .slick-slide {
    margin-right: 0px;
    padding-right: 4px;
    padding-left: 4px;
    width: calc(100% - 8px) !important;
  }

  .slick-slide:nth-child(1) {
    width: 100% !important;
    margin-left: 0px;
  }

  .topFeatured-thumnails-thumnail img {
    height: auto;
    width: 100%;
  }
}

/* topAboutUs */

.topAboutUs {
  max-width: 1024px;
  width: 100%;
  margin: 0 auto 200px;
}

.topAboutUs-title {
  font-size: 1.5rem;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  color: #f4194e;
  margin-bottom: 24px;
}

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

.topAboutUs-box-left {
  width: 45%;
}

.topAboutUs-box-left img {
  -o-object-fit: cover;
  object-fit: cover;
  height: 720px;
}

.topAboutUs-box-left-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.topAboutUs-box-left-description {
  font-size: 1.125rem;
  font-weight: 400;
  margin-bottom: 48px;
  line-height: 2;
}

.arrow {
  position: relative;
  margin-left: 88px;
  text-decoration: none;
  font-family: "Roboto", sans-serif;
}

.arrow::before,
.arrow::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -88px;
  margin: auto;
  content: "";
  vertical-align: middle;
}

.arrow::before {
  width: 72px;
  height: 72px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background: #f4194e;
}
.arrow::after {
  left: -62px;
  width: 12px;
  height: 12px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.topAboutUs-box-right {
  max-width: 50%;

  position: relative;
  width: 100%;
  padding-top: 40%;
}

.topAboutUs-box-right iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
  border-radius: 20px;
}

@media only screen and (max-width: 960px) {
  .topAboutUs {
    margin-right: 40px;
    margin-left: 40px;
    width: calc(100% - 80px);
  }

  .topAboutUs-box-right iframe {
    height: 50% !important;
  }
}

@media only screen and (max-width: 560px) {
  .topAboutUs {
    margin-right: 20px;
    margin-left: 20px;
    margin-bottom: 120px;
    width: calc(100% - 40px);
  }

  .topAboutUs-box {
    flex-wrap: wrap;
  }

  .topAboutUs-box-left {
    width: 100%;
    margin-bottom: 80px;
  }

  .topAboutUs-box-left-title {
    font-size: 2rem;
  }

  .topAboutUs-box-right {
    max-width: 100%;
    padding-top: 75%;
  }

  .topAboutUs-box-right iframe {
    height: 100% !important;
  }

  .arrow {
    margin-left: 72px;
  }

  .arrow::before,
  .arrow::after {
    left: -72px;
  }

  .arrow::before {
    width: 56px;
    height: 56px;
  }
  .arrow::after {
    left: -50px;
    width: 8px;
    height: 8px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
  }
}

/* topService */

.topService {
  margin-bottom: 200px;
  background-color: #dcebff;
  padding-top: 200px;
  padding-bottom: 200px;
}

.topService-box {
  max-width: 1024px;
  width: auto;
}

.topService-title {
  font-size: 1.5rem;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  color: #f4194e;
  margin-bottom: 24px;
}

.topService-box {
  display: flex;
  justify-content: space-between;
  max-width: 1024px;
  width: auto;
  margin-right: auto;
  margin-left: auto;
}

.topService-box-left {
  width: 45%;
}

.topService-box-left img {
  -o-object-fit: cover;
  object-fit: cover;
  height: 720px;
}

.topService-box-left-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.topService-box-left-description {
  font-size: 1.125rem;
  font-weight: 400;
  margin-bottom: 48px;
  line-height: 2;
}

.topService-box-right {
  max-width: 45%;
}

.topService-box-right img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  border-radius: 20px;
}

@media only screen and (max-width: 960px) {
  .topService {
    padding-right: 40px;
    padding-left: 40px;
  }
}

@media only screen and (max-width: 560px) {
  .topService {
    margin-bottom: 120px;
    padding-right: 20px;
    padding-left: 20px;
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .topService-box {
    flex-wrap: wrap;
  }

  .topService-box-left {
    width: 100%;
    margin-bottom: 80px;
  }

  .topService-box-left-title {
    font-size: 2rem;
  }

  .topService-box-right {
    max-width: 100%;
  }
}

/* topPartners */

.topPartners {
  display: flex;
  flex-direction: column;
  margin: 0 auto 200px;
}

.topPartners-box-title {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 40px;
}

.topPartners-box {
  display: flex;
  flex-direction: column;
}

.topPartners-box-upper {
  margin-bottom: 32px;
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;

  white-space: nowrap;
  overflow-x: hidden;
}

.topPartners-box-lower {
  display: flex;
  justify-content: center;

  white-space: nowrap;
  overflow-x: hidden;
}

.topPartners-box-upper img,
.topPartners-box-lower img {
  object-fit: contain;
  width: 80px;
  margin-right: 56px;
}

.topPartners-box-upper img:last-of-type,
.topPartners-box-lower img:last-of-type {
  margin-right: 0px;
}

@media only screen and (max-width: 960px) {
  .topPartners-box-upper {
    margin-bottom: 16px;
  }

  .topPartners-box-upper img,
  .topPartners-box-lower img {
    width: 64px;
    margin-right: 32px;
  }
}

@media only screen and (max-width: 560px) {
  .topPartners {
    margin: 0 auto 120px;
  }

  .topPartners-box-upper {
    margin-bottom: 8px;
  }

  .topPartners-box-upper img,
  .topPartners-box-lower img {
    width: 40px;
    margin-right: 16px;
  }
}

/* topNews */

.topNews {
  display: flex;
  flex-wrap: wrap;
  max-width: 1024px;
  width: 100%;
  margin: 0 auto 232px;
}

.topNews-title {
  font-size: 1.5rem;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  color: #f4194e;
  margin-bottom: 24px;
  display: block;
  width: 100%;
}

.topNews-box-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 40px;
}

.topNews-box-articles {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
}

.topNews-box-articles::after {
  content: "";
  display: block;
  width: 30%;
  height: 0;
}

.topNews-box-articles-article {
  width: 30%;
  margin-bottom: 56px;
  position: relative;
}

.topNews-box-articles-article-img {
  margin-bottom: 16px;
}

.topNews-box-articles-article-img img {
  height: 200px;
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
  border-radius: 20px;
}

.topNews-box-articles-article-info {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.topNews-box-articles-article-info-date {
  font-size: 0.75rem;
  font-weight: 400;
  color: #bdbdbd;
  margin-right: 8px;
}

.topNews-box-articles-article-info-category {
  font-size: 0.75rem;
  font-weight: 400;
  color: #346cbc;
}

.topNews-box-articles-article-title a {
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 700;
}

.topNews-box-articles-article-title .stretched-link::after {
  background-color: rgba(0, 0, 0, 0);
  bottom: 0;
  content: "";
  left: 0;
  pointer-events: auto;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}

.topNews .arrow {
  margin: 0px 0px 0px auto;
}

@media only screen and (max-width: 960px) {
  .topNews {
    margin-right: 40px;
    margin-left: 40px;
    width: calc(100% - 80px);
  }

  .topNews-box-articles-article-img img {
    height: 160px;
  }
}

@media only screen and (max-width: 560px) {
  .topNews {
    margin-right: 0px;
    margin-left: 0px;
    width: 100%;
  }

  .topNews-box-articles-article {
    width: calc(100% - 40px);
    margin-right: 20px;
    margin-left: 20px;
    margin-bottom: 40px;
  }

  .topNews-box-articles-article:last-of-type {
    margin-bottom: 0;
  }

  .topNews {
    margin: 0 auto 144px;
  }

  .topNews-box-articles {
    margin-bottom: 80px;
  }

  .topNews-title {
    width: calc(100% - 40px);
    margin-right: 20px;
    margin-left: 20px;
  }

  .topNews-box-title {
    font-size: 2rem;
    width: calc(100% - 40px);
    margin-right: 20px;
    margin-left: 20px;
  }

  .topNews-box {
    margin-right: 0px;
    margin-left: 0px;
    width: 100%;
  }

  .topNews-box-subtitle {
    font-size: 1.25rem;
    margin-right: 20px;
    margin-bottom: 24px;
  }

  .topNews .button {
    width: calc(100% - 40px);
    margin-right: 20px;
    margin-left: 20px;
  }

  .topNews-box-articles-article-img img {
    height: 200px;
  }

  .topNews .arrow {
    margin-left: 88px;
  }

  .topNews .arrow::after {
    left: -50px;
  }
}

/* topMember */

.topMember {
  background-image: url("../img/member/member2.jpg");
  background-size: cover;
  background-position: center top;
  padding-top: 80px;
  padding-bottom: 80px;
  margin-bottom: 200px;
}

.topMember-box {
  max-width: 1024px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.topMember-title {
  font-size: 1.5rem;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  color: #f4194e;
  margin-bottom: 24px;
}

.topMember-box-title {
  font-size: 3rem;
  color: #fff;
  font-weight: 700;
  margin-bottom: 40px;
  margin-bottom: 360px;
}

.topMember .arrow {
  color: #fff;
  margin: 0 0 32px auto;
}

@media only screen and (max-width: 960px) {
  .topMember {
    padding-left: 0px;
    padding-right: 0px;
  }

  .topMember-box {
    margin-right: 40px;
    margin-left: 40px;
    width: calc(100% - 80px);
  }

  .topMember-box-subtitle {
    margin-bottom: 360px;
  }
}

@media only screen and (max-width: 560px) {
  .topMember {
    background-image: url("../img/member/member5.jpg");
    background-size: cover;
    padding-top: 56px;
    padding-bottom: 56px;
    margin-bottom: 120px;
    background-position: center top;
  }

  .topMember .button {
    margin: none;
  }

  .topMember-box {
    margin-right: 20px;
    margin-left: 20px;
    width: calc(100% - 40px);
  }

  .topMember-box-title {
    font-size: 2rem;
    margin-bottom: 120px;
  }

  .topMember-box-subtitle {
    font-size: 1.25rem;
    margin-bottom: 240px;
  }
}

/* service */

.service1st {
  margin-top: 200px;
  margin-bottom: 200px;
}

.service1st-box {
  max-width: 1024px;
  width: 100%;
  margin: 0 auto 0;
}

.service1st-title {
  font-size: 1.5rem;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  color: #f4194e;
  margin-bottom: 40px;
}

.service1st-box-title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.service1st-box-subTitle {
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 80px;
  line-height: 2;
}

.service1st-box-img {
  width: auto;
  height: auto;
  margin-left: 15%;
}

.service1st-box-img img {
  border-radius: 40px;
  object-fit: cover;
  width: 100%;
}

.service2nd {
  margin-bottom: 200px;
}

.service2nd-box {
  max-width: 1024px;
  width: 100%;
  margin: 0 auto 0;
}

.service2nd-title {
  font-size: 1.5rem;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  color: #f4194e;
  margin-bottom: 40px;
}

.service2nd-box-title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 80px;
}

.service2nd-box-img {
  width: auto;
  height: 490px;
  margin-left: 15%;
  position: relative;
}

.service2nd-box-img iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
  border-radius: 20px;
}

.service3rd {
  display: flex;
  justify-content: center;
  margin-bottom: 200px;
}

@media only screen and (max-width: 960px) {
  .service1st {
    margin-right: 40px;
    margin-left: 40px;
  }

  .service1st-box-img {
    width: 100%;
    margin-left: 0%;
  }

  .service2nd {
    margin-right: 40px;
    margin-left: 40px;
  }

  .service2nd-box-img {
    width: 100%;
    height: 400px;
    margin-left: 0%;
  }
}

@media only screen and (max-width: 560px) {
  .service1st {
    margin-top: 120px;
    margin-bottom: 120px;
    margin-right: 20px;
    margin-left: 20px;
  }

  .service1st-title {
    margin-bottom: 24px;
  }

  .service1st-box-title {
    font-size: 2rem;
  }

  .service1st-box-subTitle {
    font-size: 1.125rem;
  }

  .service1st-box-img img {
    border-radius: 20px;
  }

  .service2nd {
    margin-right: 20px;
    margin-left: 20px;
    margin-bottom: 120px;
  }

  .service2nd-title {
    margin-bottom: 24px;
  }

  .service2nd-box-title {
    font-size: 2rem;
  }

  .service2nd-box-img {
    height: 240px;
  }

  .service3rd {
    margin-right: 20px;
    margin-left: 20px;
    margin-bottom: 120px;
  }
}

/* about */

.about1st {
  margin-top: 200px;
  margin-bottom: 200px;
  overflow: hidden;
}

.about1st-title {
  font-size: 1.5rem;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  color: #f4194e;

  max-width: 1024px;
  width: 100%;
  margin: 0 auto 40px;
}

.about1st-box-title {
  font-size: 2.25rem;
  font-weight: 700;

  max-width: 1024px;
  width: 100%;
  margin: 0 auto 80px;
}

.about1st-box-img {
  width: 1750px;
  height: 572px;
  margin-left: 30%;
}

.about1st-box-img img {
  border-radius: 40px;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.about2nd {
  margin-bottom: 80px;
  overflow: hidden;
}

.about2nd-title {
  font-size: 1.5rem;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  color: #f4194e;

  max-width: 1024px;
  width: 100%;
  margin: 0 auto 40px;
}

.about2nd-box-title {
  font-size: 2.25rem;
  font-weight: 700;

  max-width: 1024px;
  width: 100%;
  margin: 0 auto 24px;
}

.about2nd-box-subTitle {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 2;
  margin-bottom: 200px;

  max-width: 1024px;
  width: 100%;
  margin: 0 auto 200px;
}

.about2nd-box-img {
  width: 1750px;
  height: 572px;
  margin-left: 30%;
}

.about2nd-box-img img {
  border-radius: 40px 0px 0px 40px;
  object-fit: cover;
  width: 85%;
  height: 100%;
}

.about3rd {
  max-width: 1024px;
  width: 100%;
  margin: 0 auto 200px;
}

.about3rd-title {
  font-size: 1.5rem;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  color: #f4194e;
  margin-bottom: 40px;
}

.about3rd .about3rd-box {
  max-width: 1024px;
  width: 100%;
}

.about3rd .about3rd-box tr {
  display: flex;
  align-items: center;
}

.about3rd .about3rd-box tr:last-of-type {
  padding-bottom: 0;
}

.about3rd .about3rd-box th {
  display: inline-block;
  width: 30%;
  font-size: 0.875rem;
  font-weight: 400;
  text-align: left;
  color: #bdbdbd;
  padding-bottom: 24px;
  padding-top: 24px;
}

.about3rd .about3rd-box td {
  display: inline-block;
  width: 70%;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 2;
  text-align: left;
  border-bottom: 1px solid #c4c4c4;
  padding-bottom: 24px;
  padding-top: 24px;
}

.about3rd .about3rd-box td a {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 2;
  text-align: left;
  text-decoration: underline;
}

.about4th {
  margin-bottom: 80px;
  overflow: hidden;
}

.about4th-title {
  font-size: 1.5rem;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  color: #f4194e;

  max-width: 1024px;
  width: 100%;
  margin: 0 auto 40px;
}

.about4th-box {
  max-width: 1024px;
  width: 100%;
  margin: 0 auto 120px;
  display: flex;
  justify-content: space-between;
}

.about4th-box-right {
  width: 50%;
}

.about4th-box-right-title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.about4th-box-right-subTitle {
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 24px;
  color: #bdbdbd;
}

.about4th-box-right-description {
  font-size: 1rem;
  font-weight: 400;
  line-height: 2;
}

.about4th-box-left {
  margin-left: 5%;
  width: 560px;
  height: 560px;
}

.about4th-box-left img {
  border-radius: 20px;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

@media only screen and (max-width: 960px) {
  .about1st {
    margin-right: 40px;
    margin-left: 40px;
  }

  .about3rd .about3rd-box tr {
    padding-bottom: 16px;
    padding-top: 16px;
  }

  .about1st-box-img {
    width: 100%;
    height: 400px;
    margin-left: 0;
  }

  .about2nd {
    margin-right: 40px;
    margin-left: 40px;
  }

  .about2nd-box-img {
    width: 100%;
    height: 400px;
    margin-left: 0;
  }

  .about2nd-box-img img {
    width: 100%;
    border-radius: 40px;
  }

  .about3rd {
    margin-right: 40px;
    margin-left: 40px;
    width: calc(100% - 80px);
  }

  .about4th {
    margin-left: 40px;
    margin-right: 40px;
  }

  .about4th-box-right {
    width: 55%;
  }

  .about4th-box-left {
    margin-left: 0;
    width: 40%;
    height: 360px;
  }
}

@media only screen and (max-width: 560px) {
  .about1st {
    margin-top: 120px;
    margin-bottom: 120px;
    margin-right: 20px;
    margin-left: 20px;
  }

  .about1st-title {
    margin-bottom: 24px;
  }

  .about1st-box-title {
    font-size: 2rem;
  }

  .about1st-box-img {
    height: 240px;
  }

  .about1st-box-img img {
    border-radius: 20px;
  }

  .about2nd {
    margin-right: 20px;
    margin-left: 20px;
    margin-bottom: 120px;
  }

  .about2nd-title {
    margin-bottom: 24px;
  }

  .about2nd-box-title {
    font-size: 2rem;
  }

  .about2nd-box-subTitle {
    font-size: 1.125rem;
    margin-bottom: 80px;
  }

  .about2nd-box-img {
    width: 100%;
    height: 240px;
    margin-left: 0;
  }

  .about2nd-box-img img {
    border-radius: 20px;
  }

  .about3rd {
    margin-left: 20px;
    margin-right: 20px;
    margin-bottom: 120px;
    width: calc(100% - 40px);
  }

  .about3rd-title {
    margin-bottom: 24px;
  }

  .about3rd .about3rd-box th {
    width: 30%;
    font-size: 1rem;
    padding-top: 0;
    padding-bottom: 0;
  }

  .about3rd .about3rd-box tr {
    padding-bottom: 0px;
    padding-top: 0px;
  }

  .about3rd .about3rd-box td {
    width: 75%;
    font-size: 1rem;
  }

  .about3rd .about3rd-box td a {
    font-size: 1rem;
  }

  .about4th {
    margin-left: 20px;
    margin-right: 20px;
    margin-bottom: 120px;
  }

  .about4th-title {
    margin-bottom: 24px;
  }

  .about4th-box {
    flex-wrap: wrap;
    margin-bottom: 80px;
  }

  .about4th-box:last-of-type {
    margin-bottom: 0;
  }

  .about4th-box-right {
    width: 100%;
    order: 2;
  }

  .about4th-box-right-title {
    font-size: 2rem;
  }

  .about4th-box-left {
    width: 100%;
    height: 320px;
    margin-bottom: 24px;
    margin-left: 0;
    order: 1;
  }
}

/* recruit */

.recruit1st {
  overflow: hidden;

  max-width: 1024px;
  width: 100%;
  margin: 200px auto;
}

.recruit1st-title {
  font-size: 1.5rem;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  color: #f4194e;

  max-width: 1024px;
  width: 100%;
  margin: 0 auto 40px;
}

.recruit1st-box-title {
  font-size: 2.25rem;
  font-weight: 700;

  max-width: 1024px;
  width: 100%;
  margin: 0 auto 80px;
}

.recruit1st-box-img {
  width: auto;
  height: 490px;
  margin-left: 15%;
}

.recruit1st-box-img img {
  border-radius: 40px;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.recruit2nd {
  margin-bottom: 200px;
  overflow: hidden;
}

.recruit2nd-title {
  font-size: 1.5rem;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  color: #f4194e;

  max-width: 1024px;
  width: 100%;
  margin: 0 auto 40px;
}

.recruit2nd-box-title {
  font-size: 2.25rem;
  font-weight: 700;

  max-width: 1024px;
  width: 100%;
  margin: 0 auto 24px;
}

.recruit2nd-box-subTitle {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 2;

  max-width: 1024px;
  width: 100%;
  margin: 0 auto 0;
}

.recruit3rd {
  margin-bottom: 216px;
}

.recruit3rd-title {
  font-size: 1.5rem;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  color: #f4194e;

  max-width: 1024px;
  width: 100%;
  margin: 0 auto 40px;
}

.recruit3rd-box-title {
  font-size: 2.25rem;
  font-weight: 700;

  max-width: 1024px;
  width: 100%;
  margin: 0 auto 80px;
}

.recruit3rd-box-container {
  max-width: 1024px;
  width: 100%;
  margin: 0 auto 96px;
}

.recruit3rd-box-container:last-of-type {
  margin-bottom: 0;
}

.recruit3rd-box-container-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.recruit3rd-box-container-img {
  margin-bottom: 24px;
}

.recruit3rd-box-container-img img {
  height: 320px;
  -o-object-fit: cover;
  object-fit: cover;
  width: 60%;
  border-radius: 20px;
}

.recruit3rd-box-container-description {
  font-size: 1.125rem;
  font-weight: 400;
  margin-bottom: 48px;
  line-height: 2;
  width: 60%;
}

@media only screen and (max-width: 960px) {
  .recruit1st {
    width: calc(100% - 80px);
    margin-right: 40px;
    margin-left: 40px;
  }

  .recruit1st-box-img {
    width: 100%;
    height: 400px;
    margin-left: 0;
  }

  .recruit2nd {
    margin-right: 40px;
    margin-left: 40px;
    width: calc(100% - 80px);
  }

  .recruit3rd {
    margin-right: 40px;
    margin-left: 40px;
    width: calc(100% - 80px);
  }
}

@media only screen and (max-width: 560px) {
  .recruit1st {
    width: calc(100% - 40px);
    margin: 120px 20px 120px;
  }

  .recruit1st-title {
    margin-bottom: 24px;
  }

  .recruit1st-box-title {
    font-size: 2rem;
  }

  .recruit1st-box-img {
    height: 240px;
  }

  .recruit1st-box-img img {
    border-radius: 20px;
  }

  .recruit2nd {
    margin-right: 20px;
    margin-left: 20px;
    margin-bottom: 120px;
    width: calc(100% - 40px);
  }

  .recruit2nd-title {
    margin-bottom: 24px;
  }

  .recruit2nd-box-title {
    font-size: 2rem;
  }

  .recruit2nd-box-subTitle {
    font-size: 1.125rem;
  }

  .recruit3rd {
    margin-right: 20px;
    margin-left: 20px;
    margin-bottom: 136px;
    width: calc(100% - 40px);
  }

  .recruit3rd-title {
    margin-bottom: 24px;
  }

  .recruit3rd-box-title {
    font-size: 2rem;
  }

  .recruit3rd-box-container-description {
    width: 100%;
  }

  .recruit3rd-box-container-img img {
    height: 240px;
    width: 100%;
  }
}

/* member */

.member1st {
  background-image: url("../img/member/member4.jpg");
  background-size: 200%;
  background-repeat: no-repeat;
  background-position: center center;
  height: calc(100vh - 96px);
  margin-bottom: 200px;
  padding-top: 200px;
}

.member1st-box {
  max-width: 1024px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.member1st-title {
  font-size: 1.5rem;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  color: #f4194e;
  margin-bottom: 40px;
}

.member1st-box-title {
  font-size: 2.25rem;
  font-weight: 500;
  color: #fff;
  -webkit-text-stroke: 0.5px #333;
  text-stroke: 0.5px #333;
}

.member2nd {
  max-width: 1024px;
  width: 100%;
  margin: 0 auto 120px;
}

.member2nd-title {
  font-size: 24px;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  color: #f4194e;
  margin-bottom: 24px;
  display: block;
  width: 100%;
}

.member2nd-box-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 40px;
}

.member2nd-box-articles {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.member2nd-box-articles::after {
  content: "";
  display: block;
  width: 30%;
  height: 0;
}

.member2nd-box-articles-article {
  width: 30%;
  margin-bottom: 80px;
  position: relative;
  cursor: pointer;
}

.member2nd-box-articles-article-S {
  display: none;
}

.member2nd-box-articles-article-img {
  margin-bottom: 16px;
  display: block;
}

.member2nd-box-articles-article-img img {
  height: 384px;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  border-radius: 20px;
}

.fadeout,
.fadein {
  margin-bottom: 16px;
  display: block;
}

.fadeout img,
.fadein img {
  height: 384px;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  border-radius: 20px;
}

.fadeout {
  opacity: 1;
  transition: 0.5s ease-in-out;
  -webkit-transition: 0.5s ease-in-out;
}
.fadein {
  opacity: 0.75;
  transition: 0.5s ease-in-out;
  -webkit-transition: 0.5s ease-in-out;
}

.member2nd-box-articles-article-title {
  margin-bottom: 8px;
  font-size: 1.5rem;
  font-weight: 700;
}

.member2nd-box-articles-article-position {
  font-size: 0.9rem;
  font-weight: 400;
  color: #bdbdbd;
  margin-right: 8px;
}

.modal,
.modal1,
.modal2,
.modal3,
.modal4,
.modal5,
.modal6,
.modal7,
.modal8,
.modal9,
.modal10,
.modal11,
.modal12 {
	position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}

.modal.is-show,
.modal1.is-show,
.modal2.is-show,
.modal3.is-show,
.modal4.is-show,
.modal5.is-show,
.modal6.is-show,
.modal7.is-show,
.modal8.is-show,
.modal9.is-show,
.modal10.is-show,
.modal11.is-show,
.modal12.is-show {
  opacity: 1;
  visibility: visible;
}

.modal__inner,
.modal__inner1,
.modal__inner2,
.modal__inner3,
.modal__inner4,
.modal__inner5,
.modal__inner6,
.modal__inner7,
.modal__inner8,
.modal__inner9,
.modal__inner10,
.modal__inner11,
.modal__inner12 {
	position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 80%;
  max-width: 1024px;
  padding: 80px;
  background-color: #fff;
  z-index: 2;
  border-radius: 40px;
}

.modal__inner img,
.modal__inner1 img,
.modal__inner2 img,
.modal__inner3 img,
.modal__inner4 img,
.modal__inner5 img,
.modal__inner6 img,
.modal__inner7 img,
.modal__inner8 img,
.modal__inner9 img,
.modal__inner10 img,
.modal__inner11 img,
.modal__inner12 img {
	width: 100%;
}

.modal__close,
.modal__close1,
.modal__close2,
.modal__close3,
.modal__close4,
.modal__close5,
.modal__close6,
.modal__close7,
.modal__close8, 
.modal__close9,
.modal__close10,
.modal__close11,
.modal__close12 {
	position: absolute;
  right: 0;
  top: 0;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  cursor: pointer;
}

.members-detail__close-button {
  position: absolute;
  top: 30px;
  right: 30px;
  background-color: #000;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  cursor: pointer;
}

.members-detail__close-button:before {
  content: "";
  width: 25px;
  height: 3px;
  background-color: #fff;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0px) rotate(45deg);
  transform: translate3d(-50%, -50%, 0px) rotate(45deg);
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: -webkit-transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1),
    -webkit-transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.members-detail__close-button:after {
  content: "";
  width: 25px;
  height: 3px;
  background-color: #fff;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0px) rotate(-45deg);
  transform: translate3d(-50%, -50%, 0px) rotate(-45deg);
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: -webkit-transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1),
    -webkit-transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.modal__background,
.modal__background1,
.modal__background2,
.modal__background3,
.modal__background4,
.modal__background5,
.modal__background6,
.modal__background7,
.modal__background8,
.modal__background9,
.modal__background10,
.modal__background11,
.modal__background12 {
	position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1;
  cursor: pointer;
}

.modal-box {
  max-width: 1024px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-box-right {
  width: 50%;
}

.modal-box-right-title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.modal-box-right-subTitle {
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 24px;
  color: #bdbdbd;
}

.modal-box-right-description {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
}

.modal-box-left {
  margin-left: 5%;
  width: 386px;
  height: 386px;
}

.modal-box-left img {
  border-radius: 20px;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.member3rd {
  margin-bottom: 200px;
}

.member3rd .contactBtn {
  margin-bottom: 24px;
}

.member3rd p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 2;
  max-width: 1024px;
  width: 100%;
  text-align: center;
  margin: 0 auto;
}

@media only screen and (max-width: 1024px) {
  .member1st {
    background-size: cover;
    background-position: center center;
  }
	
	.member2nd-box-articles-article {
    display: none;
  }

  .member2nd-box-articles-article-S {
    width: 45%;
    display: inline-block;
    margin-bottom: 80px;
    position: relative;
    cursor: pointer;
  }
}

@media only screen and (max-width: 960px) {
  .member1st {
    height: calc(100vh - 64px);
    background-position: center 0px;
    background-size: 225%;
  }

  .member1st-box {
    margin-right: 40px;
    margin-left: 40px;
    width: calc(100% - 80px);
  }

  .member1st-box-title {
    color: #333;
  }

  .member2nd {
    width: calc(100% - 80px);
    margin-right: 40px;
    margin-left: 40px;
  }

  .member2nd-box-articles-article {
    width: 45%;
  }

  .member3rd p {
    text-align: left;
    margin-right: 40px;
    margin-left: 40px;
    width: calc(100% - 80px);
  }

  .modal__inner,
  .modal__inner1,
  .modal__inner2,
  .modal__inner3,
  .modal__inner4,
  .modal__inner5,
  .modal__inner6,
  .modal__inner7,
  .modal__inner8, 
  .modal__inner9,
  .modal__inner10,
  .modal__inner11,
  .modal__inner12 {
	  width: calc(100% - 80px);
    padding: 40px;
  }
}

@media only screen and (max-width: 560px) {
  .member1st {
    margin-bottom: 120px;
    padding-top: 120px;
    background-position: center 0px;
    background-size: cover;
  }

  .member1st-title {
    margin-bottom: 24px;
  }

  .member1st-box {
    width: calc(100% - 40px);
    margin: 0 20px;
  }

  .member1st-box-title {
    font-size: 2rem;
    color: #fff;
    -webkit-text-stroke: 0.25px #333;
    text-stroke: 0.25px #333;
  }

  .member2nd-box-articles-article-S {
    width: calc(100% - 40px);
    margin-right: 20px;
    margin-left: 20px;
    margin-bottom: 56px;
  }

  .member2nd-box-articles-article-S:last-of-type {
    margin-bottom: 0;
  }

  .member2nd {
    margin: 0 auto 120px;
    width: 100%;
  }

  .member2nd-box {
    margin-right: 0px;
    margin-left: 0px;
    width: 100%;
  }

  .member2nd-box-title {
    font-size: 3rem;
    margin-right: 20px;
  }

  .member2nd-box-subtitle {
    font-size: 1.25rem;
    margin-right: 20px;
    margin-bottom: 24px;
  }

  .member2nd .button {
    width: calc(100% - 40px);
    margin-right: 20px;
    margin-left: 20px;
  }

  .member2nd-box-articles-article-img img {
    height: 320px;
  }

  .fadeout img,
  .fadein img {
    height: 320px;
  }

  .member3rd {
    margin-bottom: 120px;
  }

  .member3rd p {
    margin-right: 20px;
    margin-left: 20px;
    width: calc(100% - 40px);
  }

  .modal__inner,
  .modal__inner1,
  .modal__inner2,
  .modal__inner3,
  .modal__inner4,
  .modal__inner5,
  .modal__inner6,
  .modal__inner7,
  .modal__inner8, 
  .modal__inner9,
  .modal__inner10,
  .modal__inner11,
  .modal__inner12 {
	  width: calc(100% - 40px);
    padding: 20px;
    border-radius: 20px;
  }

  .modal__inner img,
  .modal__inner1 img,
  .modal__inner2 img,
  .modal__inner3 img,
  .modal__inner4 img,
  .modal__inner5 img,
  .modal__inner6 img,
  .modal__inner7 img,
  .modal__inner8 img, 
  .modal__inner9 img,
  .modal__inner10 img,
  .modal__inner11 img,
  .modal__inner12 img {
	  width: 100%;
  }

  .modal__close,
  .modal__close1,
  .modal__close2,
  .modal__close3,
  .modal__close4,
  .modal__close5,
  .modal__close6,
  .modal__close7,
  .modal__close8, 
  .modal__close9,
  .modal__close10,
  .modal__close11,
  .modal__close12 {
	  position: absolute;
    right: 0;
    top: 0;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    cursor: pointer;
  }

  .members-detail__close-button {
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
  }

  .members-detail__close-button:before {
    width: 16px;
    height: 2px;
  }

  .members-detail__close-button:after {
    width: 16px;
    height: 2px;
  }

  .modal__background,
  .modal__background1,
  .modal__background2,
  .modal__background3,
  .modal__background4,
  .modal__background5,
  .modal__background6,
  .modal__background7,
  .modal__background8,
  .modal__background9,
  .modal__background10,
  .modal__background11,
  .modal__background12 {
	  position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1;
    cursor: pointer;
  }

  .modal-box {
    margin: 0 auto;
    flex-wrap: wrap;
  }

  .modal-box-right {
    width: 100%;
  }

  .modal-box-right-title {
    font-size: 1.5rem;
    margin-bottom: 0px;
  }

  .modal-box-right-subTitle {
    margin-bottom: 8px;
    font-size: 0.8rem;
  }

  .modal-box-right-description {
    font-size: 0.75rem;
    margin-bottom: 24px;
  }

  .modal-box-left {
    margin-left: 0;
    width: 100%;
    height: 200px;
  }
}

/* News */

.newsIndex {
  max-width: 1024px;
  width: 100%;
  margin: 200px auto 80px;
}

.newsIndex-box-title {
  font-size: 1.5rem;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  color: #f4194e;
  margin-bottom: 40px;
}

.newsIndex-box-title .sp {
  display: none;
}

.newsIndex-box-subtitle {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 40px;
}

.newsIndex-box-bread {
  display: flex;
}

.newsIndex-box-bread-element {
  margin-right: 16px;
  display: inline-block;
}

.newsIndex-box-bread-element a {
  text-decoration: none;
  font-size: 1rem;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
}

.newsIndex-cat {
  display: flex;
  flex-wrap: wrap;
}

.cat-item {
  margin-right: 24px;
  padding: 16px 24px;
  border: 1px solid #346cbc;
  color: #346cbc;
  border-radius: 32px;
}

.cat-item:last-of-type {
  margin-right: 0;
}

.cat-item:hover {
  background-color: #346cbc;
  color: #fff;
  transition: all 1s 0s ease;
}

.cat-item.current-cat {
  background-color: #346cbc;
  color: #fff;
}

.newsIndex-cat .active {
  background-color: #346cbc;
  color: #fff;
}

.cat-item a {
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
}

.newsLists {
  max-width: 1024px;
  width: 100%;
  margin: 0 auto 200px;
}

.newsLists-box-articles {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.newsLists-box-articles::after {
  content: "";
  display: block;
  width: 30%;
  height: 0;
}

.newsLists-box-articles-article {
  width: 30%;
  margin-bottom: 40px;
  position: relative;
}

.newsLists-box-articles-article-img {
  margin-bottom: 16px;
}

.newsLists-box-articles-article-img img {
  height: 200px;
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
  border-radius: 20px;
}

.newsLists-box-articles-article-info {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.newsLists-box-articles-article-info-date {
  font-size: 0.75rem;
  font-weight: 400;
  color: #bdbdbd;
  margin-right: 8px;
}

.newsLists-box-articles-article-info-category {
  font-size: 0.75rem;
  font-weight: 400;
  color: #346cbc;
}

.newsLists-box-articles-article-title a {
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 700;
}

.newsLists-box-articles-article-title .stretched-link::after {
  background-color: rgba(0, 0, 0, 0);
  bottom: 0;
  content: "";
  left: 0;
  pointer-events: auto;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}

.newsLists .arrow {
  margin: 0px 0px 0px auto;
}

@media only screen and (max-width: 960px) {
  .newsLists {
    margin-left: 40px;
    margin-right: 40px;
    width: calc(100% - 80px);
  }

  .newsLists-box-articles-article-img img {
    height: 160px;
  }
}

@media only screen and (max-width: 560px) {
  .newsLists {
    margin-left: 0px;
    margin-right: 0px;
    width: 100%;
  }

  .newsLists-box-articles-article {
    width: calc(100% - 40px);
    margin-right: 20px;
    margin-left: 20px;
    margin-bottom: 56px;
  }

  .newsLists-box-articles-article:last-of-type {
    margin-bottom: 0;
  }

  .newsLists {
    margin: 0 auto 120px;
  }

  .newsLists-box {
    margin-right: 0px;
    margin-left: 0px;
    width: 100%;
  }

  .newsIndex-box-subtitle {
    font-size: 2rem;
  }

  .newsLists-box-title {
    font-size: 3rem;
    margin-right: 20px;
  }

  .newsLists-box-subtitle {
    font-size: 1.25rem;
    margin-right: 20px;
    margin-bottom: 24px;
  }

  .newsLists .button {
    width: calc(100% - 40px);
    margin-right: 20px;
    margin-left: 20px;
  }

  .newsLists-box-articles-article-img img {
    height: 200px;
  }
}

@media only screen and (max-width: 960px) {
  .newsIndex {
    margin-left: 40px;
    margin-right: 40px;
    width: calc(100% - 80px);
    margin-bottom: 104px;
  }

  .newsIndex .container {
    margin-left: 0px;
    margin-right: 0px;
    width: 100%;
  }

  .newsIndex-cat {
    margin-left: 0px;
  }

  .cat-item {
    margin-bottom: 16px;
  }
}

@media only screen and (max-width: 560px) {
  .newsIndex {
    margin-left: 20px;
    margin-right: 20px;
    width: calc(100% - 40px);
    margin-top: 120px;
    margin-bottom: 80px;
  }

  .newsIndex-box-title {
    margin-bottom: 24px;
  }

  .newsIndex-cat {
    margin-left: 0px;
  }

  .newsIndex-cat li {
    margin-bottom: 16px;
  }

  .cat-item {
    margin-right: 16px;
    padding: 12px 16px;
    border-radius: 24px;
    display: flex;
    align-items: center;
  }

  .cat-item a {
    font-size: 0.7rem;
    line-height: 1;
  }
}

.newsLists-pager {
  margin: 0 auto;
  width: 100%;
}

.newsLists-pager .newsLists-pager-pagination {
  text-align: center;
}

.newsLists-pager .newsLists-pager-pagination li {
  margin: 0 20px;
  padding: 0;
  display: inline-block;
  width: 50px;
  height: 50px;
  text-align: center;
  position: relative;
  border-radius: 50px;
}

.newsLists-pager .newsLists-pager-pagination li a {
  vertical-align: middle;
  position: absolute;
  color: #bdbdbd;
  background: #ebebeb;
  border-radius: 50px;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  display: table;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.newsLists-pager .newsLists-pager-pagination li.pre a,
.newsLists-pager .newsLists-pager-pagination li.next a {
  color: #f4194e;
  background: none;
  border-radius: 50px;
}

.newsLists-pager .newsLists-pager-pagination li a span {
  display: table-cell;
  vertical-align: middle;
}

.newsLists-pager .newsLists-pager-pagination li a:hover,
.newsLists-pager .newsLists-pager-pagination li a.active {
  color: #fff;
  background: #f4194e;
  border-radius: 50px;
  animation: animScale 0.4s ease-out;
  transform-origin: 50% 50%;
  -webkit-animation: animScale 0.4s ease-out;
  -webkit-transform-origin: 50% 50%;
  -moz-animation: animScale 0.4s ease-out;
  -moz-transform-origin: 50% 50%;
}

@media only screen and (max-width: 560px) {
  .newsLists-pager .newsLists-pager-pagination {
    margin-right: 20px;
    margin-left: 20px;
    width: calc(100% - 40px);
  }

  .newsLists-pager .newsLists-pager-pagination li {
    margin-left: 0;
  }

  .newsLists-pager .newsLists-pager-pagination li:last-of-type {
    margin-right: 0;
  }

  .newsLists-pager .newsLists-pager-pagination li.pre,
  .newsLists-pager .newsLists-pager-pagination li.next {
    display: inline-block;
    width: 48px;
    height: 48px;
    text-align: center;
  }

  .newsLists-pager .newsLists-pager-pagination li.pre a,
  .newsLists-pager .newsLists-pager-pagination li.next a {
    width: 100%;
    text-align: center;
  }
}

@keyframes animScale {
  0% {
    transform: scale(0.8, 0.8);
  }
  40% {
    transform: scale(1.2, 1.2);
  }
  60% {
    transform: scale(1, 1);
  }
  80% {
    transform: scale(1.1, 1.1);
  }
  100% {
    transform: scale(1, 1);
  }
}
@-webkit-keyframes animScale {
  0% {
    -webkit-transform: scale(0.8, 0.8);
  }
  40% {
    -webkit-transform: scale(1.2, 1.2);
  }
  60% {
    -webkit-transform: scale(1, 1);
  }
  80% {
    -webkit-transform: scale(1.1, 1.1);
  }
  100% {
    -webkit-transform: scale(1, 1);
  }
}
@-moz-keyframes animScale {
  0% {
    -moz-transform: scale(0.8, 0.8);
  }
  40% {
    -moz-transform: scale(1.2, 1.2);
  }
  60% {
    -moz-transform: scale(1, 1);
  }
  80% {
    -moz-transform: scale(1.1, 1.1);
  }
  100% {
    -moz-transform: scale(1, 1);
  }
}

/* newsArticleIndex */

.newsArticleIndex {
  margin: 120px auto 80px;
  max-width: 848px;
  width: 100%;
}

.newsArticleIndex-box-title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 64px;
  color: #222427;
}

.newsArticleIndex-box-date {
  font-size: 0.875rem;
  font-weight: 400;
  color: #bdbdbd;
  margin-bottom: 24px;
  margin-right: 8px;
  display: inline-block;
}

.newsArticleIndex-box-cat {
  display: inline-block;
  margin-bottom: 32px;
  color: #346cbc;
  font-size: 0.8rem;
  font-weight: 500;
}

@media only screen and (max-width: 960px) {
  .newsArticleIndex {
    margin-left: 40px;
    margin-right: 40px;
    width: calc(100% - 80px);
  }
}

@media only screen and (max-width: 560px) {
  .newsArticleIndex {
    margin-left: 0px;
    margin-right: 0px;
    width: 100%;
    margin-bottom: 24px;
  }

  .newsArticleIndex-box {
    margin-left: 20px;
    margin-right: 20px;
    width: calc(100% - 40px);
  }

  .newsArticleIndex-box-bread {
    display: none;
  }

  .newsArticleIndex-box-cat {
    margin-right: 0px;
    border-radius: 24px;
    font-size: 0.7rem;
    margin-bottom: 8px;
  }

  .newsArticleIndex-box-title {
    font-size: 1.5rem;
    margin-bottom: 0;
  }

  .newsArticleIndex-box-subtitle {
    font-size: 1.25rem;
  }

  .newsArticleIndex-box-date {
    margin-bottom: 8px;
  }
}

/* newsArticle */

.newsArticle {
  margin-bottom: 200px;
}

.newsArticle-box-thumbnail {
  margin: 0 auto 96px;
  max-width: 1024px;
  width: 100%;
}

.newsArticle-box-thumbnail img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  /* height: 516px; */
  /* height: 600px; */
  height: auto;
  border-radius: 40px;
}

.newsArticle-content {
  max-width: 848px;
  width: 100%;
  margin: 0 auto 200px;
}

.newsArticle-content h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 64px;
}

.newsArticle-content h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 64px;
}

.newsArticle-content p {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 2;
  margin-bottom: 64px;
}

.newsArticle-content p a {
  word-wrap: break-word;
}

.article-box-contents-sectionImg {
  margin-bottom: 64px;
}

.article-box-contents-sectionImg img {
  /* height: 485px; */
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  border-radius: 20px;
}

.newsArticle-content .button {
  margin: 120px auto 0;
}

@media only screen and (max-width: 960px) {
  .newsArticle-box-thumbnail img {
    /* height: 440px; */
  }

  .article-box-contents-sectionImg img {
    /* height: 360px; */
  }
}

@media only screen and (max-width: 560px) {
  .newsArticle {
    margin-bottom: 120px;
  }

  .newsArticle-box-thumbnail {
    margin-bottom: 64px;
  }

  .newsArticle-box-thumbnail img {
    /* height: 240px; */
    border-radius: 20px;
  }

  .newsArticle-content {
    width: 100%;
    margin-left: 0;
    margin-bottom: 120px;
  }

  .newsArticle-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 24px;
  }

  .newsArticle-content p {
    font-size: 1rem;
    margin-bottom: 24px;
  }

  .article-box-contents-sectionImg {
    margin-bottom: 24px;
  }

  .article-box-contents-sectionImg img {
    /* height: 240px; */
  }

  .newsArticle-content h4 {
    font-size: 1.125rem;
    margin-bottom: 24px;
  }

  .newsArticle-content .button {
    margin-top: 64px;
  }
}

/* contact */

.contactIndex {
  margin-top: 200px;
  margin-bottom: 80px;
  overflow: hidden;
}

.contactIndex-title {
  font-size: 1.5rem;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  color: #f4194e;

  max-width: 1024px;
  width: 100%;
  margin: 0 auto 40px;
}

.contactIndex-box-title {
  font-size: 2.25rem;
  font-weight: 700;

  max-width: 1024px;
  width: 100%;
  margin: 0 auto;
}

.Form {
  max-width: 1024px;
  width: 100%;
  margin: 0 auto 200px;
}

.Form form {
  width: 100%;
}

@media only screen and (max-width: 960px) {
  .contactIndex {
    margin-right: 40px;
    margin-left: 40px;
    width: calc(100% - 80px);
  }

  .Form {
    margin-right: 40px;
    margin-left: 40px;
    width: calc(100% - 80px);
  }
}

@media only screen and (max-width: 560px) {
  .contactIndex {
    margin-top: 120px;
    width: 100%;
    margin-right: 0;
    margin-left: 0;
    overflow: hidden;
  }

  .contactIndex-title {
    margin-bottom: 24px;
  }

  .Form {
    margin-bottom: 120px;
    margin-left: 20px;
    margin-right: 20px;
    width: calc(100% - 40px);
  }

  .contactIndex-box {
    margin-left: 20px;
    margin-right: 20px;
    width: calc(100% - 40px);
  }

  .contactIndex-box-title {
    font-size: 2rem;
  }
}

.Form form .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  margin-bottom: 80px;
}

.Form form .label {
  align-items: center;
  font-size: 1.25rem;
  font-weight: 500;
  /* height: 56px; */
  width: 30%;
  display: flex;
}

.Form form span {
  color: #f4194e;
  font-size: 0.75rem;
  margin-left: 8px;
}

@media only screen and (max-width: 960px) {
  .Form form .label {
    font-size: 1rem;
    height: auto;
  }

  .Form form .item {
    margin-bottom: 40px;
  }
}

@media only screen and (max-width: 560px) {
  .Form form .label {
    font-size: 0.9rem;
    width: 35%;
  }

  .Form form span {
    margin-left: 4px;
  }

  .Form form .item {
    margin-bottom: 24px;
  }
}

.Form form .inputs {
  height: 56px;
  width: 70%;
}

.Form form input[type="text"],
.Form form input[type="email"],
.Form form input[type="tel"],
.Form form input[type="address"],
.Form form input[type="question"] {
  border-bottom: 1px solid #dbdbdb;
  border-left: none;
  border-right: none;
  border-top: none;
  font-size: 1.25rem;
  line-height: 56px;
  padding-left: 24px;
}

@media only screen and (max-width: 960px) {
  .Form form input[type="text"],
  .Form form input[type="email"],
  .Form form input[type="tel"],
  .Form form input[type="address"],
  .Form form input[type="question"] {
    font-size: 1rem;
  }
}

@media only screen and (max-width: 560px) {
  .Form form input[type="text"],
  .Form form input[type="email"],
  .Form form input[type="tel"],
  .Form form input[type="address"],
  .Form form input[type="question"] {
    font-size: 0.9rem;
  }
}

.Form form textarea {
  border-bottom: 1px solid #dbdbdb;
  border-left: none;
  border-right: none;
  border-top: none;
  font-size: 1.25rem;
  height: 56px;
  padding-left: 24px;
  padding-top: 16px;
  width: 100%;
}

@media only screen and (max-width: 960px) {
  .Form form textarea {
    font-size: 1rem;
    padding-top: 0px;
  }
}

@media only screen and (max-width: 560px) {
  .Form form textarea {
    font-size: 0.9rem;
  }
}

.Form form .wpcf7-form-control-wrap {
  height: 56px;
  width: 70%;
}

.Form form .wpcf7-text,
.Form form .wpcf7-text,
.Form form .wpcf7-select {
  border-bottom: 1px solid #dbdbdb;
  background-color: transparent;
  border-left: none;
  border-right: none;
  border-top: none;
  font-size: 1.25rem;
  padding-left: 24px;
  width: 100%;
  height: 56px;
}

.Form form .btn-area {
  text-align: center;
  margin-top: 80px;
}

.Form form input[type="submit"] {
  background-color: #f4194e;
  border: none;
  color: #ffffff;
  height: 96px;
  position: relative;
  width: 416px;
  border-radius: 48px;
  text-decoration: none;
  margin: 0 auto;

  font-size: 1.5rem;
  font-weight: 400;
  font-family: "Roboto", sans-serif;

  display: inline-block;
  vertical-align: middle;
  text-decoration: none;
  cursor: pointer;
}

.Form form input[type="submit"]:hover {
  color: #f4194e;
  background-color: #fff;
  border: 1px solid #f4194e;
  transition: all 0.5s 0s ease;
}

.Form form input[type="submit"]::before,
.Form form input[type="submit"]::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: -104px;
  margin: auto;
  content: "";
  vertical-align: middle;

  width: 12px;
  height: 12px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

@media only screen and (max-width: 560px) {
  .Form form .btn-area {
    margin-top: 56px;
  }

  .Form form input[type="submit"] {
    height: 64px;
    width: 100%;
    font-size: 1rem;
  }
}
