@charset "UTF-8";
/*ヘッダー設定*/
/*pc基本設定*/
/*sp基本設定*/
/*背景*/
/*ボーダー*/
/*ボタン*/
/*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: 16px;
  background: #e7f2ff;
  color: #222222;
  font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", YuGothic, "Yu Gothic", "メイリオ", Meiryo, sans-serif;
}

a {
  color: #222222;
}

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

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

#border_display {
  width: 100%;
  min-width: 1200px;
  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(46, 150, 72, 0.1);
}

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

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

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

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

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

/*===========
inview
===========*/
.fadeIn {
  opacity: 0;
  transition: 2s;
}

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

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

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

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

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

.fadeIn_up {
  opacity: 0;
  transform: translate(0, 150px);
  transition: 1s;
}

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

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

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

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

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

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

/*コンポーネント*/
button,
input[type="button"] {
  background-color: transparent;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

.button01 {
  display: block;
  width: 100%;
  max-width: 280px;
  height: 60px;
  font-size: 16px;
  line-height: 56px;
  text-align: left;
  transition: 0.5s;
  background-color: #222222;
  border: 2px solid #222222;
  position: relative;
  border-radius: 30px;
  padding-left: 30px;
}

.button01 span {
  font-size: 16px;
  font-weight: bold;
  color: #ffffff;
  transition: 0.5s;
  letter-spacing: 0.12em;
}

.button01:hover {
  cursor: pointer;
  color: #ffffff;
  background-color: #ffffff;
  opacity: 1 !important;
}

.button01:hover span {
  color: #222222;
}

.button01._center {
  display: block;
  margin: 0 auto;
}

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

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

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

.button01._arr:before, .button01._arr:after {
  content: "";
  display: block;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s;
}

.button01._arr:before {
  width: 15px;
  height: 2px;
}

.button01._arr:after {
  right: 21px;
  width: 10px;
  height: 10px;
  margin-top: -6px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  display: inline-block;
  vertical-align: middle;
}

.button01._arr:hover:before, .button01._arr:hover:after {
  color: #ffffff;
}

.button01._arr:before {
  background-color: #ffffff;
}

.button01._arr:hover:before {
  background-color: #222222;
}

.button01._arr:hover::after {
  border-top: 2px solid #222222;
  border-right: 2px solid #222222;
}

.button01._restore {
  color: #ffffff;
  border: none;
  background: linear-gradient(105deg, #7a33f9 0%, #e700a8 30%, #ff1046 66%, #ffc501 100%);
  transition: 0.5s;
  overflow: hidden;
}

.button01._restore span {
  position: relative;
  z-index: 1;
  transition: 0.5s;
}

.button01._restore::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(105deg, #ffc501 0%, #ff1046 30%, #e700a8 66%, #7a33f9 100%);
  opacity: 0;
  transition: opacity 0.5s;
  z-index: 0;
}

.button01._restore:after {
  content: "";
  height: 1em;
  line-height: 1;
  font-family: 'FontAwesome';
  vertical-align: middle;
  display: block;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 26px;
  color: #ffffff;
  z-index: 1;
}

.button01._restore:hover::before {
  opacity: 1;
}

.button01._restore:hover span {
  color: #ffffff;
}

.button02,
.button03 {
  display: block;
  width: 100%;
  max-width: 342px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  position: relative;
  transition: 0.5s;
}

.button02:hover,
.button03:hover {
  cursor: pointer;
  background-color: #dddddd;
  color: #ffffff;
}

.button02 {
  border: 1px solid #dddddd;
}

.button02:hover {
  background-color: #dddddd;
  color: #ffffff;
}

.button03 {
  color: #ffffff;
  border: 1px solid #dddddd;
  background-color: #dddddd;
}

.button03:hover {
  border: 1px solid #F3F3F3;
  background-color: #F3F3F3;
}

.button02._arr:before, .button02._arr:after,
.button03._arr:before,
.button03._arr:after {
  content: "";
  display: block;
  position: absolute;
  height: 1px;
  right: 15px;
  top: 50%;
  transition: 0.3s;
}

.button02._arr:before,
.button03._arr:before {
  width: 20px;
}

.button02._arr:after,
.button03._arr:after {
  width: 9px;
  transform-origin: right bottom;
  transform: rotate(33deg);
}

.button02._arr:hover:before, .button02._arr:hover:after,
.button03._arr:hover:before,
.button03._arr:hover:after {
  right: 8px;
}

.button02._arr:before, .button02._arr:after {
  background-color: #dddddd;
}

.button02._arr:hover:before, .button02._arr:hover:after {
  background-color: #ffffff;
}

.button03._arr:before, .button03._arr:after {
  background-color: #ffffff;
}

a.link {
  text-decoration: underline;
  color: #2866B1;
}

.button_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.c_table01 {
  width: 100%;
}

.c_table01 th, .c_table01 td {
  font-size: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", YuGothic, "Yu Gothic", "メイリオ", Meiryo, sans-serif;
  line-height: 1.5;
  padding: 10px 10px;
  border: 1px solid #F3F3F3;
  vertical-align: middle;
  text-align: center;
}

.c_table01 th {
  background-color: #dddddd;
  color: #ffffff;
}

.c_table01 td {
  background-color: #ffffff;
  color: #dddddd;
}

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

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

.list_title01:before {
  width: 80px;
  background: #dddddd;
  z-index: 2;
}

.list_title01:after {
  width: 100%;
  background: #F3F3F3;
  z-index: 1;
}

ul.list_ul li {
  font-size: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", YuGothic, "Yu Gothic", "メイリオ", Meiryo, sans-serif;
  line-height: 2;
}

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

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

ol.list_ol li {
  font-size: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", YuGothic, "Yu Gothic", "メイリオ", Meiryo, sans-serif;
  line-height: 2;
  position: relative;
  padding-left: 20px;
}

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: #F3F3F3;
  text-align: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  font-size: 12px;
  font-weight: bold;
  color: #dddddd;
}

/*h2~h4*/
.h2_title01 {
  width: 100%;
  padding-bottom: 5px;
  margin-bottom: 30px;
}

@media only screen and (max-width: 768px) {
  .h2_title01 {
    padding-bottom: 0;
  }
}

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

.h2_title01 span {
  display: block;
}

.h2_title01 .main {
  font-size: 48px;
  line-height: 1.8;
  color: #222222;
}

.h2_title01 .sub {
  font-size: 16px;
  line-height: 1.8;
  display: block;
  position: relative;
  padding-left: 57px;
}

.h2_title01 .sub::before {
  content: "";
  position: absolute;
  display: block;
  width: 10px;
  height: 10px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: #0636BA;
  border-radius: 50%;
}

.h2_title01 .sub::after {
  content: "";
  position: absolute;
  display: block;
  width: 32px;
  height: 1px;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #0636BA;
}

.h2_title01 ._en {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: bold;
  letter-spacing: 0.05em;
}

@media only screen and (max-width: 768px) {
  .h2_title01 ._en {
    letter-spacing: 0.1em;
  }
}

.h2_title01 ._ja {
  font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", YuGothic, "Yu Gothic", "メイリオ", Meiryo, sans-serif;
  font-weight: bold;
  letter-spacing: 0.1em;
}

.h2_title01._row .main {
  font-size: 38px;
}

@media only screen and (max-width: 768px) {
  .h2_title01 {
    margin-bottom: 20px;
  }
  .h2_title01 .main {
    font-size: 30px;
    line-height: 1.5;
  }
  .h2_title01 .sub {
    font-size: 16px;
  }
}

.h2_title02 {
  width: 100%;
  position: relative;
}

.h2_title02._center {
  text-align: center;
}

.h2_title02 span {
  display: block;
  width: 100%;
}

.h2_title02 .main {
  font-size: 80px;
  line-height: 1;
  letter-spacing: 0;
  color: #0636BA;
  margin-bottom: 30px;
}

.h2_title02 .sub {
  font-size: 22px;
  line-height: 1;
  letter-spacing: 0.1em;
}

.h2_title02 ._en {
  font-family: "Zen Kaku Gothic New", sans-serif;
}

@media only screen and (max-width: 768px) {
  .h2_title02 ._en {
    letter-spacing: 0.01em;
  }
}

.h2_title02 ._ja {
  font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", YuGothic, "Yu Gothic", "メイリオ", Meiryo, sans-serif;
  font-weight: bold;
}

@media only screen and (max-width: 768px) {
  .h2_title02 {
    margin-bottom: 30px;
  }
  .h2_title02 .main {
    font-size: 80px;
  }
  .h2_title02:after {
    bottom: -10px;
  }
}

.h2_banner {
  width: 100%;
  height: 280px;
  position: relative;
  margin-bottom: 40px;
}

.h2_banner img,
.h2_banner h2 {
  width: 100%;
  height: 280px;
  position: absolute;
  top: 0;
  left: 0;
}

.h2_banner img {
  z-index: 1;
  object-fit: cover;
}

.h2_banner h2 {
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.5);
}

.h2_banner h2 span {
  display: inline-block;
  width: 100%;
  text-align: center;
  color: #ffffff;
}

.h2_banner h2 span.main {
  font-size: 32px;
  margin-bottom: 15px;
}

.h2_banner h2 span.sub {
  font-size: 14px;
}

.h2_banner h2 span._en {
  font-family: "Exo 2", sans-serif;
  letter-spacing: 0.16em;
}

@media only screen and (max-width: 768px) {
  .h2_banner h2 span._en {
    letter-spacing: 0.1em;
  }
}

.h2_banner h2 span._ja {
  font-family: "Noto Sans JP", "メイリオ", Meiryo, sans-serif;
}

.h3_title01 {
  margin-bottom: 25px;
}

.h3_title01 span {
  color: #222222;
  font-size: 22px;
  font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", YuGothic, "Yu Gothic", "メイリオ", Meiryo, sans-serif;
  font-weight: bold;
  line-height: 36px;
}

.h3_title02 {
  display: inline-block;
  width: 100%;
  font-size: 22px;
  font-weight: bold;
  line-height: 1.8;
  letter-spacing: 0.16em;
  padding: 7px 0;
}

.h3_title03 span {
  display: block;
}

.h3_title03 .main {
  font-size: 50px;
  margin-bottom: 15px;
}

.h3_title03 .sub {
  font-size: 16px;
  font-weight: bold;
}

.h3_title03 ._ja {
  font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", YuGothic, "Yu Gothic", "メイリオ", Meiryo, sans-serif;
}

