@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans&family=Noto+Sans+JP:wght@400;500;700;900&display=swap");
/*ヘッダー設定*/
/*pc基本設定*/
/*背景*/
/*ボーダー*/
/*ボタン*/
/*svg(#なしで記述)*/
/*aigis--*/
/*
---
name: アイコンフォント一覧
category:
  - iconfont
---

cssで直接追加する場合は  
```
content: $icon_アイコン名;  
@include iconFont();  
```

```html
<ul class="aigis-glyph js-aigis-hidden">
  <li>
    <div class="f-icon _arrow"></div>
    <div class="name">arrow</div>
    <div class="codepoint">EA01</div>
  </li>
  <li>
    <div class="f-icon _ex"></div>
    <div class="name">ex</div>
    <div class="codepoint">EA02</div>
  </li>
  <li>
    <div class="f-icon _beginner"></div>
    <div class="name">beginner</div>
    <div class="codepoint">EA03</div>
  </li>
  <li>
    <div class="f-icon _voice"></div>
    <div class="name">voice</div>
    <div class="codepoint">EA04</div>
  </li>
</ul>
```

```html 
<span class="f-icon _arrow" aria-hidden="true"></span>
<span class="f-icon _ex" aria-hidden="true"></span>
<span class="f-icon _beginner" aria-hidden="true"></span>
<span class="f-icon _voice" aria-hidden="true"></span>

``` 

*/
/*--aigis*/
@font-face {
  font-family: "icons";
  src: url("fonts/icons.eot");
  src: url("fonts/icons.eot?#iefix") format("eot"), url("fonts/icons.woff") format("woff"), url("fonts/icons.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

.f-icon:before {
  display: inline-block;
  font-family: "icons";
  font-style: inherit;
  font-weight: inherit;
  font-variant: inherit;
  text-transform: none;
  vertical-align: middle;
  height: 1em;
  line-height: 1;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.f-icon._arrow:before {
  content: "\EA01";
}

.f-icon._ex:before {
  content: "\EA02";
}

.f-icon._beginner:before {
  content: "\EA03";
}

.f-icon._voice:before {
  content: "\EA04";
}

body {
  -webkit-text-size-adjust: 100%;
  font-size: 14px;
  background: #ffffff;
  color: #2c2c2c;
  font-family: "Noto Sans JP", "メイリオ", Meiryo, sans-serif;
}

a {
  color: #2c2c2c;
}

a:not(.hvn), a:not(.button) {
  transition: 0.5s;
}

a:not(.hvn):hover, a:not(.button):hover {
  opacity: 0.6;
}

#border_display {
  width: 100%;
  min-width: 1040px;
  height: auto;
  overflow: hidden;
}

@media only screen and (max-width: 768px) {
  #border_display {
    min-width: 768px;
  }
}

body.body .header * {
  transition: none !important;
}

.pagetitle_container {
  width: 100%;
  height: auto;
  padding-top: 160px;
  background-color: rgba(21, 162, 118, 0.1);
}

@media only screen and (max-width: 1040px) {
  .pagetitle_container {
    padding-top: 60px;
    height: auto;
  }
}

.group-h {
  /*===========
  inview
  ===========*/
  /*コンポーネント*/
  /*h2~h4*/
  /*ヘッダー*/
  /*pc*/
  /*ヘッダーアイコンサイズ、ナビメニュー項目数によって適宜調整*/
  /*SP*/
  /*下層ヘッダー（pagetitlte）*/
  /*フッター*/
  /*pc*/
  /*sp*/
  /*コンテンツ*/
  /*section基本設定*/
  /*レイアウト*/
  /*基本設定*/
  /* バナーリンク */
  /* news */
  /* post_single */
  /*single markup style*/
  /*詳細ページページャー*/
  /* archive_pager */
  /*バリデート追加エラーメッセージ*/
  /* プライバシーポリシー */
}

@media only screen and (min-width: 769px) {
  .group-h .u_pc {
    display: block;
  }
}

@media only screen and (max-width: 768px) {
  .group-h .u_pc {
    display: none !important;
  }
}

@media only screen and (min-width: 769px) {
  .group-h .u_sp {
    display: none !important;
  }
}

@media only screen and (max-width: 768px) {
  .group-h .u_sp {
    display: block;
  }
}

.group-h .fadeIn {
  opacity: 0;
  transition: 2s;
}

.group-h .fadeIn.is-show {
  opacity: 1;
}

.group-h .fadeIn_delay01 {
  opacity: 0;
  transition: 2s;
  transition-delay: 0.8s;
}

.group-h .fadeIn_delay01.is-show {
  opacity: 1;
}

.group-h .fadeIn_delay02 {
  opacity: 0;
  transition: 2s;
  transition-delay: 1s;
}

.group-h .fadeIn_delay02.is-show {
  opacity: 1;
}

.group-h .fadeIn_up {
  opacity: 0;
  transform: translate(0, 200px);
  transition: 1s;
}

@media only screen and (max-width: 768px) {
  .group-h .fadeIn_up {
    transform: translate(0, 0);
    opacity: 0;
    transition: 1s;
  }
}

.group-h .fadeIn_up.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

.group-h .fadeIn_left {
  transform: translate(-50%, 0);
  transition: 1s;
}

.group-h .fadeIn_left.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

.group-h .fadeIn_right {
  transform: translate(50%, 0);
  transition: 1s;
}

.group-h .fadeIn_right.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

.group-h ._en {
  font-family: "source-sans-pro", "sans-serif";
}

.group-h .button01 {
  display: block;
  width: 100%;
  max-width: 330px;
  height: 70px;
  line-height: 65px;
  font-size: 18px;
  letter-spacing: 0.08rem;
  color: #ffffff;
  font-weight: 600;
  background: #ffffff;
  font-weight: 600;
  padding-left: 35px;
  transition: 0.5s;
  position: relative;
  /* ボーダー，角丸 */
  border: 2px solid #09727b;
  border-radius: 40px;
  /* ボタン右矢印 */
}

.group-h .button01 span {
  color: #09727b;
  transition: 0.5s;
}

.group-h .button01:hover {
  cursor: pointer;
  background-color: #09727b;
  opacity: 1;
}

.group-h .button01:hover span {
  color: #ffffff;
}

.group-h .button01._center {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  padding-left: 0;
}

.group-h .button01._wide {
  max-width: none;
}

.group-h .button01._small {
  height: 40px;
  font-size: 12px;
  line-height: 40px;
  max-width: 160px;
}

.group-h .button01._arr::before {
  position: absolute;
  content: "";
  height: 1em;
  line-height: 1;
  font-family: 'FontAwesome';
  vertical-align: middle;
  color: #ffffff;
  background: #09727b;
  width: 22px;
  height: 25px;
  display: flex;
  justify-content: center;
  padding-left: 3px;
  align-items: center;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  right: 35px;
  transition: 0.5s;
}

.group-h .button01._arr:hover:before {
  background: #ffffff;
  color: #09727b;
  opacity: 1;
}

@media only screen and (max-width: 768px) {
  .group-h .button01 {
    display: block;
    margin: 0 auto;
    margin-bottom: 20px;
  }
}

.group-h a.link {
  text-decoration: underline;
  color: #09727b;
}

.group-h .table_scroll {
  width: 100%;
  margin-bottom: 20px;
}

@media only screen and (max-width: 768px) {
  .group-h .table_scroll {
    overflow-x: scroll;
  }
}

.group-h .table_scroll .c_table01 {
  width: 100%;
}

.group-h .table_scroll .c_table01 th,
.group-h .table_scroll .c_table01 td {
  font-size: "Noto Sans JP", "メイリオ", Meiryo, sans-serif;
  line-height: 1.5;
  padding: 10px 10px;
  border: 1px solid #05c1c6;
  vertical-align: middle;
  text-align: center;
}

.group-h .table_scroll .c_table01 th {
  background-color: #09727b;
  color: #ffffff;
}

.group-h .table_scroll .c_table01 td {
  background-color: #ffffff;
  color: #2c2c2c;
}

@media only screen and (max-width: 768px) {
  .group-h .table_scroll .c_table01 {
    width: 960px;
  }
}

.group-h .sns_logo {
  display: flex;
  gap: 15px;
}

.group-h .sns_logo .sns-icon {
  width: 30px;
  height: 30px;
}

.group-h .sns_logo .sns-icon::after {
  font-size: 30px;
  color: #ffffff;
  display: block;
}

.group-h .sns_logo .sns-icon img {
  filter: #ffffff;
}

.group-h .sns_logo .sns-icon.instagram::after {
  content: "";
  height: 1em;
  line-height: 1;
  font-family: 'FontAwesome';
  vertical-align: middle;
}

.group-h .sns_logo .sns-icon.facebook::after {
  content: "";
  height: 1em;
  line-height: 1;
  font-family: 'FontAwesome';
  vertical-align: middle;
}

.group-h .sns_logo .sns-icon.twitter::after {
  content: "";
  height: 1em;
  line-height: 1;
  font-family: 'FontAwesome';
  vertical-align: middle;
}

.group-h .list_title01 {
  display: inline-block;
  width: 100%;
  font-size: 18px;
  line-height: 1.8;
  letter-spacing: 0.2em;
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 8px;
  margin-top: -8px;
}

.group-h .list_title01:before, .group-h .list_title01:after {
  content: "";
  display: inline-block;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
}

.group-h .list_title01:before {
  width: 80px;
  background: #09727b;
  z-index: 2;
}

.group-h .list_title01:after {
  width: 100%;
  background: #05c1c6;
  z-index: 1;
}

.group-h ul.list_ul li {
  font-size: "Noto Sans JP", "メイリオ", Meiryo, sans-serif;
  line-height: 2;
}

.group-h ul.list_ul li:before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 6px;
  background-color: #09727b;
  vertical-align: middle;
  margin-right: 10px;
}

