@charset "UTF-8";

/* ======================================================

   common-Setting

========================================================= */
html {}
*,
*:before,
*:after {
  box-sizing: border-box;
}
body {
  color: #191919;
  background: #ecf8fd;
  -webkit-text-size-adjust: 100%;
  font-family: "Montserrat", "Yu Gothic", "Yu Gothic Medium", "YuGothic", "Noto Sans JP", sans-serif;
  font-weight: 400;
  letter-spacing: 0.1em;
}
h1,h2,h3,h4,h5,h6,
input,button,textarea,select,
p,blockquote,
table,th,td,pre,address,
ul,ol,li,dl,dt,dd {
  font-size: 16px;
  font-weight: normal;
  text-align: left;
  line-height: 2;
}
li { list-style: none; }
th,td { vertical-align: middle; }
select { visibility: visible !important; }

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  color: #0153db;
  text-decoration: none;
}
a:hover {
  color: #3fb5e9;
  text-decoration: underline;
}

.mb_10 { margin-bottom: 10px !important; }
.mb_20 { margin-bottom: 20px !important; }
.mb_30 { margin-bottom: 30px !important; }
.mb_40 { margin-bottom: 40px !important; }
.mb_50 { margin-bottom: 50px !important; }
.mb_60 { margin-bottom: 60px !important; }
.mb_70 { margin-bottom: 70px !important; }
.mb_80 { margin-bottom: 80px !important; }
.mb_90 { margin-bottom: 90px !important; }
.mb_100 { margin-bottom: 100px !important; }

.mb_t { margin-bottom: 20px !important; }
.mb_s { margin-bottom: 30px !important; }
.mb_m { margin-bottom: 50px !important; }
.mb_l { margin-bottom: 70px !important; }

.f_b { font-weight: bold; }
.f_10 { font-size: 10px !important; }
.f_12 { font-size: 12px !important; }
.f_14 { font-size: 14px !important; }
.f_16 { font-size: 16px !important; }
.f_18 { font-size: 18px !important; }
.f_20 { font-size: 20px !important; }
.f_22 { font-size: 22px !important; }
.txt_mb { margin-bottom: 1em; }
.txt_l { text-align: left !important; }
.txt_c { text-align: center !important; }
.txt_r { text-align: right !important; }
.txt_serif { font-family: "Noto Serif JP", serif; }

.fadein {
  opacity: 0;
  transform: translate(0, 50px);
  transition: all 1500ms;
}
.fadein.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}

.pc_area,.tab_area { display: none; }

.wrapper {
  overflow-x: hidden;
  position: relative;
}

.topicpath { margin-bottom: 20px; }
.topicpath ul {
  width: 90%;
  margin: 0 auto;
  padding: 15px 0;
}
.topicpath li {
  display: inline;
  line-height: 1.4;
  font-size: 12px;
}
.topicpath li::before { content: ' > '; }
.topicpath li:first-child::before { content: ''; }

@media screen and (min-width: 600px) {
  .sp_area { display: none; }
  .tab_area { display: block; }
}

@media screen and (min-width: 1025px) {
  .mb_t { margin-bottom: 30px !important; }
  .mb_s { margin-bottom: 50px !important; }
  .mb_m { margin-bottom: 80px !important; }
  .mb_l { margin-bottom: 100px !important; }
  
  .pc_area,.tab_area { display: block; }
  
  .hover_opacity { transition: 0.3s; }
  .hover_opacity:hover {
    transition: 0.3s;
    opacity: 0.8;
  }

  .topicpath { margin-bottom: 50px; }
  .topicpath ul { max-width: 1200px; }
}

/* ======================================================

   header

========================================================= */
.outer_header {
  width: 100%;
  height: 60px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  background: #FFF;
}
.header {
  width: 90%;
  margin: 0 auto;
}
.header h1 {
  width: 191px;
  height: 40px;
  margin-top: 10px;
}
.pc_head {
  display: none;
}
@media screen and (min-width: 1025px) {
  .outer_header {
    height: auto;
    background: #0153db;
  }
  .header {
    width: calc(100% - 40px);
	padding: 15px 0;
	display: flex;
    justify-content: space-between;
	align-items: center;
  }
  .header h1 {
    width: 240px;
    height: 50px;
    margin-top: 0;
  }
  
  .pc_head {
	display: flex;
    justify-content: flex-end;
  }
  .gnav {
    display: flex;
    list-style: none;
	height: 100%;
	margin-right: 20px;
  }
  .gnav > li {
    display: flex;
	align-items: center;
    text-align: center;
    position: relative;
	height: 100%;
	margin-right: 20px;
  }
  .gnav > li:last-child {
	margin-right: 0;
  }
  .gnav a {
    display: block;
    padding: 0;
    color: #FFFFFF;
    text-decoration: none;
  }
  .gnav a.gnav_arrow {
    padding-right: 20px;
	background: url("../images/gnav_arrow_blue.png") no-repeat right center;
	background-size: 13px 7px;
  }
  .gnav_submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) ;
    background-color: #FFF;
    list-style: none;
	padding: 30px;
	border-radius: 10px;
	box-shadow: 0px 0px 10px 0 rgba(0,0,0,0.15);
  }
  .gnav_submenu li {
    width: 250px;
	line-height: 1.6;
	margin-bottom: 10px;
	padding-left: 18px;
	position: relative;
  }
  .gnav_submenu li::before {
    content: '';
	display: block;
	width: 8px;
	height: 8px;
	border-radius: 2px;
	position: absolute;
	top: 8px;
	left: 0;
	background: #3fb5e9;
  }
  .gnav_submenu li:last-child {
	margin-bottom: 0;
  }
  .gnav_submenu a {
    color: #191919;
    text-decoration: none;
  }
  .gnav_submenu a:hover {
  }
  .gnav li:hover > .gnav_submenu {
    display: block;
    transition: 0.3s;
  }
  .gnav li:hover > .gnav_submenu li:hover a {
    color: #3fb5e9;
  }
  
  .pc_head .head_phone {
    font-size: 20px;
	padding-left: 20px;
	background: url("../images/icon_tel_blue.png") no-repeat left center;
	background-size: 15px auto;
	margin-right: 15px;
  }
  .pc_head .head_phone a {
    color: #FFF;
	text-decoration: none;
  }
  
  .pc_head .head_mail {
    border-radius: 100vh;
	background: #1484C0;
	background: linear-gradient(80deg, rgba(20, 132, 192, 1) 0%, rgba(65, 200, 205, 1) 100%);
	transition: 0.3s;
  }
  .pc_head .head_mail:hover {
	transition: 0.3s;
	opacity: 0.8;
  }
  .pc_head .head_mail a {
	display: flex;
	align-items: center;
	height: 100%;
	color: #FFF;
	text-decoration: none;
	padding: 0 30px;
  }
  .pc_head .head_mail a span {
    display: inline-block;
	padding-left: 25px;
	background: url("../images/icon_mail.png") no-repeat left center;
	background-size: 20px;
  }
}

/* hamburger menu */
.hamburger_menu_cover {
  position: fixed;
  top: 0;
  right: 0;
  background: #65C4ED;
  background: linear-gradient(80deg, rgba(101, 196, 237, 1) 0%, rgba(101, 209, 214, 1) 100%);
  z-index: 999;
}
.hamburger_menu {
  display: flex;
  align-items: center;
  width: 60px;
  height: 60px;
  padding: 15px;
  cursor: pointer;
}
.hamburger_menu__line {
  display: block;
  width: 100%;
  height: 1px;
  background-color: #FFF;
  position: relative;
  transition: all 0.5s;
}
.hamburger_menu__line::before,
.hamburger_menu__line::after {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background-color: #FFF;
  position: absolute;
  transition: all 0.5s;
}

