@charset "UTF-8";
/* ofi */
/*	flex
---------------------------------------------------*/

/* CSS Document */
/*-----------　色設定　------------------------------------------------*/
:root {
  --main_c: #0cc0df;
  --sub_c: #74e1f4;
  --point_c: #0cc0df;
  --txt_c: #1c1c1c;
  --link_c: #0cc0df;
}

/*--------------------------------------------------------------------/
loader 色変更
/-------------------------------------------------------------------*/
@-webkit-keyframes f_fadeG {
  0% {
    background-color: #0cc0df;
  }
  100% {
    background-color: #fff;
  }
}
@keyframes f_fadeG {
  0% {
    background-color: #0cc0df;
  }
  100% {
    background-color: #fff;
  }
}

/*--------------------------------------------------------------------/
body
/--------------------------------------------------------------------*/
body {
  font-size: 14px;
  font-size: 1.4rem;
  color: #1c1c1c;
}
html {
    scroll-padding-top: 80px;
}

/*　ドラッグした際の色を変える設定
/* selection
----------------------------------------------------------------*/
body *::-moz-selection {
  background: #0cc0df;
  color: #fff;
}
body *::selection {
  background: #0cc0df;
  color: #fff;
}

/*Firefoxに対応*/
body *::-moz-selection {
  background: #0cc0df;
  color: #fff;
}

/*　リンクの色設定
/* a
----------------------------------------------------------------*/
a {
  color: #0cc0df;
}

a:hover {
  color: #3f96cf;
}

/* 共通ボタンの色変更
----------------------------------------------------------------*/
.btn--main {
  border-color: #0cc0df;
  background-color: #0cc0df;
  color: #fff;
}

.btn--main:hover {
  border-color: #74e1f4;
  background-color: #74e1f4;
  color: #1c1c1c;
}

.btn--arrow {
  border-color: #0cc0df;
  color: #fff;
}

.btn--arrow:hover {
  border-color: #74e1f4;
  background-color: #74e1f4;
  color: #1c1c1c;
}
.top-cont02 .btn--main, 
.top-cont02 .btn--main:hover {
  border-radius: 10px;
}
.works-list .btn--arrow {
  border-color: #fff;
  background-color: #fff;
  color: #1c1c1c;
  border-radius: 10px;
}

.works-list a:hover .btn--arrow {
  border-color: #74e1f4;
  background-color: #74e1f4;
  color: #1c1c1c;
}
.gallery-img {
  background: #333;
}



/*◆◆◆◆◆◆◆◆◆◆◆◆◆　メニューの形を変える　◆◆◆◆◆◆◆◆◆◆◆◆◆*/


.top-cont01 .btn--main {
  border-color: #0cc0df;
  background-color: #0cc0df;
  color: #fff;
  border-radius: 10px;
}
.top-cont01 .btn--main:hover {
  border-color: #74e1f4;
  background-color: #74e1f4;
  color: #1c1c1c;
}



/* 共通タイトル
----------------------------------------------------------------*/
h3.normal,
h3.blog__tit,
h3.privacy__tit {
  font-size: calc(1.6rem + 4 * (100vw - 320px) / 680);
}

h3.blog__tit {
  position: relative;
  margin-bottom: 32px;
  margin-bottom: 2rem;
  padding-bottom: 24px;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #ccc;
}

h3.blog__tit:before {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 96px;
  width: 6rem;
  height: 1px;
  background: #0cc0df;
  content: "";
}

h3.privacy__tit {
  margin-bottom: 16px;
  margin-bottom: 1rem;
}

h3.company__tit {
  margin-bottom: 32px;
  margin-bottom: 2rem;
  padding-bottom: 16px;
  padding-bottom: 1rem;
  border-bottom: 1px solid #ddd;
  font-size: calc(1.6rem + 4 * (100vw - 320px) / 680);
}

h3.table__tit {
  padding: 12px 2%;
  padding: 0.75rem 2%;
  background: #eee;
  font-size: calc(1.6rem + 4 * (100vw - 320px) / 680);
  text-align: center;
}

/*　ヘッダーとメニューの背景とロゴの大きさを設定
/* header
----------------------------------------------------------------*/
.js-fixed {
  background: rgba(255, 255, 255, 0.8);
}

.header__logo img {
  width: 100%;
  transition: 0.3s ease all;
}

.header__logo a {
  display: block;
  position: relative;
}
.header__logo a.h1_logo_txt {
  display: block;
  margin: 0;
  padding: 0;
  width: 240px;
  height: auto;
  color: #000;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
}
.header__logo a.h1_logo_txt:hover {
  text-decoration: none;
}
.header__logo a.h1_logo_txt span.txt01 {
  display: inline-block;
  font-size: 8px;
  font-size: .8rem;
}
.header__logo a.h1_logo_txt span.txt02 {
  display: inline-block;
  font-size: 24px;
  font-size: 2.4rem;
}
.header__logo a.h1_logo_txt span.txt03 {
  display: inline-block;
  font-size: 12px;
  font-size: 1.2rem;
}