.group-h ol.list_ol {
  counter-reset: item;
  list-style-type: none;
}

.group-h ol.list_ol li {
  font-size: "Noto Sans JP", "メイリオ", Meiryo, sans-serif;
  line-height: 2;
  position: relative;
  padding-left: 20px;
}

.group-h ol.list_ol li:before {
  content: counter(item);
  counter-increment: item;
  display: inline-block;
  width: 18px;
  height: 18px;
  line-height: 18px;
  border-radius: 50%;
  background-color: #05c1c6;
  text-align: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  font-size: 12px;
  font-weight: bold;
  color: #09727b;
}

.group-h .h1_title01 {
  width: 100%;
  margin-bottom: 40px;
}

.group-h .h1_title01._center {
  text-align: center;
}

.group-h .h1_title01 span {
  display: inline-block;
  width: 100%;
}

.group-h .h1_title01 .sub {
  font-size: 18px;
  line-height: 1;
  padding-left: 15px;
  padding-bottom: 5px;
  font-weight: 500;
}

.group-h .h1_title01 .main {
  font-size: 62px;
  line-height: 1.8;
  color: #09727b;
  font-weight: 700;
}

.group-h .h2_title01 {
  width: 100%;
  margin-bottom: 40px;
}

.group-h .h2_title01._center {
  text-align: center;
}

.group-h .h2_title01 span {
  display: inline-block;
  width: 100%;
}

.group-h .h2_title01 .sub {
  font-size: 25px;
  line-height: 1;
  position: relative;
  padding-left: 15px;
  padding-bottom: 5px;
  color: #05c1c6;
  font-weight: 700;
}

.group-h .h2_title01 .sub::before {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  background: #05c1c6;
  border-radius: 1px;
  top: 55%;
  transform: translateY(-50%);
  left: 0;
}

.group-h .h2_title01 .main {
  font-size: 36px;
  line-height: 1.8;
  color: #09727b;
  font-weight: 700;
}

.group-h .h2_title01 ._en {
  letter-spacing: 0.05em;
}

@media only screen and (max-width: 768px) {
  .group-h .h2_title01 {
    text-align: left;
    margin-bottom: 30px;
  }
  .group-h .h2_title01 .main {
    font-size: 25px;
  }
  .group-h .h2_title01 .sub {
    font-size: 36px;
  }
}

.group-h .h2_title02 {
  width: 100%;
  margin-bottom: 40px;
}

.group-h .h2_title02 span {
  display: inline-block;
  width: 100%;
}

.group-h .h2_title02 .sub {
  font-size: 16px;
  color: #05c1c6;
  letter-spacing: 0.05em;
  font-weight: 600;
  line-height: 1;
}

.group-h .h2_title02 .main {
  font-size: 28px;
  color: #09727b;
  line-height: 1.8;
  font-weight: 700;
}

.group-h .h2_title02 ._en {
  font-family: "source-sans-pro", "sans-serif";
}

.group-h .h2_title02 ._ja {
  font-family: "Noto Sans JP", "メイリオ", Meiryo, sans-serif;
}

.group-h .h3_title01 {
  width: 100%;
  margin-bottom: 40px;
}

.group-h .h3_title01 span {
  display: inline-block;
  width: 100%;
}

.group-h .h3_title01 .sub {
  font-size: 16px;
  color: #05c1c6;
  align-items: center;
  gap: 10px;
  display: flex;
  border-bottom: 1px solid #05c1c6;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1;
}

.group-h .h3_title01 .main {
  font-size: 28px;
  color: #09727b;
  padding-top: 10px;
  line-height: 40px;
  font-weight: 700;
}

.group-h .h3_title01 ._en {
  font-family: "source-sans-pro", "sans-serif";
}

.group-h .h3_title01 ._number {
  font-size: 32px;
  line-height: 1.4;
  border-bottom: none;
}

.group-h .h3_title01 ._ja {
  font-family: "Noto Sans JP", "メイリオ", Meiryo, sans-serif;
}

.group-h .h3_title02 {
  display: inline-block;
  width: 100%;
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 1.8;
  border-bottom: 1px solid #09727b;
  border-left: 3px solid #09727b;
  padding-left: 6px;
}

.group-h .header {
  width: 100%;
  position: fixed;
  z-index: 9998;
  transition: 0.3s;
  margin-top: 30px;
  padding: 0 20px;
}

.group-h .h_inner {
  width: 100%;
  max-width: 1266px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  height: 100%;
  justify-content: space-between;
  background: #ffffff;
  align-items: center;
  border-radius: 20px;
}

.group-h .h_inner .header_logo {
  height: 110px;
  width: auto;
  display: flex;
  align-items: center;
  font-size: 26px;
  font-weight: 500;
}

.group-h .h_inner .header_logo img {
  width: auto;
  height: auto;
}

@media (max-width: 1000px) {
  .group-h .h_inner .header_logo {
    font-size: 16px;
    width: 200px;
  }
}

@media only screen and (max-width: 768px) {
  .group-h .h_inner .header_logo {
    font-size: 18px;
    height: 55px;
  }
}

.group-h .h_inner .global_wrap {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 2;
}

.group-h .h_inner .global_wrap .global_navi {
  text-align: right;
  z-index: 9999;
}

.group-h .h_inner .global_wrap .global_navi li {
  display: inline-block;
  margin-right: 40px;
  position: relative;
}

@media (max-width: 1000px) {
  .group-h .h_inner .global_wrap .global_navi li {
    margin-right: 10px;
  }
}

.group-h .h_inner .global_wrap .global_navi li:last-child {
  margin-right: 0;
}

.group-h .h_inner .global_wrap .global_navi li:hover {
  color: #7598b4;
}

.group-h .h_inner .global_wrap .global_navi li a {
  font-size: 15px;
  font-weight: 700;
}

@media (max-width: 1000px) {
  .group-h .h_inner .global_wrap .global_navi li a {
    font-size: 14px;
  }
}

