@charset "UTF-8";
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, menu, nav, section, summary,
time, mark, audio, video, address {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, menu, nav, section, address {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  border: 0;
  margin: 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

img {
  vertical-align: bottom;
}

/* iOSでのデフォルトスタイルをリセット */
input[type=submit],
input[type=button] {
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}
input[type=submit]::focus,
input[type=button]::focus {
  outline-offset: -2px;
}

/*--------------------------------------------------------------
　全体共通コンポーネント
--------------------------------------------------------------*/
html {
  height: 100%;
  font-size: 62.5%;
}

body {
  position: relative;
  background: #f7f7f7;
  color: #222;
  font-size: 1.6em;
  line-height: 1.6;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  -webkit-text-size-adjust: 100%;
  word-break: break-word;
}

/* タブレット / ポートレート表示のみ */
@media screen and (min-width: 768px) and (max-width: 1023px) {
  body {
    font-size: 1.4em;
  }
}
/* スマートフォン表示 */
@media screen and (max-width: 767px) {
  body {
    font-size: 1.4em;
  }
}
a {
  color: #000;
  text-decoration: underline;
}
a:hover {
  text-decoration: none;
}

/*
　表示・非表示用クラス
--------------------------------------------------------------*/
.is-pc {
  display: block;
}

.is-sp {
  display: none;
}

/* スマートフォン表示 */
@media only screen and (max-width: 767px) {
  .is-pc {
    display: none;
  }
  .is-sp {
    display: block;
  }
}
/*
　スクロール位置調整
--------------------------------------------------------------*/
.scroll-adjust {
  padding-top: 100px;
  margin-top: -100px;
}

html {
  height: 100%;
  font-size: 62.5%;
}

body {
  font-size: 1.6em;
  line-height: 1.6;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  -webkit-text-size-adjust: 100%;
  background: url(../img/bg_top.svg) no-repeat left top/1020px 666px;
}
@media only screen and (max-width: 767px) {
  body {
    background: url(../img/bg_top.svg) no-repeat left top/80%;
  }
}

.main {
  overflow: hidden;
  background: url(../img/bg_bottom.svg) no-repeat right bottom/1166px 2239px;
}
@media only screen and (max-width: 767px) {
  .main {
    background: url(../img/bg_bottom.svg) no-repeat right bottom/100%;
  }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 1000;
}
.site-header__logo-area {
  position: absolute;
  left: 10px;
  top: 50%;
  width: 130px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media only screen and (max-width: 1024px) {
  .site-header__logo-area {
    position: relative;
    margin: auto;
    left: auto;
    top: auto;
    -webkit-transform: none;
            transform: none;
  }
}
@media only screen and (max-width: 767px) {
  .site-header__logo-area {
    position: relative;
    margin: auto;
    left: -5;
    top: 5;
  }
}
.site-header__logo {
  width: 100%;
  position
}

.nav-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (max-width: 767px) {
  .nav-list {
    padding: 0 8px;
  }
}
.nav-list__item {
  padding: 12px;
  width: 130px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .nav-list__item {
    width: auto;
    padding: 8px 4px;
  }
}
.nav-list__link {
  padding: 8px 8px;
  color: #4184D0;
  font-size: 1.6rem;
  font-weight: 600;
  text-decoration: none;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}
@media only screen and (max-width: 767px) {
  .nav-list__link {
    padding: 4px 4px;
    font-size: 1.3rem;
  }
}
.nav-list__link:hover {
  border-radius: 999px;
  background: #4184D0;
  color: #fff;
}

.mainvisual {
  padding: 0 16px;
}
.mainvisual__inner {
  margin: 187px auto 111px;
  max-width: 900px;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .mainvisual__inner {
    margin: 120px auto 40px;
    width: 80%;
  }
}
.mainvisual__image {
  width: 100%;
}

.about-section {
  position: relative;
  padding: 62px 16px 40px;
  background: url(../img/bg_blue.svg) no-repeat center top;
  background-size: 3000px;
}
@media only screen and (max-width: 767px) {
  .about-section {
    padding: 62px 7px 40px;
    background: url(../img/bg_blue_sp.svg) no-repeat center top/100%;
  }
}
.about-section::before {
  position: absolute;
  left: 50%;
  height: 1200px;
  width: 160px;
  background: url(../img/lead.svg) no-repeat center/contain;
  content: "";
  -webkit-transform: translate(-743px, 100px);
          transform: translate(-743px, 100px);
}
@media only screen and (max-width: 767px) {
  .about-section::before {
    top: 135px;
    left: 16px;
    height: 407px;
    width: 54px;
    -webkit-transform: none;
            transform: none;
  }
}
.about-section::after {
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: 130px;
  height: 1464px;
  width: 1314px;
  background: url(../img/bg_thunder.svg) no-repeat;
  background-size: contain;
  content: "";
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media only screen and (max-width: 767px) {
  .about-section::after {
    display: none;
  }
}
.about-section__inner {
  position: relative;
  z-index: 10;
  max-width: 1150px;
  margin: auto;
}
.about-section__title {
  margin-bottom: 30px;
  padding-bottom: 10px;
  border-bottom: 1px solid #fff;
}
.about-section__title-inner {
  display: block;
  max-width: 940px;
  width: 100%;
  margin: auto;
}
.about-section__title-image {
  max-width: 290px;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .about-section__title-image {
    max-width: 263px;
    margin: auto;
  }
}
.about-section__text {
  color: #fff;
  line-height: 2.25;
}
@media only screen and (max-width: 767px) {
  .about-section__text {
    line-height: 1.5;
  }
}

.about-section-body {
  max-width: 940px;
  margin: auto;
  font-size: 19px;
}
@media only screen and (max-width: 767px) {
  .about-section-body {
    margin: 0 20px 0 80px;
  }
}
.about-section-body__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .about-section-body__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.about-section-body__image-area {
  max-width: 700px;
  margin: 0 0 24px 24px;
}
@media only screen and (max-width: 767px) {
  .about-section-body__image-area {
    max-width: none;
    margin: 0 0 24px 0;
  }
}
.about-section-body__image {
  display: block;
  height: auto;
  width: 100%;
}
.about-section-body__text {
  margin-bottom: 24px;
  color: #fff;
  max-width: 418px;
  line-height: 1.5;
}
@media only screen and (max-width: 767px) {
  .about-section-body__text {
    max-width: none;
    line-height: 1.5px;
  }
}

.intro-section {
  position: relative;
  z-index: 10;
  padding: 54px 16px 0;
}
@media only screen and (max-width: 767px) {
  .intro-section {
    padding: 45px 7px 0;
    line-height: 15px;
  }
}
.intro-section__inner {
  max-width: 1150px;
  margin: auto;
}
.intro-section__title {
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #4184D0;
}
.intro-section__title-inner {
  display: block;
  max-width: 940px;
  width: 100%;
}
.intro-section__title-image {
  max-width: 490px;
  width: 100%;
  
}
@media only screen and (max-width: 767px) {
  .intro-section__title-image {
    max-width: 450px;
    margin-top: 35px;
  }
}
.intro-section__text {
  color: #fff;
  line-height: 2.25;
}
@media only screen and (max-width: 1025px) {
  .intro-section__title-image {
    max-width: 450px;
    margin-top: 35px;
  }
}
.intro-section__text {
  color: #fff;
  line-height: 2.25;
}

.intro-member-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin: 0 9px;
}
@media only screen and (max-width: 1025px) {
  .intro-member-list--solo {
    margin-bottom: 23.5rem;
  }
}
.intro-member-list__item {
  -webkit-box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
          box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
  margin-bottom: 2%;
  width: 47%;
  border: 8px solid #fff;
  border-radius: 24px;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .intro-member-list__item {
    margin-bottom: 6%;
    width: 100%;
  }
}
.intro-member-list__image {
  height: auto;
  width: 100%;
}

.service-section {
  margin-top: 70px;
  padding: 56px 16px;
  background: rgba(66, 70, 79, 0.8);
}
@media only screen and (max-width: 767px) {
  .service-section {
    padding: 30px;
  }
}
.service-section__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1260px;
  margin: auto;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .service-section__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.service-section__title-area {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: 224px;
}
@media only screen and (max-width: 767px) {
  .service-section__title-area {
    width: 100%;
    text-align: center;
  }
}
.service-section__title {
  font-size: 2.4rem;
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  .service-section__title {
    margin-bottom: 20px;
  }
}
.service-section__body-area {
  font-size: 1.5rem;
  line-height: 1.73;
}

.cta-area {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  width: 180px;
  height: 180px;
}
@media only screen and (max-width: 767px) {
  .cta-area {
    bottom: 10px;
    right: 10px;
    width: 120px;
    height: 120px;
  }
}
.cta-area__link {
  display: block;
}
.cta-area__link:hover {
  opacity: 0.8;
}
.cta-area__image {
  width: 100%;
}

.site-footer {
  padding: 0px 16px 34px;
  background: #000;
  color: #fff;
  font-size: 1.0rem;
  text-align: center;
}

	
@media only screen and (max-width: 767px) {
  .site-footer {
    padding: 8px 16px px;
  }
}
  
.sns_area {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2.5rem 0;

  @media screen and (min-width : 767px){
    .sns_icon {
        max-height: 5rem;
        margin: auto 1.5rem;
    }
  }

  @media screen and (max-width : 766px) {
    .sns_icon {
      max-height: 3.5rem;
      margin: auto 1.5rem;
    }
  }

  .sns_icon:hover {
    opacity: 40%;
  }
}