@media screen and (max-width: 768px) {
  /*====================================================================/
	/*------------------スマホのみスタイル----------------
	/====================================================================*/
	
.header__logo a.h1_logo_txt {
  width: 160px;
}
  .header__logo a.h1_logo_txt span.txt01 {
    display: inline-block;
    font-size: 6px;
    font-size: .6rem;
    white-space: nowrap;
  }
  .header__logo a.h1_logo_txt span.txt02 {
    display: inline-block;
    font-size: 16px;
    font-size: 1.6rem;
    white-space: nowrap;
  }
  .header__logo a.h1_logo_txt span.txt03 {
    display: inline-block;
    font-size: 10px;
    font-size: 1rem;
    white-space: nowrap;
  }
}
/* global_nav
----------------------------------------------------------------*/
/* グローバルのテキストの色を変更 */
/* ドロワーメニューの色を変更 */
.drawer-menu li a:hover {
  background-color: transparent;
  color: #0cc0df;
}

/* sp tel  */
.global__phone {
  border: none;
  background: #0cc0df;
  color: #fff;
  transition: 0.3s ease all;
}

.global__phone:hover {
  border: solid 1px #0cc0df;
  background: #fff;
  color: #0cc0df;
}

.global__phone:hover a {
  color: #0cc0df;
}

.global__phone a {
  display: block;
  color: #fff;
}

.color-header .global__items > li a {
  color: #1c1c1c;
}

.color-header .global__items > li a:hover {
  color: #536b0f;
}

.color-header .global__items > li a:hover:before {
  background-color: #536b0f;
}

.fixed .global__items > li a {
  color: #1c1c1c;
}

.fixed .global__items > li a:hover {
  color: #536b0f;
}

.fixed .global__items > li a:hover:before {
  background-color: #536b0f;
}

/* breadcrumb
/--------------------------------------------------------------------*/
.breadcrumb__list a:hover {
  color: #0cc0df;
}

/* main
/--------------------------------------------------------------------*/
/* 背景画像
----------------------------------------------------------------*/
.first {
  position: relative;
  overflow: hidden;
}

.top-cont05 .tel-link a {
  color: #1c1c1c;
}

/* first */
/* scroll */
.scroll__wrap {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.scrolldown {
  font-family: "Oswald", sans-serif !important;
  font-weight: 400;
}

.scrolldown a {
  display: inline-block;
  z-index: 2;
  position: absolute;
  bottom: 20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  color: #fff;
  font-size: 1.42em;
  text-decoration: none !important;
  text-decoration: none;
  transition: 0.3s ease all;
}

.scrolldown a:hover {
  color: #0cc0df;
}

.scrolldown a:hover span {
  border-color: #0cc0df;
  transition: 0.3s ease all;
}

.scrolldown a:hover span:before {
  background-color: #0cc0df;
}

/* コンテンツのボタン使用時 */
.top-cont01 .btnselect .c-box__txt-01,
.top-cont02 .btnselect .mCSB_container {
  position: relative;
  padding-bottom: 96px;
  padding-bottom: 6rem;
}

/* コンテンツタイトル */
.cont__tit span {
  font-family: "Oswald", sans-serif !important;
  font-weight: 300;
}
#page-works .cont__tit {
  color: #1c1c1c;
}
.top-cont02 {
  background: #fff;
  overflow: hidden;
}

.c-box__txt-01 .c-btn,
.c-box__txt-02 .c-btn {
  position: absolute;
  bottom: 24px;
  bottom: 1.5rem;
  left: 24px;
  left: 1.5rem;
  width: calc(100% - 3rem);
}

/* c-box */
.c-box h4 {
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
}

.c-box:not(:last-child) {
  margin-bottom: 32px;
  margin-bottom: 2rem;
}

.c-box figure {
  margin-bottom: 16px;
  margin-bottom: 1rem;
}

.c-box figcaption {
  padding: 7px 0 0;
  font-size: 22.4px;
  font-size: 1.4rem;
  text-align: center;
}

.c-box p {
  padding-bottom: 10px;
  padding-bottom: 16px;
  padding-bottom: 1rem;
  line-height: 1.5;
  text-align: left;
}

/* コンテンツのボタン使用時 */
.top-cont01 .btnselect .c-box__txt-01,
.top-cont02 .btnselect .mCSB_container {
  position: relative;
  padding-bottom: 96px;
  padding-bottom: 6rem;
}

.company-cont {
  padding: 32px 4%;
  padding: 2rem 4%;
}
.company-cont02 {
  padding: 32px 4%;
  padding: 2rem 4% 20rem;
}

/* feed */
.top-cont04__half,
.top-cont04__news {
  background-color: #0cc0df;
}

.feed-box--news {
  background: #0cc0df;
}

.feed-box--blog {
  background: #3f96cf;
}

/* blog-category back-color */
[class*="feed__icon"] {
  background-color: #666;
}

/* works-category back-color */
[class*="tax__icon"] {
  background-color: #666;
}

/* お問い合わせコンテンツ */
.top-cont05 .btn__wrap {
  max-width: 420px;
}