.hamburger_menu__line::before { transform: translateY(-8px); }
.hamburger_menu__line::after { transform: translateY(8px); }
.hamburger_menu.open .hamburger_menu__line { background-color: transparent; }
.hamburger_menu.open .hamburger_menu__line::before { transform: rotate(45deg); }
.hamburger_menu.open .hamburger_menu__line::after { transform: rotate(-45deg); }

.nav_sp {
  box-sizing: border-box;
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  padding: 100px 30px 80px;
  background: #41C8CD;
  background: linear-gradient(80deg, rgba(65, 200, 205, 1) 0%, rgba(20, 132, 192, 1) 100%);
  text-align: left;
  transition: right 0.5s;
  overflow: scroll;
  z-index: 998;
}
.nav_sp.open { right: 0; }
.nav_sp_inner {}

.nav_sp li,
.nav_sp p.sp_menu_btn {
  font-size: 18px;
  line-height: 1.4;
  position: relative;
}
.nav_sp li a,
.nav_sp p.sp_menu_btn a {
  display: block;
  color: #FFF;
  text-decoration: none;
}
.nav_sp p.sp_menu_btn a::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 8px;
  height: 8px;
  margin: -4px 2px 0 0;
  border-top: solid 2px #FFF;
  border-right: solid 2px #FFF;
  transform: rotate(45deg);
}

.nav_sp p.sp_menu_btn,
.has_submenu {
  border-bottom: #FFF 1px solid;
}
.nav_sp p.sp_menu_btn a {
  padding: 15px 10px;
}

/* サブメニューのトグルボタン */
.submenu_toggle {
  display: block;
  position: relative;
  cursor: pointer;
  color: #FFF;
  font-size: 18px;
  padding: 15px 10px;
}

/* プラスマーク（開閉アイコン） */
.submenu_toggle::after, 
.submenu_toggle::before {
  content: "";
  display: block;
  background-color: #FFF;
  position: absolute;
  top: 50%;
  right: 0;
}
.submenu_toggle::after { 
  width: 16px;
  height: 2px;
  margin-top: -1px;
}
.submenu_toggle::before {
  width: 2px;
  height: 16px;
  margin-top: -8px;
  right: 7px;
}
.submenu_toggle.open::before {
  display: none;
}

/* サブメニュー */
.submenu {
  display: none;
  padding: 0 0 20px 1em;
}
.submenu li {
  margin-bottom: 5px;
}
.submenu.open {
  display: block;
}
@media screen and (min-width: 1025px) {
  .hamburger_menu_cover {
    display: none;
  }
}

/* ======================================================

   footer

========================================================= */
.footer_cover {
  padding-top: 5%;
  background: #1484c0;
}
.footer_map {
  height: 250px;
  width: 90%;
  overflow: hidden;
  position: relative;
  margin: 0 auto;
  border-radius: 20px;
}
.footer_map iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
.footer_contents {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 0;
}
.footer_contents p {
  color: #FFF;
}
@media screen and (min-width: 1025px) {
  .footer_cover {
    padding-top: 40px;
  }
  .footer_map {
    height: 400px;
    width: calc(100% - 80px);
  }
  .footer_contents {
	display: flex;
    justify-content: space-between;
	flex-wrap: wrap;
  }
}

.footer_contents .footer_contents_lft {
  margin-bottom: 20px;
}
.footer_contents .footer_contents_lft .ft_logo {
  width: 220px;
  margin-bottom: 20px;
}
.footer_contents .footer_contents_lft .ft_address {
  font-size: 12px;
  line-height: 1.4;
}
.footer_contents .footer_contents_lft .ft_phonenumber {
  margin-bottom: 15px;
}
.footer_contents .footer_contents_lft .ft_phonenumber a {
  display: inline-block;
  color: #FFF;
  text-decoration: none;
  font-size: 20px;
  padding-left: 25px;
  background: url("../images/icon_tel.png") no-repeat left center;
  background-size: 15px auto;
}
.footer_contents .footer_contents_lft .ft_tbl {
  margin-bottom: 40px;
}
.footer_contents .footer_contents_lft .ft_tbl th,
.footer_contents .footer_contents_lft .ft_tbl td {
  font-size: 12px;
  color: #FFF;
}
.footer_contents .footer_contents_lft .ft_tbl th {
  padding-right: 1em;
}
.footer_contents .footer_contents_lft .ft_contact {
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  border-radius: 100vh;
  background: #65C4ED;
  background: linear-gradient(80deg, rgba(101, 196, 237, 1) 0%, rgba(101, 209, 214, 1) 100%);
}
.footer_contents .footer_contents_lft .ft_contact a {
  display: block;
  color: #FFF;
  text-decoration: none;
  padding: 15px 10px;
}
.footer_contents .footer_contents_lft .ft_contact a span {
  display: inline-block;
  padding-left: 25px;
  background: url("../images/icon_mail.png") no-repeat left center;
  background-size: 15px auto;
}
@media screen and (min-width: 1025px) {
  .footer_contents .footer_contents_lft {
    width: 28%;
	padding: 20px 0;
	margin-bottom: 0;
  }
  .footer_contents .footer_contents_lft .ft_logo {
    width: 305px;
    margin-bottom: 30px;
  }
  .footer_contents .footer_contents_lft .ft_address {
    font-size: 16px;
  }
  .footer_contents .footer_contents_lft .ft_phonenumber {
    margin-bottom: 20px;
  }
  .footer_contents .footer_contents_lft .ft_phonenumber a {
    font-size: 24px;
  }
  .footer_contents .footer_contents_lft .ft_contact {
    font-size: 16px;
	transition: 0.5s;
  }
  .footer_contents .footer_contents_lft .ft_contact:hover {
	opacity: 0.8;
	transition: 0.5s;
  }
}

.footer_contents .footer_contents_rgt {
  display: none;
}
@media screen and (min-width: 1025px) {
  .footer_contents .footer_contents_rgt {
    display: block;
	width: 65%;
	padding: 20px 0 20px 80px;
	border-left: #3fb5e9 1px solid;
  }
  .ft_menu_contents {
	display: flex;
    justify-content: space-between;
	flex-wrap: wrap;
  }
  .ft_menu_contents .ft_menu {
	width: 48%;
  }
  .ft_menu_contents a {
    color: #FFF;
  }
  .ft_menu_contents li {
    font-size: 15px;
	padding-left: 20px;
	position: relative;
  }
  .ft_menu_contents li::before {
    content: '';
	display: block;
	width: 8px;
	height: 1px;
	background: #FFF;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
  }
}

.footer_cover .copy {
  width: 100%;
  color: #FFF;
  font-size: 12px;
  text-align: center;
}
.footer_follow {
  display: none;
  width: 100%;
  position: fixed;
  left: 0;
  bottom: 0;
}
.footer_follow .sp_btm_contact {
  width: 100%;
  display: flex;
  background: #65C4ED;
  background: linear-gradient(80deg, rgba(101, 196, 237, 1) 0%, rgba(101, 209, 214, 1) 100%);
}
.footer_follow .sp_btm_contact li {
  width: 50%;
  text-align: center;
}
.footer_follow .sp_btm_contact li.tel {
  border-right: 1px solid #FFF;
}
.footer_follow .sp_btm_contact li a {
  display: block;
  width: 100%;
  color: #FFF;
  padding: 15px 5px;
  box-sizing: border-box;
}
.footer_follow .sp_btm_contact li a span {
  display: inline-block;
}
.footer_follow .sp_btm_contact li.tel a span {
  padding-left: 20px;
  background: url("../images/icon_tel.png") no-repeat center left;
  background-size: 15px auto;
}
.footer_follow .sp_btm_contact li.mail a span {
  padding-left: 25px;
  background: url("../images/icon_mail.png") no-repeat center left;
  background-size: 20px auto;
}
@media screen and (min-width: 1025px) {
  .footer_cover .copy {
    padding-top: 50px;
  }
  .footer_follow .sp_btm_contact {
    display: none;
  }
}