.group-h .h_inner .global_wrap .global_navi li .h-btn {
  padding: 10px 26px;
  background: #09727b;
  color: #ffffff;
  border-radius: 30px;
  border: solid #09727b 1px;
  opacity: 1 !important;
}

@media (max-width: 1000px) {
  .group-h .h_inner .global_wrap .global_navi li .h-btn {
    padding: 10px 20px;
  }
}

.group-h .h_inner .global_wrap .global_navi li .h-btn:hover {
  border: solid #09727b 1px;
  color: #09727b;
  background: #ffffff;
}

@media only screen and (max-width: 768px) {
  .group-h {
    /*spメニューの動き*/
  }
  .group-h .header,
  .group-h .header.is-animation {
    height: 55px;
    padding: 0 10px;
    margin-top: 10px;
  }
  .group-h .h_inner {
    width: 100%;
    height: 55px;
    border-radius: 10px;
    padding: 0 10px;
    position: relative;
    background: none;
    /*spメニューの見た目*/
    /*spメニューの中身*/
  }
  .group-h .h_inner::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 55px;
    left: 0;
    background: #ffffff;
    z-index: 100;
    border-radius: 5px;
  }
  .group-h .h_inner .header_logo {
    z-index: 100;
  }
  .group-h .h_inner .menu_button {
    padding: 30px 10px 15px;
    position: fixed;
    z-index: 100;
    right: 10px;
    top: -3px;
    text-align: center;
    cursor: pointer;
    opacity: 1 in !important;
  }
  .group-h .h_inner .menu_trigger,
  .group-h .h_inner .menu_trigger span {
    display: inline-block;
    transition: 0.4s;
    box-sizing: border-box;
  }
  .group-h .h_inner .menu_trigger {
    position: relative;
    width: 30px;
    height: 20px;
  }
  .group-h .h_inner .menu_trigger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #09727b;
    border-radius: 4px;
  }
  .group-h .h_inner .menu_trigger span:nth-of-type(1) {
    top: 0;
  }
  .group-h .h_inner .menu_trigger span:nth-of-type(2) {
    top: 44%;
  }
  .group-h .h_inner .menu_trigger span:nth-of-type(3) {
    bottom: 0;
  }
  .group-h .h_inner .global_wrap {
    overflow-y: scroll;
    position: fixed;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: #09727b;
    transition: 0.4s;
    justify-content: flex-start;
  }
  .group-h .h_inner .global_wrap .global_navi {
    order: 1;
    margin-top: 85px;
  }
  .group-h .h_inner .global_wrap .global_navi li {
    display: block;
    text-align: center;
    line-height: 29px;
    width: calc(100% - 40px);
    border-bottom: 1px solid #ffffff;
    margin: 0 auto;
  }
  .group-h .h_inner .global_wrap .global_navi li:last-child {
    border-bottom: none;
  }
  .group-h .h_inner .global_wrap .global_navi li a {
    font-size: 20px;
    display: block;
    height: 100%;
    width: 100%;
    text-align: left;
    padding: 20px 10px;
    color: #ffffff;
  }
  .group-h .h_inner .global_wrap .global_navi li a span {
    font-size: 16px;
    font-weight: 300;
  }
  .group-h .h_inner .global_wrap .global_navi ._arrow {
    position: relative;
  }
  .group-h .h_inner .global_wrap .global_navi ._arrow::before {
    position: absolute;
    content: "";
    height: 1em;
    line-height: 1;
    font-family: 'FontAwesome';
    vertical-align: middle;
    color: #ffffff;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
  }
  .group-h .h_inner .global_wrap .global_navi ._h-btn-wrap {
    display: flex;
    justify-content: center;
    margin: 0;
    width: 100%;
  }
  .group-h .h_inner .global_wrap .global_navi ._h-btn-wrap .h-btn {
    width: fit-content;
    margin-top: 30px;
    padding: 25px 100px;
    background: #ffffff;
    color: #09727b;
    text-align: center;
    border-radius: 40px;
    border: 1px solid #ffffff;
  }
  .group-h .h_inner .global_wrap .global_navi ._h-btn-wrap .h-btn:hover {
    border: 1px solid #ffffff;
    background: #09727b;
    color: #ffffff;
    opacity: 1 !important;
  }
  .group-h .h_inner .global_wrap .global_sns {
    order: 2;
    height: auto;
    display: flex;
    gap: 15px;
    padding-left: 30px;
    padding-bottom: 50px;
  }
  .group-h .header.active .global_wrap {
    left: 0px;
  }
  .group-h .header.active .menu_button .menu_trigger span:nth-of-type(1) {
    transform: translateY(10px) rotate(-45deg);
  }
  .group-h .header.active .menu_button .menu_trigger span:nth-of-type(2) {
    opacity: 0;
  }
  .group-h .header.active .menu_button .menu_trigger span:nth-of-type(3) {
    transform: translateY(-8px) rotate(45deg);
  }
}

.group-h .pagetitle {
  width: 100%;
  min-width: 1000px;
}

@media only screen and (max-width: 768px) {
  .group-h .pagetitle {
    min-width: 320px;
  }
}

.group-h .pagetitle .head-bg {
  width: 100%;
  height: 350px;
  overflow: hidden;
}

.group-h .pagetitle .head-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media only screen and (max-width: 768px) {
  .group-h .pagetitle .head-bg {
    height: 180px;
  }
}

.group-h .pt_inner {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
}

.group-h .pt_inner h1 {
  width: 100%;
  height: auto;
  padding: 100px 20px;
}

.group-h .pt_inner h1 .pt_h1 {
  color: #09727b;
}

.group-h .pt_inner h1 .pt_h1 span {
  display: inline;
}

.group-h .pt_inner h1 .pt_h1._en {
  font-family: "source-sans-pro", "sans-serif";
}

.group-h .pt_inner h1 .pt_h1._main span {
  font-size: 100px;
  line-height: 1.5;
  letter-spacing: 0;
  font-weight: 700;
}

@media only screen and (max-width: 768px) {
  .group-h .pt_inner h1 .pt_h1._main span {
    font-size: 70px;
    line-height: 2;
  }
}

.group-h .pt_inner h1 .pt_h1._sub {
  margin-top: -8px;
}

.group-h .pt_inner h1 .pt_h1._sub span {
  font-size: 32px;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 0.06em;
}

@media only screen and (max-width: 768px) {
  .group-h .pt_inner h1 .pt_h1._sub span {
    font-size: 22px;
    line-height: 1;
  }
}

.group-h .c_bread {
  padding: 11px 0;
}

@media only screen and (max-width: 768px) {
  .group-h .c_bread {
    padding: 5.5px;
  }
}

.group-h .c_bread li {
  display: inline;
  font-size: 12px;
  line-height: 1.4;
  word-break: break-all;
}

@media only screen and (max-width: 768px) {
  .group-h .c_bread li {
    line-height: 1.2;
  }
}

.group-h .c_bread li a {
  color: #2c2c2c;
}

.group-h .c_bread li:after {
  content: "\003E";
  padding: 0 10px;
}

.group-h .c_bread li:last-child:after {
  display: none;
}

.group-h .footer {
  width: 100%;
  min-width: 1000px;
  padding-top: 50px;
  padding-bottom: 50px;
  position: relative;
  background-color: #09727b;
  color: #ffffff;
  border-radius: 50px 50px 0 0;
}

@media only screen and (max-width: 768px) {
  .group-h .footer {
    border-radius: 30px 30px 0 0;
  }
}

.group-h .footer .pagetop-wrap .pagetop02 {
  padding-bottom: 50px;
  text-align: center;
  width: calc(100% - 134px);
  margin: 0 auto;
  border-bottom: 1px solid #ffffff;
}

@media (max-width: 1094px) {
  .group-h .footer .pagetop-wrap .pagetop02 {
    width: 960px;
  }
}