.contact__tel, 
.contact__tel02 {
  font-family: "Oswald", sans-serif !important;
  font-weight: 400;
}

/* footer */
.footer__copy {
  color: #fff;
  background: #0cc0df;
}


/* トップへ戻るボタンの色を変更
--------------------------------------------------------------------*/
#pagetop a {
  border-bottom-color: #0cc0df;
}

#pagetop a:hover {
  border-bottom-color: #74e1f4;
}



/* 実績紹介ページの背景画像
--------------------------------------------------------------------*/
.works {
  position: relative;
  width: 100%;
  background: transparent;
}

.works:before, 
#page-works:before {
  z-index: -1;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
}

#works .btn__wrap {
  max-width: 400px;
  margin-top: 48px;
  margin-top: 3rem;
  margin-right: auto;
  margin-left: auto;
}

.works-list a {
  transition: 0.3s ease all;
}

.works-list a:hover {
  background: rgba(106, 90, 205, 0.8);
}

.category-list a {
  transition: 0.3s ease all;
}

.category-list a:hover {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
  opacity: 0.8;
}

.category-list__black {
  background: #000;
}





[class="sub-btn"] {
  border-color: #0cc0df;
  background: #0cc0df;
  color: #fff;
}

[class="sub-btn"]:hover {
  border: 1px solid #3f96cf;
  background: #3f96cf;
  color: #fff;
}

input[class="back-btn"] {
  border-color: #0cc0df;
  background: #fff;
  color: #0cc0df;
}

input[class="back-btn"]:hover {
  border: 1px solid #3f96cf;
  background: #3f96cf;
  color: #fff;
}

/* Not Foundページの背景画像
--------------------------------------------------------------------*/
.not-found {
  position: relative;
  width: 100%;
  background: transparent;
}

.not-found:before {
  z-index: -1;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/bg_01_pc.jpg) 50% top no-repeat;
  background-size: cover;
  content: "";
}

.not-found h3 {
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
  font-size: calc(1.6rem + 2 * (100vw - 320px) / 680);
}

/* スライダーの矢印の色
--------------------------------------------------------------------*/
.swiper-button-prev .icon-left_arrow2,
.swiper-button-next .icon-right_arrow2 {
  color: #eee;
  font-size: 48px;
  font-size: 3rem;
  transition: 0.3s ease all;
}

.swiper-button-prev:hover .icon-left_arrow2,
.swiper-button-next:hover .icon-right_arrow2 {
  color: #3f96cf;
}

/* ブログ　色変更
--------------------------------------------------------------------*/
.c-page_next_prev a:hover {
  color: #3f96cf;
}

.widget-blog-aside:not(:last-of-type) {
  margin-bottom: 48px;
  margin-bottom: 3rem;
}

.widget-blog-aside a {
  color: #0cc0df;
  text-decoration: underline;
}

.widget-blog-aside a:hover {
  color: #3f96cf;
  text-decoration: none;
}

.widget-blog-aside__tit {
  margin-bottom: 16px;
  margin-bottom: 1rem;
  padding: 8px 16px;
  padding: 0.5rem 1rem;
  background: #eee;
  color: #1c1c1c;
}

.widget-blog-aside li a {
  display: block;
  position: relative;
  padding-left: 32px;
  padding-left: 2rem;
}

.widget-blog-aside li a:before {
  position: absolute;
  top: 2px;
  left: 0;
  color: #ccc;
  font-size: 0.7em;
  content: "●";
}

.widget-blog-aside li a:hover {
  color: #3f96cf;
}

#wp-calendar caption {
  color: #1c1c1c;
}

#wp-calendar td a {
  color: #0cc0df;
}

#wp-calendar td a:hover {
  color: #3f96cf;
}

/* pdf ボタン　*/
.blog-pdf {
  margin-top: 24px;
  margin-top: 1.5rem;
}

.blog-pdf a {
  display: block;
  position: relative;
  padding: 12.8px;
  padding: 0.8rem;
  padding-left: 76.8px;
  padding-left: 4.8rem;
  border: 1px solid #ccc;
  background: #eee;
  color: #1c1c1c;
  text-decoration: none !important;
  transition: 0.3s ease all;
}

.blog-pdf a:after {
  position: absolute;
  top: 50%;
  left: 24px;
  left: 1.5rem;
  width: 22px;
  height: 22px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: url(../img/pdf.svg) no-repeat;
  content: "";
}

.blog-pdf a:hover {
  border-color: #425c93;
  background: #425c93;
  color: #fff;
}

.pdf-link {
  margin-top: 20px;
  margin-top: 1.25rem;
  line-height: 1;
}

.pdf-link a {
  color: #1c1c1c;
}

.pdf-link a:hover p {
  text-decoration: none !important;
}

.pdf-link figure {
  display: inline-block;
  max-width: 158px;
  margin-right: 8px;
  margin-right: 0.5rem;
  vertical-align: middle;
}

.pdf-link p {
  display: inline-block;
  text-decoration: underline;
  vertical-align: middle;
}

