@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans&family=Noto+Sans+JP:wght@400;500;700;900&family=Zen+Maru+Gothic:wght@400;500;700&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: #222222;
  font-family: "Zen Maru Gothic", sans-serif;
}

a {
  color: #222222;
}

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 */
  /* 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 .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 #00a3e7;
  border-radius: 40px;
  /* ボタン右矢印 */
}

.group-h .button01 span {
  color: #00a3e7;
  transition: 0.5s;
}

.group-h .button01:hover {
  cursor: pointer;
  background-color: #00a3e7;
  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: #00a3e7;
  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: #00a3e7;
  opacity: 1;
}

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

.group-h .button01.center {
  margin: 0 auto;
}

.group-h a.link {
  text-decoration: underline;
  color: #00a3e7;
}

.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: "Zen Maru Gothic", sans-serif;
  line-height: 1.5;
  padding: 10px 10px;
  border: 1px solid #85c7e8;
  vertical-align: middle;
  text-align: center;
}

.group-h .table_scroll .c_table01 th {
  background-color: #00a3e7;
  color: #ffffff;
}

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

@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;
  text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}

.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: #00a3e7;
  z-index: 2;
}

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

.group-h ul.list_ul li {
  font-size: "Zen Maru Gothic", 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: #00a3e7;
  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: "Zen Maru Gothic", 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: #85c7e8;
  text-align: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  font-size: 12px;
  font-weight: bold;
  color: #00a3e7;
}

.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: #00a3e7;
  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: #85c7e8;
  font-weight: 700;
}

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

.group-h .h2_title01 .main {
  font-size: 36px;
  line-height: 1.8;
  color: #00a3e7;
  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: #85c7e8;
  letter-spacing: 0.05em;
  font-weight: 600;
  line-height: 1;
}

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

.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: #85c7e8;
  align-items: center;
  gap: 10px;
  display: flex;
  border-bottom: 1px solid #85c7e8;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1;
}

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

.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 #00a3e7;
  border-left: 3px solid #00a3e7;
  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 0 0;
  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;
  width: 352px;
}

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

@media (max-width: 1200px) {
  .group-h .h_inner .header_logo {
    width: 200px;
  }
}

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

@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: #00a3e7;
  color: #ffffff;
  border-radius: 30px;
  border: solid #00a3e7 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 #00a3e7 1px;
  color: #00a3e7;
  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: #00a3e7;
    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: #00a3e7;
    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: #00a3e7;
    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: #00a3e7;
    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: #00a3e7;
}

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

.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: #222222;
}

.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-image: linear-gradient(#c7e8fb, #91d5f6, #00a3e7);
  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 #00a3e7;
}

@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;
  text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}

.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;
  text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}

@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;
  text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}

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

.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%;
  padding-bottom: 20px;
  text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}

.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: #00a3e7;
  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;
  text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}

@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;
}

.group-h .footer-top {
  margin-top: -220px;
  padding-top: 270px;
}

@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: linear-gradient(#c7e8fb, #91d5f6, #00a3e7);
}

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

.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: #f0faff;
  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: #f0faff;
  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: #f0faff;
  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: #00a3e7;
}

.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: "Zen Maru Gothic", sans-serif;
  line-height: 1.8;
  width: 100%;
  border-bottom: 1px solid #85c7e8;
  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: linear-gradient(#c7e8fb, #91d5f6, #00a3e7);
}

.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: #00a3e7;
  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: #00a3e7;
  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: "Zen Maru Gothic", 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: #00a3e7;
  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: #00a3e7;
  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: 100%;
  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;
  gap: 20px;
}

.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: 450px;
  height: auto;
  margin-left: 0;
  margin-right: 0;
  overflow: unset;
}

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

.group-h .c_box.w50-w50._greeting .child.img_wrapper .h3_title02 {
  margin-top: 10px;
  border-bottom: none;
}

.group-h .c_box.w50-w50._greeting .child.img_wrapper .h3_title02 .main {
  font-size: 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: 20px;
  }
  .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;
  }
  .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%;
  }
}

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

@media only screen and (max-width: 768px) {
  .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 {
  height: 100%;
  border-radius: 5px;
  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 {
  border-top: 1px solid #d6d6d6;
}

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

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

.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: #00a3e7;
  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: 90px;
  font-size: 24px;
  color: #00a3e7;
  margin-right: 50px;
  font-weight: 400;
}

.group-h .c-table .m20 li:first-child {
  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 .c-table .m20 li span {
    font-size: 16px;
    margin-right: 25px;
  }
}

.group-h .article_single {
  border-bottom: 3px solid #85c7e8;
  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: #00a3e7;
  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: #00a3e7;
  line-height: 1.5;
  font-weight: bold;
}

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

.group-h .post_item {
  margin-top: 100px;
  padding-top: 100px;
  border-top: 2px solid #d6d6d6;
}

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

.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: #00a3e7;
  transition: 0.5s all;
  border: 1px solid #00a3e7;
}

@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: #00a3e7;
  color: #ffffff;
  opacity: 1 !important;
}

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

.group-h .wp-pagenavi .current {
  background-color: #00a3e7;
  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;
}

.br-sp {
  display: none;
}

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

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