.group-h .footer .pagetop-wrap .pagetop02 a {
  position: relative;
  color: #ffffff;
  font-family: "source-sans-pro", "sans-serif";
  font-weight: 400;
  letter-spacing: 0.06em;
  padding-right: 40px;
  line-height: 1.5;
}

.group-h .footer .pagetop-wrap .pagetop02 a::before {
  content: "";
  height: 1em;
  line-height: 1;
  font-family: 'FontAwesome';
  vertical-align: middle;
  position: absolute;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  border-radius: 50%;
  border: 1px solid #ffffff;
  color: #ffffff;
}

.group-h .footer .f_inner {
  width: 100%;
  max-width: 1040px;
  margin: auto;
  box-sizing: border-box;
  padding: 50px 20px;
  display: flex;
  justify-content: space-between;
}

.group-h .footer .f_inner .footer_left,
.group-h .footer .f_inner .footer_right {
  width: 50%;
}

.group-h .footer .f_inner .footer_left {
  box-sizing: border-box;
  padding-right: 40px;
}

.group-h .footer .f_inner .footer_left .footer_logo {
  width: auto;
  margin-bottom: 10px;
  height: fit-content;
}

.group-h .footer .f_inner .footer_left .footer_logo a {
  color: #ffffff;
  font-weight: 500;
  font-size: 28px;
  line-height: 2;
}

@media only screen and (max-width: 768px) {
  .group-h .footer .f_inner .footer_left .footer_logo {
    margin-bottom: 30px;
  }
}

.group-h .footer .f_inner .footer_left .footer_logo img {
  height: 100%;
  width: auto;
}

.group-h .footer .f_inner .footer_left .footer_information {
  margin-bottom: 20px;
}

.group-h .footer .f_inner .footer_left .footer_information p {
  font-size: 14px;
  line-height: 24px;
}

.group-h .footer .f_inner .footer_right {
  width: 50%;
}

.group-h .footer .f_inner .footer_right .footer_navi {
  height: auto;
  max-height: 220px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-left: 25px;
  gap: 0 20px;
}

.group-h .footer .f_inner .footer_right .footer_navi li a {
  color: #ffffff;
  line-height: 2;
  font-size: 18px;
  font-weight: 500;
}

.group-h .footer .f_inner .footer_right .footer_navi .parent {
  display: inline-block;
  width: 50%;
  max-width: 200px;
  padding-bottom: 20px;
}

.group-h .footer .f_inner .footer_right .footer_navi .parent .child li {
  font-size: 12px;
  margin-top: 17px;
  padding-left: 20px;
  position: relative;
}

.group-h .footer .f_inner .footer_right .footer_navi .parent .child li:before {
  content: "";
  display: block;
  width: 12px;
  height: 1px;
  background-color: #09727b;
  position: absolute;
  left: 0;
  bottom: 0;
}

.group-h .footer .footer_copy {
  width: 100%;
}

.group-h .footer .footer_copy p {
  font-size: 14px;
  text-align: center;
  font-weight: 400;
  line-height: 1;
}

@media only screen and (max-width: 768px) {
  .group-h .footer .footer_copy p {
    text-align: left;
    padding-left: 20px;
  }
}

.group-h .footer._lower::before {
  position: none;
  display: none;
}

@media only screen and (max-width: 768px) {
  .group-h .footer {
    width: 100%;
    min-width: 320px;
  }
  .group-h .footer .pagetop-wrap .pagetop02 {
    width: 100%;
  }
  .group-h .footer .f_inner .footer_left {
    width: 100%;
    padding-left: 0;
  }
  .group-h .footer .f_inner .footer_right {
    display: none;
  }
}

.group-h .c_content {
  width: 100%;
  min-width: 1000px;
  height: auto;
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
}

.group-h .c_content._img-cut {
  overflow: hidden;
}

.group-h .c_content._bg00 {
  background: none;
}

.group-h .c_content._bg01 {
  background: #09497b;
}

.group-h .c_content._bg02 {
  background: #f3f8fb;
}

.group-h .c_content._bg03 {
  background: #e3f4c2;
}

.group-h .c_content._bg04 {
  border-radius: 50px 50px 0 0;
}

@media only screen and (max-width: 768px) {
  .group-h .c_content._bg04 {
    border-radius: 30px 30px 0 0;
  }
}

.group-h .c_content._bg05 {
  border-radius: 50px;
}

@media only screen and (max-width: 768px) {
  .group-h .c_content._bg05 {
    border-radius: 30px;
  }
}

.group-h .c_content._bg06::before {
  content: "";
  position: absolute;
  width: calc(100% - 200px);
  height: 83%;
  background: #f3f8fb;
  top: 0;
  right: 0;
  min-width: 1000px;
  border-radius: 50px 0 0 50px;
}

@media only screen and (max-width: 768px) {
  .group-h .c_content._bg06::before {
    border-radius: 30px 0 0 30px;
  }
}

.group-h .c_content._bg07::before {
  content: "";
  position: absolute;
  width: calc(100% - 200px);
  height: 83%;
  background: #f3f8fb;
  top: 0;
  left: 0;
  min-width: 1000px;
  border-radius: 0 50px 50px 0;
}

@media only screen and (max-width: 768px) {
  .group-h .c_content._bg07::before {
    border-radius: 0 30px 30px 0;
  }
}

.group-h .c_content._bg08::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 500px;
  z-index: -1;
  background: #f3f8fb;
  bottom: -300px;
  left: 0;
}

.group-h .c_content .c_inner {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0 20px;
}