@media print, screen and (min-width: 376px) {
  /*====================================================================/
	/*------------------iPhone 以上----------------
	/====================================================================*/
  html {
    width: 100%;
  }
}

@media print, screen and (min-width: 561px) {
  /*====================================================================/
	/*------------------タブレットスタイル----------------
	/====================================================================*/
  html {
    width: 100%;
  }
}

@media print, screen and (min-width: 977px) {
  /*====================================================================/
	/*-------------------小さいPCスタイル----------------
	/====================================================================*/
  html {
    width: 100%;
  }
  .global__items > li:not(:last-of-type) {
    margin-right: 3rem;
  }
  .global__items > li a {
    padding: 0.8rem 0;
    color: #1c1c1c;
    font-size: 13px;
    font-size: 1.3rem;
  }
  .global__items > li a:before {
    height: 1px;
    background: #0cc0df;
  }
  .global__items > li a:hover {
    color: #0cc0df;
  }
  .top-cont04__half {
    background: linear-gradient(90deg, #0CC0DF 49.99%, #3f96cf 49.99%);
  }
  .top-cont04__news {
    background: #0cc0df;
  }
}

@media print, screen and (min-width: 1257px) {
  /*====================================================================/
	/*-------------------PCスタイル-------------------
	/====================================================================*/
  html {
    width: 100%;
  }
  h3.normal,
  h3.blog__tit,
  h3.privacy__tit {
    font-size: 1.8rem;
  }
  h3.company__tit {
    font-size: 2rem;
  }
  h3.table__tit {
    font-size: 2rem;
  }
  .scrolldown a {
    padding-top: 60px;
  }
  .scrolldown a span {
    box-sizing: border-box;
    position: absolute;
    top: 0;
    left: 50%;
    width: 30px;
    height: 50px;
    margin-left: -15px;
    border: 2px solid #fff;
    border-radius: 50px;
  }
  .scrolldown a span:before {
    position: absolute;
    top: 10px;
    left: 50%;
    width: 6px;
    height: 6px;
    margin-left: -3px;
    border-radius: 100%;
    background-color: #fff;
    -webkit-animation: ball 2s infinite;
    animation: ball 2s infinite;
    content: "";
  }
  .not-found h3 {
    font-size: 1.8rem;
  }
}

@media print, screen and (min-width: 1920px) {
  /*====================================================================/
	/*-------------------full PCスタイル-------------------
	/====================================================================*/
  html {
    width: 100%;
  }
}

@media screen and (max-width: 1256px) {
  /*====================================================================/
	/*------------------PC以下---------
	/====================================================================*/
  html {
    width: 100%;
  }
  .scrolldown a {
    padding-top: 60px;
  }
  .scrolldown a span {
    position: absolute;
    top: 0;
    left: 50%;
    width: 24px;
    height: 24px;
    margin-left: -12px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    border-bottom: 1px solid #fff;
    border-left: 1px solid #fff;
    -webkit-animation: arrow 1.5s infinite;
    animation: arrow 1.5s infinite;
  }
}

@media screen and (max-width: 976px) {
  /*====================================================================/
	/*------------------スマホタブレット共通スタイル---------
	/====================================================================*/
  html {
    width: 100%;
  }
  .header__logo {
    min-width: 28%;
    max-width: 28%;
  }
  .header__logo img {
    width: 100%;
    max-width: 200px;
  }
  .global__items > li a {
    color: #1c1c1c;
  }
  .global__items > li a:hover {
    color: #0cc0df;
  }
  .color-header .drawer-hamburger {
    color: #fff;
  }
  header.fixed .drawer-hamburger {
    color: header.fixed .drawer-hamburger txt_c;
  }
  .drawer-hamburger-icon,
  .drawer-hamburger-icon:before,
  .drawer-hamburger-icon:after {
    background-color: #1c1c1c;
  }
  .color-header .drawer-hamburger-icon,
  .color-header .drawer-hamburger-icon:before,
  .color-header .drawer-hamburger-icon:after {
    background-color: #fff;
  }
  header.fixed .drawer-hamburger-icon,
  header.fixed .drawer-hamburger-icon:before,
  header.fixed .drawer-hamburger-icon:after {
    background-color: #1c1c1c;
  }
}

@media screen and (max-width: 560px) {
  /*====================================================================/
	/*------------------スマホのみスタイル----------------
	/====================================================================*/
  html {
    width: 100%;
  }
  .footer__logo {
    width: 80%;
  }
  .top-cont05 {
    padding: 100px 0;
    background: url(../img/bg_03_sp.jpg) no-repeat bottom center;
    background-size: cover;
  }
}

@media screen and (max-width: 375px) {
  /*====================================================================/
	/*------------------iPhone 以下----------------
	/====================================================================*/
  html {
    width: 100%;
  }
}



/*========= 映像用 ===============*/

.main-video-wrap {
  position: relative;
  width: 100%;
  background: #000;
  text-align: center;
  overflow: hidden;
}

/* 動画を全表示（実寸・切れなし） */
.main-video {
  width: 100%;
  height: auto; /* 高さはアスペクト比に従う */
  object-fit: contain; /* 念のため */
  background: #000;
  display: block;
  margin: 0 auto;
}

/* PC/SP切り替え */
.pc-video {
  display: block;
}
.sp-video {
  display: none;
}
@media screen and (max-width: 768px) {
  .pc-video {
    display: none;
  }
  .sp-video {
    display: block;
  }
}

/* 音声ボタン */
.sound-toggle {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  border-radius: 30px;
  padding: 8px 16px;
  cursor: pointer;
  font-size: 16px;
  user-select: none;
  transition: background 0.3s;
}
.sound-toggle:hover {
  background: rgba(0, 0, 0, 0.8);
}


/*========= PCのみSPのみ ===============*/
.pc_only {
  display: none;
}
.sp_only {
  display: inline;
}

  @media print, screen and (min-width: 561px) {
    .sp_only {
      display: none;
    }
    .pc_only {
      display: inline;
    }
  }



  @media print, screen and (min-width: 561px) {
.nowrap {
  white-space: nowrap;
}
}

h2.cont__tit span {
  display: none;
}

.center {
  text-align: center;
}
.right {
  text-align: right;
}
.common__table table {
  background: #fff;
}
.bule01 {
  color: #2c66ff;
}
.purple01 {
  color: #9e5aff;
}
.pink01 {
  color: #cf0089;
}

.pb30 {
  padding-bottom: 30px;
}
.pb40 {
  padding-bottom: 40px;
}


/* map  */
.map iframe {
  height: 200px;
  vertical-align: bottom;
}
@media print, screen and (min-width: 977px) {
  /*====================================================================/
	/*-------------------小さいPCスタイル----------------
	/====================================================================*/

  .map iframe {
    height: 400px;
  }
}
.fs_18 {
  font-size: 18px;
  font-size: 1.8rem;
}



/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/



/* TOPページ共通
--------------------------------------------------------------------*/

.top-cont02 .cont__tit {
  margin-bottom: 30px;
  margin-bottom: 3rem;
  font-size: calc(1.8rem + 18 * (100vw - 320px) / 680);
  font-weight: 400;
  letter-spacing: 3px;
  text-align: center;
  color: #1c1c1c;
}
.top-cont02 .frame {
  display: block;
  height: 100%;
  padding: 15px;
  padding: 1.5rem;
  border-radius: 20px;
  background: rgba(82, 113, 255, 0.8);
  color: #1c1c1c;
  text-align: left;
  text-decoration: none !important;
}
.top-cont02 .c-box__tit {
  padding-top: 5px;
}
.top-cont02 .btn--arrow:after {
  top: 10px;
  top: 1rem;
}

/*.top-about, top-grouphome*/
.top-about, 
.top-grouphome, 
.top-faq {
  position: relative;
  z-index: 1;
  margin: 0 auto;
}
.top-cont03 .cont03_company, 
.top-cont05 .cont05_company {
  padding: 0 0 50px;
  text-align: center;
}
.top-cont03 .cont03_company h3.h3_cont03 {
  font-size: 20px;
  font-size: 2rem;
}


/* フッター共通
--------------------------------------------------------------------*/
p.f_tt02 {
  margin-top: 20px;
  color: #004aad;
  font-weight: bold;
  text-align: center;
}
p.f_txt_pink {
  margin: 20px 0;
  color: #cf0089;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
}
p.f_link_url {
  text-align: center;
}

/* TOPページ個別背景
--------------------------------------------------------------------*/
.top-about {
  background: url(../img/bg_top-about_pc.jpg) no-repeat center bottom;
  background-size: cover;
}
.top-grouphome {
  padding: 0;
  background: #fef9f0;
}
.top-faq {
  padding: 0;
  background: #e7dfd8;
}



@media screen and (max-width: 560px) {
  /*====================================================================/
	/*------------------スマホのみスタイル----------------
	/====================================================================*/
  
  .top-about {
    background: url(../img/bg_top-about_sp.jpg) no-repeat center bottom;
    background-size: cover;
  }
}



/*-- ******************************　top-about　****************************** --*/

.top-about .h2_wrap .h2_wrap_txt {
  margin-bottom: 60px;
}
.top-about .h2_wrap .h2_wrap_txt h2.h2_gr {
  margin-bottom: 30px;
  font-size: 26px;
  font-size: 2.6rem;
  font-weight: bold;
}
.top-about .h2_wrap .h2_wrap_txt p.txt_name {
  text-align: right;
}
.top-about .slide-about div {
  margin: 0 5px;
}
@media screen and (max-width: 560px) {
  /*====================================================================/
	/*------------------スマホのみスタイル----------------
	/====================================================================*/

  .top-about .h2_wrap .h2_wrap_txt h2.h2_gr {
    font-size: 20px;
    font-size: 2rem;
  }
  .top-about .slide-about div {
    margin: 0 auto;
  }
}

/*-- ******************************　//top-about　****************************** --*/



/*-- ******************************　top-grouphome　****************************** --*/

.top-grouphome .h2_wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  margin: 0 auto 120px;
  padding: 0;
  width: 100%;
  max-width: 800px;
  height: auto;
}
.top-grouphome .h2_wrap .h2_img_wrap {
  margin: 0 5px 0 0;
  width: 9.583333333333334vw;
  height: auto;
}
.top-grouphome .h2_wrap .h2_txt_wrap {
  margin: 0 auto;
  width: 90.41666666666667vw;
  height: auto;
  text-align: center;
}
.top-grouphome .h2_wrap .h2_txt_wrap h2.h2_gh {
  margin: 0 0 10px;
  padding: 0 0 10px;
  font-size: 28px;
  font-size: 2.8rem;
  font-weight: bold;
  color: #ffa301;
  border-bottom: 2px solid #1c1c1c;
}
.top-grouphome .h2_wrap .h2_txt_wrap p.h2_sub {
  font-size: 20px;
  font-size: 2rem;
}
.top-grouphome img.img_top_ac01 {
  margin-bottom: 60px;
}
.top-grouphome .bg_gh02 {
  margin: 0;
  padding: 40px 20px;
  width: 100%;
  max-width: 550px;
  height: auto;
  background: url(../img/bg_top-gh.png) no-repeat center center;
  background-size: 200px auto;
}
.top-grouphome .bg_gh02 ul.cp_list01 {
  margin: 0 auto 60px;
  padding: 0;
}
.top-grouphome .bg_gh02 ul.cp_list01 li {
  margin: 0 0 20px;
  padding: 0 0 0 36px;
  width: 100%;
  background: url(../img/ico_check_yellow.png) no-repeat top left;
  background-size: 25px auto;
}
.top-grouphome .bg_gh02 p.gh_02_txt {
  margin-bottom: 20px;
  font-size: 12px;
  font-size: 1.2rem;
}
@media screen and (max-width: 560px) {
  /*====================================================================/
	/*------------------スマホのみスタイル----------------
	/====================================================================*/
  .top-grouphome .h2_wrap {
    display: block;
    margin: 0 0 30px;
    max-width: none;
  }
  .top-grouphome .h2_wrap .h2_img_wrap {
    margin: 0 auto 10px;
    width: 115px;
    text-align: center;
  }
  .top-grouphome .h2_wrap .h2_txt_wrap {
    margin: 0;
    width: 100%;
    text-align: center;
  }
  .top-grouphome .h2_wrap .h2_txt_wrap h2.h2_gh {
    margin: 0 0 10px;
    padding: 0 0 10px;
    font-size: 20px;
    font-size: 2rem;
  }
  .top-grouphome .h2_wrap .h2_txt_wrap p.h2_sub {
    font-size: 14px;
    font-size: 1.4rem;
  }
  .top-grouphome .bg_gh02 {
    margin: 0 auto;
    width: 90%;
    max-width: unset;
  }xt-align: center;
}



