@charset "UTF-8";
/* CSS Document */

/*------------------------------------------------
parts.css
------------------------------------------------*/
/*------------------------------------------------
base
------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&display=swap');
:root{
  --grad_up: linear-gradient(0deg, rgba(9, 127, 126, 1) 0%, rgba(142, 191, 192, 1) 100%);
  --grad_down: linear-gradient(180deg, rgba(9, 127, 126, 1) 0%, rgba(142, 191, 192, 1) 100%);
  --grad_left: linear-gradient(270deg, rgba(9, 127, 126, 1) 0%, rgba(142, 191, 192, 1) 100%);
  --grad_right: linear-gradient(90deg, rgba(9, 127, 126, 1) 0%, rgba(142, 191, 192, 1) 100%);
	--font_color: #1A1311;
	--font_size: 0.16rem;
	--line_height: 30px;
	--sans: 'Noto Sans JP', sans-serif;
  --mont: "Montserrat", sans-serif;
  --site_color: #007A79;
  --site_color_lit: #57A5A7;
  --shadow_lit: 3px 3px 6px #00000029;
}
html {
	width: 100%;
	height: 100%;
	font-size: 100px;
}
body{
  position: relative;
}
body, body * {
  text-align: justify;
  color: var(--font_color);
	font-family: var(--zen);
  box-sizing: border-box;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-size: var(--font_size);
	line-height: var(--line_height);
}
img {
	vertical-align: bottom;
	max-width: 100%;
	height: auto;
}
p, a, b, span, li, th, td, dl, dt, dd, small, strong, article {
  text-align: justify;
	font-size: var(--font_size);
	line-height: var(--line_height);
}
a{
	color: var(--font_color);
}
a:link {
	cursor: pointer;
  color: var(--font_color);
}
a:focus{
	text-decoration: none;
	color: var(--font_color);
}
a:hover {
	text-decoration: none;
	color: var(--font_color);
	opacity: 0.6;
}
iframe {
	max-width: 100% !important;
}
figure{
	padding: 0;
	margin: 0;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
section{
	margin-bottom: 120px;
}


/*------------------------------------------------
header
------------------------------------------------*/
header{
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 100000;
}
.head_grid{
  display: grid;
  align-items: center;
  justify-content: space-between;
  grid-template-columns: 260px auto;
  padding: 15px;
}
.head_logo{
  display: block;
}
.head_nav{
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
.head_nav li{
  position: relative;
}
.head_nav > li:hover .inner{
  display: block;
}
.head_nav > li > a{
  padding: 10px 25px;
}
.head_nav a{
  display: block;
}
.head_nav .contact {
  background: var(--site_color) url(../img/common/parts/arrow_simple.svg) no-repeat;
  background-position: 90% 50%;
  border-radius: 1000px;
  text-align: center;
  color: #fff;
  width: 200px;
  padding: 9px 15px 12px;
  padding-right: 25px;
  margin-left: 20px;
}
.head_nav .inner {
  display: none;
  list-style: none;
  overflow: auto;
  position: absolute;
  border-radius: 5px;
  background-color: #fff;
  box-shadow: 0 0 10px #0000001a;
  max-height: 80vh;
  left: 15px;
  top: 50px;
  z-index: 100;
}
.head_nav .inner li.end a{
  border-bottom: 0;
}
.head_nav .inner a{
  display: block;
  min-width: max-content;
  width: 100%;
  border-bottom: 1px solid #ddd;
  padding: 10px 65px 10px 15px;
}
.head_nav .inner a:hover{
  background-color: var(--site_color_lit);
  color: #fff;
}
.head_nav .in_inner{
  background-color: #fff;
  list-style: none;
}
.head_nav .in_inner a{
  padding-left: 27px;
}


/*------------------------------------------------
nav
------------------------------------------------*/
/* ボタンアニメーション */
.nav_toggle {
  position: fixed;
  cursor: pointer;
  top: 6px;
  right: 7px;
  width: 50px;
  height: 50px;
  border-radius: 5px;
  z-index: 6000;
}
.nav_toggle span {
  display: inline-block;
  background: var(--site_color);
  position: absolute;
  border-radius: 2px;
  width: 45%;
  left: 14px;
  height: 3px;
  transition: all .4s;
}
.nav_toggle span:nth-of-type(1) {
  top: 15px;
}
.nav_toggle span:nth-of-type(2) {
  top: 23px;
}
.nav_toggle span:nth-of-type(3) {
  top: 31px;
}
.nav_toggle.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
}
.nav_toggle.active span:nth-of-type(2) {
  opacity: 0;
}
.nav_toggle.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
}
/* メニューアニメーション */
.nav_menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: rgba(244, 245, 245, .98);
  text-align: center;
  opacity: 1;
  overflow: auto;
  transition: height .3s cubic-bezier(.6, 0, .2, 1) .1s;
  z-index: 4000;
}
.nav_menu .nav_wrap {
	width: 100%;
  max-width: 420px;
  opacity: 0;
  transition: opacity .3s cubic-bezier(.6, 0, .2, 1) 0s;
  padding: 0 15px;
	margin: 70px auto;
}
.nav_menu.is_open {
  height: 100%;
}
.nav_menu.is_open .nav_wrap {
  transition: opacity .7s ease .4s;
  opacity: 1;
}
/* コンテンツ */
.nav_menu .nav_logo {
  display: block;
  width: 220px;
  margin: 0 auto;
}
.nav_menu .nav_logo img {
  display: block;
  width: 100%;
}
.nav_menu .nav_direction {
  list-style: none;
  margin: 25px 0;
}
.nav_menu .nav_direction ul{
  list-style: none;
}
.nav_menu .nav_direction ul a{
  padding-left: 35px;
}
.nav_menu .nav_direction a,
.nav_menu .nav_direction b {
  display: block;
  font-weight: 400;
  border-bottom: 1px solid #d3d5d5;
  padding-bottom: 15px;
  margin-bottom: 15px;
  padding-left: 15px;
}
.nav_menu .nav_direction b.eve{
  cursor: pointer;
  background: url(../img/common/parts/icon_minus.svg) no-repeat;
  background-position: 98% 20%;
  background-size: 15px;
}
.nav_menu .nav_direction b.eve.__enable{
  background-image: url(../img/common/parts/icon_plus.svg);
}