.h3_title03 ._en {
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.h3_title04 {
  width: 100%;
  background: #0636ba;
  background: linear-gradient(90deg, #0636ba 0%, #1e96e2 100%);
  margin-bottom: 30px;
  position: relative;
}

.h3_title04::before {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: calc(tan(60deg) * 50px / 2);
  background-color: #ffffff;
  transform: rotate(45deg);
  top: -22px;
  right: -26px;
  z-index: 0;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

@media only screen and (max-width: 768px) {
  .h3_title04::before {
    top: -20px;
    right: -23px;
  }
}

.h3_title04 span {
  color: #ffffff;
  letter-spacing: 0.05em;
}

.h3_title04 .main {
  display: block;
  font-size: 22px;
  padding: 19px 0 19px 38px;
  position: relative;
}

.h3_title04 .main::before {
  content: "";
  position: absolute;
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ffffff;
  top: 26px;
  left: 20px;
}

.h3_title04 ._ja {
  font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", YuGothic, "Yu Gothic", "メイリオ", Meiryo, sans-serif;
}

.h3_title04 ._en {
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.h4_title01 {
  height: 60px;
  padding-left: 16px;
  border-left: 5px solid #222222;
}

.h4_title01 span {
  display: block;
  font-weight: bold;
  line-height: 30px;
}

.h4_title02 {
  margin-bottom: 30px;
  padding-left: 20px;
}

.h4_title02 span {
  display: block;
  font-weight: bold;
}

.h4_title02 .main {
  font-size: 22px;
  line-height: 1.5;
  letter-spacing: 0.1em;
  position: relative;
}

.h4_title02 .main::before {
  content: "";
  position: absolute;
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #0636BA;
  top: 12px;
  left: -20px;
}

.h4_title02 .sub {
  font-size: 16px;
  color: #0636BA;
  letter-spacing: 0.1em;
  margin-left: -15px;
  margin-bottom: 10px;
}

.h4_title02 ._ja {
  font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", YuGothic, "Yu Gothic", "メイリオ", Meiryo, sans-serif;
}

.h4_title02 ._en {
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.title_container {
  margin-bottom: 42px;
}

@media only screen and (max-width: 768px) {
  .title_container {
    margin-bottom: 10px;
  }
}

.title_container .h2_title01 {
  width: 50%;
  margin: 0 auto;
}

.title_container p {
  width: 50%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.title_container .h2_catch {
  margin: 0;
  font-size: 30px;
  font-weight: bold;
}

/*ヘッダー*/
/*pc*/
.header {
  width: 100%;
  min-width: calc(1200px + 100px);
  position: fixed;
  z-index: 9998;
  height: 100px;
  transition: .3s;
  background: transparent;
}

.header.is-animation {
  background: #ffffff;
}

.h_inner {
  width: auto;
  min-width: 1200px;
  display: flex;
  height: 100%;
  justify-content: end;
  transition: all 0.3s;
}

.h_inner .header_logo {
  width: auto;
  height: 100px;
  margin-left: 36px;
  display: block;
  align-items: center;
}

.h_inner .header_logo img {
  width: 100%;
  height: 100px;
  object-fit: contain;
}

.h_inner .header_wrap {
  width: 100%;
  min-width: 600px;
  display: flex;
  justify-content: end;
  overflow: hidden;
}

@media only screen and (max-width: 768px) {
  .h_inner .header_wrap {
    background: none;
    border: none;
  }
}

.h_inner .header_wrap .global_wrap {
  width: auto;
  height: 100%;
}

@media only screen and (max-width: 768px) {
  .h_inner .header_wrap .global_wrap {
    height: 100vh;
  }
}

.h_inner .header_wrap .global_wrap .global_navi {
  display: flex;
  width: auto;
  min-width: 500px;
  height: 100%;
  z-index: 9999;
  justify-content: space-between;
  padding: 0 40px;
}

@media only screen and (max-width: 768px) {
  .h_inner .header_wrap .global_wrap .global_navi {
    justify-content: unset;
  }
}

.h_inner .header_wrap .global_wrap .global_navi li {
  position: relative;
  transition: 0.5s;
}

.h_inner .header_wrap .global_wrap .global_navi li a {
  display: flex;
  height: 100px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 12px;
  font-weight: bold;
  text-align: center;
  position: relative;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.h_inner .header_wrap .global_wrap .global_navi li a:hover {
  opacity: 1;
}

.h_inner .header_wrap .global_wrap .global_navi li a .sub {
  font-size: 10px;
  color: #0636BA;
  margin-bottom: 6px;
  letter-spacing: 0.18em;
  white-space: nowrap;
}

.h_inner .header_wrap .global_wrap .global_navi li a .main {
  width: fit-content;
  position: relative;
  color: #222222;
}

.h_inner .header_wrap .global_wrap .global_navi li a .main:after {
  content: "";
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  height: 15px;
  width: 100%;
  transition: 0.3s;
  background: #222222;
  border-radius: 0 0 10px 10px;
}

@media only screen and (max-width: 768px) {
  .h_inner .header_wrap .global_wrap .global_navi li a .main:after {
    display: none;
  }
}

.h_inner .header_wrap .global_wrap .global_navi li a ._en {
  font-family: "Zen Kaku Gothic New", sans-serif;
  letter-spacing: 0.18em;
}

.h_inner .header_wrap .global_wrap .global_navi li a ._ja {
  letter-spacing: 0.1em;
}

.h_inner .header_wrap .global_wrap .global_navi li:hover .main:after {
  top: -50px;
}

.h_inner .header_wrap .global_wrap .global_navi li.nav_contact {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 20px;
}

.h_inner .header_wrap .global_wrap .global_navi li.nav_contact:hover .main:after {
  display: none;
}

.h_inner .header_wrap .global_wrap .global_navi li.nav_contact a {
  position: relative;
  width: 136px;
  height: 36px;
  line-height: 36px;
  border-radius: 50px;
  background: #0636ba;
  background: linear-gradient(90deg, #1e96e2 0%, #0636ba 100%);
}

.h_inner .header_wrap .global_wrap .global_navi li.nav_contact a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50px;
  background: #0636ba;
  background: linear-gradient(90deg, #0636ba 0%, #1e96e2 100%);
  opacity: 0;
  transition: opacity 0.5s;
  z-index: 0;
}

.h_inner .header_wrap .global_wrap .global_navi li.nav_contact a:hover::before {
  opacity: 1;
}

.h_inner .header_wrap .global_wrap .global_navi li.nav_contact a .main {
  position: absolute;
  width: 136px;
  height: 36px;
  line-height: 36px;
  border-radius: 50px;
  background: none;
  transition: 0.5s;
  color: #ffffff;
}

.h_inner .header_wrap .global_wrap .global_navi li.nav_contact a:hover .main:after {
  display: none;
}

.h_inner .header_wrap .global_wrap .global_navi li.nav_contact:hover a::before {
  opacity: 1;
}

.h_inner .header_right {
  width: 18%;
  text-align: center;
  background: #0636BA;
  border-radius: 10px;
  position: relative;
}

.h_inner .header_right a {
  display: flex;
  height: 100px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 10px;
  font-weight: bold;
  text-align: center;
  position: relative;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.h_inner .header_right a:hover {
  opacity: 1;
}

.h_inner .header_right a .sub {
  font-size: 10px;
  color: #ffffff;
  margin-bottom: 6px;
  letter-spacing: 0.18em;
  white-space: nowrap;
}

.h_inner .header_right a .main {
  width: fit-content;
  position: relative;
  color: #ffffff;
}

.h_inner .header_right a .main:after {
  content: "";
  position: absolute;
  bottom: -36px;
  left: 50%;
  transform: translateX(-50%);
  height: 4px;
  width: 100%;
  transition: 0.3s;
  background: #ffffff;
  border-radius: 20px 20px 0 0;
}

.h_inner .header_right a ._en {
  font-family: "Zen Kaku Gothic New", sans-serif;
  letter-spacing: 0.18em;
}

.h_inner .header_right a ._ja {
  letter-spacing: 0.1em;
}

.h_inner .header_right:hover .main:after {
  bottom: -28px;
}

/*ヘッダーアイコンサイズ、ナビメニュー項目数によって適宜調整*/
@media (max-width: 1196px) {
  .header {
    min-width: auto;
  }
  .h_inner {
    width: auto;
  }
}

/*side_menu*/
#side_menu {
  position: fixed;
  z-index: 9999;
  width: 100px;
  height: 100%;
  min-height: 700px;
  left: 0;
  top: 0;
  margin-top: 100px;
}

#side_menu .side_menu_wrap {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 100;
  background: #ffffff;
  transition: 0.5s;
}

#side_menu .menu_button {
  display: block;
  width: 55px;
  padding: 13px 10px 15px;
  position: fixed;
  z-index: 100;
  left: 18px;
  top: 50%;
  text-align: center;
  cursor: pointer;
}

#side_menu .menu_trigger,
#side_menu .menu_trigger span {
  display: inline-block;
  transition: 0.4s;
  box-sizing: border-box;
}

#side_menu .menu_trigger {
  position: relative;
  width: 30px;
  height: 16px;
}

#side_menu .menu_trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #222222;
  border-radius: 4px;
}

#side_menu .menu_trigger span:nth-of-type(1) {
  top: 0;
}

#side_menu .menu_trigger span:nth-of-type(2) {
  top: 44%;
}

#side_menu .menu_trigger span:nth-of-type(3) {
  bottom: 0;
}

#side_menu #side_menu_navi {
  position: fixed;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
  background: #ffffff;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
}

#side_menu #side_menu_navi .panel {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

#side_menu #side_menu_navi .panel .header_logo {
  position: absolute;
  top: 0;
  left: 0;
  height: 100px;
  width: auto;
}

#side_menu #side_menu_navi .panel .header_logo img {
  height: 100px;
  width: auto;
}

#side_menu #side_menu_navi .panel .global_navi {
  text-align: center;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

#side_menu #side_menu_navi .panel .global_navi li {
  width: 240px;
  margin: 30px 20px 20px;
}

#side_menu #side_menu_navi .panel .global_navi li a {
  display: block;
  color: #222222;
  font-size: 24px;
  font-weight: bold;
  border-bottom: 1px dashed #fff;
  padding: 20px;
  transition: 0.5s;
}

#side_menu .side_menu_cover {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  background: rgba(3, 3, 3, 0.5);
  display: block;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
}

.header.active #side_menu .menu_trigger span:nth-of-type(1) {
  transform: translateY(6px) rotate(-45deg);
}

.header.active #side_menu .menu_trigger span:nth-of-type(2) {
  opacity: 0;
}

.header.active #side_menu .menu_trigger span:nth-of-type(3) {
  transform: translateY(-8px) rotate(45deg);
}

.header.active #side_menu #side_menu_navi {
  opacity: 1;
  visibility: visible;
}

.header.active #side_menu .side_menu_cover {
  opacity: 1;
  visibility: visible;
}

/*SP*/
@media only screen and (max-width: 768px) {
  .header,
  .header.is-animation {
    min-width: auto;
    height: 60px;
    padding-top: 10px;
    padding-bottom: 10px;
    top: 0;
    overflow: unset;
  }
  .h_inner {
    width: 100%;
    height: 100%;
    padding: 0 20px;
    /*spメニューの見た目*/
    /*spメニューの中身*/
  }
  .h_inner .header_logo {
    margin-top: -10px;
    height: 60px;
    width: auto;
    margin-left: 0 !important;
  }
  .h_inner .header_logo img {
    height: 60px;
    width: auto;
  }
  .h_inner .menu_button .menu_text {
    display: block;
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    text-align: center;
    font-size: 14px;
    transition: 0.4s;
    color: #0636BA;
    font-weight: bold;
  }
  .h_inner .menu_button {
    display: block;
    width: 60px;
    height: 30px;
    position: fixed;
    z-index: 100;
    right: 15px;
    top: 15px;
    text-align: center;
    cursor: pointer;
    background: #222222;
    border-radius: 50px;
  }
  .h_inner .menu_trigger,
  .h_inner .menu_trigger span {
    display: inline-block;
    transition: 0.4s;
    box-sizing: border-box;
  }
  .h_inner .menu_trigger {
    position: relative;
    width: 30px;
    height: 16px;
  }
  .h_inner .menu_trigger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    border-radius: 4px;
  }
  .h_inner .menu_trigger span:nth-of-type(1) {
    top: 10px;
  }
  .h_inner .menu_trigger span:nth-of-type(2) {
    bottom: -3px;
  }
  .h_inner .global_wrap {
    position: fixed;
    top: 70px;
    left: 100%;
    border-radius: 40px;
    width: calc(100% - 20px) !important;
    height: auto !important;
    z-index: 1;
    overflow: hidden;
    background: #222222;
    transition: 0.4s;
    padding: 40px 60px;
  }
  .h_inner .global_wrap .global_navi {
    flex-direction: column;
    justify-content: flex-start;
    width: 100% !important;
    min-width: auto !important;
    padding: 0 !important;
  }
  .h_inner .global_wrap .global_navi li {
    display: block;
    text-align: left;
    height: 70px;
    line-height: 70px;
    width: 100%;
  }
}