/*-- ******************************　top-cont05　****************************** --*/
.top-cont05 .tel_wrap {
  margin: 0 auto;
  padding: 30px 10px;
  width: 100%;
  max-width: 600px;
  height: auto;
  background-color: rgba(82,113,255,0.3);
}
.top-cont05 .tel_wrap .contact__tel, 
.top-cont05 .tel_wrap .contact__tel span.tel-link, 
.top-cont05 .tel_wrap p.txt-c {
  color: #fff;
}
/*-- ******************************　//top-cont05　****************************** --*/


/* 下位ページ - page-program
--------------------------------------------------------------------*/

.program {
  margin: 0 auto;
  padding: 0;
  width: 100%;
  height: auto;
}
.program .h2_wrap {
  margin: 0 auto;
  padding: 120px 20px;
  width: 100%;
  height: auto;
  background: url(../img/bg_program_pc.jpg) no-repeat top right;
  background-size: cover;
}
.program h2.page_ttl {
  margin: 40px 0 20px;
  padding: 50px 0 0;
  font-size: 37px;
  font-size: 3.7rem;
  font-weight: bold;
  text-align: left;
  text-shadow: 1px 1px #ccc;
}
.program p.h2_txt {
  margin: 0 0 20px;
  text-align: left;
  text-shadow: 1px 1px #ccc;
}
.program p.h2_txt02 {
  text-align: right;
  text-shadow: 1px 1px #ccc;
}


