@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=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap');
:root{
  --font_color: #383838;
	--font_size: 0.16rem;
	--line_height: 1.6;
	--zen: "Zen Kaku Gothic New", sans-serif;
  --pop: "Poppins", sans-serif;
  --mont: "Montserrat", sans-serif;
  --site_color: #4091FF;
  --shadow: 0 3px 6px #00000029;
  --grad_down: linear-gradient(0deg,rgba(112, 208, 230, 1) 0%, rgba(64, 145, 255, 1) 100%);
  --grad_up: linear-gradient(180deg,rgba(112, 208, 230, 1) 0%, rgba(64, 145, 255, 1) 100%);
  --grad_left: linear-gradient(270deg,rgba(112, 208, 230, 1) 0%, rgba(64, 145, 255, 1) 100%);
  --grad_right: linear-gradient(90deg,rgba(112, 208, 230, 1) 0%, rgba(64, 145, 255, 1) 100%);
  --site_color_green: #149220;
  --grad_down_green: linear-gradient(180deg,rgba(20, 146, 32, 1) 0%, rgba(34, 233, 122, 1) 100%);
}
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;
  left: 0;
  right: 0;
  top: 0;
  padding: 10px 15px 0;
  z-index: 10000;
}
.head_grid{
  display: grid;
  align-items: center;
  justify-content: space-between;
  grid-template-columns: auto auto;
}
.head_logo{
  display: block;
  width: 230px;
}
.head_logo img{
  display: block;
  width: 100%;
}
.head_grid article{
  display: flex;
  align-items: center;
  gap: 15px;
}
.head_grid article b a{
  display: block;
  font-size: 0.20rem;
  font-family: var(--pop);
  text-shadow: 0 0 7px #00000052;
  font-weight: 500;
  color: #fff;
}
.head_grid article ul{
  display: flex;
  list-style: none;
  align-items: stretch;
  gap: 25px;
}
.head_grid article ul a,
.head_grid article ul a small{
  display: block;
  text-align: center;
}
.head_grid article ul a{
  position: relative;
  background-color: #fff;
  border: 1px solid var(--site_color);
  border-radius: 10px;
  min-width: 235px;
  font-size: 0.2rem;
  font-weight: 600;
  line-height: 1;
  font-family: var(--pop);
  color: var(--site_color);
  padding: 10px 0;
  padding-right: 10px;
}
.head_grid article ul a small{
  color: inherit;
  font-weight: inherit;
  line-height: inherit;
  margin-top: 6px;
}
.head_grid article ul a::before {
  content: "";
  display: inline-block;
  aspect-ratio: 1/1;
  border-radius: 1000px;
  background-color: var(--site_color);
  width: 7px;
  vertical-align: 4px;
  margin-right: 8px;
}
.head_grid article ul a:hover{
  opacity: unset;
  background-color: var(--site_color);
  color: #fff;
}
.head_grid article ul a:hover::before{
  background-color: #fff;
}


/*------------------------------------------------
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 a {
  display: block;
  text-align: center;
  border-bottom: 1px solid #d3d5d5;
  padding-bottom: 15px;
  margin-bottom: 15px;
}


/*------------------------------------------------
パンくず
------------------------------------------------*/
/*------------------------------------------------
 ボタン
------------------------------------------------*/
.btn01 {
  position: relative;
  display: block;
  text-align: center;
  min-width: 210px;
  max-width: max-content;
  background-color: #fff;
  border: 1px solid var(--site_color);
  box-shadow: var(--shadow);
  border-radius: 1000px;
  font-weight: 500;
  padding: 10px 41px 10px 35px;
  margin: 30px auto 0;
}
.btn01::before{
  content: "";
  aspect-ratio: 1/1;
  position: absolute;
  background: url(../img/common/parts/arrow_blue.svg) no-repeat;
  background-position: center center;
  background-size: contain;
  transform: translateY(-50%);
  width: 16px;
  top: 50%;
  right: 16px;
}
.btn01:hover{
  opacity: unset;
  background: var(--grad_right);
  border: 1px solid transparent;
  color: #fff;
}
.btn01:hover::before{
  background-image: url(../img/common/parts/arrow_white.svg);
}
.btn02 {
  position: relative;
  display: block;
  max-width: max-content;
  background: var(--grad_down);
  color: #fff !important;
  font-weight: 600;
  border-radius: 6px;
  padding: 2px 29px 2px 11px;
  margin-top: 10px;
}
.btn02::before {
  content: "";
  position: absolute;
  aspect-ratio: 1/1;
  background: url(../img/common/parts/arrow_single_white.svg) no-repeat;
  background-position: center;
  background-size: contain;
  top: 11px;
  right: 10px;
  width: 12px;
}
/* ボタン横並びリスト */
.button_flex{
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  justify-content: center;
  gap: 15px 35px;
}
.button_flex.green a{
  background: var(--grad_down_green);
  margin: 0;
}