@media only screen and (max-width: 768px) and (max-width: 768px) {
  .h_inner .global_wrap .global_navi li {
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 768px) {
  .h_inner .global_wrap .global_navi li:hover:after {
    display: none;
  }
  .h_inner .global_wrap .global_navi li a {
    font-size: 20px;
    display: block;
    height: 100%;
    width: 100%;
    align-items: start !important;
  }
  .h_inner .global_wrap .global_navi li a .main {
    color: #ffffff !important;
  }
  .h_inner .global_wrap .global_navi li .sub {
    display: none;
  }
  .h_inner .global_wrap .global_navi li.nav_contact {
    padding-left: 0 !important;
  }
  .h_inner .global_wrap .global_navi li.nav_contact a {
    text-align: center;
    width: 220px !important;
    height: 60px !important;
  }
  .h_inner .global_wrap .global_navi li.nav_contact a .main {
    left: 50%;
    transform: translateX(-50%);
  }
  .h_inner .global_wrap .global_navi li.nav_contact a:hover .main {
    color: #ffffff !important;
    background: none !important;
  }
  .h_inner .global_wrap .global_contact {
    order: 2;
    height: auto;
    flex-direction: column;
  }
  .h_inner .global_wrap .global_contact .button._tel,
  .h_inner .global_wrap .global_contact .button._contact {
    max-width: 220px;
    margin: 0 auto;
    margin-bottom: 10px;
  }
  /*spメニューの動き*/
  .header.active .global_wrap {
    left: 10px;
  }
  .header.active .menu_button .menu_trigger span:nth-of-type(1) {
    transform: translateY(4px) rotate(-20deg);
  }
  .header.active .menu_button .menu_trigger span:nth-of-type(2) {
    transform: translateY(-3px) rotate(20deg);
  }
}

.main_contents {
  overflow-x: hidden;
}

/*下層ヘッダー（pagetitlte）*/
.pagetitle {
  width: 100%;
  min-width: 1200px;
  position: relative;
}

.pagetitle::after {
  content: "";
  display: block;
  position: absolute;
  width: 1080px;
  height: 1080px;
  top: -420px;
  right: -32%;
  z-index: -1;
  background-image: url(../images/top/mv_bg.svg);
  background-repeat: no-repeat;
  animation: 8s linear infinite rotato;
}

@keyframes rotato {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}

@media only screen and (max-width: 768px) {
  .pagetitle::after {
    width: 534px;
    height: 534px;
    top: -184px;
    right: unset;
    left: 50%;
  }
}

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

.pt_inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 210px 40px 45px;
}

.pt_inner h1 {
  width: 100%;
  text-align: left;
}

.pt_inner h1 span {
  display: inline-block;
}

.pt_inner h1 .main {
  font-size: 110px;
  line-height: 1;
  margin-bottom: 20px;
}

.pt_inner h1 .sub {
  font-size: 22px;
  line-height: 1.7;
  border: 1px solid #222222;
  padding: 0 20px;
  background: #ffffff;
}

.pt_inner h1 ._en {
  font-family: "Zen Kaku Gothic New", sans-serif;
  letter-spacing: 0;
}

.pt_inner h1 ._ja {
  font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", YuGothic, "Yu Gothic", "メイリオ", Meiryo, sans-serif;
  font-weight: bold;
}

@media only screen and (max-width: 768px) {
  .pt_inner {
    padding: 85px 20px 0;
  }
  .pt_inner h1 .main {
    font-size: 64px;
  }
}

.c_bread {
  display: block;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  background: none;
  margin-top: 10px;
}

.c_bread li {
  display: inline;
  font-size: 14px;
  line-height: 1.4;
  color: #222222;
  word-break: break-all;
  font-weight: bold;
}

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

.c_bread li a {
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #222222;
}

.c_bread li:after {
  content: "/";
  padding: 0 5px;
}

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

/*フッター*/
/*pc*/
.footer {
  width: auto;
  background-color: #222222;
  color: #ffffff;
  position: relative;
  margin: 10px;
  border-radius: 30px;
}