@media screen and (max-width: 560px) {
  /*====================================================================/
	/*------------------スマホのみスタイル----------------
	/====================================================================*/
  .program {
    background: url(../img/bg_program__sp.jpg) no-repeat top center;
    background-size: cover;
  }
  .program h2.page_ttl {
    font-size: 20px;
    font-size: 2rem;
    text-align: center;
  }
}



.program .days {
  margin: 0 auto;
  padding: 120px 0;
  width: 100%;
  height: auto;
  background: #bcebe9;
}
.program .gh-program {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 10px;
  grid-row-gap: 40px;
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: 1000px;
}
.program .gh-program .gh-program_row01 {
  grid-area: 1 / 1 / 3 / 2;
}
.program .gh-program .gh-program_row02 {
  grid-area: 1 / 2 / 2 / 3;
}
.program .gh-program .gh-program_row03 {
  grid-area: 1 / 3 / 2 / 4;
}
.program .gh-program .gh-program_row04 {
  grid-area: 1 / 4 / 2 / 5;
}
.program .gh-program .gh-program_row05 {
  grid-area: 2 / 2 / 3 / 3;
}
.program .gh-program .gh-program_row06 {
  grid-area: 2 / 3 / 3 / 4;
}
.program .gh-program .gh-program_row07 {
  grid-area: 2 / 4 / 3 / 5;
}
.program .gh-program .gh-program_row01, 
.program .gh-program .gh-program_row02, 
.program .gh-program .gh-program_row03, 
.program .gh-program .gh-program_row04, 
.program .gh-program .gh-program_row05, 
.program .gh-program .gh-program_row06, 
.program .gh-program .gh-program_row07 {
  position: relative;
  width: 100%;
}
.program .gh-program .gh-program_row02, 
.program .gh-program .gh-program_row03, 
.program .gh-program .gh-program_row04, 
.program .gh-program .gh-program_row05, 
.program .gh-program .gh-program_row06, 
.program .gh-program .gh-program_row07 {
  padding: 0 10px;
  height: 400ppx;
  background: #fff;
  border-radius: 20px;
}
.program .gh-program .img_gh-program_point {
  position: relative;
  top: -30px;
  width: 56px;
  height: 56px;
  z-index: 2;
}
.program .gh-program .gh-program_wrap {
  position: relative;
  top: -30px;
  margin: 0 auto;
  text-align: center;
  z-index: 1;
}
.program .gh-program .gh-program_row01 h2.gh-program_ttl {
  position: relative;
  margin: 0 0 30px;
  padding: 20px 0 0 20px;
  width: 100%;
  max-width: 270px;
  height: 100%;
  max-height: 210px;
  font-size: 27px;
  font-size: 2.7rem;
  font-weight: bold;
  text-align: center;
}
.program .gh-program .gh-program_row01 h2.gh-program_ttl {
  background: url(../img/bg_gh_program_ttl.png) no-repeat top left;
  background-size: 100% auto;
}
.program .gh-program .gh-program_row01 h2.gh-program_ttl span {
  font-size: 20px;
  font-size: 2rem;
}
.program .gh-program h3.h3_gh-program03 {
  margin: 10px auto;
  font-size: 26px;
  font-size: 2.6rem;
  font-weight: bold;
  text-align: center;
}
.program .gh-program h3.h3_gh-program0302 {
  margin: 10px auto;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
}
.program .gh-program p.p_gh-program03_txt {
  font-size: 12px;
  font-size: 1.2rem;
  text-align: left;
}
.program .gh-program .gh-program_row01 .gh-program_wrap01 {
  padding: 0 10px;
  background: #fff;
  border-radius: 20px;
}
@media screen and (max-width: 768px) {
  /*====================================================================/
	/*------------------タブレットスタイル----------------
	/====================================================================*/

  .program .gh-program {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 1fr);
    grid-column-gap: 10px;
    grid-row-gap: 30px;
    position: relative;
    height: 2200px;
  }
  .program .gh-program .gh-program_row01 h2.gh-program_ttl {
    margin: 0 auto 60px;
    width: 270px;
    height: 210px;
  }
  .program .gh-program .gh-program_row01 {
    grid-area: 1 / 1 / 2 / 3;
  }
  .program .gh-program .gh-program_row02 {
    grid-area: 2 / 1 / 3 / 2;
  }
  .program .gh-program .gh-program_row03 {
    grid-area: 2 / 2 / 3 / 3;
  }
  .program .gh-program .gh-program_row04 {
    grid-area: 3 / 1 / 4 / 2;
  }
  .program .gh-program .gh-program_row05 {
    grid-area: 3 / 2 / 4 / 3;
  }
  .program .gh-program .gh-program_row06 {
    grid-area: 4 / 1 / 5 / 2;
  }
  .program .gh-program .gh-program_row07 {
    grid-area: 4 / 2 / 5 / 3;
  }
  .program .gh-program .gh-program_row02, 
  .program .gh-program .gh-program_row03, 
  .program .gh-program .gh-program_row04, 
  .program .gh-program .gh-program_row05, 
  .program .gh-program .gh-program_row06, 
  .program .gh-program .gh-program_row07 {
    margin: 0 auto 60px;
    max-width: 300px;
    height: 400px;
  }
  .program .gh-program .gh-program_row01 .gh-program_wrap01 {
    margin: 0 auto 60px;
    max-width: 300px;
  }
}
@media screen and (max-width: 560px) {
  /*====================================================================/
	/*------------------スマホのみスタイル----------------
	/====================================================================*/

  .program .gh-program {
    display: inline-block;
    width: 100%;
  }
  .program .gh-program .gh-program_row01 .gh-program_wrap01 {
    margin: 0 auto 60px;
    width: 300px;
  }
  .program .gh-program .gh-program_row02, 
  .program .gh-program .gh-program_row03, 
  .program .gh-program .gh-program_row04, 
  .program .gh-program .gh-program_row05, 
  .program .gh-program .gh-program_row06, 
  .program .gh-program .gh-program_row07 {
    margin: 0 auto 60px;
    width: 300px;
    height: auto;
  }
}