/*------------------------------------------------
 リスト
------------------------------------------------*/
/* ラベルリスト */
.label_list{
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  gap: 15px;
}


/*------------------------------------------------
 テーブル
------------------------------------------------*/
.table_fixed{
  width: 100%;
  border-collapse: separate;
  border-spacing: 20px 0;
}
.table_fixed > tbody > tr > th, .table_fixed > tbody > tr > td{
  position: relative;
  border-top: 2px solid var(--site_color);
  padding: 30px 0;
}
.table_fixed > tbody > tr:last-of-type th, .table_fixed > tbody > tr:last-of-type td{
  border-bottom: 2px solid var(--site_color);
}
.table_fixed > tbody > tr > th{
  text-align: center;
  color: var(--site_color);
  font-weight: 600;
  width: 25%;
}
.table_fixed > tbody > tr > th p{
  text-align: inherit;
  color: inherit;
  font-weight: inherit;
}
.table_fixed th.top{
  vertical-align: top;
  padding-top: 10%;
}
.table_fixed th span{
  margin: 5px auto 0;
}
.table_fixed > tbody > tr > td{
  width: 75%;
}
.table_fixed span{
  display: block;
  background: var(--grad_down);
  border-radius: 6px;
  max-width: max-content;
  line-height: 1;
  font-size: 0.15rem;
  font-weight: 600;
  padding: 4px 7px 5px;
}
.table_fixed b{
  display: block;
  font-weight: 600;
  margin-bottom: 10px;
}
.table_fixed p{
  line-height: 2;
  font-weight: 500;
}
.table_fixed p:empty{
  display: none;
}
/* 緑バージョン */
.table_fixed.green{
  --site_color: var(--site_color_green);
  --grad_down: var(--grad_down_green);
}
.table_fixed.green span{
  color: #fff;
}