.footer .pagetop_wrap {
  display: block;
  width: 50px;
  height: 50px;
  position: absolute;
  top: 20px;
  right: 20px;
  border-radius: 50%;
  background: #0636ba;
  background: linear-gradient(90deg, #0636ba 0%, #1e96e2 100%);
}

.footer .pagetop_wrap .pagetop {
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  position: relative;
  position: absolute;
  background: none;
  transition: 0.5s;
}

.footer .pagetop_wrap .pagetop:before, .footer .pagetop_wrap .pagetop:after {
  content: "";
  display: block;
  position: absolute;
  top: 16px;
  transition: 0.5s;
}

.footer .pagetop_wrap .pagetop:before {
  height: 20px;
  width: 2px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ffffff;
}

.footer .pagetop_wrap .pagetop:after {
  width: 15px;
  height: 15px;
  top: 33%;
  left: 33%;
  border-top: 2px solid #ffffff;
  border-left: 2px solid #ffffff;
  transform: rotate(45deg);
}

.footer .pagetop_wrap .pagetop:hover {
  opacity: 1;
  background: #ffffff;
  transition: 0.5s;
}

.footer .pagetop_wrap .pagetop:hover:before {
  background: #0636BA;
}

.footer .pagetop_wrap .pagetop:hover:after {
  border-top: 2px solid #0636BA;
  border-left: 2px solid #0636BA;
}

.footer .pagetop_wrap .pagetop span {
  display: block;
  color: #ffffff;
  transform: rotate(90deg);
  white-space: nowrap;
  margin-top: 80px;
  font-size: 16px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  letter-spacing: 0.1em;
}

.footer .f_inner {
  width: auto;
  max-width: 1120px;
  height: auto;
  min-height: 130px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 90px 0;
  margin: 0 140px;
}

@media only screen and (max-width: 768px) {
  .footer .f_inner {
    min-width: 320px;
    padding-top: 80px;
    padding-bottom: 40px;
    margin: 0 30px;
  }
}

.footer .f_inner .c_box.w50-w50 {
  justify-content: space-between;
  gap: 40px;
}

@media only screen and (max-width: 768px) {
  .footer .f_inner .c_box.w50-w50 .footer_left {
    display: block;
    width: 100%;
    margin: 0 auto;
  }
}

.footer .f_inner .c_box.w50-w50 .footer_left .footer_logo {
  width: 100%;
  max-width: 252px;
  height: 73px;
  padding: 0 20px;
  margin-bottom: 60px;
  border-radius: 10px;
  background: #ffffff;
}

.footer .f_inner .c_box.w50-w50 .footer_left .footer_logo img {
  height: 73px;
  border-radius: 10px;
  object-fit: contain;
}

.footer .f_inner .c_box.w50-w50 .footer_left .footer_info {
  display: inline-block;
  margin-bottom: 35px;
}

@media only screen and (max-width: 768px) {
  .footer .f_inner .c_box.w50-w50 .footer_left .footer_info {
    width: 100%;
    margin-bottom: 30px;
  }
}

.footer .f_inner .c_box.w50-w50 .footer_left .footer_info p {
  text-align: left;
  color: #ffffff;
  font-size: 16px;
  font-weight: bold;
  line-height: 2;
  letter-spacing: 0.1em;
  margin-bottom: 30px;
}

@media only screen and (max-width: 768px) {
  .footer .f_inner .c_box.w50-w50 .footer_left .footer_info p {
    text-align: left;
  }
}

.footer .f_inner .c_box.w50-w50 .footer_left .footer_info p span {
  display: block;
  padding: 5px 0;
}

.footer .f_inner .c_box.w50-w50 .footer_left .footer_info .footer_sns .sns_icon {
  color: #ffffff;
  font-size: 30px;
  margin-right: 20px;
}

.footer .f_inner .c_box.w50-w50 .footer_left .footer_info .footer_sns .sns_icon:last-of-type {
  margin-right: 0;
}

.footer .f_inner .c_box.w50-w50 .footer_right {
  max-width: 370px;
  position: relative;
}

.footer .f_inner .c_box.w50-w50 .footer_right .footer_navi {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  /* 左右の要素間の空間を均等に */
  height: auto;
}

.footer .f_inner .c_box.w50-w50 .footer_right .footer_navi .parent {
  display: flex;
  flex-direction: column;
  /* 各親要素の内部を縦に並べる */
  margin-bottom: 30px;
  min-width: 180px;
  /* 事業内容とその子要素のスタイル */
  /* 左右の配置を明示的に制御 */
}

.footer .f_inner .c_box.w50-w50 .footer_right .footer_navi .parent a {
  color: #ffffff;
  font-weight: bold;
  position: relative;
  padding: 3px 0;
  padding-left: 10px;
  max-height: 42px;
  transition: 0.5s;
}

.footer .f_inner .c_box.w50-w50 .footer_right .footer_navi .parent a .main {
  font-size: 16px;
  letter-spacing: 0.1em;
}

.footer .f_inner .c_box.w50-w50 .footer_right .footer_navi .parent a .sub {
  display: block;
  font-size: 10px;
  margin-bottom: 10px;
}

.footer .f_inner .c_box.w50-w50 .footer_right .footer_navi .parent a ._ja {
  font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", YuGothic, "Yu Gothic", "メイリオ", Meiryo, sans-serif;
}

.footer .f_inner .c_box.w50-w50 .footer_right .footer_navi .parent a ._en {
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.footer .f_inner .c_box.w50-w50 .footer_right .footer_navi .parent a::before, .footer .f_inner .c_box.w50-w50 .footer_right .footer_navi .parent a::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
}

.footer .f_inner .c_box.w50-w50 .footer_right .footer_navi .parent a::before {
  background: linear-gradient(180deg, #0636ba 0%, #1e96e2 100%);
  transition: 0.5s;
}

.footer .f_inner .c_box.w50-w50 .footer_right .footer_navi .parent a::after {
  background: #ffffff;
  transition: 0.5s;
}

.footer .f_inner .c_box.w50-w50 .footer_right .footer_navi .parent a:hover {
  opacity: 1;
}

.footer .f_inner .c_box.w50-w50 .footer_right .footer_navi .parent a:hover::before {
  background: linear-gradient(180deg, #0636ba 0%, #1e96e2 100%);
}

.footer .f_inner .c_box.w50-w50 .footer_right .footer_navi .parent a:hover::after {
  opacity: 0;
}

.footer .f_inner .c_box.w50-w50 .footer_right .footer_navi .parent:last-child {
  margin-right: 0;
}

.footer .f_inner .c_box.w50-w50 .footer_right .footer_navi .parent.child_on {
  flex-direction: column;
  /* 子要素を縦に並べる */
}

.footer .f_inner .c_box.w50-w50 .footer_right .footer_navi .parent.child_on a {
  margin-bottom: 10px;
}

.footer .f_inner .c_box.w50-w50 .footer_right .footer_navi .parent.child_on .parent_child a {
  width: auto;
  border-left: none;
  transition: 0.5s;
}

.footer .f_inner .c_box.w50-w50 .footer_right .footer_navi .parent.child_on .parent_child a span {
  font-size: 12px;
  letter-spacing: 0.1em;
  line-height: 1;
  padding-left: 15px;
  position: relative;
  margin-bottom: 5px;
  display: block;
  width: 100%;
}

.footer .f_inner .c_box.w50-w50 .footer_right .footer_navi .parent.child_on .parent_child a span::before {
  content: "";
  display: block;
  position: absolute;
  width: 8px;
  height: 8px;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  border-radius: 50%;
  background: #0636ba;
  background: linear-gradient(180deg, #0636ba 0%, #1e96e2 100%);
}

.footer .f_inner .c_box.w50-w50 .footer_right .footer_navi .parent.child_on .parent_child a:hover {
  transition: 0.5s;
  opacity: 1;
}

.footer .f_inner .c_box.w50-w50 .footer_right .footer_navi .parent.child_on .parent_child a:hover span {
  text-decoration: underline;
}

.footer .f_inner .c_box.w50-w50 .footer_right .footer_navi .parent.child_on .parent_child a::before, .footer .f_inner .c_box.w50-w50 .footer_right .footer_navi .parent.child_on .parent_child a::after {
  display: none;
}

.footer .f_inner .c_box.w50-w50 .footer_right .footer_navi .parent:nth-child(1), .footer .f_inner .c_box.w50-w50 .footer_right .footer_navi .parent:nth-child(3) {
  flex: 1;
}

.footer .f_inner .c_box.w50-w50 .footer_right .footer_navi .parent:nth-child(2), .footer .f_inner .c_box.w50-w50 .footer_right .footer_navi .parent:nth-child(4), .footer .f_inner .c_box.w50-w50 .footer_right .footer_navi .parent:nth-child(5) {
  flex: 1;
}

.footer .f_inner .c_box.w50-w50 .footer_right .footer_copy {
  width: auto;
  position: absolute;
  bottom: -20px;
  right: 65px;
  white-space: nowrap;
}

.footer .f_inner .c_box.w50-w50 .footer_right .footer_copy p {
  text-align: center;
  color: #ffffff;
  font-size: 14px;
  font-weight: bold;
}

@media only screen and (max-width: 768px) {
  .footer .f_inner .c_box.w50-w50 {
    margin-bottom: 0;
    gap: 20px;
  }
}

@media only screen and (max-width: 768px) {
  .footer .f_inner .footer_left {
    order: 2;
  }
  .footer .f_inner .footer_left .footer_logo {
    width: 100%;
    height: auto;
  }
  .footer .f_inner .footer_right {
    order: 1;
  }
  .footer .f_inner .footer_right .footer_navi {
    gap: 11px;
  }
  .footer .f_inner .footer_copy p {
    text-align: left;
    color: #ffffff;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0.1em;
  }
}

/*sp*/
@media only screen and (max-width: 768px) {
  .footer {
    min-width: 320px;
  }
  .footer .f_inner {
    justify-content: flex-start;
  }
  .footer .f_inner .footer_navi {
    display: none;
  }
}

/*コンテンツ*/
/*section基本設定*/
.c_content {
  width: 100%;
  min-width: 1200px;
  height: auto;
  padding-top: 110px;
  padding-bottom: 110px;
  overflow: hidden;
}

.c_content._bg00 {
  background: none;
}

.c_content._bg01 {
  padding-top: 170px;
  padding-bottom: 170px;
}

.c_content._bg01 .w50-w50 {
  align-items: start;
}

.c_content._bg01 .w50-w50 .child.text_container {
  width: 58%;
  margin-right: 40px;
  padding-right: 0;
}

.c_content._bg01 .w50-w50 .child.img_wrapper {
  width: 35%;
}

.c_content._bg01 .w50-w50 .child.img_wrapper::before {
  padding-top: 130%;
}

.c_content._bg01 .w50-w50 .child.img_wrapper::before {
  content: "";
  padding-top: 550px !important;
  background-image: linear-gradient(0deg, transparent calc(100% - 1px), #dddddd calc(100% - 1px)), linear-gradient(90deg, transparent calc(100% - 1px), #dddddd calc(100% - 1px));
  background-size: 24px 24px;
  background-repeat: repeat;
  background-position: bottom right;
  border-right: 1px solid #dddddd;
  border-bottom: 1px solid #dddddd;
  position: relative;
  top: 40px;
  left: 40px;
}

.c_content._bg01 .w50-w50._reverse .child.text_container {
  margin-right: 0;
  margin-bottom: 50px;
}

.c_content._bg01 .w50-w50._reverse .child.img_wrapper {
  margin-right: 40px;
}

@media only screen and (max-width: 768px) {
  .c_content._bg01 .w50-w50._reverse .child.img_wrapper {
    margin-right: 0;
  }
}

.c_content._bg01 .w50-w50._reverse._greeting {
  align-items: end;
}

.c_content._bg01 .w50-w50._reverse._greeting .child.text_container {
  order: 2;
}

.c_content._bg01 .w50-w50._reverse._greeting .child.img_wrapper {
  order: 1;
  margin-bottom: 60px;
}

.c_content._bg01 .w50-w50._sns {
  align-items: center;
}

.c_content._bg01 .w50-w50._sns .child.img_wrapper img {
  object-position: top;
}

.c_content._bg01 .w50-w50._sns .child.img_wrapper::before {
  padding-top: 500px !important;
}

.c_content._bg01 .h2_title01 {
  margin-bottom: 55px;
}

.c_content._bg01._banner {
  padding-top: 50px;
  padding-bottom: 250px;
}

@media only screen and (max-width: 768px) {
  .c_content._bg01 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .c_content._bg01 .w50-w50 .child.text_container,
  .c_content._bg01 .w50-w50._reverse .child.text_container {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
  .c_content._bg01 .w50-w50 .child.img_wrapper,
  .c_content._bg01 .w50-w50._reverse .child.img_wrapper {
    width: 100%;
  }
  .c_content._bg01 .h2_title01 {
    margin-bottom: 40px;
  }
}

.c_content._bg02 {
  padding-top: 215px;
  padding-bottom: 170px;
  color: #ffffff;
  background: #0636ba;
  background: linear-gradient(135deg, #0636ba 0%, #1e96e2 100%);
  position: relative;
  overflow: hidden;
}

.c_content._bg02::before {
  content: "";
  position: absolute;
  display: block;
  width: 100px;
  height: 100px;
  background-color: #e7f2ff;
  transform: rotate(-45deg);
  top: -50px;
  left: -50px;
  z-index: 0;
  clip-path: polygon(50% 0%, 0% 100px, 100px 100px);
}

.c_content._bg02._nondc::before {
  display: none;
}

.c_content._bg02 .h2_title01 {
  margin-bottom: 55px;
}

.c_content._bg02 .h2_title01 .main {
  color: #ffffff;
}

.c_content._bg02 .h2_title01 .sub::before {
  background-color: #ffffff;
}

.c_content._bg02 .h2_title01 .sub::after {
  background-color: #ffffff;
}

.c_content._bg02 .h4_title02 .main::before {
  background: #ffffff;
}

.c_content._bg02 .c_box_wrapper.w25-w75 .child dl {
  border-top: 1px solid #ffffff;
}

.c_content._bg02 .c_box_wrapper.w25-w75 .child dl:last-of-type {
  border-bottom: 1px solid #ffffff;
}

@media only screen and (max-width: 768px) {
  .c_content._bg02 .c_box_wrapper.w25-w75 {
    gap: 0px;
  }
  .c_content._bg02 .c_box_wrapper.w25-w75 .child:nth-child(1) {
    width: 100%;
    padding-left: 0;
  }
  .c_content._bg02 .c_box_wrapper.w25-w75 .child:nth-child(2) {
    width: 100%;
  }
  .c_content._bg02 .c_box_wrapper.w25-w75:last-of-type {
    margin-bottom: 0;
  }
}

.c_content .c_inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0 40px;
  box-sizing: border-box;
}

@media only screen and (max-width: 768px) {
  .c_content .c_inner {
    padding: 0 20px;
  }
}

.c_content._bg03 {
  padding-top: 220px;
  padding-bottom: 165px;
}

.c_content._bg03 .w50-w50 .child.text_container {
  width: 48%;
}

.c_content._bg03 .w50-w50 .child.img_wrapper {
  width: 38%;
}

.c_content._bg03 .w50-w50 .child.img_wrapper::before {
  padding-top: 130%;
}

.c_content._bg03 .w50-w50 .child.img_wrapper::before {
  content: "";
  padding-top: 550px !important;
  background-image: linear-gradient(0deg, transparent calc(100% - 1px), #dddddd calc(100% - 1px)), linear-gradient(90deg, transparent calc(100% - 1px), #dddddd calc(100% - 1px));
  background-size: 24px 24px;
  background-repeat: repeat;
  background-position: bottom right;
  border-right: 1px solid #dddddd;
  border-bottom: 1px solid #dddddd;
  position: relative;
  top: 40px;
  left: 40px;
}

.c_content._bg03 .w50-w50._reverse .child.text_container {
  width: 100%;
  max-width: 560px;
  margin-left: 130px;
  padding-left: 0px;
}

@media only screen and (max-width: 768px) {
  .c_content._bg03 .w50-w50._reverse .child.text_container {
    margin-left: auto;
  }
}

.c_content._bg03 .h2_title01 {
  margin-bottom: 55px;
}

.c_content._bg04 {
  padding-top: 270px;
  padding-bottom: 165px;
  color: #ffffff;
  background: #0636ba;
  background: linear-gradient(135deg, #0636ba 0%, #1e96e2 100%);
  position: relative;
  overflow: hidden;
}

.c_content._bg04::before {
  content: "";
  position: absolute;
  display: block;
  width: 100px;
  height: 100px;
  background-color: #ffffff;
  transform: rotate(-45deg);
  top: 0;
  left: -60px;
  z-index: 0;
  clip-path: polygon(50% 0%, 0% 100px, 100px 100px);
}

@media only screen and (max-width: 768px) {
  .c_content._bg04::before {
    top: -10px;
    left: -50px;
  }
}

.c_content._bg04::after {
  content: "";
  display: block;
  position: absolute;
  width: 1080px;
  height: 1080px;
  top: -550px;
  right: -22%;
  z-index: 0;
  background-image: url(../images/top/mv_bg.svg);
  background-repeat: no-repeat;
  animation: 8s linear infinite rotato;
}

@keyframes rotato {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}

@media only screen and (max-width: 768px) {
  .c_content._bg04::after {
    display: none;
  }
}

.c_content._bg04 .txt_scroll {
  pointer-events: none;
  width: 100%;
  height: 50px;
  position: absolute;
  top: 0;
  background: #ffffff;
  color: #0636BA;
  border-top: 1px solid #0636BA;
  font-size: 30px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  white-space: nowrap;
  letter-spacing: 0.15em;
  line-height: 50px;
  z-index: 1;
  overflow: hidden;
}

.c_content._bg04 .txt_scroll .scroll-text {
  display: inline-block;
  white-space: nowrap;
  /* テキストを折り返さない */
  right: -100%;
  /* 画面外からスタート */
  animation: scroll-left linear infinite;
  /* アニメーションの持続時間は動的に設定される */
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
    /* 左端から開始 */
  }
  100% {
    transform: translateX(-100%);
    /* テキストの全体が流れる */
  }
}

.c_content._bg04 .h2_title01 {
  margin-bottom: 55px;
}

.c_content._bg04 .h2_title01 .main {
  color: #ffffff;
}

.c_content._bg04 .h2_title01 .sub::before {
  background-color: #ffffff;
}

.c_content._bg04 .h2_title01 .sub::after {
  background-color: #ffffff;
}

.c_content._bg04 .h3_title01 span {
  color: #ffffff;
}

.c_content._bg04 .c_box {
  position: relative;
  z-index: 1;
  gap: 110px;
}

.c_content._bg04 .c_box .text_container {
  padding-right: 0 !important;
}

.c_content._bg04 .c_box .img_wrapper {
  width: 40% !important;
  margin-top: 40px;
  position: relative;
}

.c_content._bg04 .c_box .img_wrapper img {
  position: absolute;
  top: -80px;
  left: -80px;
}

.c_content._bg04 .c_box .img_wrapper::before {
  padding-top: 550px !important;
  background-image: linear-gradient(0deg, transparent calc(100% - 1px), #ffffff calc(100% - 1px)), linear-gradient(90deg, transparent calc(100% - 1px), #ffffff calc(100% - 1px));
  background-size: 24px 24px;
  background-repeat: repeat;
  background-position: bottom right;
  border-right: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
}

.c_content._bg04 .c_box .video_wrapper {
  width: 40% !important;
  margin-top: -40px;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  text-align: center;
}

.c_content._bg04 .c_box .video_wrapper video {
  position: absolute;
  top: -40px;
  left: -40px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

@media only screen and (max-width: 768px) {
  .c_content._bg04 .c_box .video_wrapper {
    top: 0;
    left: -20px;
  }
  .c_content._bg04 .c_box .video_wrapper::before {
    right: -20px;
  }
  .c_content._bg04 .c_box .video_wrapper video {
    top: 0;
    left: 0;
  }
}

.c_content._bg04 .c_box .video_wrapper::before {
  padding-top: 745px !important;
  background-image: linear-gradient(0deg, transparent calc(100% - 1px), #ffffff calc(100% - 1px)), linear-gradient(90deg, transparent calc(100% - 1px), #ffffff calc(100% - 1px));
  background-size: 24px 24px;
  background-repeat: repeat;
  background-position: bottom right;
  border-right: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
}

@media only screen and (max-width: 768px) {
  .c_content._bg04 .c_box {
    gap: 30px;
    padding-bottom: 200px;
  }
  .c_content._bg04 .c_box .img_wrapper {
    width: 100% !important;
    margin-top: 0;
  }
  .c_content._bg04 .c_box .img_wrapper::before {
    position: relative;
    right: -40px;
    top: 40px;
  }
}

.c_content._bg05 {
  position: relative;
  overflow: hidden;
  padding-top: 270px;
  padding-bottom: 222px;
  /* jQueryで追加される.hoveredクラスでぼかしを変更 */
  /* 背景に色付きのオーバーレイを追加 */
}

.c_content._bg05::before {
  /* 背景にぼかしを適用 */
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/top/top_contact.webp);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  filter: blur(6px);
  transition: filter 0.5s ease;
  z-index: -1;
}

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

.c_content._bg05::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(135deg, rgba(6, 54, 186, 0.6) 0%, rgba(30, 150, 226, 0.6) 100%);
  z-index: -1;
}

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

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

.c_content._bg05 .txt_scroll {
  pointer-events: none;
  width: 100%;
  height: 50px;
  position: absolute;
  top: 0;
  background: #ffffff;
  color: #0636BA;
  border-top: 1px solid #0636BA;
  font-size: 30px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  white-space: nowrap;
  letter-spacing: 0.15em;
  line-height: 50px;
  z-index: 1;
  overflow: hidden;
}

.c_content._bg05 .txt_scroll .scroll-text {
  display: inline-block;
  white-space: nowrap;
  /* テキストを折り返さない */
  right: -100%;
  /* 画面外からスタート */
  animation: scroll-left linear infinite;
  /* アニメーションの持続時間は動的に設定される */
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
    /* 左端から開始 */
  }
  100% {
    transform: translateX(-100%);
    /* テキストの全体が流れる */
  }
}

.c_content._bg05 .title_container {
  margin-bottom: 0;
}

.c_content._bg05 .title_container .h2_title02 {
  margin-top: 18px;
  margin-right: 80px;
}

.c_content._bg05 .title_container .h2_title02 .main {
  color: #ffffff;
}

.c_content._bg05 .title_container .h2_title02 .sub {
  color: #ffffff;
}

.c_content._bg05 .text_container {
  width: 60% !important;
  color: #ffffff;
  border-left: 2px solid #ffffff;
  padding-left: 60px !important;
  padding-right: 0 !important;
}

@media only screen and (max-width: 768px) {
  .c_content._bg05 .text_container {
    width: 100% !important;
  }
}

.c_content._bg05 .text_container p {
  margin-bottom: 40px;
}

.c_content._bg05 .text_container .tel_box {
  display: flex;
  gap: 40px;
}

.c_content._bg05 .text_container .tel_box .tel_num {
  font-size: 28px;
  font-weight: bold;
  line-height: 60px;
  letter-spacing: 0.05em;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

@media only screen and (max-width: 768px) {
  .c_content._bg05 .text_container .tel_box {
    flex-direction: column;
  }
  .c_content._bg05 .text_container .tel_box .tel_num {
    line-height: normal;
  }
}

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

/*レイアウト*/
/*基本設定*/
.c_box {
  width: 100%;
  height: auto;
  margin-bottom: 30px;
}

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

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

.c_box p {
  font-size: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", YuGothic, "Yu Gothic", "メイリオ", Meiryo, sans-serif;
  line-height: 1.8;
  margin-bottom: 60px;
  letter-spacing: 0.1em;
}

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

@media only screen and (max-width: 768px) {
  .c_box p {
    margin-bottom: 30px;
    margin-left: 0% !important;
    margin-right: 0 !important;
    text-align: left;
  }
}

.c_box p svg {
  fill: #dddddd;
}

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

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

.c_box dl {
  display: flex;
  width: 100%;
  min-height: 40px;
  font-size: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", YuGothic, "Yu Gothic", "メイリオ", Meiryo, sans-serif;
  line-height: 1.8;
  margin-bottom: 15px;
}

.c_box dl dt {
  width: 220px;
  color: #ffffff;
  padding: 8px 20px;
}

@media only screen and (max-width: 768px) {
  .c_box dl dt {
    width: 200px;
  }
}

.c_box dl dt.year {
  display: flex;
  align-items: center;
  font-family: "Exo 2", sans-serif;
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: 0.16em;
  padding: 0 20px;
}

.c_box dl dd {
  width: calc(100% - 220px);
  padding: 8px 20px;
}

@media only screen and (max-width: 768px) {
  .c_box dl dd {
    width: calc(100% - 200px);
  }
}

.c_box dl.list_dl {
  min-height: auto;
  margin-bottom: 10px;
}

.c_box dl.list_dl._01 dt, .c_box dl.list_dl._02 dt {
  color: #222222;
  padding: 0;
}

.c_box dl.list_dl._01 dd, .c_box dl.list_dl._02 dd {
  padding: 0;
  letter-spacing: 0.1em;
}

.c_box dl.list_dl._01 dt {
  width: 15%;
}

.c_box dl.list_dl._01 dd {
  width: 85%;
}

@media only screen and (max-width: 768px) {
  .c_box dl.list_dl._01 {
    display: flex;
    flex-direction: column;
  }
  .c_box dl.list_dl._01 dt, .c_box dl.list_dl._01 dd {
    width: 100%;
  }
}

.c_box dl.list_dl._02 {
  display: flex;
  flex-direction: column;
}

.c_box dl.list_dl._02 dt, .c_box dl.list_dl._02 dd {
  width: 100%;
}

.c_box dl.list_dl._02 dt::before {
  content: "■";
}

.c_box dl.list_dl._02 dd {
  padding-left: 1.1em;
}

.c_box .child {
  /*画面いっぱい半々*/
}

.c_box .child._flex {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.c_box .child.text_container._bg01 {
  box-sizing: border-box;
  padding: 30px;
  background: #222222;
}

.c_box .child.img_wrapper {
  position: relative;
}

.c_box .child.img_wrapper:before {
  content: "";
  display: block;
  padding-top: 75%;
}

.c_box .child.img_wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  margin: auto;
  object-fit: cover;
}

.c_box .child.img_half {
  width: 100vw;
  height: 260px;
  position: absolute;
  left: 0;
  display: flex;
  justify-content: space-between;
  margin-top: 80px;
  margin-left: calc(50% - 50vw);
  /* 調整 */
  /* sp */
}

.c_box .child.img_half:before {
  content: "";
  display: block;
  padding-top: 26%;
}

.c_box .child.img_half img {
  position: static;
}

@media (max-width: 1400px) {
  .c_box .child.img_half {
    position: relative;
    left: -20%;
    margin-left: auto;
  }
}

@media (max-width: 1000px) {
  .c_box .child.img_half {
    width: 1000px;
  }
}

@media only screen and (max-width: 768px) {
  .c_box .child.img_half {
    margin-top: 40px;
    flex-wrap: wrap;
    width: 768px;
    left: 50%;
    transform: translateX(-50%);
  }
}

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

.c_box .child._card .card_img_wrapper {
  overflow: hidden;
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
}

.c_box .child._card .card_img_wrapper:before {
  content: "";
  display: block;
  padding-top: 75%;
}

.c_box .child._card .card_img_wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c_box .child._card .card_title {
  color: #dddddd;
  margin-bottom: 0;
}

.c_box .child._card .card_date {
  color: #dddddd;
  font-family: "Zen Kaku Gothic New", sans-serif;
  letter-spacing: 0.16em;
  margin-bottom: 0;
}

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

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

.c_box .child._list .list_wrap {
  display: flex;
}

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

.c_box .child._list .list_date {
  font-size: 16px;
  letter-spacing: 0.16em;
  font-family: "Zen Kaku Gothic New", sans-serif;
  width: 105px;
  margin-right: 40px;
}

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

.c_box .child._list .list_text {
  font-size: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", YuGothic, "Yu Gothic", "メイリオ", Meiryo, sans-serif;
  line-height: 1.8;
  margin-right: 40px;
  flex-grow: 2;
}

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

.c_box .child._list svg {
  fill: #dddddd;
  padding-top: 8px;
}

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

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

.c_box .child .tel svg {
  fill: #dddddd;
  vertical-align: middle;
  padding-bottom: 5px;
}

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

@media only screen and (max-width: 768px) {
  .c_box .child {
    margin-bottom: 20px;
  }
  .c_box .child:last-child {
    margin-bottom: 0;
  }
}

.c_box.work_list ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 110px 80px;
  color: #222222;
  margin-top: 120px;
}

.c_box.work_list ul li {
  width: 520px;
  padding: 30px;
  padding-top: 0;
  background: #ffffff;
  position: relative;
}

.c_box.work_list ul li::before, .c_box.work_list ul li::after {
  content: "";
  position: absolute;
  display: block;
  width: calc(100% - 60px);
  height: 0;
  left: 0;
}

.c_box.work_list ul li::before {
  border-bottom: solid 60px #ffffff;
  border-right: solid 60px transparent;
  bottom: 100%;
}

.c_box.work_list ul li * {
  margin-top: -30px;
}

.c_box.work_list ul li p {
  margin-top: 0;
}

.c_box.work_list ul li .h4_title02 .main {
  letter-spacing: 0.05em;
}

.c_box.work_list ul li .h4_title02 .main::before {
  background: #0636BA;
}

@media only screen and (max-width: 768px) {
  .c_box.work_list ul li {
    width: 100%;
    padding-right: 50px;
  }
  .c_box.work_list ul li p {
    line-height: 2;
  }
}

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

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

.c_box.w50-w50 .child.img_wrapper {
  width: 50%;
  height: 0%;
}

.c_box.w50-w50 .child.img_wrapper:before {
  content: "";
  display: block;
  padding-top: 75%;
}

.c_box.w50-w50._reverse .child.text_container {
  order: 2;
  padding-left: 40px;
  padding-right: 0;
}

.c_box.w50-w50._reverse .child.img_wrapper {
  order: 1;
}

@media only screen and (max-width: 768px) {
  .c_box.w50-w50,
  .c_box.w50-w50._reverse {
    flex-direction: column;
    gap: 20px;
  }
  .c_box.w50-w50 .child.text_container,
  .c_box.w50-w50._reverse .child.text_container {
    order: 1;
    width: 100%;
    padding-left: 0 !important;
    padding-right: 0;
    margin-bottom: 30px;
    border: none;
  }
  .c_box.w50-w50 .child.img_wrapper,
  .c_box.w50-w50._reverse .child.img_wrapper {
    order: 2;
    width: 100%;
    height: auto;
    margin-left: 0;
    margin-right: 0;
    position: relative;
  }
  .c_box.w50-w50 .child.img_wrapper img,
  .c_box.w50-w50._reverse .child.img_wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
}

.c_box.grid {
  display: grid;
}

.c_box.grid._2column {
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 40px;
}

.c_box.grid._2column .banner {
  width: 490px;
  height: 160px;
  position: relative;
}

.c_box.grid._2column .banner img,
.c_box.grid._2column .banner h3 {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.c_box.grid._2column .banner img {
  z-index: 1;
  object-fit: cover;
}

.c_box.grid._2column .banner h3 {
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.5);
}

.c_box.grid._2column .banner h3 span {
  display: inline-block;
  width: 100%;
  text-align: center;
  color: #ffffff;
}

.c_box.grid._2column .banner h3 span.main {
  font-size: 32px;
  margin-bottom: 15px;
}

.c_box.grid._2column .banner h3 span.sub {
  font-size: 14px;
}

.c_box.grid._2column .banner h3 span._en {
  font-family: "Exo 2", sans-serif;
  letter-spacing: 0.16em;
}

@media only screen and (max-width: 768px) {
  .c_box.grid._2column .banner h3 span._en {
    letter-spacing: 0.1em;
  }
}

.c_box.grid._2column .banner h3 span._ja {
  font-family: "Noto Sans JP", "メイリオ", Meiryo, sans-serif;
}

.c_box.grid._2column .item .img_wrapper {
  width: 100%;
  position: relative;
  z-index: 1;
}

.c_box.grid._2column .item .img_wrapper:before {
  content: "";
  display: block;
  padding-top: 75%;
}

.c_box.grid._2column .item .img_wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  margin: auto;
  object-fit: cover;
}

.c_box.grid._2column .item .detail {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 50px;
  line-height: 50px;
  text-align: right;
  font-family: "Exo 2", sans-serif;
  letter-spacing: 0.16em;
  margin-top: -50px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #ffffff;
  position: relative;
  z-index: 2;
}

.c_box.grid._2column .item .detail .category {
  margin-left: 10px;
}

.c_box.grid._2column .item .detail date span {
  margin-left: 7px;
  margin-right: 10px;
  font-size: 20px;
}

.c_box.grid._2column .item p {
  margin-top: 15px;
  font-size: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", YuGothic, "Yu Gothic", "メイリオ", Meiryo, sans-serif;
  line-height: 1.8;
}

@media only screen and (max-width: 768px) {
  .c_box.grid._2column {
    grid-template-columns: repeat(1, 1fr);
  }
}

/*ACCESS*/
.map_wrapper {
  height: 0;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  padding-bottom: 48%;
  position: relative;
}

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

.map_wrapper iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}

.c_box.w48-w48 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 70px;
}

.c_box.w48-w48:last-of-type {
  margin-bottom: 0;
}

.c_box.w48-w48._ai-st {
  align-items: start;
}

@media only screen and (max-width: 768px) {
  .c_box.w48-w48._ai-st {
    gap: 40px;
  }
}

.c_box.w48-w48 .child {
  width: 48%;
  margin-bottom: 0;
}

.c_box.w48-w48 .child.text_container {
  order: 1;
}

.c_box.w48-w48 .child.text_container p {
  letter-spacing: 0.17em;
}

.c_box.w48-w48 .child.img_wrapper {
  max-width: 470px;
  order: 2;
}

.c_box.w48-w48._reverse .child.text_container {
  order: 2;
}

.c_box.w48-w48._reverse .child.img_wrapper {
  order: 1;
}

@media only screen and (max-width: 768px) {
  .c_box.w48-w48 {
    flex-direction: column;
  }
  .c_box.w48-w48 .child {
    width: 100%;
  }
  .c_box.w48-w48 .child:last-child {
    margin-bottom: 0;
  }
  .c_box.w48-w48 .child.text_container {
    order: 2;
  }
  .c_box.w48-w48 .child.img_wrapper {
    order: 1;
    margin-bottom: 35px !important;
  }
  .c_box.w48-w48._reverse .child.img_wrapper {
    margin-bottom: 35px;
  }
}

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

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

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

.c_box.w25x4 .button {
  width: 225px;
}

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

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

.c_box.w33x3 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 70px 0;
}

.c_box.w33x3 .child {
  width: 340px;
}

.c_box.w33x3 .child .card_img_wrapper {
  position: relative;
  width: 300px;
  margin-bottom: 30px;
}

.c_box.w33x3 .child .card_img_wrapper:before {
  content: "";
  display: block;
  padding-top: 75%;
}

.c_box.w33x3 .child .card_img_wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  margin: auto;
  object-fit: cover;
}

@media only screen and (max-width: 768px) {
  .c_box.w33x3 .child .card_img_wrapper {
    width: 100%;
  }
}

.c_box.w33x3 .child .card_title .h4_title02 {
  margin-bottom: 20px;
}

.c_box.w33x3._top .child {
  width: 340px;
  padding-left: 20px;
  box-sizing: border-box;
  display: flex;
  /* 子要素を横並べ */
}

@media only screen and (max-width: 768px) {
  .c_box.w33x3._top .child {
    width: 100%;
  }
}

.c_box.w33x3._top .child .child_bg {
  background-image: linear-gradient(0deg, transparent calc(100% - 1px), #dddddd calc(100% - 1px)), linear-gradient(90deg, transparent calc(100% - 1px), #dddddd calc(100% - 1px));
  background-size: 24px 24px;
  background-repeat: repeat;
  background-position: bottom right;
  border-right: 1px solid #222222;
  border-bottom: 1px solid #222222;
}

.c_box.w33x3._top .child * {
  margin-bottom: 20px;
}

.c_box.w33x3._top .child .card_img_wrapper {
  position: relative;
  width: 300px;
}

.c_box.w33x3._top .child .card_img_wrapper:before {
  content: "";
  display: block;
  padding-top: 430px;
}

.c_box.w33x3._top .child .card_img_wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  margin: auto;
  object-fit: cover;
}

.c_box.w33x3._top .child .card_text_box {
  padding-right: 20px;
  flex-direction: column;
}

.c_box.w33x3._top .child .card_text_box p {
  letter-spacing: 0.15em;
  line-height: 2.5;
  flex-grow: 1;
}

.c_box.w33x3._top .child .h3_title_33 {
  position: absolute;
  z-index: 1;
  width: auto;
}

.c_box.w33x3._top .child .h3_title_33 .main {
  position: absolute;
  position: relative;
  top: 360px;
  left: -20px;
  background-color: #ffffff;
  border: 1px solid #222222;
  padding: 10px 20px 10px 30px;
  margin: 0 auto;
  width: auto;
  white-space: nowrap;
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 0.1em;
}

.c_box.w33x3._top .child .h3_title_33 .main::before {
  content: "";
  display: block;
  position: absolute;
  width: 8px;
  height: 8px;
  background-color: #0636BA;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  left: 15px;
}

.c_box.w33x3._top .child .h3_title_33 .sub {
  position: absolute;
  transform: rotate(90deg);
  width: auto;
  white-space: nowrap;
  top: 35px;
  left: -50px;
  margin: 0 auto;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-weight: bold;
}

.c_box.w33x3:before, .c_box.w33x3:after {
  content: "";
  display: block;
  width: 320px;
}

.c_box.w33x3:before {
  order: 1;
}

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

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

@media only screen and (max-width: 768px) {
  .c_box.w33x3 {
    margin-bottom: 0;
    justify-content: center;
    gap: 10px;
  }
  .c_box.w33x3 .child {
    width: 100%;
    margin-bottom: 30px;
  }
  .c_box.w33x3 .child .child_bg .card_img_wrapper {
    width: calc(100% - 20px);
  }
  .c_box.w25x4,
  .c_box.w48-w48 {
    display: flex;
    flex-direction: column;
  }
  .c_box.w25x4 .child,
  .c_box.w25x4 .child._card,
  .c_box.w48-w48 .child,
  .c_box.w48-w48 .child._card {
    width: 100%;
  }
  .c_box.w25x4 .child:last-child,
  .c_box.w25x4 .child._card:last-child,
  .c_box.w48-w48 .child:last-child,
  .c_box.w48-w48 .child._card:last-child {
    margin-bottom: 0;
  }
  .c_box.w25x4 .child .card_img_wrapper,
  .c_box.w25x4 .child._card .card_img_wrapper,
  .c_box.w48-w48 .child .card_img_wrapper,
  .c_box.w48-w48 .child._card .card_img_wrapper {
    width: 100%;
    height: auto;
    position: relative;
  }
  .c_box.w25x4 .child .card_img_wrapper:before,
  .c_box.w25x4 .child._card .card_img_wrapper:before,
  .c_box.w48-w48 .child .card_img_wrapper:before,
  .c_box.w48-w48 .child._card .card_img_wrapper:before {
    content: "";
    display: block;
    padding-top: 75%;
  }
  .c_box.w25x4 .child .card_img_wrapper img,
  .c_box.w25x4 .child._card .card_img_wrapper img,
  .c_box.w48-w48 .child .card_img_wrapper img,
  .c_box.w48-w48 .child._card .card_img_wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
}

.c_box.w50x2 {
  display: flex;
  justify-content: space-between;
}

.c_box.w50x2 .child._card {
  width: calc(50% - 40px);
}

.c_box.w50x2 .child._card .img_wrapper {
  position: relative;
  margin-bottom: 30px;
}

.c_box.w50x2 .child._card .img_wrapper:before {
  content: "";
  display: block;
  padding-top: 66.66%;
}

.c_box.w50x2 .child._card .img_wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  margin: auto;
  object-fit: cover;
}

@media only screen and (max-width: 768px) {
  .c_box.w50x2 {
    flex-direction: column;
  }
  .c_box.w50x2 .child._card {
    width: 100%;
    margin-bottom: 60px;
  }
  .c_box.w50x2 .child._card:last-of-type {
    margin-bottom: 0;
  }
  .c_box.w50x2 .child._card .img_wrapper {
    width: 100%;
    margin-bottom: 20px;
  }
  .c_box.w50x2 .child._card .text_container .h4_title02 {
    margin-bottom: 10px;
  }
}

.c_box_wrapper.w25-w75 {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  margin-bottom: 130px;
}

.c_box_wrapper.w25-w75 .child:nth-child(1) {
  width: 25%;
}

.c_box_wrapper.w25-w75 .child:nth-child(2) {
  width: calc(75% - 60px);
}

.c_box_wrapper.w25-w75 .child:nth-child(2) p {
  line-height: 1.8;
  letter-spacing: 0.1em;
}

.c_box_wrapper.w25-w75:last-of-type {
  margin-bottom: 0;
}

.c_box_wrapper.w25-w75 .child dl {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 26px 0;
  border-top: 1px solid #222222;
  line-height: 2;
}

.c_box_wrapper.w25-w75 .child dl:first-of-type {
  border-top: none;
}

.c_box_wrapper.w25-w75 .child dl:last-of-type {
  border-bottom: 1px solid #222222;
}

@media only screen and (max-width: 768px) {
  .c_box_wrapper.w25-w75 .child dl:last-of-type {
    margin-bottom: 60px;
  }
}

.c_box_wrapper.w25-w75 .child dl dt {
  width: 100px;
  font-size: 16px;
  font-weight: bold;
  font-family: "Zen Kaku Gothic New", sans-serif;
  letter-spacing: 0.05em;
}

.c_box_wrapper.w25-w75 .child dl dd {
  letter-spacing: 0.05em;
}

@media only screen and (max-width: 768px) {
  .c_box_wrapper.w25-w75 .child dl {
    gap: 10px;
  }
  .c_box_wrapper.w25-w75 .child dl dt {
    width: 100%;
  }
  .c_box_wrapper.w25-w75 .child dl dd {
    width: 100%;
  }
}

.c_box_wrapper.w25-w75 .child .h2_title01 {
  margin-bottom: 60px;
}

@media only screen and (max-width: 768px) {
  .c_box_wrapper.w25-w75 .child .h2_title01 {
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 768px) {
  .c_box_wrapper.w25-w75 {
    gap: 0px;
  }
  .c_box_wrapper.w25-w75 .child:nth-child(1) {
    width: 100%;
    padding-left: 0;
  }
  .c_box_wrapper.w25-w75 .child:nth-child(2) {
    width: 100%;
  }
  .c_box_wrapper.w25-w75:last-of-type {
    margin-bottom: 0;
  }
}

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

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

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

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

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

.c_box.news_list {
  margin-bottom: 62px;
}

.c_box.news_list li {
  background: #ffffff;
  border-radius: 10px;
  margin-bottom: 40px;
}

.c_box.news_list li .card_text_box {
  padding: 30px 18px 40px;
  position: relative;
  font-size: 16px;
  text-align: left;
}

.c_box.news_list li .card_text_box span {
  position: absolute;
  display: block;
  left: 0;
  top: -12px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #ffffff;
  background: #0636BA;
  padding: 3px 10px 0;
  font-size: 14px;
  letter-spacing: 0.16em;
  line-height: 1.6;
}

@media only screen and (max-width: 768px) {
  .c_box.news_list .child._card {
    min-height: 90px;
    margin-bottom: 20px;
  }
  .c_box.news_list .child._card .card_img_wrapper,
  .c_box.news_list .child._card date {
    width: 120px;
    height: 90px;
  }
  .c_box.news_list .child._card .card_img_wrapper span,
  .c_box.news_list .child._card date span {
    font-size: 16px;
  }
  .c_box.news_list .child._card .title {
    width: calc(100% - 120px - 10px);
    left: 130px;
    top: 5px;
  }
}

/* news */
.article ._list ul {
  margin-bottom: 40px;
}

.article ._list ul li {
  position: relative;
  z-index: 2;
  height: 60px;
}

.article ._list ul li:nth-child(odd) {
  background: #ffffff;
}

.article ._list ul li:nth-child(even) {
  color: #ffffff;
}

.article ._list ul li:nth-child(even) a {
  color: #ffffff;
}

.article ._list ul li a {
  height: 60px;
  font-size: 15px;
  display: flex;
  letter-spacing: 0.1em;
  padding-left: 20px;
  align-items: center;
}

.article ._list ul li a date {
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.article ._list ul li a date span {
  font-size: 22px;
  margin-left: 5px;
}

.article ._list ul li .title {
  word-break: break-all;
  width: 84%;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.5;
  margin-left: 25px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.article_single {
  border-bottom: 1px solid #cccccc;
  margin-bottom: 40px;
}

.article_single .title {
  margin-bottom: 20px;
  font-weight: bold;
  font-size: 20px;
  line-height: 1.6;
  word-break: break-all;
}

.article_single .day {
  font-size: 14px;
  margin-bottom: 60px;
  font-family: "Exo 2", sans-serif;
  letter-spacing: 0.16em;
}

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

/*access*/
#access {
  position: relative;
}

#access img {
  width: 100%;
  height: 100%;
  position: absolute;
  opacity: 0.2;
  top: 0;
  z-index: -1;
  object-fit: cover;
  object-position: center center;
}

#access .title_container {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
}

#access .title_container .h2_title01 {
  padding: 0;
}