/* ======================================================

   index

========================================================= */
.main_view_cover {
  background: url("../images/mv.png") no-repeat center bottom;
  background-size: cover;
}
.main_view_contents {
  padding: 30px 0 0;
}
.main_view_text {
  width: 90%;
  margin: 0 auto;
  padding: 150px 0 50px;
  background: url("../images/mv_photo.png") no-repeat top center;
  background-size: auto 500px;
}
.main_view_text h2 {
  color: #FFF;
  font-size: 26px;
  font-family: "Noto Serif JP", serif;
  line-height: 1.6;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
  margin-bottom: 20px;
}
.main_view_text h2 span {
  display: block;
  font-size: 18px;
  margin-bottom: 5px;
}
.main_view_text ul {
  background: rgba(255,255,255,0.6);
  border-radius: 20px;
  padding: 20px;
}
.main_view_text ul li {
  color: #FFF;
  font-size: 15px;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 10px;
  padding: 15px;
  border-radius: 100vh;
}
.main_view_text ul li:nth-child(1),
.main_view_text ul li:nth-child(3) {
  background: #3fb5e9;
}
.main_view_text ul li:nth-child(2),
.main_view_text ul li:nth-child(4) {
  background: #41c8cd;
}
.main_view_text ul li:last-child {
  margin-bottom: 0;
}
.main_view_step {
  width: 90%;
  margin: 0 auto;
  background: #f8f6ed;
  border-radius: 20px 20px 0 0;
}
.main_view_step .main_view_step_ttl {
  color: #FFF;
  font-size: 18px;
  font-family: "Noto Serif JP", serif;
  line-height: 1.6;
  text-align: center;
  background: #65C4ED;
  background: linear-gradient(80deg, rgba(101, 196, 237, 1) 0%, rgba(103, 211, 215, 1) 100%);
  border-radius: 20px 20px 0 0;
  padding: 10px 0;
}
.main_view_step .main_view_step_ttl span {
  font-size: 22px;
}
.main_view_step_contents {
  padding: 20px 30px 30px;
}
.main_view_step_contents .step_contents01,
.main_view_step_contents .step_contents02 {
  margin-bottom: 15px;
}
.main_view_step_contents .step_ttl {
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}
.main_view_step_contents .step_ttl::after {
  content: '必須';
  display: inline-block;
  color: #FFF;
  font-size: 12px;
  margin-left: auto;
  background: #9e0e0e;
  border-radius: 5px;
  padding: 0 5px;
}
.main_view_step_contents .step_ttl .step_number {
  display: inline-block;
  font-size: 12px;
  font-weight: 400;
  background: #fff078;
  margin-right: 5px;
  padding: 0 10px;
  border-radius: 100vh;
}
.main_view_step_contents .step_text {
  width: 100%;
}
.main_view_step_contents .step_select {
  width: 100%;
  padding: 10px;
}
.main_view_step .step_btn {
  padding: 0 30px 30px;
}
@media screen and (min-width: 1025px) {
  .main_view_contents {
    width: 90%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 70px 0 0;
	background: url("../images/mv_photo.png") no-repeat right bottom;
	background-size: 369px auto;
  }
  .main_view_text {
    width: 100%;
	max-width: 880px;
	margin: 0;
    padding: 0 0 80px;
    background: none;
  }
  .main_view_text h2 {
    font-size: 34px;
    margin-bottom: 20px;
  }
  .main_view_text h2 span {
    font-size: 24px;
  }
  .main_view_text ul {
	display: flex;
    justify-content: space-between;
	flex-wrap: wrap;
  }
  .main_view_text ul li {
    width: calc(50% - 5px);
    padding: 15px 5px;
  }
  .main_view_text ul li:nth-child(1),
  .main_view_text ul li:nth-child(4) {
    background: #3fb5e9;
  }
  .main_view_text ul li:nth-child(2),
  .main_view_text ul li:nth-child(3) {
    background: #41c8cd;
  }
  .main_view_text ul li:nth-last-child(2),
  .main_view_text ul li:last-child {
    margin-bottom: 0;
  }
  .main_view_step {
    width: 100%;
	max-width: 880px;
    margin: 0;
  }
  .main_view_step .main_view_step_ttl {
    font-size: 24px;
    padding: 10px 0;
  }
  .main_view_step .main_view_step_ttl span {
    font-size: 28px;
  }
  .main_view_step_contents {
    padding: 30px 30px 20px;
	display: flex;
    justify-content: space-between;
  }
  .main_view_step_contents .step_contents {
    width: 32.5%;
  }
  .main_view_step_contents .step_contents01,
  .main_view_step_contents .step_contents02 {
    margin-bottom: 0;
  }
  .main_view_step_contents .step_select {
    padding: 8px 10px;
  }
  .main_view_step .step_btn {
    padding: 0 30px 40px;
  }
  .main_view_step .step_btn .txt_btn {
    margin: 0 auto;
  }
}

.index_info_cover {  
  padding: 15px 0;
  background: #FFF;
}
.index_info_cover .index_info_ttl {  
  display: inline-block;
  color: #FFF;
  line-height: 1.6;
  padding: 10px 25px 10px 5%;
  background: #00a8a3;
  border-radius: 0 100vh 100vh 0;
}
.index_info_cover .index_info_ttl .jp_txt {  
  display: inline-block;
  font-size: 18px;
  font-family: "Noto Serif JP", serif;
  padding-right: 5px;
}
.index_info_cover .index_info_ttl .en_txt {  
  font-size: 14px;
  color: #b3e9eb;
}
.index_info_slider {
  padding: 10px 5% 0;
}
.index_info_slider .index_info_list a {  
  display: block;
  color: #191919;
  text-decoration: none;
  background: url("../images/btn_arrow_circle_blue.png") no-repeat center right;
  background-size: 20px;
  padding-right: 45px;
}
.index_info_slider .index_info_list a .info_data {  
  color: #0b5d82;
}
@media screen and (min-width: 1025px) {
  .index_info_cover {  
    display: flex;
  }
  .index_info_cover .index_info_ttl {  
    display: flex;
	justify-content: center;
	align-items: center;
	width: 230px;
	padding: 10px 30px;
  }
  .index_info_cover .index_info_ttl .jp_txt {  
    font-size: 24px;
	padding-right: 10px;
  }
  .index_info_cover .index_info_ttl .en_txt {  
    font-size: 18px;
  }
  .index_info_slider {
    width: calc(100% - 230px);
	padding: 0 30px 0;
  }
  .index_info_slider .index_info_list {
    width: 100%;
  }
  .index_info_slider .index_info_list a {  
    display: flex;
	align-items: center;
    height: 100%;
    background: url("../images/btn_arrow_circle_blue.png") no-repeat center right 10px;
    background-size: 30px;
	padding: 10px 55px 10px 0;
  }
  .index_info_slider .index_info_list a .info_data {  
    padding-right: 15px;
  }
  .index_info_slider .index_info_list a .info_ttl {  
    transition: 0.3s;
  }
  .index_info_slider .index_info_list a:hover .info_ttl {  
    transition: 0.3s;
	color: #3fb5e9;
  }
}