/*-- ******************************　//top-for_families　****************************** --*/

.family .h2_wrap {
  padding: 200px 5%;
  background: url(../img/bg_family_pc.jpg) no-repeat center center;
  background-size: cover;
}
.recruit .h2_wrap {
  padding: 200px 5%;
  background: url(../img/bg_recruit_pc.jpg) no-repeat center center;
  background-size: cover;
}

@media screen and (max-width: 560px) {
  /*====================================================================/
	/*------------------スマホのみスタイル----------------
	/====================================================================*/
  .family .h2_wrap {
    background: url(../img/bg_family_sp.jpg) no-repeat center center;
    background-size: cover;
  }
  .recruit .h2_wrap {
    background: url(../img/bg_recruit_sp.jpg) no-repeat center center;
    background-size: cover;
  }
}

.family .top-for_families {
  margin: 0 auto;
  padding: 120px 0;
  width: 100%;
  height: auto;
  background: url(../img/bg_family02_pc.jpg) no-repeat center center;
  background-size: cover;
}
.top-for_families .l-cont {
  padding: 0 5%;
  background-color: rgba(255, 255, 255, 0.5);
}
.top-for_families h2.h2_ff {
  margin: 0 auto 30px;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
}
.top-for_families h3.h3_ff02 {
  margin: 0 auto 30px;
  color: #cf0089;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
}