#access .title_container .h2_title01 .main {
  font-size: 38px;
}

@media only screen and (max-width: 768px) {
  #access .title_container {
    margin-bottom: 40px;
    justify-content: start;
    flex-direction: column;
  }
  #access .title_container .h2_title01 {
    width: 100%;
    margin-bottom: 20px;
  }
  #access .title_container p {
    width: 100%;
    justify-content: left;
  }
}

#access .c_box {
  margin-bottom: 60px;
}

#access .c_box .add_box img {
  width: 210px;
  height: 140px;
  min-height: auto;
  position: static;
  opacity: 1;
  margin-right: 20px;
  margin-bottom: 10px;
}

#access .c_box .add_box p {
  display: inline-block;
  width: 240px;
  text-align: left;
  margin: 0 auto;
  letter-spacing: 0.08em;
}

#access .c_box .add_box p span {
  display: block;
  padding: 5px 0;
}

#access .c_box .text_box {
  width: 500px;
}

@media only screen and (max-width: 768px) {
  #access .c_box .text_box {
    width: 100%;
    margin: 0 auto;
  }
}

#access .c_box .text_box p {
  width: 480px;
  background: #222222;
  text-align: center;
  margin-bottom: 30px;
  border-radius: 10px;
  font-weight: bold;
  padding: 14px 0 8px;
  margin-left: 47px;
}