.index_sec01_cover {
  width: 90%;
  margin: 0 auto;
  padding: 80px 0 50px;
}
.index_sec01_text {
  margin-bottom: 40px;
}
.index_sec01_text p {
  text-align: center;
  margin-bottom: 1em;
}
.index_sec01_text p:last-child {
  margin-bottom: 0;
}
.index_sec01_list li {
  position: relative;
  margin-bottom: 20px;
}
.index_sec01_list li img {
  border-radius: 10px;
  box-shadow: 0px 0px 10px 0 rgba(0,0,0,0.15);
}
.index_sec01_list li .sec01_list_txt {
  width: 58%;
  position: absolute;
  top: 20px;
  left: 20px;
  line-height: 1.8;
}
@media screen and (min-width: 1025px) {
  .index_sec01_cover {
    padding: 80px 0 60px;
  }
  .index_sec01_list {
    display: flex;
    justify-content: space-between;
	flex-wrap: wrap;
	max-width: 1200px;
	margin: 0 auto;
  }
  .index_sec01_list li {
    width: 32%;
	max-width: 380px;
	margin-bottom: 30px;
  }
}

.index_sec02_cover {
  padding-top: 180px;
  position: relative;
}
.index_sec02_cover::before {
  content: '';
  display: block;
  width: calc(95% - 30px);
  height: 230px;
  position: absolute;
  right: 0;
  top: 0;
  background: url("../images/index_sec02_img01.png") no-repeat left center;
  background-size: cover;
  border-radius: 10px 0 0 10px;
}
.index_sec02_contents {
  width: 90%;
  margin: 0 auto;
  padding: 80px 30px 40px;
  border-radius: 20px;
  background: #B2E1F6;
  background: linear-gradient(80deg, rgba(178, 225, 246, 1) 0%, rgba(179, 233, 235, 1) 100%);
}
@media screen and (min-width: 1025px) {
  .index_sec02_cover {
    padding-top: 0;
  }
  .index_sec02_cover::before {
    width: 50%;
    height: 550px;
	top: 50%;
	transform: translateY(-50%);
  }
  .index_sec02_contents {
    width: calc(100% - 80px);
    padding: 80px 52% 80px 8%;
    border-radius: 20px;
    background: #B2E1F6;
    background: linear-gradient(80deg, rgba(178, 225, 246, 1) 0%, rgba(179, 233, 235, 1) 100%);
  }
}

.index_sec03_cover {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 0;
}
.index_sec03_text {
  margin-bottom: 30px;
}
.index_sec03_text p {
  text-align: center;
  margin-bottom: 1em;
}
.index_sec03_text p:last-child {
  margin-bottom: 0;
}
.index_sec03_list {
  margin-bottom: 30px;
}
.index_sec03_list .sec03_list {
  background: #FFF;
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0px 0px 10px 0 rgba(0,0,0,0.15);
}
.index_sec03_list .sec03_list::before {
  content: '';
  display: block;
  width: 100%;
  height: 180px;
  border-radius: 10px 10px 0 0;
}
.index_sec03_list .sec03_list01::before {
  background: url("../images/index_sec03_img01.png") no-repeat center;
  background-size: cover;
}
.index_sec03_list .sec03_list02::before {
  background: url("../images/index_sec03_img02.png") no-repeat center;
  background-size: cover;
}
.index_sec03_list .sec03_list03::before {
  background: url("../images/index_sec03_img03.png") no-repeat center;
  background-size: cover;
}
.index_sec03_list .sec03_list04::before {
  background: url("../images/index_sec03_img04.png") no-repeat center;
  background-size: cover;
}
.index_sec03_list .sec03_list05::before {
  background: url("../images/index_sec03_img05.png") no-repeat center;
  background-size: cover;
}
.index_sec03_list .sec03_list06::before {
  background: url("../images/index_sec03_img06.png") no-repeat center;
  background-size: cover;
}
.index_sec03_list .sec03_list .sec03_list_ttl {
  display: flex;
  align-items: center;
  padding: 20px 30px;
}
.index_sec03_list .sec03_list .sec03_list_ttl .list_number {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  background: #65C4ED;
  background: linear-gradient(80deg, rgba(101, 196, 237, 1) 0%, rgba(101, 209, 214, 1) 100%);
  color: #FFF;
  font-size: 24px;
}
.index_sec03_list .sec03_list .sec03_list_ttl h4 {
  width: calc(100% - 75px);
  margin-left: auto;
  line-height: 1.4;
  color: #0b5d82;
  font-size: 20px;
  font-family: "Noto Serif JP", serif;
}
.index_sec03_list .sec03_list .sec03_list_txt {
  width: calc(100% - 60px);
  margin: 0 auto;
  padding: 20px 0;
  border-top: #b3e7ee 1px solid;
}
@media screen and (min-width: 1025px) {
  .index_sec03_cover {
    padding: 80px 0;
  }
  .index_sec03_text {
    margin-bottom: 50px;
  }
  .index_sec03_list {
    display: flex;
    justify-content: space-between;
	flex-wrap: wrap;
	margin-bottom: 10px;
  }
  .index_sec03_list .sec03_list {
    width: calc(50% - 20px);
	margin-bottom: 40px;
  }
  .index_sec03_list .sec03_list::before {
    height: 240px;
  }
  .index_sec03_list .sec03_list .sec03_list_ttl {
    padding: 20px 30px;
  }
  .index_sec03_list .sec03_list .sec03_list_ttl .list_number {
    width: 80px;
    height: 80px;
    font-size: 36px;
  }
  .index_sec03_list .sec03_list .sec03_list_ttl h4 {
    width: calc(100% - 100px);
	font-size: 24px;
  }
  .index_sec03_list .sec03_list .sec03_list_txt {
    padding: 20px 0;
  }
  .index_sec03_cover .txt_btn {
    margin: 0 auto;
  }
}