/*------------------------------------------------
 リスト
------------------------------------------------*/
/* 点々リスト */
.disc_list {
  list-style: disc;
  padding-left: 25px;
  margin: 25px 0;
}
.disc_list li{
  margin-bottom: 5px;
}
/* 線付きリスト */
.line_list{
  list-style: none;
}
.line_list li {
  position: relative;
  font-size: 0.17rem;
  line-height: 2.1;
  font-weight: 500;
  padding-left: 25px;
  margin-bottom: 10px;
}
.line_list li::before {
  content: "";
  position: absolute;
  background-color: var(--site_color);
  top: 18px;
  left: 0;
  width: 16px;
  height: 2px;
}
/* ニュースリスト */
.news_list{
  list-style: none;
}
.news_list li {
  display: grid;
  align-items: center;
  grid-template-columns: 90px minmax(100px, auto) 1fr;
  background: #fff url(../img/common/parts/arrow_simple_lblue.svg) no-repeat;
  background-position: 98% 50%;
  background-size: 13px;
  border-bottom: 1px dashed #ccc;
  gap: 5px 15px;
  padding: 20px 15px;
  padding-right: 35px;
}
.news_list a{
  display: block;
}
.news_list time{
  font-family: var(--mont);
  font-weight: 400;
}
.news_list .cat_box{
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.news_list .cat{
  text-align: center;
  background-color: #94C2C3;
  font-family: var(--mont);
  border-radius: 1000px;
  max-width: max-content;
  font-weight: 400;
  line-height: 21px;
  color: #fff;
  padding: 3px 15px 2px;
}
/* 横並びリスト */
.devide_list{
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  gap: 60px 30px;
}
.devide_list.dev02{
  gap: 60px 10%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.devide_list.space{
  justify-content: space-between;
}
.devide_list li{
  width: 30%;
}
.devide_list.dev02 li{
  width: 45%;
}
.devide_list img{
  display: block;
  margin: 0 auto 25px;
}
.devide_list b {
  position: relative;
  display: block;
  text-align: center;
  max-width: max-content;
  font-weight: 500;
  font-size: 0.19rem;
  padding-bottom: 9px;
  margin: 0 auto 15px;
}
.devide_list b::before{
  content: "";
  position: absolute;
  transform: translateX(-50%);
  background-color: var(--site_color);
  left: 50%;
  bottom: 0;
  width: 20px;
  height: 2px;
}
.devide_list p{
}


/*------------------------------------------------
 テーブル
------------------------------------------------*/
/* レスポンシブテーブル */
.table_fixed {
  width: 100%;
  margin: 25px 0;
}
.table_fixed tr{
  border: 1px solid #ccc;
}
.table_fixed th, .table_fixed td{
  font-weight: 500;
  padding: 15px;
}
.table_fixed th{
  width: 30%;
  font-size: 0.18rem;
  color: var(--site_color);
  border-right: 1px solid #ccc;
}
.table_fixed td{
  width: 70%;
}


/*------------------------------------------------
 共通パーツ
------------------------------------------------*/
/* ガラス背景 */
.glass{
  background-color: #ffffff4a;
  backdrop-filter: blur(20px);
}


/*------------------------------------------------
 ボタン
------------------------------------------------*/
/* TOPに戻るボタン */
.fixed_uwd{
  position: fixed;
  right: 15px;
  bottom: 15px;
  z-index: 1000;
}
.btn01{
  display: block;
  text-align: center;
  background-color: var(--site_color);
  border-radius: 1000px;
  width: 100%;
  max-width: 210px;
  color: #fff !important;
  padding: 9px 15px 12px;
  margin-top: 25px;
}
/* ダウンロードボタン */
.download_button {
  display: block;
  text-align: center;
  background-color: var(--site_color);
  border-radius: 1000px;
  width: 100%;
  max-width: 210px;
  color: #fff !important;
  padding: 9px 15px 12px;
  margin: 20px auto 0;
}
.download_button::after {
  content: "";
  aspect-ratio: 1/1;
  display: inline-block;
  background: url(../img/common/parts/icon_download.svg) no-repeat;
  background-size: contain;
  width: 17px;
  margin-bottom: -3px;
  margin-left: 5px;
}
/* パルスボタン */
.pulse_button {
  display: block;
  position: relative;
  cursor: pointer;
  max-width: max-content;
  padding-right: 55px;
  transition: transform 0.5s ease;
  z-index: 10;
}
.pulse_button .pulse_line_box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  position: absolute;
  top: 19px;
  right: 0px;
  height: 1px;
  width: 110px;
  animation: anim_gradient_line_pulse 3s ease infinite;
}
.pulse_button .pulse_line_box hr{
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  padding: 0;
  margin: 0;
}
.pulse_button .pulse_line_box hr:nth-child(1){
  background-color: #fff;
}
.pulse_button .pulse_line_box hr:nth-child(2){
  background-color: var(--site_color);
}
.pulse_button.white .pulse_line_box hr:nth-child(2){
  background-color: #fff;
}
.pulse_button:hover{
  transform: translateY(-5px);
  opacity: unset;
}
.pulse_button:hover .pulse_line_box{
  animation: anim_gradient_line_pulse_active 3s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.pulse_button:hover .pulse_gradient{
  animation: anim_gradient_pulse 3s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}
.pulse_gradient_box{
  position: relative;
  overflow: hidden;
  width: 190px;
  box-shadow: var(--shadow_lit);
  padding: 5px 20px;
}
.pulse_gradient_box .pulse_gradient{
  position: absolute;
  background: linear-gradient(90deg, rgba(0, 122, 121, 1) 0%, rgb(136 194 195) 50%, rgba(0, 122, 121, 1) 100%);
  width: 200%;
  height: 100%;
  left: -100%;
  top: 0;
  z-index: -10;
}
.pulse_gradient_box p{
  max-width: unset !important;
  margin: 0 !important;
}
.pulse_gradient_box span{
  display: block;
  color: #fff;
  font-size: 0.18rem;
  font-weight: 500;
  font-family: var(--mont);
}
@keyframes anim_gradient_pulse {
  0%{ left: -100%; }
  50%{ left: 0%; }
  100%{ left: -100%; }
}
@keyframes anim_gradient_line_pulse {
  0%{ clip-path: inset(0px 100% 0px 0px); }
  50%{ clip-path: inset(0px 0% 0px 0px); }
  51%{ clip-path: inset(0px 0px 0px 0%); }
  100%{ clip-path: inset(0px 0px 0px 100%); }
}
@keyframes anim_gradient_line_pulse_active {
  0%{ clip-path: inset(0px 100% 0px 0px); }
  100%{ clip-path: inset(0px 0% 0px 0px); }
}
/* ワイドボタン */
.wide_button{
  overflow: hidden;
  width: 100%;
  margin: 70px 0;
}
.wide_button a{
  position: relative;
  display: block;
  box-shadow: var(--shadow_lit);
  max-width: 640px;
  margin: 0 auto;
}
.wide_button a:hover{
  opacity: unset;
}
.wide_button a:hover article::before{
  animation: anim_wide_button 3s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}
.wide_button a:hover span{
  animation: anim_gradient_line_pulse_active 2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.wide_button b{
  display: block;
  text-align: center;
  color: var(--site_color);
  background-color: #fff;
  border: 1px solid var(--site_color);
  border-bottom: 0;
  padding: 8px 10px 11px
}
.wide_button article{
  overflow: hidden;
  position: relative;
  text-align: center;
  color: #fff;
  font-size: 0.19rem;
  padding: 22px 15px;
}
.wide_button article::before{
  content: "";
  position: absolute;
  background: linear-gradient(90deg, rgba(0, 122, 121, 1) 0%, rgb(136 194 195) 50%, rgba(0, 122, 121, 1) 100%);
  left: 0%;
  top: 0;
  width: 200%;
  height: 100%;
  z-index: -10;
}
.wide_button span{
  position: absolute;
  display: grid;
  align-items: center;
  grid-template-columns: repeat(2, 1fr);
  animation: anim_gradient_line_pulse 4s cubic-bezier(0.22, 1, 0.36, 1) infinite;
  transform: translateY(-50%);
  width: 210px;
  right: -105px;
  top: 69%;
}
.wide_button span hr{
  border: 0;
  border-bottom: 1px solid var(--site_color);
  width: 100%;
  height: 4px;
  margin: 0;
}
.wide_button span hr:nth-child(1){
  border-color: #fff;
}
@keyframes anim_wide_button {
  0%{ left: 0%; }
  50%{ left: -100%; }
  100%{ left: 0%; }
}


/*------------------------------------------------
footer
------------------------------------------------*/
footer{
  background-color: #fff;
  padding: 50px 0 10px;
}
.foot_logo{
  display: block;
  max-width: max-content;
}
.foot_grid{
  display: grid;
  align-items: stretch;
  grid-template-columns: auto 1fr;
  padding: 35px 0;
}
.foot_content{
  position: relative;
  padding-right: 110px;
  margin-right: 110px;
}
.foot_content::before{
  content: "";
  position: absolute;
  background-color: #707070;
  width: 1px;
  bottom: -25px;
  top: -25px;
  right: 0;
}
.foot_content a{
  display: block;
  max-width: max-content;
  font-family: var(--mont);
  font-size: 0.23rem;
  font-weight: 600;
}
.foot_content p{
  font-size: 0.14rem;
}
.foot_content p span{
  font-family: var(--mont);
  font-size: 0.16rem;
}
.foot_content address{
  margin-top: 15px;
}
.foot_content address small{
  display: block;
  font-size: 0.14rem;
  font-weight: 600;
}
.foot_nav_box{
  position: relative;
}
.foot_nav_list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  max-width: 435px;
  gap: 10px 0;
}
.foot_nav_list a{
  display: block;
  position: relative;
  padding-left: 15px;
  min-width: 145px;
}
.foot_nav_list a::before {
  content: "";
  aspect-ratio: 1/1;
  position: absolute;
  background-color: var(--site_color);
  border-radius: 1000px;
  width: 8px;
  left: 0;
  top: 12px;
}
footer .pulse_button{
  position: absolute;
  top: 0;
  right: -90px;
  padding-right: 0;
}
footer .pulse_button .pulse_line_box {
  display: block;
  top: 52px;
  width: 90px;
}
footer .pulse_button .pulse_line_box span{
  width: 100%;
}
footer .pulse_gradient_box {
  width: 230px;
  padding: 15px 20px 13px;
}
footer .pulse_gradient_box span,
footer .pulse_gradient_box small{
  line-height: 1;
  color: #fff;
}
footer .pulse_gradient_box span{
  font-size: 0.22rem;
}
footer .pulse_gradient_box small{
  font-size: 0.17rem;
}
footer .c_right{
  display: block;
  text-align: center;
  font-size: 0.12rem;
  font-family: var(--mont);
}


/*------------------------------------------------
 レスポンシブ　　　max-width:1300px
------------------------------------------------*/
@media screen and (max-width:1300px){
  footer .pulse_button {
    position: relative;
    inset: unset;
    margin-left: auto;
    margin-top: 25px;
  }
}

/*------------------------------------------------
 レスポンシブ　　　max-width:1199px
------------------------------------------------*/
@media screen and (max-width:1199px) {
  .head_grid {
    grid-template-columns: 200px auto;
  }
  .head_nav > li > a {
    padding: 10px 20px;
  }
  .head_nav .contact {
    width: 160px;
    padding: 6px 10px 8px;
    padding-right: 25px;
  }
  .fixed_uwd {
    width: 65px;
  }
}
	
/*------------------------------------------------
 レスポンシブ　　　max-width:991px
------------------------------------------------*/
@media screen and (max-width:991px) {
  .head_grid {
    grid-template-columns: 160px auto;
  }
  .news_list li{
    display: flex;
    flex-wrap: wrap;
  }
  .news_list .ttl{
    width: 100%;
  }
  .devide_list li {
    width: 45%;
  }
  .table_fixed tr, .table_fixed th, .table_fixed td{
    display: block;
    width: 100%;
    border: 0;
    padding: 0;
  }
  .table_fixed th, .table_fixed td{
    padding: 10px 0;
  }
  .table_fixed th{
    border-bottom: 1px solid var(--site_color);
  }
  .foot_content {
    padding-right: 40px;
    margin-right: 40px;
  }
}

/*------------------------------------------------
 レスポンシブ　　　max-width:767px
------------------------------------------------*/
@media screen and (max-width:767px) {
  .devide_list, .devide_list.dev02{
    gap: 45px;
  }
  .devide_list li {
    width: 100% !important;
  }
  .line_list li {
    font-size: 0.16rem;
    line-height: 1.8;
  }
  .line_list li::before {
    top: 14px;
  }
  .download_button {
    max-width: 190px;
    padding: 6px 15px 9px;
    margin-top: 15px;
  }
  .pulse_button{
    padding-right: 25px;
  }
  .pulse_button .pulse_line_box {
    width: 50px;
  }
  .pulse_gradient_box {
    width: 150px;
  }
  .wide_button{
    padding-right: 10%;
    margin: 45px 0;
  }
  .wide_button span {
    width: 30%;
    right: -15%;
    top: 74%;
  }
  .wide_button b {
    font-size: 0.15rem;
    line-height: 1.6;
    padding: 8px 10px 11px;
  }
  .wide_button article {
    font-size: 0.18rem;
    padding: 15px 15px 18px;
  }
  .foot_logo {
    max-width: 270px;
  }
  .foot_grid {
    grid-template-columns: 1fr;
    padding: 25px 0;
  }
  .foot_content {
    padding-right: 0px;
    margin-right: 0px;
    padding-bottom: 25px;
    margin-bottom: 25px;
  }
  .foot_content::before{
    inset: unset;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
  }
  footer .pulse_button{
    margin-left: 0;
    margin-right: auto;
  }
}

/*------------------------------------------------
 レスポンシブ　　　max-width:480px
------------------------------------------------*/
@media screen and (max-width:480px) {
}