@media only screen and (max-width: 768px) {
  #access .c_box .text_box p {
    width: 100%;
    max-width: 480px;
    min-width: 280px;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

#access .c_box .text_box p span {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  font-weight: normal;
  letter-spacing: 0.1em;
}

#access .c_box .text_box p span:last-child {
  font-size: 28px;
}

#access .c_box .text_box .button01 {
  width: 480px;
  margin-left: 47px;
  background-color: #222222;
}

@media only screen and (max-width: 768px) {
  #access .c_box .text_box .button01 {
    width: 280px;
    margin: 0 auto;
  }
}

#access .c_box .text_box .button01:hover {
  background-color: #0636BA;
}

/* バナーリンク */
.banner_wrap {
  width: 800px;
  height: 300px;
  margin: 0 auto;
  position: relative;
  transition: 0.5s;
}

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

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

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

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

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

.banner_wrap .banner_link span {
  color: #ffffff;
  letter-spacing: 0.05em;
}

.banner_wrap .banner_link .main {
  width: 100%;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 66px;
}

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

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

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

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

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

.banner_wrap .banner_link:hover .button_arr::before {
  background: #222222;
}

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

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

.banner_wrap._contact::before {
  background-image: url(../images/top/top_contact.webp);
  /* 背景にぼかしを適用 */
  filter: blur(6px);
  transition: filter 0.5s ease;
  z-index: -1;
}

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