.index_sec04_cover {
  width: 90%;
  margin: 0 auto;
}
.index_sec04_inner {
  padding: 40px 30px 30px;
  border-radius: 20px;
  background: #41C8CD;
  background: linear-gradient(80deg, rgba(65, 200, 205, 1) 0%, rgba(20, 132, 192, 1) 100%);
}
.index_sec04_inner h3 {
  color: #FFF;
  text-align: center;
  font-size: 22px;
  font-family: "Noto Serif JP", serif;
  line-height: 1.6;
  margin-bottom: 30px;
}
.index_sec04_inner h3::before {
  content: '';
  display: block;
  width: 42px;
  height: 41px;
  margin: 0 auto 10px;
  background: url("../images/icon_img01.png") no-repeat center;
  background-size: cover;
}
.index_sec04_contents .index_sec04_list {
  border-radius: 10px;
  margin-bottom: 30px;
}
.index_sec04_contents .index_sec04_list h4 {
  color: #FFF;
  text-align: center;
  font-size: 20px;
  font-family: "Noto Serif JP", serif;
  line-height: 1.6;
  padding: 10px;
  background: #65C4ED;
  background: linear-gradient(80deg, rgba(101, 196, 237, 1) 0%, rgba(103, 211, 215, 1) 100%);
  border-radius: 10px 10px 0 0;
}
.index_sec04_contents .index_sec04_list ul {
  padding: 30px;
  background: #FFF;
  border-radius: 0 0 10px 10px;
}
.index_sec04_contents .index_sec04_list ul li {
  color: #0b5d82;
  line-height: 1.6;
  text-align: center;
  font-weight: 700;
  margin-bottom: 20px;
}
.index_sec04_contents .index_sec04_list ul li::before {
  content: '';
  display: block;
  width: 120px;
  height: 120px;
  margin: 0 auto 10px;
}
.index_sec04_contents .index_sec04_list ul li.sec04_list01::before {
  background: url("../images/index_sec04_img01.png") no-repeat center;
  background-size: cover;
}
.index_sec04_contents .index_sec04_list ul li.sec04_list02::before {
  background: url("../images/index_sec04_img02.png") no-repeat center;
  background-size: cover;
}
.index_sec04_contents .index_sec04_list ul li.sec04_list03::before {
  background: url("../images/index_sec04_img03.png") no-repeat center;
  background-size: cover;
}
.index_sec04_contents .index_sec04_list ul li:last-child {
  margin-bottom: 0;
}
.index_sec04_contents .index_sec04_text p {
  color: #FFF;
  margin-bottom: 1em;
}
.index_sec04_contents .index_sec04_text p.txt_btn02 {
  box-shadow: 0px 0px 10px 0 rgba(0,0,0,0.15);
}
@media screen and (min-width: 1025px) {
  .index_sec04_cover {
    width: calc(100% - 80px);
    border-radius: 20px;
    background: #41C8CD;
    background: linear-gradient(80deg, rgba(65, 200, 205, 1) 0%, rgba(20, 132, 192, 1) 100%);
  }
  .index_sec04_inner {
    width: 90%;
	max-width: 1200px;
	margin: 0 auto;
	background: none;
	padding: 80px 0 70px;
  }
  .index_sec04_inner h3 {
    font-size: 38px;
    margin-bottom: 30px;
  }
  .index_sec04_inner h3::before {
    display: none;
  }
  .index_sec04_inner h3 span {
    display: inline-block;
	padding-left: 52px;
	background: url("../images/icon_img01.png") no-repeat center left;
    background-size: 42px 41px;
  }
  .index_sec04_contents {
    display: flex;
    justify-content: space-between;
  }  
  .index_sec04_contents .index_sec04_list {
    width: 43.5%;
    margin-bottom: 0;
  }
  .index_sec04_contents .index_sec04_list h4 {
    font-size: 30px;
  }
  .index_sec04_contents .index_sec04_list ul {
    display: flex;
    justify-content: space-between;
  }
  .index_sec04_contents .index_sec04_list ul li {
    width: 33%;
	margin-bottom: 0;
  }
  .index_sec04_contents .index_sec04_text {
    width: 51.5%;
  }
}

.index_sec05_cover {
  padding: 50px 0;
}
.index_sec05_text {
  padding: 50px 8% 100px 5%;
  position: relative;
}
.index_sec05_text::before {
  content: '';
  display: block;
  width: 95%;
  height: 100%;
  background: #B2E1F6;
  background: linear-gradient(80deg, rgba(178, 225, 246, 1) 0%, rgba(179, 233, 235, 1) 100%);
  border-radius: 0 10px 10px 0;
  position: absolute;
  left: 0;
  top: 0;
}
.index_sec05_text::after {
  content: '';
  display: block;
  width: 300px;
  height: 270px;
  background: url("../images/index_sec05_img01.png") no-repeat center;
  background-size: cover;
  position: absolute;
  left: 0;
  bottom: -170px;
}
.index_sec05_text .ttl_pt01,
.index_sec05_text p {
  text-align: left;
  position: relative;
}
.index_sec05_text p {
  margin-bottom: 1em;
}
.index_sec05_list {
  width: 90%;
  margin: 0 auto;
  padding: 50px 0 0;
  position: relative;
}
.index_sec05_list .sec05_list {
  background: #FFF;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0px 0px 10px 0 rgba(0,0,0,0.15);
}
.index_sec05_list .sec05_list:last-child {
  margin-bottom: 0;
}
.index_sec05_list .sec05_list a::before {
  content: '';
  display: block;
  width: 100%;
  height: 180px;
  border-radius: 10px 10px 0 0;
}
.index_sec05_list .sec05_list01 a::before {
  background: url("../images/index_sec05_img02.png") no-repeat center;
  background-size: cover;
}
.index_sec05_list .sec05_list02 a::before {
  background: url("../images/index_sec05_img03.png") no-repeat center;
  background-size: cover;
}
.index_sec05_list .sec05_list03 a::before {
  background: url("../images/index_sec05_img04.png") no-repeat center;
  background-size: cover;
}
.index_sec05_list .sec05_list04 a::before {
  background: url("../images/index_sec05_img05.png") no-repeat center;
  background-size: cover;
}
.index_sec05_list .sec05_list05 a::before {
  background: url("../images/index_sec05_img06.png") no-repeat center;
  background-size: cover;
}
.index_sec05_list .sec05_list06 a::before {
  background: url("../images/index_sec05_img07.png") no-repeat center;
  background-size: cover;
}
.index_sec05_list .sec05_list a {
  color: #191919;
  text-decoration: none;
}
.index_sec05_list .sec05_list .sec05_list_ttl {
  width: calc(100% - 30px);
  display: flex;
  align-items: center;
  padding: 15px 0 15px 30px;
  border-bottom: #41c4d2 1px solid;
}
.index_sec05_list .sec05_list .sec05_list_ttl .list_number {
  color: #41c8cd;
  font-size: 24px;
  padding-right: 15px;
}
.index_sec05_list .sec05_list .sec05_list_ttl h5 {
  flex-grow: 1;
  color: #00a8a3;
  font-size: 20px;
  font-family: "Noto Serif JP", serif;
  line-height: 1.5;
  background: url("../images/btn_arrow_green.png") no-repeat right center;
  background-size: 20px 20px;
  padding-right: 30px;
}
.index_sec05_list .sec05_list .sec05_list_txt {
  padding: 20px 30px;
}
@media screen and (min-width: 1025px) {
  .index_sec05_cover {
    padding: 80px 0;
  }
  .index_sec05_inner {
    position: relative;
  }
  .index_sec05_inner::before {
    content: '';
    display: block;
    width: 43.5%;
    height: 80%;
    background: #B2E1F6;
    background: linear-gradient(80deg, rgba(178, 225, 246, 1) 0%, rgba(179, 233, 235, 1) 100%);
    border-radius: 0 10px 10px 0;
    position: absolute;
    left: 0;
    top: 0;
  }
  .index_sec05_contents {
    width: 90%;
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
    justify-content: space-between;
  }
  .index_sec05_text {
    width: 30%;
	padding: 120px 0 0;
  }
  .index_sec05_text::before {
    display: none;
  }
  .index_sec05_text::after {
    width: 725px;
    height: 650px;
	left: auto;
    right: 0;
    bottom: 0;
  }
  .index_sec05_list {
    width: 67%;
    margin: 0;
    padding: 40px 0 0;
  }
  .index_sec05_list ul {
    display: flex;
    justify-content: space-between;
	flex-wrap: wrap;
  }
  .index_sec05_list .sec05_list {
    width: calc(50% - 15px);
	margin-bottom: 30px;
  }
  .index_sec05_list .sec05_list:nth-last-child(2) {
    margin-bottom: 0;
  }
  .index_sec05_list .sec05_list a {
    transition: 0.3s;
  }
  .index_sec05_list .sec05_list a:hover {
    transition: 0.3s;
	opacity: 0.8;
  }
  .index_sec05_list .sec05_list a::before {
    height: 200px;
  }
  .index_sec05_list .sec05_list .sec05_list_ttl .list_number {
    font-size: 28px;
  }
  .index_sec05_list .sec05_list .sec05_list_ttl h5 {
    font-size: 24px;
    background: url("../images/btn_arrow_green.png") no-repeat right center;
    background-size: 30px 30px;
    padding-right: 40px;
  }
}