@media only screen and (max-width: 768px) {
  .group-h .c_content {
    min-width: 320px;
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.group-h .access_wrapper {
  width: 100%;
  max-width: 1120px;
  min-width: 960px;
  margin: 0 auto;
  padding-top: 40px;
}

@media only screen and (max-width: 768px) {
  .group-h .access_wrapper {
    min-width: 0;
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

.group-h .access_wrapper .map_wrapper {
  height: 0;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  padding-bottom: 39%;
  position: relative;
  border-radius: 20px;
}

@media only screen and (max-width: 768px) {
  .group-h .access_wrapper .map_wrapper {
    width: 100%;
    padding-bottom: 100%;
    min-width: 250px;
  }
}

.group-h .access_wrapper .map_wrapper iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.group-h .c_box {
  width: 100%;
  height: auto;
  margin-bottom: 30px;
}

@media only screen and (max-width: 768px) {
  .group-h .c_box {
    margin-bottom: 40px;
  }
}

.group-h .c_box:last-child {
  margin-bottom: 0;
}

.group-h .c_box p {
  font-size: 16px;
  line-height: 32px;
  margin-bottom: 30px;
}

.group-h .c_box p._center {
  text-align: center;
}

.group-h .c_box p:last-child {
  margin-bottom: 0;
}

@media only screen and (max-width: 768px) {
  .group-h .c_box p {
    margin-bottom: 30px;
  }
}

.group-h .c_box p svg {
  fill: #09727b;
}

.group-h .c_box p._textcenter {
  text-align: center;
}

@media only screen and (max-width: 768px) {
  .group-h .c_box p._textcenter {
    text-align: left;
  }
}

.group-h .c_box dl {
  font-size: "Noto Sans JP", "メイリオ", Meiryo, sans-serif;
  line-height: 1.8;
  width: 100%;
  border-bottom: 1px solid #05c1c6;
  margin-bottom: 20px;
}

.group-h .c_box dl dt {
  font-size: 16px;
  margin-bottom: 10px;
}

.group-h .c_box dl dd {
  margin-bottom: 15px;
}

.group-h .c_box .child._text._bg01 {
  box-sizing: border-box;
  padding: 30px;
  background: #09497b;
}

.group-h .c_box .child.img_wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media only screen and (max-width: 768px) {
  .group-h .c_box .child._card {
    margin-bottom: 40px;
  }
}

.group-h .c_box .child._card .card_img_wrapper {
  border-radius: 10px 10px 0 0;
  overflow: hidden;
}

.group-h .c_box .child._card .card_img_wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.group-h .c_box .child._card .card_title {
  color: #09727b;
  margin-bottom: 0;
  letter-spacing: 0.07em;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}

.group-h .c_box .child._card .card_date {
  color: #09727b;
  font-family: "source-sans-pro", "sans-serif";
  font-weight: 600;
  letter-spacing: 0.07em;
  margin-bottom: 0;
}

.group-h .c_box .child._list {
  width: 100%;
  padding-bottom: 20px;
  border-bottom: 1px solid #cecece;
  margin-bottom: 20px;
}

.group-h .c_box .child._list:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.group-h .c_box .child._list .list_wrap {
  display: flex;
}

.group-h .c_box .child._list p {
  margin-bottom: 0;
  width: auto;
}

.group-h .c_box .child._list .list_date {
  font-size: 16px;
  letter-spacing: 0.16em;
  font-family: "Josefin Sans", sans-serif;
  width: 105px;
  margin-right: 40px;
}

@media only screen and (max-width: 768px) {
  .group-h .c_box .child._list .list_date {
    margin-right: 20px;
  }
}

.group-h .c_box .child._list .list_text {
  font-size: "Noto Sans JP", "メイリオ", Meiryo, sans-serif;
  line-height: 1.8;
  margin-right: 40px;
  flex-grow: 2;
}

@media only screen and (max-width: 768px) {
  .group-h .c_box .child._list .list_text {
    margin-right: 20px;
  }
}

.group-h .c_box .child._list svg {
  fill: #09727b;
  padding-top: 8px;
}

.group-h .c_box .child .adress {
  font-size: 16px;
  margin-bottom: 15px;
}

.group-h .c_box .child .tel {
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.2em;
}

.group-h .c_box .child .tel svg {
  fill: #09727b;
  vertical-align: middle;
  padding-bottom: 5px;
}

.group-h .c_box .child .tel span {
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

.group-h .c_box.w50-w50 {
  display: flex;
}

.group-h .c_box.w50-w50 .child._text {
  width: 50%;
  box-sizing: border-box;
  padding-left: 0;
  padding-right: 50px;
}

.group-h .c_box.w50-w50 .child._text p {
  font-size: 16px;
  line-height: 32px;
  letter-spacing: 0.06rem;
}

.group-h .c_box.w50-w50 .child.img_wrapper {
  width: 720px;
  height: 400px;
  flex-shrink: 0;
  margin-left: 0;
  margin-right: -220px;
  overflow: hidden;
}

.group-h .c_box.w50-w50 .child.img_wrapper.img-w633 {
  width: 633px;
  height: 450px;
  border-radius: 20px;
}

@media only screen and (max-width: 768px) {
  .group-h .c_box.w50-w50 .child.img_wrapper.img-w633 {
    width: 100%;
  }
}

.group-h .c_box.w50-w50 .child.img_wrapper.img-h550 {
  height: 550px;
}

@media only screen and (max-width: 768px) {
  .group-h .c_box.w50-w50 .child.img_wrapper.img-h550 {
    height: 310px;
  }
}

.group-h .c_box.w50-w50 .child.img_wrapper.corner-l {
  border-radius: 30px;
}

@media (max-width: 1400px) {
  .group-h .c_box.w50-w50 .child.img_wrapper.corner-l {
    border-radius: 30px 0 0 30px;
  }
}

.group-h .c_box.w50-w50 .child.img_wrapper.img-h473 {
  height: 473px;
}

.group-h .c_box.w50-w50._reverse .child._text {
  order: 2;
  padding-left: 50px;
  padding-right: 0;
}

.group-h .c_box.w50-w50._reverse .child._text p {
  font-size: 16px;
  line-height: 32px;
  letter-spacing: 0.06rem;
}

.group-h .c_box.w50-w50._reverse .child.img_wrapper {
  order: 1;
  margin-left: -220px;
  margin-right: 0;
  width: 720px;
}

.group-h .c_box.w50-w50._reverse .child.img_wrapper.corner-r {
  border-radius: 30px;
}

@media (max-width: 1400px) {
  .group-h .c_box.w50-w50._reverse .child.img_wrapper.corner-r {
    border-radius: 0 30px 30px 0;
  }
}

.group-h .c_box.w50-w50._reverse .child.img_wrapper.img-h473 {
  height: 473px;
}

.group-h .c_box.w50-w50._greeting {
  justify-content: space-between;
}

.group-h .c_box.w50-w50._greeting .child._text {
  padding-right: 0;
}

.group-h .c_box.w50-w50._greeting .child._text .greeting_name {
  font-size: 16px;
  line-height: 32px;
  letter-spacing: 0.06em;
}

.group-h .c_box.w50-w50._greeting .child._text .greeting_name span {
  font-size: 12px;
  margin-right: 10px;
}

.group-h .c_box.w50-w50._greeting .child.img_wrapper {
  width: 45%;
  height: auto;
  min-height: 360px;
  margin-left: 0;
  margin-right: 0;
  padding-top: 110px;
}

.group-h .c_box.w50-w50._greeting .child.img_wrapper img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

@media only screen and (max-width: 768px) {
  .group-h .c_box.w50-w50,
  .group-h .c_box.w50-w50._reverse,
  .group-h .c_box.w50-w50._greeting {
    flex-direction: column;
  }
  .group-h .c_box.w50-w50 .child._text,
  .group-h .c_box.w50-w50._reverse .child._text,
  .group-h .c_box.w50-w50._greeting .child._text {
    order: 1;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 30px;
  }
  .group-h .c_box.w50-w50 .child.img_wrapper,
  .group-h .c_box.w50-w50._reverse .child.img_wrapper,
  .group-h .c_box.w50-w50._greeting .child.img_wrapper {
    order: 2;
    width: 100%;
    height: auto;
    margin-left: 0;
    margin-right: 0;
    position: relative;
    padding-top: 0;
  }
  .group-h .c_box.w50-w50 .child.img_wrapper:before,
  .group-h .c_box.w50-w50._reverse .child.img_wrapper:before,
  .group-h .c_box.w50-w50._greeting .child.img_wrapper:before {
    content: "";
    display: block;
  }
  .group-h .c_box.w50-w50 .child.img_wrapper img,
  .group-h .c_box.w50-w50._reverse .child.img_wrapper img,
  .group-h .c_box.w50-w50._greeting .child.img_wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
  .group-h .c_box.w50-w50 .child.img_wrapper,
  .group-h .c_box.w50-w50._reverse .child.img_wrapper {
    border-radius: 20px;
  }
  .group-h .c_box.w50-w50 .child.img_wrapper:before,
  .group-h .c_box.w50-w50._reverse .child.img_wrapper:before {
    padding-top: 57.2%;
  }
  .group-h .c_box.w50-w50._greeting .child.img_wrapper {
    border-radius: 20px;
  }
  .group-h .c_box.w50-w50._greeting .child.img_wrapper:before {
    padding-top: 75%;
  }
  .group-h .c_box.w50-w50 .child.img_wrapper.corner-r,
  .group-h .c_box.w50-w50._reverse .child.img_wrapper.corner-r {
    width: calc(100% + 20px);
    margin-left: -20px;
  }
  .group-h .c_box.w50-w50 .child.img_wrapper.corner-l,
  .group-h .c_box.w50-w50._reverse .child.img_wrapper.corner-l {
    width: calc(100% + 20px);
    margin-right: -20px;
  }
}

.group-h .c_box.w48-w48 {
  display: flex;
  justify-content: space-between;
}

.group-h .c_box.w48-w48 .child {
  width: 48%;
}

.group-h .c_box.w48-w48 .child._card .card_img_wrapper {
  height: 345px;
}

@media only screen and (max-width: 768px) {
  .group-h .c_box.w48-w48 {
    flex-direction: column;
  }
  .group-h .c_box.w48-w48 .child {
    width: 100%;
    margin-bottom: 40px;
  }
  .group-h .c_box.w48-w48 .child:last-child {
    margin-bottom: 0;
  }
}

.group-h .c_box.w25x4 {
  display: flex;
  justify-content: space-between;
}

.group-h .c_box.w25x4 .child._card {
  width: 225px;
}

.group-h .c_box.w25x4 .child._card .card_img_wrapper {
  height: 169px;
}

.group-h .c_box.w25x4 .button {
  width: 225px;
}

@media only screen and (max-width: 768px) {
  .group-h .c_box.w25x4 .button {
    margin-bottom: 20px;
  }
}

.group-h .c_box.w25x4 .button:last-child {
  margin-bottom: 0;
}

.group-h .c_box.w25x4.images .child._card {
  margin-bottom: 30px;
}

.group-h .c_box.w25x4.images .child._card .card_img_wrapper {
  margin-bottom: 0;
}

.group-h .c_box.w33x3 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  min-width: 960px;
}

.group-h .c_box.w33x3 .child._card {
  width: 320px;
}

@media (max-width: 1040px) {
  .group-h .c_box.w33x3 .child._card {
    width: 310px;
  }
}

.group-h .c_box.w33x3 .child._card .card_img_wrapper {
  height: 170px;
}

.group-h .c_box.w33x3 .child._card .text_container {
  background: #ffffff;
  width: 100%;
  height: 120px;
  padding: 20px 20px 0 20px;
  border-radius: 0 0 10px 10px;
}

.group-h .c_box.w33x3 .child._card .text_container p {
  line-height: 24px;
}

@media only screen and (max-width: 768px) {
  .group-h .c_box.w33x3 {
    min-width: 300px;
    width: 100%;
  }
  .group-h .c_box.w33x3 .child._card {
    width: 100%;
  }
}

.group-h .c_box.w33x3:before, .group-h .c_box.w33x3:after {
  content: "";
  display: block;
  width: 300px;
}

.group-h .c_box.w33x3:before {
  order: 1;
}

.group-h .c_box.w33x3.images .child._card {
  margin-bottom: 30px;
}

.group-h .c_box.w33x3.images .child._card .card_img_wrapper {
  margin-bottom: 0;
}

.group-h .c_box.w33x3.news_list .child._card {
  margin-bottom: 20px;
  background: #ffffff;
  border-radius: 10px;
}

@media only screen and (max-width: 768px) {
  .group-h .c_box.w25x4,
  .group-h .c_box.w33x3,
  .group-h .c_box.w48-w48 {
    display: flex;
    flex-direction: column;
  }
  .group-h .c_box.w25x4 .child._card,
  .group-h .c_box.w33x3 .child._card,
  .group-h .c_box.w48-w48 .child._card {
    width: 100%;
  }
  .group-h .c_box.w25x4 .child._card:last-child,
  .group-h .c_box.w33x3 .child._card:last-child,
  .group-h .c_box.w48-w48 .child._card:last-child {
    margin-bottom: 0;
  }
  .group-h .c_box.w25x4 .child._card .card_img_wrapper,
  .group-h .c_box.w33x3 .child._card .card_img_wrapper,
  .group-h .c_box.w48-w48 .child._card .card_img_wrapper {
    width: 100%;
    position: relative;
    border-radius: 10px 10px 0 0;
  }
  .group-h .c_box.w25x4 .child._card .card_img_wrapper:before,
  .group-h .c_box.w33x3 .child._card .card_img_wrapper:before,
  .group-h .c_box.w48-w48 .child._card .card_img_wrapper:before {
    content: "";
    display: block;
    padding-top: 75%;
  }
  .group-h .c_box.w25x4 .child._card .card_img_wrapper img,
  .group-h .c_box.w33x3 .child._card .card_img_wrapper img,
  .group-h .c_box.w48-w48 .child._card .card_img_wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
}

.group-h .c_box_wrapper.w25-w75 {
  display: grid;
  grid-auto-rows: 1fr 60px;
  grid-auto-columns: 240px 1fr;
}

.group-h .c_box_wrapper.w25-w75 .c_box:nth-child(1) {
  grid-row: 1 / 2;
  grid-column: 1 / 2;
}

.group-h .c_box_wrapper.w25-w75 .c_box:nth-child(2) {
  grid-row: 1 / 3;
  grid-column: 2 / 3;
  margin-bottom: 0;
}

.group-h .c_box_wrapper.w25-w75 .c_box:nth-child(3) {
  padding-right: 40px;
  grid-row: 2 / 3;
  grid-column: 1 / 2;
}

.group-h .c_box_wrapper.w25-w75 .c_box:nth-child(3) .button {
  max-width: 200px;
}

@media only screen and (max-width: 768px) {
  .group-h .c_box_wrapper.w25-w75 {
    display: block;
  }
  .group-h .c_box_wrapper.w25-w75 .c_box:nth-child(2) {
    margin-bottom: 60px;
  }
  .group-h .c_box_wrapper.w25-w75 .c_box:nth-child(3) {
    padding-right: 0;
  }
  .group-h .c_box_wrapper.w25-w75 .c_box:nth-child(3) .button {
    max-width: 240px;
  }
}

.group-h .c_box.button_container {
  display: flex;
  justify-content: center;
}

.group-h .c_box.button_container .button {
  width: 225px;
  margin-right: 20px;
}

.group-h .c_box.button_container .button:last-child {
  margin-right: 0;
}

@media only screen and (max-width: 768px) {
  .group-h .c_box.button_container {
    flex-direction: column;
    align-items: center;
  }
  .group-h .c_box.button_container .button {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 20px;
  }
  .group-h .c_box.button_container .button:last-child {
    margin-bottom: 0;
  }
}

.group-h .c_box.border {
  width: 100%;
  background-color: #ffffff;
  border-radius: 20px;
  border: 1px solid #d6d6d6;
  box-sizing: border-box;
  padding: 50px 20px;
}

.group-h .c-table ul li {
  display: flex;
  border-bottom: 1px solid #d6d6d6;
  line-height: 1.4;
  align-items: center;
}

.group-h .c-table ul li span {
  font-weight: 700;
}

.group-h .c-table ul li:first-of-type {
  border-top: 1px solid #d6d6d6;
}

.group-h .c-table .m30 li {
  padding: 30px 0;
}

.group-h .c-table .m30 li span {
  min-width: 100px;
  font-size: 15px;
  font-weight: 700;
  color: #09727b;
  margin-right: 180px;
  line-height: 1.3;
}

.group-h .c-table .m20 li {
  padding: 25px 0;
}

.group-h .c-table .m20 li span {
  min-width: 60px;
  font-size: 24px;
  color: #05c1c6;
  font-family: "source-sans-pro", "sans-serif";
  margin-right: 50px;
  font-weight: 400;
}

.group-h .c-table .m20 li:first-child {
  padding-top: 0;
  border-top: none;
}

@media only screen and (max-width: 768px) {
  .group-h .c-table .m30 li span {
    min-width: 80px;
    margin-right: 30px;
  }
}

.group-h .banner_wrap {
  width: 600px;
  height: 200px;
  margin: 0 auto;
  position: relative;
  transition: 0.5s;
  overflow: hidden;
}

@media only screen and (max-width: 768px) {
  .group-h .banner_wrap {
    width: 100%;
    height: auto;
  }
}

.group-h .banner_wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}

.group-h .banner_wrap .banner_link {
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  padding-top: 50px;
  padding-bottom: 60px;
  padding-left: 74px;
}

@media only screen and (max-width: 768px) {
  .group-h .banner_wrap .banner_link {
    padding-left: 40px;
  }
}

.group-h .banner_wrap .banner_link .shape-overlay {
  position: absolute;
  display: block;
  width: 100px;
  height: 100px;
  background-color: #ffffff;
  transform: rotate(45deg);
  top: -60px;
  right: -60px;
  z-index: 0;
  clip-path: polygon(50% 0%, 0% 100px, 100px 100px);
}

@media only screen and (max-width: 768px) {
  .group-h .banner_wrap .banner_link .shape-overlay {
    top: -10px;
    left: -50px;
    display: none;
  }
}

.group-h .banner_wrap .banner_link span {
  color: #ffffff;
  letter-spacing: 0.05em;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
}

.group-h .banner_wrap .banner_link .main {
  width: 100%;
  font-size: 66px;
}

@media only screen and (max-width: 768px) {
  .group-h .banner_wrap .banner_link .main {
    font-size: 40px;
  }
}

.group-h .banner_wrap .banner_link .sub {
  font-weight: bold;
  font-size: 22px;
}

@media only screen and (max-width: 768px) {
  .group-h .banner_wrap .banner_link .sub {
    font-size: 18px;
  }
}

.group-h .banner_wrap .banner_link .button_arr {
  display: block;
  position: relative;
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid #2c2c2c;
  background: #2c2c2c;
  top: 50%;
  transform: translateY(-50%);
  right: 64px;
  transition: .5s;
}

@media only screen and (max-width: 768px) {
  .group-h .banner_wrap .banner_link .button_arr {
    right: 40px;
  }
}

.group-h .banner_wrap .banner_link .button_arr::before {
  content: "";
  position: absolute;
  display: block;
  width: 28px;
  height: 2px;
  background: #ffffff;
  top: 50%;
  left: 50%;
  transform: translate(-50%);
}

.group-h .banner_wrap .banner_link .button_arr::after {
  content: "";
  position: absolute;
  display: block;
  width: 17px;
  height: 17px;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  top: 34%;
  left: 38%;
  transform: rotate(45deg);
}

.group-h .banner_wrap .banner_link:hover .button_arr {
  background: #ffffff;
}

.group-h .banner_wrap .banner_link:hover .button_arr::before {
  background: #2c2c2c;
}

.group-h .banner_wrap .banner_link:hover .button_arr::after {
  border-top: 2px solid #2c2c2c;
  border-right: 2px solid #2c2c2c;
}

.group-h .banner_wrap._contact {
  /* jQueryで追加される.hoveredクラスでぼかしを変更 */
  /* 背景に色付きのオーバーレイを追加 */
}

.group-h .banner_wrap._contact._01::before {
  background-image: url(../images/recruit/recruit04.jpg);
}

.group-h .banner_wrap._contact._02::before {
  background-image: url(../images/recruit/recruit03.jpg);
}

.group-h .banner_wrap._contact::before {
  /* 背景にぼかしを適用 */
  filter: blur(6px);
  transition: filter 0.5s ease;
  z-index: -1;
}

.group-h .banner_wrap._contact.hovered::before {
  filter: blur(0px);
  /* ボタンホバー時にぼかし効果を弱める */
}

.group-h .banner_wrap._contact::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(135deg, rgba(243, 248, 251, 0.6) 0%, rgba(5, 193, 198, 0.6) 100%);
  z-index: -1;
}

.group-h .banner_wrap._contact a.banner_link:hover {
  opacity: 1;
}

.group-h .banner_wrap._contact a.banner_link:hover .shape-overlay {
  opacity: 1;
}

.group-h .article_single {
  border-bottom: 3px solid #05c1c6;
  margin-bottom: 40px;
}

.group-h .article_single .title {
  margin-bottom: 10px;
  font-weight: bold;
  font-size: 22px;
  line-height: 1.5;
  word-break: break-all;
}

.group-h .article_single .day {
  color: #09727b;
  font-size: 14px;
  margin-bottom: 60px;
}

.group-h .article_single .day span {
  font-size: 20px;
}

.group-h .post_single {
  overflow: hidden;
}

.group-h .post_single p {
  word-break: break-all;
  word-wrap: break-word;
  margin-bottom: 20px;
  line-height: 2.2;
}

.group-h .post_single strong,
.group-h .post_single b {
  font-weight: bold;
}

.group-h .post_single img {
  max-width: 100%;
  height: auto;
}

.group-h .post_single img.alignright {
  float: right;
  margin: 0 0 15px 15px;
  display: block;
}

.group-h .post_single img.alignleft {
  float: left;
  margin: 0 15px 15px 0;
  display: block;
}

.group-h .post_single img.aligncenter {
  display: block;
  margin: 0 auto 15px;
}

.group-h .post_single h1 {
  font-size: 30px;
  margin: 0 0 35px;
  font-weight: bold;
  background: #333;
}

.group-h .post_single h2 {
  font-size: 24px;
  margin: 0 0 35px;
  font-weight: bold;
}

.group-h .post_single h3 {
  font-size: 22px;
  margin: 0 0 35px;
  padding: 5px 17px;
  font-weight: bold;
  border-left: 4px solid;
}

.group-h .post_single h4 {
  font-size: 22px;
  border-bottom: 1px solid;
  margin: 0 0 35px;
  padding-bottom: 6px;
  font-weight: bold;
}

.group-h .post_single h5 {
  font-size: 20px;
  margin: 0 0 25px;
  font-weight: bold;
}

.group-h .post_single h6 {
  font-size: 16px;
  margin: 0 0 20px;
  font-weight: bold;
}

.group-h .post_single table {
  margin-bottom: 25px;
}

.group-h .post_single table td {
  padding: 10px;
  border: 1px solid;
}

.group-h .post_single ul,
.group-h .post_single ol {
  padding-left: 2.0em;
  margin-bottom: 25px;
}

.group-h .post_single ul li {
  list-style: outside;
  margin-bottom: 10px;
  line-height: 1.4;
}

.group-h .post_single ol li {
  list-style: outside decimal;
  margin-bottom: 10px;
  line-height: 1.4;
}

.group-h .post_single blockquote {
  background: #f5f5f5;
  padding: 35px 25px 1px;
  margin-bottom: 30px;
  position: relative;
}

.group-h .post_single blockquote::before {
  content: "“";
  left: 10px;
  top: 10px;
  position: absolute;
  font-size: 60px;
  color: #aaa;
}

.group-h .post_single a {
  text-decoration: underline;
  color: #222;
}

.group-h .post_single a:hover {
  text-decoration: none;
}

.group-h .post_head {
  margin-bottom: 20px;
}

.group-h .post_title {
  font-size: 22px;
  letter-spacing: 0.18em;
  color: #09727b;
  line-height: 1.5;
  font-weight: bold;
}

.group-h .post_date {
  text-align: left;
  line-height: 2;
  font-weight: bold;
}

.group-h .post_item:nth-child(n+2) {
  margin-top: 60px;
  padding-top: 60px;
  border-top: 2px solid #d6d6d6;
}

.group-h [data-js-tel] a {
  color: inherit;
  text-decoration: underline;
}

.group-h .post_text .c_box .img_wrapper img {
  max-width: 100%;
  border-radius: 20px;
}

.group-h .post_text .c_box .img_wrapper img.alignright {
  float: right;
  margin: 0 0 15px 15px;
  display: block;
}

.group-h .post_text .c_box .img_wrapper img.alignleft {
  float: left;
  margin: 0 15px 15px 0;
  display: block;
}

.group-h .post_text .c_box .img_wrapper img.aligncenter {
  display: block;
  margin: 0 auto;
}

.group-h .post_text .c_box.w48-w48 {
  display: flex;
  justify-content: space-between;
}

.group-h .post_text .c_box.w48-w48 .child.img_wrapper {
  width: 48%;
}

.group-h .post_text .c_box.w48-w48 .child.img_wrapper img {
  width: 100%;
  object-fit: cover;
}

@media only screen and (max-width: 768px) {
  .group-h .post_text .c_box.w48-w48 .child.img_wrapper {
    width: 100%;
  }
}

.group-h .post_text p {
  margin-bottom: 30px;
  line-height: 1.6;
  font-size: 16px;
}

.group-h .post_text h1 {
  font-size: 36px;
  border-bottom: 6px solid;
  margin: 0 0 35px;
}

.group-h .post_text h2 {
  font-size: 32px;
  border-bottom: 5px solid;
  margin: 0 0 35px;
}

.group-h .post_text h3 {
  font-size: 28px;
  border-bottom: 4px solid;
  margin: 0 0 35px;
}

.group-h .post_text h4 {
  font-size: 24px;
  border-bottom: 3px solid;
  margin: 0 0 35px;
}

.group-h .post_text h5 {
  font-size: 20px;
  border-bottom: 2px solid;
  margin: 0 0 35px;
}

.group-h .post_text h6 {
  font-size: 16px;
  border-bottom: 1px solid;
  margin: 0 0 35px;
}

.group-h .post_text td {
  padding: 10px;
  border: 1px solid;
}

.group-h .post_text table {
  margin-bottom: 25px;
}

.group-h .post_text ul,
.group-h .post_text ol {
  padding-left: 2.0em;
  margin-bottom: 25px;
}

.group-h .post_text ul li {
  list-style: outside;
  margin-bottom: 10px;
  line-height: 1.4;
}

.group-h .post_text ol li {
  list-style: outside decimal;
  margin-bottom: 10px;
  line-height: 1.4;
}

.group-h .post_text a {
  text-decoration: underline;
  color: #999;
}

.group-h .post_text .box_line {
  border: 1px solid #A7E8C8;
  padding: 1em;
}

.group-h .post_text .under_line {
  border-bottom: 3px solid #A7E8C8;
}

@media only screen and (max-width: 768px) {
  .group-h .post_text img.alignright,
  .group-h .post_text img,
  .group-h .post_text img.alignleft {
    float: none;
    margin: 0 auto;
    display: block;
  }
  .group-h .post_text img.emoji {
    display: inline !important;
  }
  .group-h .post_text table {
    width: 100% !important;
  }
}

.group-h .c_pager {
  width: 100%;
}

.group-h .c_pager_single {
  display: flex;
  margin: 0 auto;
  justify-content: space-between;
}

.group-h .c_pager_single li {
  width: 290px;
  text-align: center;
}

.group-h .c_pager_single .back a {
  display: block;
  height: 70px;
  font-size: 16px;
  color: #2c2c2c;
  line-height: 70px;
  text-align: center;
  padding: 0;
}

.group-h .c_pager_single .back a:hover {
  opacity: 1 !important;
  color: #ffffff;
}

.group-h .c_pager_single .prev a,
.group-h .c_pager_single .next a {
  display: block;
  height: 70px;
  font-size: 16px;
  color: #2c2c2c;
  padding: 0;
  position: relative;
}

.group-h .c_pager_single .prev a span,
.group-h .c_pager_single .next a span {
  display: block;
}

.group-h .c_pager_single .prev a:hover,
.group-h .c_pager_single .next a:hover {
  opacity: 1 !important;
}

.group-h .c_pager_single .prev a:before,
.group-h .c_pager_single .prev a:after,
.group-h .c_pager_single .next a:before,
.group-h .c_pager_single .next a:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 17px;
  transition: 0.5s;
  height: 1px;
}

.group-h .c_pager_single .prev a {
  position: relative;
}

.group-h .c_pager_single .prev a:before {
  content: "";
  height: 1em;
  line-height: 1;
  font-family: 'FontAwesome';
  vertical-align: middle;
  background: #09727b;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  left: 30px;
}

.group-h .c_pager_single .prev a:hover:after, .group-h .c_pager_single .prev a:hover:before {
  background: #ffffff;
  color: #09727b;
}

.group-h .c_pager_single .next a {
  padding-right: 25px;
  position: relative;
}

.group-h .c_pager_single .next a:before {
  content: "";
  height: 1em;
  line-height: 1;
  font-family: 'FontAwesome';
  vertical-align: middle;
  background: #09727b;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  right: 30px;
}

.group-h .c_pager_single .next a:hover:after, .group-h .c_pager_single .next a:hover:before {
  background: #ffffff;
  color: #09727b;
}

@media only screen and (max-width: 768px) {
  .group-h .c_pager_single {
    flex-wrap: wrap;
    width: 100%;
    max-width: 600px;
  }
  .group-h .c_pager_single .back {
    order: 3;
    width: 100%;
  }
  .group-h .c_pager_single .back a {
    max-width: none;
    height: 60px;
    line-height: 60px;
    text-align: center;
    margin: auto;
  }
  .group-h .c_pager_single .prev {
    order: 1;
    width: 50%;
    box-sizing: border-box;
    padding-right: 5px;
  }
  .group-h .c_pager_single .prev a {
    margin-right: 0;
  }
  .group-h .c_pager_single .prev a::before {
    left: 15px;
    font-size: 12px;
    width: 20px;
    height: 20px;
  }
  .group-h .c_pager_single .next {
    order: 2;
    width: 50%;
    box-sizing: border-box;
    padding-left: 5px;
  }
  .group-h .c_pager_single .next a {
    margin-left: 0;
  }
  .group-h .c_pager_single .next a::before {
    right: 15px;
    font-size: 12px;
    width: 20px;
    height: 20px;
  }
  .group-h .c_pager_single .prev a,
  .group-h .c_pager_single .next a {
    display: inline-block;
    height: 50px;
    max-width: none;
  }
  .group-h .c_pager_single .prev a span,
  .group-h .c_pager_single .next a span {
    line-height: 50px;
  }
}

.group-h .wp-pagenavi {
  text-align: center;
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
}

.group-h .wp-pagenavi a,
.group-h .wp-pagenavi span {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  margin: 0 3px;
  background-color: #ffffff;
  color: #09727b;
  transition: 0.5s all;
  border: 1px solid #09727b;
}

@media only screen and (max-width: 768px) {
  .group-h .wp-pagenavi a,
  .group-h .wp-pagenavi span {
    width: 35px;
    height: 35px;
  }
}

.group-h .wp-pagenavi a:hover,
.group-h .wp-pagenavi span:hover {
  background-color: #09727b;
  color: #ffffff;
  opacity: 1 !important;
}

.group-h .wp-pagenavi a:hover {
  text-decoration: none;
  background-color: #09727b;
  color: #ffffff;
}

.group-h .wp-pagenavi .current {
  background-color: #09727b;
  color: #ffffff;
  opacity: 0.9;
}

.group-h .checkbox .error {
  margin-top: 5px;
}

.group-h #privacy .h2_title02 .main {
  font-size: 24px;
  margin-bottom: 20px;
}

