/*
* 基本スタイル
* ┗共通スタイル
* ヘッダー
* ┗グローバルナビゲーション
* フッター
* 汎用
* パーツ
*/
/* LESS Document */
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  font-size: 62.5%;
  width: 100%;
  scroll-behavior: smooth;
}
@media screen and (max-width: 767px) {
  html {
    min-width: 320px;
  }
}
body {
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "メイリオ", "Meiryo", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  font-size: 1.8rem;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  body {
    font-size: 3.6vw;
  }
}
p {
  margin-bottom: 1em;
}
p:nth-last-child(1) {
  margin-bottom: 0;
}
img {
  max-width: 100%;
  height: auto;
}
hr {
  clear: both;
  border: none;
  border-top: #999 1px dotted;
  margin: 30px 0;
}
/* -------------------------------- テーブル */
table {
  margin: 0 0 20px;
}
table th {
  border: #999 1px solid;
  background: rgba(217, 0, 0, 0.5);
  text-align: center;
  padding: 3px 5px;
}
table td {
  border: #999 1px solid;
  text-align: center;
  padding: 3px 5px;
}
@media screen and (max-width: 767px) {
  .tableWrap {
    overflow: auto;
    white-space: nowrap;
  }
  .tableWrap::-webkit-scrollbar {
    background: #CCC;
    width: 15px;
    height: 15px;
    border-radius: 15px;
  }
  .tableWrap::-webkit-scrollbar-thumb {
    background: #078274;
    border-radius: 15px;
  }
  table.tableResponsive thead {
    display: none;
  }
  table.tableResponsive th {
    display: block;
  }
  table.tableResponsive tr {
    display: block;
    margin-top: 10px;
  }
  table.tableResponsive td {
    display: block;
    border-top: none;
  }
  table.tableResponsive td::before {
    content: attr(aria-label);
    display: inline-block;
    width: 50px;
  }
}
/* -------------------------------- リスト */
/* -------------------------------- 定義リスト */
/* dlリスト
dl_01…PC横並び、SP以下改行
dl_02…PC、SP共に横並びリスト
*/
.dlList_01 > div {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding: 10px;
}
.dlList_01 > div dt {
  min-width: 0;
}
.dlList_01 > div dd {
  flex: 1;
}
@media screen and (max-width: 767px) {
  .dlList_01 > div {
    display: block;
  }
  .dlList_01 > div dt {
    width: 100%;
    padding: 8px 0 2px;
  }
  .dlList_01 > div dd {
    width: 100%;
    padding: 2px 0 8px;
  }
  .dlList_01 > div dd:nth-of-type(n+2) {
    border: none;
  }
}
.dlList_01.dlBorder > div {
  border-bottom: #666 1px dotted;
}
.dlList_02 > div {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding: 10px;
}
.dlList_02 > div dt {
  min-width: 0;
}
.dlList_02 > div dd {
  flex: 1;
}
/*+++++++++++++++++++++++++++++++++++++++++++
	共通スタイル
+++++++++++++++++++++++++++++++++++++++++++ */
.inner {
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .inner {
    width: auto;
    padding: 0 10px;
  }
}
main {
  overflow: hidden;
}
.mainHeader {
  padding: 70px 0 20px;
  border-radius: 0 0 50px 50px;
  background: linear-gradient(120deg, #019156, #078274);
}
@media screen and (max-width: 767px) {
  .mainHeader {
    border-radius: 0 0 30px 30px;
  }
}
.mainHeaderEng {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1px, 7.4vw, 9.3rem);
  font-weight: 800;
  text-align: center;
  color: #FFF;
  line-height: 1;
}
h1,
h2,
h3,
h4 {
  line-height: 1.4;
}
/*+++++++++++++++++++++++++++++++++++++++++++
	ヘッダー
+++++++++++++++++++++++++++++++++++++++++++ */
header {
  gap: 0;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 30px;
  align-items: flex-end;
  width: 100%;
  height: 70px;
  padding: 0 25px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
}
header.ai_fs {
  align-items: flex-start;
}
header.ai_c {
  align-items: center;
}
header.ai_fe {
  align-items: flex-end;
}
header.jc_fs {
  justify-content: flex-start;
}
header.jc_c {
  justify-content: center;
}
header .flexText {
  flex: 1;
}
header .flexImg {
  text-align: center;
}
header .flexRight {
  order: 1;
}
@media screen and (max-width: 767px) {
  header.sp_column {
    flex-direction: column;
  }
  header.sp_column .flexText {
    display: contents;
  }
  header.sp_block {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  header {
    padding: 0 10px;
  }
}
header h1,
header strong {
  width: 16vw;
  display: block;
  padding: 0 0 7px;
}
@media screen and (max-width: 1023px) {
  header h1,
  header strong {
    width: auto;
  }
}
/*+++++++++++++++++++++++++++++++++++++++++++
	グローバルナビゲーション
+++++++++++++++++++++++++++++++++++++++++++ */
#gNav {
  margin: 0 0 0 auto;
}
@media screen and (max-width: 1023px) {
  #gNav {
    width: 28rem;
    min-width: 0;
    border-radius: 20px 0 0 20px;
  }
}
#gNav .gNavTitle {
  display: none;
}
@media screen and (max-width: 1023px) {
  #gNav .gNavTitle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 4.8rem;
    font-weight: 900;
    background: linear-gradient(120deg, #019156, #078274);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  #gNav .gNavTitle::before,
  #gNav .gNavTitle::after {
    content: '';
    display: block;
    width: 25px;
    height: 25px;
    background: url(../img/icon_leaf.svg) no-repeat 0 0 / contain;
  }
}
#gNav .drawer-menu {
  gap: 0;
  display: flex;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 30px;
  justify-content: space-between;
  align-items: center;
}
#gNav .drawer-menu.ai_fs {
  align-items: flex-start;
}
#gNav .drawer-menu.ai_c {
  align-items: center;
}
#gNav .drawer-menu.ai_fe {
  align-items: flex-end;
}
#gNav .drawer-menu.jc_fs {
  justify-content: flex-start;
}
#gNav .drawer-menu.jc_c {
  justify-content: center;
}
#gNav .drawer-menu .flexText {
  flex: 1;
}
#gNav .drawer-menu .flexImg {
  text-align: center;
}
#gNav .drawer-menu .flexRight {
  order: 1;
}
@media screen and (max-width: 767px) {
  #gNav .drawer-menu.sp_column {
    flex-direction: column;
  }
  #gNav .drawer-menu.sp_column .flexText {
    display: contents;
  }
  #gNav .drawer-menu.sp_block {
    display: block;
  }
}
@media screen and (max-width: 1023px) {
  #gNav .drawer-menu {
    flex-direction: column;
    justify-content: flex-start;
    padding: 0 0 68px;
    background: #FFF;
    gap: 0;
    background: url(../img/img_gNav_bg.png) no-repeat center bottom / 100% auto;
  }
}
#gNav ul {
  display: flex;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 25px;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
}
@media screen and (max-width: 1023px) {
  #gNav ul {
    display: block;
    width: 100%;
    border-top: #019156 1px solid;
  }
}
#gNav ul > li {
  padding: 0 0 12px;
  position: relative;
}
@media screen and (max-width: 1023px) {
  #gNav ul > li {
    padding: 0;
    border-bottom: #019156 1px solid;
  }
}
#gNav ul > li > a {
  font-weight: bold;
  font-size: 1.6rem;
  color: #FFF;
  text-decoration: none;
}
@media screen and (max-width: 1023px) {
  #gNav ul > li > a {
    display: block;
    color: #019156;
    padding: 15px 15px;
    text-align: left;
  }
}
#gNav ul > li > a:hover {
  color: #F5FF00;
}
@media screen and (max-width: 1023px) {
  #gNav ul > li > a:hover {
    color: #019156;
  }
}
#gNav ul > li > a.border {
  position: relative;
}
#gNav ul > li > a.border::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 5px;
  background-color: #f1e600;
  border-radius: 4px;
  z-index: -1;
}
@media screen and (max-width: 1023px) {
  #gNav ul > li > a.border::after {
    content: none;
  }
}
#gNav ul > li:hover > a {
  color: #F5FF00;
}
@media screen and (max-width: 1023px) {
  #gNav ul > li:hover > a {
    color: #019156;
  }
}
#gNav ul > li:hover .toggleNav {
  display: block;
}
#gNav ul > li .toggleNav {
  display: none;
  min-width: 193px;
  padding: 12px 0 12px 30px;
  background: #FFF;
  border: #019156 3px solid;
  border-radius: 10px;
  position: absolute;
  top: 35px;
  left: 0;
  right: 0;
  z-index: 1;
}
@media screen and (max-width: 1023px) {
  #gNav ul > li .toggleNav {
    display: block;
    margin-top: -8px;
    padding: 0 0 12px 35px;
    background: none;
    border: none;
    border-radius: 0;
    position: static;
  }
}
#gNav ul > li .toggleNav > li {
  padding: 0;
  position: relative;
}
@media screen and (max-width: 1023px) {
  #gNav ul > li .toggleNav > li {
    border: none;
  }
}
#gNav ul > li .toggleNav > li::before {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  background: url(../img/icon_leaf.svg) no-repeat 0 0 / contain;
  position: absolute;
  top: 10px;
  left: -20px;
}
#gNav ul > li .toggleNav > li a {
  color: #019156;
}
@media screen and (max-width: 1023px) {
  #gNav ul > li .toggleNav > li a {
    padding: 4px 0;
    font-size: 1.5rem;
  }
}
#gNav ul > li .toggleNav > li a:hover {
  color: #015e38;
}
#gNav .gNavImg {
  display: none;
}
@media screen and (max-width: 1023px) {
  #gNav .gNavImg {
    margin-top: auto;
  }
}
@media screen and (max-width: 1023px) {
  #gNav .btn {
    max-width: none;
    width: 100%;
    padding: 20px 0;
    font-size: 1.6rem;
  }
}
/* +++++++++++++++++++++++++++++++++++++++++++ drawer */
@media screen and (max-width: 1023px) {
  .drawer--right .drawer-nav {
    right: -28rem !important;
  }
  .drawer--right.drawer-open .drawer-hamburger {
    right: 28rem !important;
  }
  .drawer--right.drawer-open .drawer-nav {
    right: 0 !important;
  }
  .drawer--right.drawer-open .gNavImg {
    display: block!important;
  }
}
header .drawer-toggle {
  display: none;
}
@media screen and (max-width: 1023px) {
  header .drawer-toggle {
    display: block;
  }
}
@media screen and (max-width: 1023px) {
  header .drawer-nav {
    z-index: 100;
    position: fixed;
    width: 28rem;
  }
  header .drawer-nav .drawer-menu {
    width: 100%;
    height: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  header .drawer-hamburger {
    background: #058769;
    z-index: 10000;
    width: 31px;
    padding: 16px 9px 28px 14px;
    border-radius: 100px 0 0 100px;
    top: 15px;
  }
  header .drawer-hamburger .drawer-text {
    display: none;
    white-space: nowrap;
    color: #FFF;
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 1.2rem;
  }
  header .drawer-hamburger:hover {
    background: #058769;
  }
  header .drawer-hamburger-icon {
    margin: 0;
    position: relative;
    top: 6px;
    background: #FFF;
    height: 4px;
  }
  header .drawer-hamburger-icon::before,
  header .drawer-hamburger-icon::after {
    background: #FFF;
    height: 4px;
  }
}
/*+++++++++++++++++++++++++++++++++++++++++++
	フッター
+++++++++++++++++++++++++++++++++++++++++++ */
.pageTop {
  display: block;
  width: 80px;
  height: 80px;
  padding: 10px 5px;
  background: linear-gradient(45deg, #F8BB00, #ffcf3d);
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  line-height: 1.2;
  border-radius: 50%;
  color: #078274;
  position: fixed;
  bottom: 10px;
  right: 10px;
  box-shadow: 0 0 1px rgba(255, 255, 255, 0.7);
  transition: 0.2s;
}
.pageTop:hover {
  opacity: 0.8;
}
footer {
  background: linear-gradient(120deg, #019156, #078274);
}
footer .inner {
  gap: 0;
  display: flex;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
  padding: 80px 0 100px;
}
footer .inner.ai_fs {
  align-items: flex-start;
}
footer .inner.ai_c {
  align-items: center;
}
footer .inner.ai_fe {
  align-items: flex-end;
}
footer .inner.jc_fs {
  justify-content: flex-start;
}
footer .inner.jc_c {
  justify-content: center;
}
footer .inner .flexText {
  flex: 1;
}
footer .inner .flexImg {
  text-align: center;
}
footer .inner .flexRight {
  order: 1;
}
@media screen and (max-width: 767px) {
  footer .inner.sp_column {
    flex-direction: column;
  }
  footer .inner.sp_column .flexText {
    display: contents;
  }
  footer .inner.sp_block {
    display: block;
  }
}
@media screen and (max-width: 1023px) {
  footer .inner {
    padding: 60px 20px;
  }
}
@media screen and (max-width: 767px) {
  footer .inner {
    flex-direction: column-reverse;
    align-items: center;
    padding: 30px 10px;
  }
}
footer .inner .address {
  color: #FFF;
}
@media screen and (max-width: 767px) {
  footer .inner .address {
    width: 100%;
  }
}
footer .inner .address h2 {
  margin: 0 0 30px;
}
footer .inner nav {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 0;
  font-size: 2rem;
  flex: 1;
}
@media screen and (max-width: 767px) {
  footer .inner nav {
    display: block;
    width: 100%;
  }
}
footer .inner nav > ul {
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  footer .inner nav > ul {
    width: 100%;
  }
}
footer .inner nav > ul > li {
  margin: 0 0 12px;
}
@media screen and (max-width: 767px) {
  footer .inner nav > ul > li {
    width: 100%;
  }
}
footer .inner nav > ul > li > a,
footer .inner nav > ul > li .noLink {
  display: block;
  padding: 0 0 0 30px;
  font-weight: bold;
  color: #FFF;
  position: relative;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  footer .inner nav > ul > li > a,
  footer .inner nav > ul > li .noLink {
    padding-left: 7vw;
    font-size: 3.4vw;
  }
}
footer .inner nav > ul > li > a::before,
footer .inner nav > ul > li .noLink::before {
  content: '\f105';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  display: block;
  width: 15px;
  position: absolute;
  left: 0;
  top: 0;
}
@media screen and (max-width: 767px) {
  footer .inner nav > ul > li > a::before,
  footer .inner nav > ul > li .noLink::before {
    width: 5vw;
  }
}
footer .inner nav > ul > li > a:hover {
  text-decoration: underline;
}
footer .inner nav.en_footerNav {
  align-self: center;
}
footer small {
  display: block;
  padding: 20px;
  text-align: center;
  color: #FFF;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  footer small {
    padding: 10px;
    font-size: 2.8vw;
  }
}
/*+++++++++++++++++++++++++++++++++++++++++++
	リンク
+++++++++++++++++++++++++++++++++++++++++++ */
a {
  color: #078274;
  text-decoration: underline;
  text-underline-offset: 3px;
}
a:focus {
  outline: none;
}
a:hover,
a:active {
  text-decoration: none;
  transition: all 0.3s ease;
}
a:hover img {
  opacity: 0.7;
  transition: all 0.3s ease;
}
a:hover img.noOpacity {
  opacity: 1;
}
a.link::before {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 7.5px;
  border-color: transparent transparent transparent #2DA7E0;
  margin: 0 3px 0 0;
  vertical-align: baseline;
}
a[href^="tel:"] {
  pointer-events: none;
  text-decoration: none;
  cursor: text;
  color: inherit;
}
@media screen and (max-width: 767px) {
  a[href^="tel:"] {
    pointer-events: auto;
    text-decoration: underline;
    cursor: pointer;
  }
}
/*+++++++++++++++++++++++++++++++++++++++++++ error */
.err {
  background-color: #FCC !important;
}
.error {
  color: #F00;
}
/*+++++++++++++++++++++++++++++++++++++++++++
	汎用
+++++++++++++++++++++++++++++++++++++++++++ */
.clear {
  clear: both;
}
.texCenter {
  text-align: center!important;
}
.texLeft {
  text-align: left!important;
}
.texRight {
  text-align: right!important;
}
@media screen and (max-width: 767px) {
  .texCenter_sp {
    text-align: center!important;
  }
  .texLeft_sp {
    text-align: left!important;
  }
  .texRight_sp {
    text-align: right!important;
  }
}
.weightNormal {
  font-weight: 500!important;
}
.weightBold {
  font-weight: bold!important;
}
.borderNone {
  border: none!important;
}
.overflowHidden {
  overflow: hidden;
}
.lineHeight20 {
  line-height: 2;
}
.lineHeight19 {
  line-height: 1.9;
}
.lineHeight18 {
  line-height: 1.8;
}
.lineHeight17 {
  line-height: 1.7;
}
.lineHeight16 {
  line-height: 1.6;
}
.lineHeight15 {
  line-height: 1.5;
}
.lineHeight14 {
  line-height: 1.4;
}
.lineHeight13 {
  line-height: 1.3;
}
.lineHeight12 {
  line-height: 1.2;
}
.iBlock {
  display: inline-block;
}
.inline {
  display: inline;
}
/*+++++++++++++++++++++++++++++++++++++++++++
	color
+++++++++++++++++++++++++++++++++++++++++++ */
.colorRed {
  color: #D90000;
}
/*+++++++++++++++++++++++++++++++++++++++++++
    font-size
+++++++++++++++++++++++++++++++++++++++++++*/
/* PC用（rem） */
.fs10 {
  font-size: 1rem !important;
}
.fs12 {
  font-size: 1.2rem !important;
}
.fs14 {
  font-size: 1.4rem !important;
}
.fs16 {
  font-size: 1.6rem !important;
}
.fs18 {
  font-size: 1.8rem !important;
}
.fs20 {
  font-size: 2rem !important;
}
.fs22 {
  font-size: 2.2rem !important;
}
.fs24 {
  font-size: 2.4rem !important;
}
.fs26 {
  font-size: 2.6rem !important;
}
.fs28 {
  font-size: 2.8rem !important;
}
.fs30 {
  font-size: 3rem !important;
}
.fs32 {
  font-size: 3.2rem !important;
}
.fs34 {
  font-size: 3.4rem !important;
}
.fs36 {
  font-size: 3.6rem !important;
}
.fs38 {
  font-size: 3.8rem !important;
}
.fs40 {
  font-size: 4rem !important;
}
.fs42 {
  font-size: 4.2rem !important;
}
.fs44 {
  font-size: 4.4rem !important;
}
.fs46 {
  font-size: 4.6rem !important;
}
.fs48 {
  font-size: 4.8rem !important;
}
/* SP用（MEDIA内で出力） */
@media screen and (max-width: 767px) {
  .fs10 {
    font-size: 2vw !important;
  }
  .fs12 {
    font-size: 2.4vw !important;
  }
  .fs14 {
    font-size: 2.8vw !important;
  }
  .fs16 {
    font-size: 3.2vw !important;
  }
  .fs18 {
    font-size: 3.6vw !important;
  }
  .fs20 {
    font-size: 4vw !important;
  }
  .fs22 {
    font-size: 4.4vw !important;
  }
  .fs24 {
    font-size: 4.8vw !important;
  }
  .fs26 {
    font-size: 5.2vw !important;
  }
  .fs28 {
    font-size: 5.6vw !important;
  }
  .fs30 {
    font-size: 6vw !important;
  }
  .fs32 {
    font-size: 6.4vw !important;
  }
  .fs34 {
    font-size: 6.8vw !important;
  }
  .fs36 {
    font-size: 7.2vw !important;
  }
  .fs38 {
    font-size: 7.6vw !important;
  }
  .fs40 {
    font-size: 8vw !important;
  }
  .fs42 {
    font-size: 8.4vw !important;
  }
  .fs44 {
    font-size: 8.8vw !important;
  }
  .fs46 {
    font-size: 9.2vw !important;
  }
  .fs48 {
    font-size: 9.6vw !important;
  }
  .fs10_sp {
    font-size: 2vw !important;
  }
  .fs12_sp {
    font-size: 2.4vw !important;
  }
  .fs14_sp {
    font-size: 2.8vw !important;
  }
  .fs16_sp {
    font-size: 3.2vw !important;
  }
  .fs18_sp {
    font-size: 3.6vw !important;
  }
  .fs20_sp {
    font-size: 4vw !important;
  }
  .fs22_sp {
    font-size: 4.4vw !important;
  }
  .fs24_sp {
    font-size: 4.8vw !important;
  }
  .fs26_sp {
    font-size: 5.2vw !important;
  }
  .fs28_sp {
    font-size: 5.6vw !important;
  }
  .fs30_sp {
    font-size: 6vw !important;
  }
  .fs32_sp {
    font-size: 6.4vw !important;
  }
  .fs34_sp {
    font-size: 6.8vw !important;
  }
  .fs36_sp {
    font-size: 7.2vw !important;
  }
  .fs38_sp {
    font-size: 7.6vw !important;
  }
  .fs40_sp {
    font-size: 8vw !important;
  }
  .fs42_sp {
    font-size: 8.4vw !important;
  }
  .fs44_sp {
    font-size: 8.8vw !important;
  }
  .fs46_sp {
    font-size: 9.2vw !important;
  }
  .fs48_sp {
    font-size: 9.6vw !important;
  }
}
/*+++++++++++++++++++++++++++++++++++++++++++
    margin 0-100px（5px刻み）
+++++++++++++++++++++++++++++++++++++++++++*/
.mt0 {
  margin-top: 0px !important;
}
.mb0 {
  margin-bottom: 0px !important;
}
.mr0 {
  margin-right: 0px !important;
}
.ml0 {
  margin-left: 0px !important;
}
.mt5 {
  margin-top: 5px !important;
}
.mb5 {
  margin-bottom: 5px !important;
}
.mr5 {
  margin-right: 5px !important;
}
.ml5 {
  margin-left: 5px !important;
}
.mt10 {
  margin-top: 10px !important;
}
.mb10 {
  margin-bottom: 10px !important;
}
.mr10 {
  margin-right: 10px !important;
}
.ml10 {
  margin-left: 10px !important;
}
.mt15 {
  margin-top: 15px !important;
}
.mb15 {
  margin-bottom: 15px !important;
}
.mr15 {
  margin-right: 15px !important;
}
.ml15 {
  margin-left: 15px !important;
}
.mt20 {
  margin-top: 20px !important;
}
.mb20 {
  margin-bottom: 20px !important;
}
.mr20 {
  margin-right: 20px !important;
}
.ml20 {
  margin-left: 20px !important;
}
.mt25 {
  margin-top: 25px !important;
}
.mb25 {
  margin-bottom: 25px !important;
}
.mr25 {
  margin-right: 25px !important;
}
.ml25 {
  margin-left: 25px !important;
}
.mt30 {
  margin-top: 30px !important;
}
.mb30 {
  margin-bottom: 30px !important;
}
.mr30 {
  margin-right: 30px !important;
}
.ml30 {
  margin-left: 30px !important;
}
.mt35 {
  margin-top: 35px !important;
}
.mb35 {
  margin-bottom: 35px !important;
}
.mr35 {
  margin-right: 35px !important;
}
.ml35 {
  margin-left: 35px !important;
}
.mt40 {
  margin-top: 40px !important;
}
.mb40 {
  margin-bottom: 40px !important;
}
.mr40 {
  margin-right: 40px !important;
}
.ml40 {
  margin-left: 40px !important;
}
.mt45 {
  margin-top: 45px !important;
}
.mb45 {
  margin-bottom: 45px !important;
}
.mr45 {
  margin-right: 45px !important;
}
.ml45 {
  margin-left: 45px !important;
}
.mt50 {
  margin-top: 50px !important;
}
.mb50 {
  margin-bottom: 50px !important;
}
.mr50 {
  margin-right: 50px !important;
}
.ml50 {
  margin-left: 50px !important;
}
.mt55 {
  margin-top: 55px !important;
}
.mb55 {
  margin-bottom: 55px !important;
}
.mr55 {
  margin-right: 55px !important;
}
.ml55 {
  margin-left: 55px !important;
}
.mt60 {
  margin-top: 60px !important;
}
.mb60 {
  margin-bottom: 60px !important;
}
.mr60 {
  margin-right: 60px !important;
}
.ml60 {
  margin-left: 60px !important;
}
.mt65 {
  margin-top: 65px !important;
}
.mb65 {
  margin-bottom: 65px !important;
}
.mr65 {
  margin-right: 65px !important;
}
.ml65 {
  margin-left: 65px !important;
}
.mt70 {
  margin-top: 70px !important;
}
.mb70 {
  margin-bottom: 70px !important;
}
.mr70 {
  margin-right: 70px !important;
}
.ml70 {
  margin-left: 70px !important;
}
.mt75 {
  margin-top: 75px !important;
}
.mb75 {
  margin-bottom: 75px !important;
}
.mr75 {
  margin-right: 75px !important;
}
.ml75 {
  margin-left: 75px !important;
}
.mt80 {
  margin-top: 80px !important;
}
.mb80 {
  margin-bottom: 80px !important;
}
.mr80 {
  margin-right: 80px !important;
}
.ml80 {
  margin-left: 80px !important;
}
.mt85 {
  margin-top: 85px !important;
}
.mb85 {
  margin-bottom: 85px !important;
}
.mr85 {
  margin-right: 85px !important;
}
.ml85 {
  margin-left: 85px !important;
}
.mt90 {
  margin-top: 90px !important;
}
.mb90 {
  margin-bottom: 90px !important;
}
.mr90 {
  margin-right: 90px !important;
}
.ml90 {
  margin-left: 90px !important;
}
.mt95 {
  margin-top: 95px !important;
}
.mb95 {
  margin-bottom: 95px !important;
}
.mr95 {
  margin-right: 95px !important;
}
.ml95 {
  margin-left: 95px !important;
}
.mt100 {
  margin-top: 100px !important;
}
.mb100 {
  margin-bottom: 100px !important;
}
.mr100 {
  margin-right: 100px !important;
}
.ml100 {
  margin-left: 100px !important;
}
@media screen and (max-width: 767px) {
  .mt0_sp {
    margin-top: 0px !important;
  }
  .mb0_sp {
    margin-bottom: 0px !important;
  }
  .mr0_sp {
    margin-right: 0px !important;
  }
  .ml0_sp {
    margin-left: 0px !important;
  }
  .mt5_sp {
    margin-top: 5px !important;
  }
  .mb5_sp {
    margin-bottom: 5px !important;
  }
  .mr5_sp {
    margin-right: 5px !important;
  }
  .ml5_sp {
    margin-left: 5px !important;
  }
  .mt10_sp {
    margin-top: 10px !important;
  }
  .mb10_sp {
    margin-bottom: 10px !important;
  }
  .mr10_sp {
    margin-right: 10px !important;
  }
  .ml10_sp {
    margin-left: 10px !important;
  }
  .mt15_sp {
    margin-top: 15px !important;
  }
  .mb15_sp {
    margin-bottom: 15px !important;
  }
  .mr15_sp {
    margin-right: 15px !important;
  }
  .ml15_sp {
    margin-left: 15px !important;
  }
  .mt20_sp {
    margin-top: 20px !important;
  }
  .mb20_sp {
    margin-bottom: 20px !important;
  }
  .mr20_sp {
    margin-right: 20px !important;
  }
  .ml20_sp {
    margin-left: 20px !important;
  }
  .mt25_sp {
    margin-top: 25px !important;
  }
  .mb25_sp {
    margin-bottom: 25px !important;
  }
  .mr25_sp {
    margin-right: 25px !important;
  }
  .ml25_sp {
    margin-left: 25px !important;
  }
  .mt30_sp {
    margin-top: 30px !important;
  }
  .mb30_sp {
    margin-bottom: 30px !important;
  }
  .mr30_sp {
    margin-right: 30px !important;
  }
  .ml30_sp {
    margin-left: 30px !important;
  }
  .mt35_sp {
    margin-top: 35px !important;
  }
  .mb35_sp {
    margin-bottom: 35px !important;
  }
  .mr35_sp {
    margin-right: 35px !important;
  }
  .ml35_sp {
    margin-left: 35px !important;
  }
  .mt40_sp {
    margin-top: 40px !important;
  }
  .mb40_sp {
    margin-bottom: 40px !important;
  }
  .mr40_sp {
    margin-right: 40px !important;
  }
  .ml40_sp {
    margin-left: 40px !important;
  }
  .mt45_sp {
    margin-top: 45px !important;
  }
  .mb45_sp {
    margin-bottom: 45px !important;
  }
  .mr45_sp {
    margin-right: 45px !important;
  }
  .ml45_sp {
    margin-left: 45px !important;
  }
  .mt50_sp {
    margin-top: 50px !important;
  }
  .mb50_sp {
    margin-bottom: 50px !important;
  }
  .mr50_sp {
    margin-right: 50px !important;
  }
  .ml50_sp {
    margin-left: 50px !important;
  }
  .mt55_sp {
    margin-top: 55px !important;
  }
  .mb55_sp {
    margin-bottom: 55px !important;
  }
  .mr55_sp {
    margin-right: 55px !important;
  }
  .ml55_sp {
    margin-left: 55px !important;
  }
  .mt60_sp {
    margin-top: 60px !important;
  }
  .mb60_sp {
    margin-bottom: 60px !important;
  }
  .mr60_sp {
    margin-right: 60px !important;
  }
  .ml60_sp {
    margin-left: 60px !important;
  }
  .mt65_sp {
    margin-top: 65px !important;
  }
  .mb65_sp {
    margin-bottom: 65px !important;
  }
  .mr65_sp {
    margin-right: 65px !important;
  }
  .ml65_sp {
    margin-left: 65px !important;
  }
  .mt70_sp {
    margin-top: 70px !important;
  }
  .mb70_sp {
    margin-bottom: 70px !important;
  }
  .mr70_sp {
    margin-right: 70px !important;
  }
  .ml70_sp {
    margin-left: 70px !important;
  }
  .mt75_sp {
    margin-top: 75px !important;
  }
  .mb75_sp {
    margin-bottom: 75px !important;
  }
  .mr75_sp {
    margin-right: 75px !important;
  }
  .ml75_sp {
    margin-left: 75px !important;
  }
  .mt80_sp {
    margin-top: 80px !important;
  }
  .mb80_sp {
    margin-bottom: 80px !important;
  }
  .mr80_sp {
    margin-right: 80px !important;
  }
  .ml80_sp {
    margin-left: 80px !important;
  }
  .mt85_sp {
    margin-top: 85px !important;
  }
  .mb85_sp {
    margin-bottom: 85px !important;
  }
  .mr85_sp {
    margin-right: 85px !important;
  }
  .ml85_sp {
    margin-left: 85px !important;
  }
  .mt90_sp {
    margin-top: 90px !important;
  }
  .mb90_sp {
    margin-bottom: 90px !important;
  }
  .mr90_sp {
    margin-right: 90px !important;
  }
  .ml90_sp {
    margin-left: 90px !important;
  }
  .mt95_sp {
    margin-top: 95px !important;
  }
  .mb95_sp {
    margin-bottom: 95px !important;
  }
  .mr95_sp {
    margin-right: 95px !important;
  }
  .ml95_sp {
    margin-left: 95px !important;
  }
  .mt100_sp {
    margin-top: 100px !important;
  }
  .mb100_sp {
    margin-bottom: 100px !important;
  }
  .mr100_sp {
    margin-right: 100px !important;
  }
  .ml100_sp {
    margin-left: 100px !important;
  }
}
/*+++++++++++++++++++++++++++++++++++++++++++
	TB用、SP用
+++++++++++++++++++++++++++++++++++++++++++ */
.tb_show,
.sp_show {
  display: none;
}
@media screen and (max-width: 1023px) {
  .tb_hide {
    display: none;
  }
  .tb_show {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .sp_hide {
    display: none;
  }
  .sp_show {
    display: block;
  }
}
/*+++++++++++++++++++++++++++++++++++++++++++ clearfix */
.clearfix::after {
  content: '';
  display: block;
  clear: both;
}
/*+++++++++++++++++++++++++++++++++++++++++++
	パーツ（色々なページで使うスタイル）
+++++++++++++++++++++++++++++++++++++++++++ */
.box {
  max-width: 948px;
  margin: 30px auto;
  background: rgba(0, 169, 157, 0.1);
  border-radius: 10px;
  padding: 20px 60px;
}
@media screen and (max-width: 767px) {
  .box {
    padding: 20px;
  }
}
.box h4 {
  margin: 0 0 20px;
  font-size: 2.4rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .box h4 {
    font-size: 4.8vw;
  }
}
.photoFrame {
  -webkit-box-shadow: 1px 1px 3px #999;
  box-shadow: 1px 1px 3px #999;
}
ul.iBlock {
  display: block;
}
ul.iBlock li {
  display: inline-block;
  margin: 0 15px 5px 0;
}
.btn {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .btn.return a {
    padding: 10px 20px 10px 40px;
  }
}
.btn.return a::after {
  content: '\f104';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  right: auto;
  left: 25px;
}
@media screen and (max-width: 767px) {
  .btn.return a::after {
    left: 10px;
  }
}
.btn a {
  background: #00A99D;
  color: #FFF;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  line-height: 1;
  max-width: max-content;
  min-width: 460px;
  width: 100%;
  min-height: 64px;
  padding: 5px 30px;
  text-align: center;
  border-radius: 100px;
  font-size: 2.4rem;
  font-weight: 700;
  position: relative;
  background: linear-gradient(to right, #00A99D, #00A99D, #000D92) left center / 200% 100%;
  transition: background-position 0.3s ease-out;
}
.btn a .arrow {
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translate(0, -50%);
}
.btn a:hover {
  opacity: 0.7;
}
.btn a:hover {
  opacity: 1;
  background-position: right center;
}
@media screen and (max-width: 767px) {
  .btn a {
    min-width: 0;
    min-height: 0;
    padding: 10px 40px 10px 20px;
    font-size: 4.8vw;
  }
}
.btn a::after {
  content: '\f105';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translate(0, -50%);
}
@media screen and (max-width: 767px) {
  .btn a::after {
    right: 10px;
  }
}
.columnBox {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0;
}
.columnBox > * {
  display: block;
  width: 49%;
}
.columnBox::before,
.columnBox::after {
  content: '';
  order: 1;
  display: block;
  width: 49%;
}
.columnBox.col3 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0;
}
.columnBox.col3 > * {
  display: block;
  width: 32%;
}
.columnBox.col3::before,
.columnBox.col3::after {
  content: '';
  order: 1;
  display: block;
  width: 32%;
}
.columnBox.col4 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0;
}
.columnBox.col4 > * {
  display: block;
  width: 24%;
}
.columnBox.col4::before,
.columnBox.col4::after {
  content: '';
  order: 1;
  display: block;
  width: 24%;
}
@media screen and (max-width: 767px) {
  .columnBox.col1_sp {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0;
  }
  .columnBox.col1_sp > * {
    display: block;
    width: 100%;
  }
  .columnBox.col1_sp::before,
  .columnBox.col1_sp::after {
    content: '';
    order: 1;
    display: block;
    width: 100%;
  }
  .columnBox.col2_sp {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0;
  }
  .columnBox.col2_sp > * {
    display: block;
    width: 49%;
  }
  .columnBox.col2_sp::before,
  .columnBox.col2_sp::after {
    content: '';
    order: 1;
    display: block;
    width: 49%;
  }
  .columnBox.col3_sp {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0;
  }
  .columnBox.col3_sp > * {
    display: block;
    width: 32%;
  }
  .columnBox.col3_sp::before,
  .columnBox.col3_sp::after {
    content: '';
    order: 1;
    display: block;
    width: 32%;
  }
}
.flex {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 30px;
}
.flex.ai_fs {
  align-items: flex-start;
}
.flex.ai_c {
  align-items: center;
}
.flex.ai_fe {
  align-items: flex-end;
}
.flex.jc_fs {
  justify-content: flex-start;
}
.flex.jc_c {
  justify-content: center;
}
.flex .flexText {
  flex: 1;
}
.flex .flexImg {
  text-align: center;
}
.flex .flexRight {
  order: 1;
}
@media screen and (max-width: 767px) {
  .flex.sp_column {
    flex-direction: column;
  }
  .flex.sp_column .flexText {
    display: contents;
  }
  .flex.sp_block {
    display: block;
  }
}
.fadein {
  opacity: 0;
  transition: 1s;
}
.fadein.fadeRight {
  transform: translate(100px, 0);
}
.fadein.fadeLeft {
  transform: translate(-100px, 0);
}
.fadein.fadeBottom {
  transform: translate(0, 100px);
}
.fadein.fadeScroll {
  opacity: 1;
  transform: translate(0, 0);
}
.blank_icon::after {
  content: '\f35d';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
}
.btn_blank a::after {
  content: '\f35d';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translate(0, -50%);
}
@media screen and (max-width: 767px) {
  .btn_blank a::after {
    right: 10px;
  }
}
.img_box {
  position: relative;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .img_box {
    display: table;
    margin-left: auto;
    margin-right: auto;
  }
}
.img_box figcaption {
  position: absolute;
  right: 0;
  top: 0;
  height: auto;
  display: inline-block;
  padding: 4px 12px 4px 12px;
  background: rgba(0, 0, 0);
  color: #fff;
  font-size: 1.6rem;
  pointer-events: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  text-align: right;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .img_box figcaption {
    font-size: 3.2vw;
  }
}
.img_box figcaption[data-tag="outer_techno_plaza"] {
  background: #005ECC;
}
.img_box figcaption[data-tag="akinai_pio"] {
  background: #173C5E;
}
.img_box figcaption[data-tag="outer_link"] {
  background: #000;
}
.img_box figcaption[data-tag="outer_seminar"] {
  background: #8C4803;
}
.img_box figcaption[data-tag="outer_case"] {
  background: #078274;
}
.img_box figcaption[data-tag="outer_association"] {
  background: #8C033E;
}
.img_box figcaption[data-tag="outer_association_seminer"] {
  background: #ff761b;
}
.img_box figcaption[data-tag="outer_olumn"] {
  background: #8C7703;
}
.section-border {
  border-top: #479800 2px dotted;
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
}