.banner_wrap._contact::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(135deg, rgba(6, 54, 186, 0.6) 0%, rgba(30, 150, 226, 0.6) 100%);
  z-index: -1;
}

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

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

.banner_wrap._gourmet a.banner_link, .banner_wrap._works a.banner_link {
  position: relative;
}

.banner_wrap._gourmet a.banner_link::after, .banner_wrap._works a.banner_link::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0);
  transition: background-color 0.5s;
  z-index: 1;
}

.banner_wrap._gourmet a.banner_link:hover::after, .banner_wrap._works a.banner_link:hover::after {
  background-color: rgba(255, 255, 255, 0.3);
}

.banner_wrap._gourmet a:hover, .banner_wrap._works a:hover {
  opacity: 1;
}

.banner_wrap._gourmet a:hover .shape-overlay, .banner_wrap._works a:hover .shape-overlay {
  opacity: 1;
}

.banner_wrap._gourmet .banner_link, .banner_wrap._works .banner_link {
  padding-top: 34px;
  padding-left: 0;
  gap: 20px;
}

.banner_wrap._gourmet .banner_link .text_container span, .banner_wrap._works .banner_link .text_container span {
  display: block;
}

.banner_wrap._gourmet .banner_link .text_container .main, .banner_wrap._works .banner_link .text_container .main {
  font-size: 46px;
}

.banner_wrap._gourmet .banner_link .text_container::before, .banner_wrap._works .banner_link .text_container::before {
  content: "";
  height: 1em;
  line-height: 1;
  font-family: 'FontAwesome';
  vertical-align: middle;
  position: absolute;
  font-size: 48px;
}

.banner_wrap._gourmet .banner_link .text_container .button_arr, .banner_wrap._works .banner_link .text_container .button_arr {
  top: 34px;
  transform: none;
}

.banner_wrap._gourmet .banner_link .img_wrapper, .banner_wrap._works .banner_link .img_wrapper {
  display: flex;
  width: 100%;
  height: 140px;
  gap: 0;
  flex-wrap: wrap;
}

.banner_wrap._gourmet .banner_link .img_wrapper img, .banner_wrap._works .banner_link .img_wrapper img {
  width: 25%;
}

.banner_wrap._gourmet .banner_link:hover .button_arr, .banner_wrap._works .banner_link:hover .button_arr {
  background: #222222;
}

.banner_wrap._gourmet .banner_link:hover .button_arr::before, .banner_wrap._works .banner_link:hover .button_arr::before {
  background: #ffffff;
}

.banner_wrap._gourmet .banner_link:hover .button_arr::after, .banner_wrap._works .banner_link:hover .button_arr::after {
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
}

@media only screen and (max-width: 768px) {
  .banner_wrap._gourmet .banner_link, .banner_wrap._works .banner_link {
    padding-top: 120px;
    padding-bottom: 14px;
  }
  .banner_wrap._gourmet .banner_link .shape-overlay, .banner_wrap._works .banner_link .shape-overlay {
    display: block;
    left: auto;
  }
  .banner_wrap._gourmet .banner_link .text_container, .banner_wrap._works .banner_link .text_container {
    width: 100%;
    padding-left: 26px;
    margin-bottom: 10px;
  }
  .banner_wrap._gourmet .banner_link .text_container .main, .banner_wrap._works .banner_link .text_container .main {
    width: 100%;
    text-align: center;
    margin-bottom: 15px;
  }
  .banner_wrap._gourmet .banner_link .text_container .sub, .banner_wrap._works .banner_link .text_container .sub {
    line-height: 1.5;
  }
  .banner_wrap._gourmet .banner_link .text_container::before, .banner_wrap._works .banner_link .text_container::before {
    left: 50%;
    transform: translateX(-50%);
  }
  .banner_wrap._gourmet .banner_link .img_wrapper, .banner_wrap._works .banner_link .img_wrapper {
    width: 95%;
    height: auto;
    margin: 0 auto;
  }
  .banner_wrap._gourmet .banner_link .img_wrapper img, .banner_wrap._works .banner_link .img_wrapper img {
    width: 50%;
  }
  .banner_wrap._gourmet .banner_link .button_arr, .banner_wrap._works .banner_link .button_arr {
    width: 60px;
    height: 60px;
    top: 230px !important;
    right: 25px;
  }
  .banner_wrap._gourmet .banner_link .button_arr::before, .banner_wrap._works .banner_link .button_arr::before {
    width: 24px;
  }
  .banner_wrap._gourmet .banner_link .button_arr::after, .banner_wrap._works .banner_link .button_arr::after {
    width: 16px;
    height: 16px;
    top: 36%;
    left: 37%;
  }
}