.index_sec06_cover {
  background: #FFF;
  padding: 50px 0 60px;
}
.index_sec06_text {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto 40px;
}
.index_sec06_text p {
  margin-bottom: 1em;
  text-align: center;
}
.index_sec06_text p:last-child {
  margin-bottom: 0;
}
.index_sec06_slider {
  margin-bottom: 50px;
}
.index_sec06_slider a {
  display: block;
  color: #191919;
  text-decoration: none;
  padding: 30px;
}
.sec06_slider {
  height: 100%;
  background: #f8f6ed;
  border-radius: 10px;
}
.sec06_slider_ttl {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #d3ca94;
  padding-bottom: 20px;
}
.sec06_slider_ttl .sec06_slider_img {
  width: 80px;
  height: 80px;
  overflow: hidden;
  border-radius: 50%;
}
.sec06_slider_ttl .sec06_slider_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.sec06_slider_ttl h4 {
  width: calc(100% - 100px);
  margin-left: auto;
  color: #0b5d82;
  font-size: 18px;
  font-family: "Noto Serif JP", serif;
  line-height: 1.6;
  padding-right: 30px;
  background: url("../images/btn_arrow_circle_blue.png") no-repeat right center;
  background-size: 20px;
}
.sec06_slider_txt {
  padding-top: 20px;
}
.index_sec06_cover .txt_btn {
  width: 90%;
  margin: 0 auto;
}
.index_sec06_progress {
  width: 80%;
  max-width: 400px;
  position: relative;
  height: 3px;
  background: #ebebeb;
  overflow: hidden;
  margin: 30px auto 0;
}
.index_sec06_progress_bar {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: #a1cee6;
  transition: width .3s;
}
@media screen and (min-width: 1025px) {
  .index_sec06_cover {
    padding: 80px 0 100px;
  }
  .sec06_slider_ttl .sec06_slider_img {
    width: 100px;
    height: 100px;
  }
  .sec06_slider_ttl h4 {
    width: calc(100% - 140px);
    font-size: 24px;
    padding-right: 50px;
    background: url("../images/btn_arrow_circle_blue.png") no-repeat right center;
    background-size: 30px;
  }
  .index_sec06_cover .txt_btn {
    max-width: 350px;
  }
}

.index_sec07_cover {
  padding: 50px 0 60px;
  background: #f8f6ed;
}
.index_sec07_text {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto 40px;
}
.index_sec07_text p {
  margin-bottom: 1em;
  text-align: center;
}
.index_sec07_text p:last-child {
  margin-bottom: 0;
}
.index_sec07_slider {
  margin-bottom: 50px;
}
.sec07_slider {
  height: 100%;
  background: #FFF;
  border-radius: 10px;
}
.sec07_slider a {
  color: #191919;
  text-decoration: none;
}
.sec07_slider .sec07_slider_img {
  width: 100%;
  height: 150px;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
}
.sec07_slider .sec07_slider_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.sec07_slider .sec07_slider_txt {
  padding: 20px 25px;
}
.sec07_slider .sec07_slider_txt dl {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items:flex-start;
}
.sec07_slider .sec07_slider_txt dl dt,
.sec07_slider .sec07_slider_txt dl dd {
  line-height: 1.6;
  margin-bottom: 5px;
}

.sec07_slider .sec07_slider_txt dl dt {
  width: 100px;
  color: #FFF;
  text-align: center;
  background: #33b9b5;
  border-radius: 100vh;
  padding: 3px 0;
}
.sec07_slider .sec07_slider_txt dl dd {
  width: calc(100% - 120px);
}
.index_sec07_progress {
  width: 80%;
  max-width: 400px;
  position: relative;
  height: 3px;
  background: #ebebeb;
  overflow: hidden;
  margin: 30px auto 0;
}
.index_sec07_progress_bar {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: #a1cee6;
  transition: width .3s;
}
.index_sec07_cover .txt_btn {
  width: 90%;
  margin: 0 auto;
}
@media screen and (min-width: 1025px) {
  .index_sec07_cover {
    padding: 80px 0 100px;
  }
  .sec07_slider .sec07_slider_img {
    height: 200px;
  }
  .index_sec07_cover .txt_btn {
    max-width: 350px;
  }
}

.index_sec08_cover {
  position: relative;
  padding: 200px 0 50px;
}
.index_sec08_cover::before {
  content: '';
  display: block;
  width: calc(95% - 30px);
  height: 250px;
  background: url("../images/index_sec08_img01.png") no-repeat center;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 0 0 10px 0;
}
.index_sec08_contents {
  width: 90%;
  margin: 0 auto;
  padding: 80px 30px 30px;
  background: #FFF;
  border-radius: 10px;
  box-shadow: 0px 0px 10px 0 rgba(0,0,0,0.15);
}
.index_sec08_cover h3 {
  text-align: left;
}
.index_sec08_cover h4 {
  color: #0b5d82;
  font-size: 18px;
  font-family: "Noto Serif JP", serif;
  line-height: 1.4;
  margin-bottom: 20px;
}
.index_sec08_cover p {
  margin-bottom: 1em;
}
.index_sec08_cover .txt_btn {
  margin-top: 30px;
}

@media screen and (min-width: 1025px) {
  .index_sec08_cover {
    position: relative;
    padding: 200px 0 100px;
  }
  .index_sec08_cover::before {
    width: 46.35%;
    height: 760px;
    border-radius: 0 0 10px 0;
  }
  .index_sec08_contents {
    width: 58.35%;
    margin: 0 0 0 auto;
    padding: 100px 8% 100px 9%;
    border-radius: 10px 0 0 10px;
  }
  .index_sec08_cover h4 {
    font-size: 24px;
  }
  .index_sec08_cover .txt_btn {
    margin: 40px 0 0 auto;
  }
}

/* ======================================================

   block

========================================================= */
.sub_page_contents {
  padding-bottom: 60px;
}
.main_sec {
  width: 90%;
  margin: 0 auto;
}

.sec_deco01 {
  background: #FFF;
  border-radius: 10px;
  padding: 20px 0;
}
.sec_deco02 {
  width: 90%;
  margin: 0 auto;
  background: #B2E1F6;
  background: linear-gradient(80deg, rgba(178, 225, 246, 1) 0%, rgba(179, 233, 235, 1) 100%);
  border-radius: 10px;
  padding: 50px 0;
}
@media screen and (min-width: 1025px) {
  .sub_page_contents {
    padding-bottom: 120px;
  }
  .main_sec {
    max-width: 1200px;
  }
  .sec_deco02 {
    width: calc(100% - 80px);
    padding: 80px 0;
  }
}

.image_l .img,
.image_r .img {
  margin: 0 auto 20px;
}
.image_l .img img,
.image_r .img img {
  border-radius: 15px;
  box-shadow: 0px 0px 10px 0 rgba(0,0,0,0.1);
}
@media screen and (min-width: 1025px) {  
  .image_l,
  .image_r {
    display: flex;
  }
  .image_r {
    justify-content: flex-end;
    flex-direction: row-reverse;
  }
  .image_l .img,
  .image_r .img {
    width: 35%;
	  margin: 0;
  }
  .image_l .txt,
  .image_r .txt {
    width: 60%;
  }
  .image_l .txt {
    margin-left: auto;
  }
  .image_r .txt {
    margin-right: auto;
  }
}