.group-h #privacy .child._text {
  margin-bottom: 60px;
}

.group-h #privacy .child._text:last-child {
  margin-bottom: 0px;
}

@media only screen and (max-width: 768px) {
  .group-h #privacy .h2_title02 .main {
    font-size: 16px;
    text-align: center;
  }
  .group-h #privacy .child._text {
    margin-bottom: 30px;
  }
}

.group-h ._mb20 {
  margin-bottom: 20px;
}

.group-h ._mb30 {
  margin-bottom: 30px;
}

.group-h ._mb40 {
  margin-bottom: 40px;
}

.group-h ._mb100 {
  margin-bottom: 100px;
}

.group-h ._mt20 {
  margin-top: 20px;
}

.group-h ._mt30 {
  margin-top: 30px;
}

.group-h ._mt40 {
  margin-top: 40px;
}

.group-h ._mt100 {
  margin-top: 100px;
}

.news_lists {
  border-top: 1px solid #09727b;
}

.news_lists li {
  padding: 60px 0;
  border-bottom: 1px solid #09727b;
}

.news_lists .date {
  color: #8eb7b8;
}

.news_lists .gallery {
  display: flex;
  gap: 10px;
}

@media only screen and (max-width: 768px) {
  .news_lists .gallery {
    flex-wrap: wrap;
  }
  .news_lists .gallery .gallery_item {
    width: calc(50% - 5px);
  }
}

.br-sp {
  display: none;
}

@media only screen and (max-width: 1040px) {
  .br-sp {
    display: block;
  }
}

/*# sourceMappingURL=_maps/style.css.map */