/*------------------------------------------------
footer
------------------------------------------------*/
footer{
  position: relative;
  background-color: #fff;
  padding-top: 65px;
  padding-bottom: 15px;
}
.foot_uwd_button{
  position: fixed;
  right: 15px;
  bottom: 15px;
  z-index: 3000;
}
.foot_logo{
  display: grid;
  width: 100%;
  max-width: 340px;
}
.foot_grid{
  display: grid;
  align-items: stretch;
  grid-template-columns: auto 1fr;
}
/* アドレスコンテンツ */
.foot_address{
  border-right: 1px solid #707070;
  padding-top: 30px;
  padding-right: 110px;
  margin-right: 110px;
}
.foot_address a{
  display: block;
  max-width: max-content;
  font-family: var(--mont);
  font-size: 0.23rem;
  font-weight: 600;
}
.foot_address p{
  font-size: 0.14rem;
}
.foot_address p span{
  font-family: var(--mont);
  font-size: 0.16rem;
}
.foot_address address{
  margin-top: 15px;
}
.foot_address address small{
  display: block;
  font-size: 0.14rem;
  font-weight: 600;
  margin-bottom: 5px;
}
/* メインコンテンツ */
.foot_content_box{
  padding-top: 30px;
}
.foot_nav_box{
  display: grid;
  align-items: flex-start;
  grid-template-columns: repeat(3, auto);
}
.foot_nav_list{
  list-style: none;
}
.foot_nav_list a{
  display: block;
  padding-left: 17px;
}
.foot_nav_list > li > a{
  position: relative;
  margin-bottom: 15px;
}
.foot_nav_list > li > a::before{
  content: "";
  aspect-ratio: 1/1;
  position: absolute;
  background-color: var(--site_color);
  border-radius: 1000px;
  width: 8px;
  left: 0;
  top: 9px;
}
.foot_nav_list .inner{
  list-style: none;
}
.foot_nav_list .inner a{
  margin-bottom: 8px;
}
.foot_icon_list{
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  max-width: max-content;
  gap: 5px;
  margin-left: auto;
  margin-top: -65px;
}
.foot_button_list{
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: flex-start;
  gap: 25px;
  margin-top: 50px;
}
.foot_button_list a {
  position: relative;
  display: block;
  text-align: center;
  background-color: #fff;
  box-shadow: var(--shadow);
  border: 1px solid var(--site_color);
  border-radius: 10px;
  line-height: 25px;
  font-size: 0.2rem;
  font-weight: 500;
  font-family: var(--pop);
  color: var(--site_color);
  min-width: 235px;
  padding: 7px 15px;
}
.foot_button_list a::before{
  content: "";
  aspect-ratio: 1/1;
  position: absolute;
  border-radius: 1000px;
  left: 0;
  top: 0;
  width: 6px;
}
.foot_button_list a small{
  display: block;
  text-align: center;
  font-size: 0.14rem;
  font-weight: 500;
  line-height: 25px;
  color: inherit;
}
footer .c_right{
  text-align: center;
  font-size: 0.12rem;
  line-height: 1;
  margin-top: 15px;
}


/*------------------------------------------------
 レスポンシブ　　　max-width:1500px
------------------------------------------------*/
@media screen and (max-width:1500px) {
  .head_logo {
    width: 170px;
  }
}

/*------------------------------------------------
 レスポンシブ　　　max-width:1199px
------------------------------------------------*/
@media screen and (max-width:1199px) {
 .foot_address {
    padding-right: 50px;
    margin-right: 50px;
  }
}
	
/*------------------------------------------------
 レスポンシブ　　　max-width:991px
------------------------------------------------*/
@media screen and (max-width:991px) {
  .table_fixed, .table_fixed > tbody, .table_fixed > tbody > tr{
    display: block;
  }
  .table_fixed > tbody > tr > th, .table_fixed > tbody > tr > td{
    text-align: start;
    display: block;
    width: 100%;
    border: 0;
    padding: 0;
  }
  .table_fixed > tbody > tr > td{
    border: 0 !important;
  }
  .table_fixed > tbody > tr > th{
    display: flex;
    flex-wrap: wrap;
    border-bottom: 2px solid var(--site_color);
    gap: 5px 15px;
    padding-bottom: 15px;
    margin-bottom: 15px;
    margin-top: 45px;
  }
  .table_fixed > tbody > tr:first-of-type > th{
    margin-top: 0;
  }
  .table_fixed > tbody > tr > th span{
    margin: 0;
  }
  .table_fixed th.top{
    padding-top: 0%;
  }

  .foot_grid{
    display: block;
  }
  .foot_address{
    border-right: 0;
    padding-right: 0;
    margin-right: 0;
  }
}

/*------------------------------------------------
 レスポンシブ　　　max-width:767px
------------------------------------------------*/
@media screen and (max-width:767px) {
  .foot_uwd_button {
    width: 55px;
  }
  .foot_nav_box {
    grid-template-columns: repeat(2, auto);
    gap: 15px 0;
  }
  .foot_button_list {
    gap: 15px;
    margin-top: 40px;
  }
  .foot_button_list a {
    font-size: 0.18rem;
    min-width: unset;
    padding: 5px 10px;
  }
}

/*------------------------------------------------
 レスポンシブ　　　max-width:480px
------------------------------------------------*/
@media screen and (max-width:480px) {
  .foot_logo {
    max-width: 250px;
  }
  .foot_button_list {
    justify-content: center;
  }
}