/* ======================================================

   title

========================================================= */
h2.page_title {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  color: #FFF;
  text-align: center;
  font-size: 28px;
  font-family: "Noto Serif JP", serif;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.8);
  padding: 40px 0;
}
.ttl_pt01 {
  font-size: 28px;
  font-family: "Noto Serif JP", serif;
  text-align: center;
  line-height: 1.4;
  margin-bottom: 30px;
}
.ttl_pt01 .en_txt {
  display: block;
  color: #3fb5e9;
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  margin-top: 5px;
}
.ttl_pt02 {
  font-size: 28px;
  font-family: "Noto Serif JP", serif;
  text-align: center;
  line-height: 1.4;
  margin-bottom: 40px;
}
.ttl_pt02::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  margin: 15px auto 0;
  background: #65C4ED;
  background: linear-gradient(80deg, rgba(101, 196, 237, 1) 0%, rgba(101, 209, 214, 1) 100%);
}
.ttl_pt03 {
  color: #0b5d82;
  font-size: 24px;
  font-family: "Noto Serif JP", serif;
  line-height: 1.4;
  margin-bottom: 20px;
}
.ttl_pt04 {
  color: #0b5d82;
  font-size: 18px;
  font-family: "Noto Serif JP", serif;
  line-height: 1.4;
  margin-bottom: 20px;
}
.ttl_pt05 {
  color: #0b5d82;
  font-size: 18px;
  font-family: "Noto Serif JP", serif;
  line-height: 1.4;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: #40bfdb 1px solid;
}
@media screen and (min-width: 1025px) {
  h2.page_title {
    font-size: 38px;
    padding: 100px 0;
  }
  .ttl_pt01 {
    font-size: 38px;
  }
  .ttl_pt01 .en_txt {
    font-size: 18px;
  }
  .ttl_pt02 {
    font-size: 38px;
  }
  .ttl_pt02::after {
    width: 60px;
  }
  .ttl_pt03 {
    font-size: 34px;
  }
  .ttl_pt04 {
    font-size: 24px;
  }
  .ttl_pt05 {
    font-size: 24px;
  }
}

/* ======================================================

   list

========================================================= */
.list_pt01 li {
  position: relative;
  font-size: 16px;
  margin-bottom: 5px;
  padding-left: 25px;
}
.list_pt01 li::after,
.list_pt01 li::before {
  display: block;
  content: '';
  position: absolute;
}
.list_pt01 li::after {
  top: 7px;
  left: 0;
  width: 16px;
  height: 16px;
  background-color: #66cae3;
  border-radius: 100%;
}
.list_pt01 li::before {
  z-index: 2;
  top: 12px;
  left: 4px;
  width: 6px;
  height: 6px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

.list_pt02 li {
  position: relative;
  font-size: 16px;
  margin-bottom: 5px;
  padding-left: 20px;
}
.list_pt02 li::before {
  display: block;
  content: '';
  position: absolute;
  top: 10px;
  left: 3px;
  width: 8px;
  height: 8px;
  background-color: #66cae3;
  border-radius: 100%;
}

.list_pt01 li:last-child,
.list_pt02 li:last-child {
  margin-bottom: 0;
}

/* ======================================================

   table

========================================================= */
.tbl_pt01,
.tbl_pt02 {
  width: 100%;
  border-right: #b2e1f6 solid 1px;
  border-top: #b2e1f6 solid 1px;
  table-layout: fixed;
  background: #FFF;
}
.tbl_pt01 th,.tbl_pt01 td,
.tbl_pt02 th,.tbl_pt02 td {
  padding: 10px 15px;
  border-left: #b2e1f6 solid 1px;
  border-bottom: #b2e1f6 solid 1px;
}
.tbl_pt01 tr,.tbl_pt01 th,.tbl_pt01 td {
  display: block;
  box-sizing: border-box;
}
.tbl_pt01 th,.tbl_pt02 th {
  color: #FFF;
  background: #3fb5e9;
}
.tbl_pt02 thead th {
  background: #0153db;
  color: #FFF;
  text-align: center;
}

.scroll {
  overflow-x: auto;
}
.scroll::-webkit-scrollbar {
  height: 5px;
}
.scroll::-webkit-scrollbar-track {
  background: #F1F1F1;
}
.scroll::-webkit-scrollbar-thumb {
  background: #BCBCBC;
}
.scroll table {
  min-width: 600px;
}
@media screen and (min-width: 600px) {
  .scroll table {
    min-width: unset;
  }
  .tbl_pt01 th,.tbl_pt01 td,.tbl_pt02 th,.tbl_pt02 td {
    padding: 15px 20px;
  }
  .tbl_pt01 tr {
    display: table-row;
  }
  .tbl_pt01 th {
    width: 30%;
  }
  .tbl_pt01 th,.tbl_pt01 td {
    display: table-cell;
  }
  .wp15 {
    width: 15% !important;
  }
  .wp20 {
    width: 20% !important;
  }
  .wp25 {
    width: 25% !important;
  }
  .wp30 {
    width: 30% !important;
  }
  .scroll {
    overflow: hidden;
  }
}

/* ======================================================

   button

========================================================= */
.txt_btn01 {
  font-size: 16px;
  font-weight: 700;
  background: #0B5D82;
  background: linear-gradient(80deg, rgba(11, 93, 130, 1) 0%, rgba(20, 132, 192, 1) 100%);
  line-height: 1.4;
  text-align: center;
  border-radius: 100vh;
}
.txt_btn01 a {
  display: block;
  text-decoration: none;
  padding: 15px 50px;
  color: #FFF;
  background: url("../images/btn_arrow.png") no-repeat center right 15px;
  background-size: 20px auto;
}
.txt_btn02 {
  font-size: 16px;
  font-weight: 700;
  background: #8CD3F2;
  background: linear-gradient(80deg, rgba(140, 211, 242, 1) 0%, rgba(178, 225, 246, 1) 100%);
  line-height: 1.4;
  text-align: center;
  border-radius: 100vh;
}
.txt_btn02 a {
  display: block;
  text-decoration: none;
  padding: 15px 50px;
  color: #0b5d82;
  background: url("../images/btn_arrow_blue.png") no-repeat center right 15px;
  background-size: 20px auto;
}
.txt_btn03 {
  font-size: 16px;
  font-weight: 700;
  background: #1484C0;
  background: linear-gradient(80deg, rgba(20, 132, 192, 1) 0%, rgba(65, 200, 205, 1) 100%);
  line-height: 1.4;
  text-align: center;
  border-radius: 100vh;
}
.txt_btn03 a {
  display: block;
  text-decoration: none;
  padding: 15px 50px;
  color: #FFF;
  background: url("../images/btn_arrow.png") no-repeat center right 15px;
  background-size: 20px auto;
}

.link_block li {
  margin-bottom: 5px;
}
@media screen and (min-width: 1025px) {
  .txt_btn {
    transition: 0.3s;
  }
  .txt_btn:hover {
    transition: 0.3s;
	opacity: 0.8;
  }
  
  .txt_btn01 a,
  .txt_btn02 a,
  .txt_btn03 a {
    padding: 20px 50px;
  }

  .txt_btn.w200 {
    max-width: 200px;
  }
  .txt_btn.w250 {
    max-width: 250px;
  }
  .txt_btn.w300 {
    max-width: 300px;
  }
  .txt_btn.w350 {
    max-width: 350px;
  }
  .txt_btn.w400 {
    max-width: 400px;
  }
  .txt_btn.w450 {
    max-width: 450px;
  }
  .txt_btn.w500 {
    max-width: 500px;
  }

  .link_block {
    display: flex;
    justify-content: space-between;
	flex-wrap: wrap;
  }
  .link_block li {
    width: calc(50% - 5px);
	margin-bottom: 10px;
  }
}

/* ======================================================

   14.会社案内・代表挨拶・スタッフ紹介

========================================================= */
.staff_section {
  padding: 30px;
  background: #FFF;
  border-radius: 10px;
}
@media screen and (min-width: 1025px) {
  .staff_section {
    padding: 50px;
  }
}

/* ======================================================

   09-10.物件情報

========================================================= */
.property_list_cover {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
.property_list_contents .property_list {
  margin-bottom: 20px;
}
.property_list_contents .property_list a {
  color: #191919;
  text-decoration: none;
}
.property_list_contents .property_list .property_list_img {
  height: 200px;
  margin-bottom: 10px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.property_list_contents .property_list .property_list_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.property_list_contents .property_list.contract .property_list_img::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0,0,0,0.3);
}
.property_list_contents .property_list.contract .property_list_img::after {
  content: '成約済み';
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  color: #FFF;
  font-size: 24px;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  line-height: 1.4;
}
.property_list_contents .property_list h4 {
  color: #0b5d82;
  font-size: 18px;
  font-family: "Noto Serif JP", serif;
  line-height: 1.4;
}
@media screen and (min-width: 1025px) {
  .property_list_contents {
    display: flex;
	flex-wrap: wrap;
  }
  .property_list_contents .property_list {
    width: 32%;
	margin-right: 2%;
	margin-bottom: 30px;
	transition: 0.3s;
  }
  .property_list_contents .property_list:hover {
	transition: 0.3s;
	opacity: 0.7;
  }
  .property_list_contents .property_list:nth-child(3n) {
	margin-right: 0;
  }
  .property_list_contents .property_list .property_list_img {
    height: 220px;
  }
  .property_list_contents .property_list h4 {
    font-size: 20px;
  }
}

.property_slider_cover {
  max-width: 1000px;
  margin: 0 auto 40px;
}
.property_main_slider,
.property_main_slider .splide__track,
.property_main_slider .splide__list,
.property_main_slider .splide__slide {
  width: 100%;
  height: 250px;
  background: #FFF;
}
.property_main_slider img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain;
  object-position: center;
}
.property_main_slider.contract::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0,0,0,0.3);
  z-index: 1;
}
.property_main_slider.contract::after {
  content: '成約済み';
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  color: #FFF;
  font-size: 24px;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  line-height: 1.4;
  z-index: 2;
}