.top-for_families p.ff_txt01 {
  margin: 0 auto 20px;
  font-size: 17px;
  font-size: 1.7rem;
}
.top-for_families h3.h3_ff {
  color: #8c52ff;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
}
.top-for_families p.ff_txt02 {
  margin: 0 auto 20px;
  font-size: 14px;
  font-size: 1.4rem;
}
.top-for_families p.ff_txt03 {
  margin: 0 auto 20px;
  font-size: 14px;
  font-size: 1.4rem;
  text-align: center;
}


@media screen and (max-width: 560px) {
  /*====================================================================/
	/*------------------スマホのみスタイル----------------
	/====================================================================*/

.family .top-for_families {
  background: url(../img/bg_family02_sp.jpg) no-repeat center center;
  background-size: cover;
}
  .top-for_families .l-cont {
    padding: 0 10%;
  }
  .top-for_families p.ff_txt03 {
    text-align: left;
  }
}


/*-- ******************************　//top-for_families　****************************** --*/


.family .family-section02 {
  margin: 120px auto;
  padding: 0;
  width: 100%;
  height: auto;
  text-align: center;
}
.family .family-section02 h2.h2_fs02 {
  margin: 0 0 20px;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
}
.family .family-section02 p.txt_fs02-01 {
  color: #2baae1;
}
.recruit .recruit-section01 {
  margin:0 auto 120px;
  padding: 0;
  width: 100%;
  height: auto;
  text-align: center;
}
.recruit .recruit-section01 h2.h2_recruit02 {
  margin: 0 0 20px;
  color: #f79726;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
}
.recruit .recruit-section01 p.txt_recruit02 {
  color: #f79726;
}

/* 下位ページ共通
--------------------------------------------------------------------*/


/* 下位ページ問い合わせ */
.cont__wrap.white {
  color: #fff;
}
.top-cont05.page {
  background: url(../img/bg_03_pc.jpg) no-repeat center center;
  background-size: cover;
}
.top-cont05.page .contact__tel {
  margin-bottom: 32px;
  margin-bottom: 2rem;
  font-size: calc(1.25rem + 16 * (100vw - 320px) / 680);
  text-align: center;
}
.top-cont05.page .contact__tel a {
  color: #1c1c1c !important;
  text-decoration: none !important;
}

.top-cont05.page .contact__tel .tel-link a {
  vertical-align: bottom;
}

.top-cont05.page .contact__tel {
  margin-bottom: 16px;
  margin-bottom: 1rem;
  font-size: 30px;
  font-size: 3.6rem;
  text-align: center;
}

@media screen and (max-width: 560px) {
  /*====================================================================/
	/*------------------スマホのみスタイル----------------
	/====================================================================*/
  .top-cont05.page .black-bg {
    display: none;
  }
  .top-cont05.page {
    padding: 100px 0;
    background: url(../img/bg_03_sp.jpg) no-repeat bottom center;
    background-size: cover;
  }
  .cont__wrap.white {
    color: #1c1c1c;
  }
  .top-cont05.page .contact__tel {
    font-size: 30px;
    font-size: 3rem;
  }
  .top-cont05 .contact__tel a {
    color: #1c1c1c;
  }
}


footer {
  position: relative;
  padding: 0;
}
.footer__copy {
  margin-top: 0;
}