.banner_wrap._gourmet {
  background: #F0F0F0;
}

.banner_wrap._gourmet .banner_link {
  border: 3px solid #222222;
}

.banner_wrap._gourmet .banner_link .text_container {
  padding-left: 116px;
}

.banner_wrap._gourmet .banner_link .text_container span {
  color: #222222;
}

.banner_wrap._gourmet .banner_link .text_container .main {
  margin-bottom: 10px;
}

.banner_wrap._gourmet .banner_link .text_container::before {
  top: 50px;
  left: 40px;
  color: #222222;
}

.banner_wrap._gourmet .banner_link .text_container .button_arr {
  top: 34px;
  transform: none;
}

.banner_wrap._gourmet .banner_link .img_wrapper {
  margin-left: 8px;
  margin-right: 8px;
}

.banner_wrap._gourmet a:hover {
  border: 3px solid rgba(0, 0, 0, 0.6);
}

.banner_wrap._gourmet .shape-overlay {
  border-bottom: 3px solid #222222;
  width: 75px;
  height: 99px;
  top: -60px;
  right: -47px;
}

@media only screen and (max-width: 768px) {
  .banner_wrap._gourmet .banner_link {
    padding-left: 16px;
    padding-right: 16px;
  }
  .banner_wrap._gourmet .banner_link .text_container {
    padding-left: 0;
  }
  .banner_wrap._gourmet .banner_link .text_container::before {
    left: 50%;
  }
  .banner_wrap._gourmet .banner_link .text_container .sub {
    padding-left: 10px;
  }
  .banner_wrap._gourmet .banner_link .text_container .button_arr {
    right: 30px;
  }
}

.banner_wrap._works {
  background: #2866B1;
}

.banner_wrap._works .banner_link {
  padding-left: 32px;
  padding-right: 33px;
  justify-content: space-between;
}

.banner_wrap._works .banner_link .text_container {
  padding-top: 65px;
}

.banner_wrap._works .banner_link .text_container span {
  color: #ffffff;
}

.banner_wrap._works .banner_link .text_container .main {
  text-align: center;
  letter-spacing: 0.1em;
  line-height: 1;
  margin-bottom: 13px;
}

.banner_wrap._works .banner_link .text_container .sub {
  font-size: 22px;
  line-height: 1.6;
  letter-spacing: 0.05em;
}

.banner_wrap._works .banner_link .text_container::before {
  top: 34px;
  right: 166px;
  color: #ffffff;
}

.banner_wrap._works .banner_link .text_container .button_arr {
  width: 60px;
  height: 60px;
  background: #ffffff;
  border: none;
  top: auto;
  bottom: 30px;
  right: 40px;
}

.banner_wrap._works .banner_link .text_container .button_arr::before {
  width: 24px;
  background: #222222;
}

.banner_wrap._works .banner_link .text_container .button_arr::after {
  width: 16px;
  height: 16px;
  top: 36%;
  left: 38%;
  border-top: 2px solid #0636BA;
  border-right: 2px solid #0636BA;
}

.banner_wrap._works .banner_link .img_wrapper {
  width: 406px;
  height: 238px;
  gap: 5px;
}

.banner_wrap._works .banner_link .img_wrapper img {
  width: 132px;
  object-fit: cover;
}

@media only screen and (max-width: 768px) {
  .banner_wrap._works .banner_link {
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media only screen and (max-width: 768px) and (max-width: 768px) {
  .banner_wrap._works .banner_link .shape-overlay {
    top: -50px;
  }
}

@media only screen and (max-width: 768px) {
  .banner_wrap._works .banner_link .text_container {
    order: 1;
    padding-top: 0;
    padding-left: 0;
  }
  .banner_wrap._works .banner_link .text_container .main {
    margin-bottom: 10px;
  }
  .banner_wrap._works .banner_link .text_container .sub {
    letter-spacing: 0;
  }
  .banner_wrap._works .banner_link .text_container::before {
    top: 46px;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    font-size: 55px;
  }
  .banner_wrap._works .banner_link .text_container .button_arr {
    right: 30px;
  }
  .banner_wrap._works .banner_link .img_wrapper {
    order: 2;
    width: 100%;
    height: auto;
  }
  .banner_wrap._works .banner_link .img_wrapper img {
    width: 32%;
  }
}

/* プライバシーポリシー */
#privacy .button01 span::after {
  display: none;
}

#privacy .h2_title02 .main {
  font-size: 24px;
}

#privacy .h2_title02::after {
  display: none;
}

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

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

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

#notfound .h2_title02 .main {
  color: #222222;
}

/* InstagramAPI */
.insta_list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 40px 0;
  margin-bottom: 70px;
}

.insta_list li {
  position: relative;
  width: calc((100% - 60px) / 4);
}

.insta_list li::before {
  content: "";
  display: block;
  padding-top: 100%;
}

.insta_list a {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}

.insta_list img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media only screen and (max-width: 768px) {
  .insta_list li {
    width: calc((100% - 20px) / 2);
  }
}

/* post_single */
.post {
  overflow: hidden;
}

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

.post strong,
.post b {
  font-weight: bold;
}

.post img {
  max-width: 100%;
  height: auto;
}

.post img.alignright {
  float: right;
  margin: 0 0 15px 15px;
  display: block;
}

.post img.alignleft {
  float: left;
  margin: 0 15px 15px 0;
  display: block;
}

.post img.aligncenter {
  display: block;
  margin: 0 auto 15px;
}

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

.post h2 {
  font-size: 24px;
  margin: 0 0 20px;
  font-weight: bold;
}

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

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

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

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

.post table {
  margin-bottom: 25px;
}

.post table td {
  padding: 10px;
  border: 1px solid;
}

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

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

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

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

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

.post a {
  text-decoration: underline;
  color: #222;
}

.post a:hover {
  text-decoration: none;
}

.post_head {
  margin-bottom: 20px;
}

.post_title {
  font-size: 22px;
  letter-spacing: 0.18em;
  color: #0636BA;
  line-height: 1.5;
  font-weight: bold;
}

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

.post_item {
  background: #ffffff80;
  border-radius: 10px;
  padding: 40px 20px;
}

.post_item:nth-child(n+2) {
  margin-top: 60px;
  padding-top: 60px;
}

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

/*詳細ページページャー*/
.c_pager_single {
  display: flex;
  justify-content: center;
}

.c_pager_single .button01 {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  width: 180px;
  position: relative;
  color: #ffffff;
}

.c_pager_single .back {
  margin: 0 20px;
}

.c_pager_single .prev .button01:before,
.c_pager_single .next .button01:after {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  position: absolute;
  transition: 0.5s;
}

.c_pager_single .prev .button01:before {
  border-bottom: 2px solid #0636BA;
  border-left: 2px solid #0636BA;
  transform-origin: left bottom;
  transform: rotate(45deg);
  left: 20px;
  bottom: 50%;
}

.c_pager_single .next .button01:after {
  border-bottom: 2px solid #0636BA;
  border-right: 2px solid #0636BA;
  transform-origin: right bottom;
  transform: rotate(-45deg);
  right: 20px;
  bottom: 50%;
}

.c_pager_single .prev .button01:hover:before,
.c_pager_single .next .button01:hover:after {
  border-color: #ffffff;
}

@media only screen and (max-width: 768px) {
  .c_pager_single {
    display: grid;
    grid-template: "prev next" auto "back back" auto / 1fr 1fr;
    grid-gap: 10px;
  }
  .c_pager_single .button01 {
    width: 100%;
    max-width: none;
  }
  .c_pager_single .prev {
    grid-area: prev;
  }
  .c_pager_single .back {
    grid-area: back;
    margin: 0;
  }
  .c_pager_single .next {
    grid-area: next;
  }
}

/* archive_pager */
.wp-pagenavi {
  text-align: center;
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
}

.wp-pagenavi a,
.wp-pagenavi span {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  width: 40px;
  height: 40px;
  margin: 0 7px;
  background: #ffffff;
  transition: 0.5s all;
}

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

.wp-pagenavi a:hover,
.wp-pagenavi span:hover {
  background-color: #0636BA;
  color: #ffffff;
  opacity: 1 !important;
}

.wp-pagenavi a:hover {
  background-color: #0636BA;
  color: #ffffff;
  opacity: 1 !important;
}

.wp-pagenavi .current {
  color: #ffffff;
  opacity: 1;
  background: #0636BA;
}

/*バリデート追加エラーメッセージ*/
.checkbox .error {
  margin-top: 5px;
}

/* アコーディオンメニュー */
#qa {
  /*アコーディオンタイトル*/
  /*アコーディオンで現れるエリア*/
}

#qa .accordion-area {
  list-style: none;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}

#qa .accordion-area li {
  margin: 10px 0;
}

#qa .accordion-area section {
  border-radius: 10px;
  background-color: #ffffff;
  position: relative;
  min-height: 60px;
}

#qa .accordion-area section::before {
  content: "Q";
  display: block;
  position: absolute;
  width: 47px;
  height: 49px;
  top: 0;
  left: 0;
  background: #0636ba;
  background: linear-gradient(135deg, #0636ba 0%, #1e96e2 100%);
  border-radius: 10px 0 10px 0;
  color: #ffffff;
  font-size: 27px;
  text-align: center;
  line-height: 49px;
  font-family: "游ゴシック体", "游ゴシック", "Yu Gothic", YuGothic, "メイリオ", Meiryo, sans-serif;
}

#qa .title {
  position: relative;
  /*+マークの位置基準とするためrelative指定*/
  cursor: pointer;
  font-size: 1rem;
  font-weight: bold;
  padding: 3% 70px 3% 70px;
  transition: all .1s ease;
  line-height: 1.2;
  min-height: 60px;
  /*アイコンの＋と×*/
  /*　closeというクラスがついたら形状変化　*/
}

@media only screen and (max-width: 768px) {
  #qa .title {
    padding-right: 60px;
  }
}

#qa .title .square {
  display: block;
  position: absolute;
  width: 36px;
  height: 36px;
  top: 50%;
  transform: translateY(-50%);
  right: 19.5px;
  background-image: url(../images/moteba/square_qa.svg);
  background-repeat: no-repeat;
}

#qa .title::before, #qa .title::after {
  position: absolute;
  content: '';
  width: 15px;
  height: 2px;
  background-color: #777777;
  transition: all 0.5s;
  z-index: 1;
}

#qa .title::before {
  top: 48%;
  right: 30px;
  transform: rotate(0deg);
}

#qa .title::after {
  top: 48%;
  right: 30px;
  transform: rotate(90deg);
}

#qa .title.close::after {
  transform: rotate(0deg);
}

#qa .box {
  display: none;
  /*はじめは非表示*/
  margin: 0 3% 3% 3%;
  padding: 3%;
  border-top: 1px solid #dddddd;
  line-height: 1.5;
}

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