/* サムネイル部分 */
.property_thumb_slider {
  margin: 20px auto 0;
}
.property_thumb_slider .splide__slide {
  opacity: 0.5;
  cursor: pointer;
}
.property_thumb_slider .splide__slide.is-active {
  opacity: 1;
}
.property_thumb_slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
@media screen and (min-width: 1025px) {
  .property_slider_cover {
    margin: 0 auto 60px;
  } 
  .property_main_slider,
  .property_main_slider .splide__track,
  .property_main_slider .splide__list,
  .property_main_slider .splide__slide {
    height: 500px;
  }
  .property_details_contents .tbl_pt01 th {
    width: 16%;
  }
  .property_details_contents .tbl_pt01 td {
    width: 34%;
  }
}

/* ======================================================

   11-12.お客様の声

========================================================= */
.voice_list_cover {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
.voice_list_contents .voice_list {
  background: #FFF;
  border-radius: 10px;
}
.voice_list_contents a {
  display: block;
  color: #191919;
  text-decoration: none;
  padding: 30px;
}
.voice_list_ttl {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #d3ca94;
  padding-bottom: 20px;
}
.voice_list_ttl .voice_list_img {
  width: 80px;
  height: 80px;
  overflow: hidden;
  border-radius: 50%;
}
.voice_list_ttl .voice_list_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.voice_list_ttl h4 {
  width: calc(100% - 100px);
  margin-left: auto;
  color: #0b5d82;
  font-size: 18px;
  font-family: "Noto Serif JP", serif;
  line-height: 1.6;
  padding-right: 30px;
  background: url("../images/btn_arrow_circle_blue.png") no-repeat right center;
  background-size: 20px;
}
.voice_list_txt {
  padding-top: 20px;
}
@media screen and (min-width: 1025px) {
  .voice_list_contents {
    display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
  }
  .voice_list_contents .voice_list {
    width: calc(50% - 10px);
	margin-bottom: 20px;
	transition: 0.3s;
  }
  .voice_list_contents .voice_list:hover {
	transition: 0.3s;
	opacity: 0.7;
  }
  .voice_list_ttl .voice_list_img {
    width: 100px;
    height: 100px;
  }
  .voice_list_ttl h4 {
    width: calc(100% - 140px);
    font-size: 24px;
    padding-right: 50px;
    background: url("../images/btn_arrow_circle_blue.png") no-repeat right center;
    background-size: 30px;
  }
}

/* ======================================================

   16-17.お知らせ

========================================================= */
.info_list_cover {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}
.info_list_contents .info_list {
  background: url("../images/btn_arrow_circle_blue.png") no-repeat center right 15px;
  background-size: 20px;
  border-bottom: #028cce 1px solid;
}
.info_list_contents .info_list a {
  display: block;
  color: #0b5d82;
  line-height: 1.6;
  text-decoration: none;
  padding: 15px 45px 15px 15px;
}
.info_list_contents .info_list .info_ttl {
  color: #191919;
  font-size: 18px;
  line-height: 1.6;
}
@media screen and (min-width: 1025px) {
  .info_list_contents .info_list {
    background: url("../images/btn_arrow_circle_blue.png") no-repeat center right 20px;
    background-size: 25px;
  }
  .info_list_contents .info_list a {
    display: flex;
	align-items: center;
	padding: 25px 55px 25px 15px;
  }
  .info_list_contents .info_list .info_data {
    width: 140px;
  }
  .info_list_contents .info_list .info_ttl {
    width: calc(100% - 180px);
	transition: 0.3s;
  }
  .info_list_contents .info_list .info_ttl:hover {
	transition: 0.3s;
	color: #3fb5e9;
  }
}

/* ======================================================

   Post

========================================================= */
.common_post_cover {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}
.common_post_cover .ttl_pt02 {
  margin-bottom: 0;
}
.common_post_contents {
  margin-top: 40px;
}
.common_post_contents .common_post_img {
  width: 100%;
  height: 250px;
  background: #FFF;
  margin-bottom: 20px;
  }
.common_post_contents .common_post_img img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain;
  object-position: center;
}
.common_post_contents .common_post_txt p {
  margin-bottom: 1em;
}
.common_post_contents .common_post_txt p:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 1025px) {
  .common_post_contents .common_post_img {
    height: 500px;
  }
}

.archive_pager .nav-links {
  display: flex;
  justify-content: center;
  gap: 8px;
}
.archive_pager .page-numbers {
  display: inline-block;
  padding: 4px 10px;
  border: 1px solid #ccc;
  font-size: 1.4rem;
}
.archive_pager .page-numbers.current {
  font-weight: 700;
}
