@charset "UTF-8";
/*---------------------*/
/*max-width: 1200px ←画面全体が縮小する幅*/
/*max-width: 979px ←タブレット版*/
/*max-width: 767px ←スマホ版*/
/*max-width: 425px ←スマホ版さらに小さい幅に対応*/
/*構成*/
/*
FONT
COMMON
MAIN
HEADER
ARTICLE
ELEMENT
COTENTS
 L
UTILITY
*/
/*---------------------*/

/* ========== FONT ========== */

/* Dystopian - Adobe Fonts */
@import url("https://use.typekit.net/hmr6lrh.css");
.dystopian-bold {
  font-family: "dystopian", sans-serif;
  font-weight: 700;
  font-style: normal;
}
.dystopian-black {
  font-family: "dystopian", sans-serif;
  font-weight: 900;
  font-style: normal;
}



/* ========== COMMON ========== */

body{
  overflow-x: hidden;
}

main#lp_main_wrap {
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0px;
}
@media (max-width: 767px) {
	main#lp_main_wrap {
	  font-size: 14px;
	}
}



/* ========== MAIN ========== */

#lp_main_wrap {
  width: 100%;
  margin: 0 auto;
	color: #000000;
}
#lp_main_wrap * {
	box-sizing: border-box;
	line-height: 1;
}
#lp_main_wrap p {
	margin-bottom: 0;
}
#lp_main_wrap a {
	transition: all 0.5s ease 0s;
	text-decoration: none;
}
#lp_main_wrap a:hover,
#lp_main_wrap a:active {
	color: inherit;
	opacity: 0.6;
	text-decoration: none;
}



/* ========== HEADER ========== */

/* mainvisual-single */
#lp_main_wrap header.mainvisual-single h2 {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  text-align: center;
}
#lp_main_wrap header.mainvisual-single h2 img{
  max-width: 100%;
  margin: 0 auto;
}



/* ========== ARTICLE ========== */

/* lp_main */
#lp_main_wrap .lp_main {
  padding:0 3%;
  max-width: 1170px;
  margin: 0 auto;
  font-feature-settings: "palt";
}



/* ========== ANIMATION ========== */

/* flash */
.animaiton_flash{
  animation: flash 2s linear infinite;
}
@keyframes flash {
  0%,100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

/* auto-fade */
.auto-fade {
  animation: auto-fade 14s ease 0s infinite;
}
@keyframes auto-fade {
  0% {
    opacity: 1;
  }
  20% {
    opacity: 1;
  }
  26% {
    opacity: 0;
  }
  70% {
    opacity: 0;
  }
  76% {
    opacity: 1;
  }
}


/* ========== ELEMENT ========== */



/* ========== COTENTS ========== */

/* lp_lead */
#lp_main_wrap .lp_lead {
  margin: 60px auto 100px;
  text-align: center;
}
#lp_main_wrap .lp_lead .lp_lead_main {
  margin-bottom: 20px;
}
#lp_main_wrap .lp_lead .lp_lead_main p {
  font-size: 20px;
  line-height: 1.8;
  letter-spacing: 0.14em;
  font-weight: bold;
  color: #000;
}
#lp_main_wrap .lp_lead .lp_lead_main p.strong {
  color: #65b7d5;
}
#lp_main_wrap .lp_lead hr {
  width: 50%;
  max-width: 100px;
  margin: 30px auto;
  border-top: 1px solid #000;
}
#lp_main_wrap .lp_lead .lp_lead_sub p {
  font-size: 13px;
  line-height: 2;
  color: #333;
}
@media (max-width: 767px) {
	#lp_main_wrap .lp_lead .lp_lead_main p {
		letter-spacing: 0.12em;
	}
}

/* lp_sec */
#lp_main_wrap .lp_sec {
  margin: 60px auto 100px;
  text-align: center;
}
#lp_main_wrap .lp_sec_title {
  margin-bottom: 36px;
}
#lp_main_wrap .lp_sec_title h3 {
  margin-bottom: 16px;
  font-family: dystopian,sans-serif;
  font-weight: 900;
  font-style: normal;
  font-size: 80px;
  line-height: 1;
  letter-spacing: 0.14em;
  color: #65b7d5;
}
#lp_main_wrap .lp_sec_title p {
  font-weight: bold;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.2em;
  color: #000;
}
@media (max-width: 767px) {
  #lp_main_wrap .lp_sec_title h3 {
    font-size: 60px;
  }
}

/* lp_sec lp_sec_brand */
#lp_main_wrap .lp_sec_brand {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
#lp_main_wrap .lp_sec_brand li {
  width: calc( (100% - 48px) / 3 );
  border: 1px solid #ccc;
	display: flex;
	flex-direction: column;
}
#lp_main_wrap .lp_sec_brand .lp_sec_brand_img img {
  width: 100%;
}
#lp_main_wrap .lp_sec_brand .lp_sec_brand_img a {
  display: block;
}
#lp_main_wrap .lp_sec_brand .lp_sec_brand_logo {
  width: 70%;
  margin: 5% auto;
}
#lp_main_wrap .lp_sec_brand .lp_sec_brand_btn {
  flex-grow: 1;
  display: flex;
  justify-content: space-between;
  width: 90%;
  margin: 0 auto 4%;
}
#lp_main_wrap .lp_sec_brand .lp_sec_brand_btn a {
  width: 100%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
	background: #65b7d5;
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: 0.01em;
	color: #ffffff;
	text-align: center;
}
#lp_main_wrap .lp_sec_brand .lp_sec_brand_btn-2col a {
  width: 48%;
}
@media (max-width: 767px) {
  #lp_main_wrap .lp_sec_brand {
    gap: 20px 12px;
  }
  #lp_main_wrap .lp_sec_brand li {
    width: calc( (100% - 12px) / 2 );
  }
  #lp_main_wrap .lp_sec_brand .lp_sec_brand_btn a {
    font-size: 12px;
  }
}

/* lp_sec lp_item_list */
#lp_main_wrap .lp_item_list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
}
#lp_main_wrap .lp_item_list li {
  width: calc( (100% - 72px) / 4 );
  position: relative;
  height: 100%;
}
#lp_main_wrap .lp_item_list_img {
  position: relative;
  margin: 0;
}
#lp_main_wrap .lp_item_list_img img {
  display: block;
  position: relative;
  top: 0;
  left: 0;
}
#lp_main_wrap .lp_item_list_img img.img-auto-fade {
  position: absolute;
  top: 0;
  left: 0;
}
#lp_main_wrap a.lp_item_list_text {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  background-color: rgba(101, 183, 213, 0.7);
  opacity: 0;
  font-size: 16px;
  font-weight: 700;
	transition: all 0.5s ease 0s;
  color: #fff;
}
#lp_main_wrap a.lp_item_list_text:hover,
#lp_main_wrap a.lp_item_list_text:focus,
#lp_main_wrap a.lp_item_list_text:active {
  opacity: 1;
}
#lp_main_wrap .lp_item_list_text p {
  margin: 8px 0;
  line-height: 1.6;
}
#lp_main_wrap .lp_item_list_text p span {
  display: inline-block;
}
#lp_main_wrap .lp_item_list_text p.lp_item_list_text-more {
  text-decoration: underline;
}
@media (max-width: 979px) {
  #lp_main_wrap a.lp_item_list_text {
    padding: 12px;
  }
  #lp_main_wrap .lp_item_list_text p {
    margin: 6px 0;
    font-size: 14px;
    line-height: 1.4;
  }
}
@media (max-width: 767px) {
  #lp_main_wrap .lp_item_list {
    gap: 12px;
  }
  #lp_main_wrap .lp_item_list li {
    width: calc( (100% - 12px) / 2 );
  }
}



/* ========== UTILITY ========== */

#lp_main_wrap .lp_viewpc_block {
  display: block;
}
#lp_main_wrap .lp_viewpc_inline {
  display: inline;
}
#lp_main_wrap .lp_viewpc_inline-block {
  display: inline-block;
}
#lp_main_wrap .lp_viewpc_none {
  display: none;
}
#lp_main_wrap .lp_viewsmp_block,
#lp_main_wrap .lp_viewsmp_inline,
#lp_main_wrap .lp_viewsmp_inline-block {
  display: none;
}
#lp_main_wrap .lp_viewxs_block,
#lp_main_wrap .lp_viewxs_inline,
#lp_main_wrap .lp_viewxs_inline-block {
  display: none;
}
@media (max-width: 767px) {
	#lp_main_wrap .lp_viewpc_block,
	#lp_main_wrap .lp_viewpc_inline,
	#lp_main_wrap .lp_viewpc_inline-block {
	  display: none;
	}
	#lp_main_wrap .lp_viewsmp_block {
	  display: block;
	}
	#lp_main_wrap .lp_viewsmp_inline {
	  display: inline;
	}
	#lp_main_wrap .lp_viewsmp_inline-block {
	  display: inline-block;
	}
	#lp_main_wrap .lp_viewsmp_none {
	  display: none;
	}
}
@media (max-width: 425px) {
	#lp_main_wrap .lp_viewxs_block {
	  display: block;
	}
	#lp_main_wrap .lp_viewxs_inline {
	  display: inline;
	}
	#lp_main_wrap .lp_viewxs_inline-block {
	  display: inline-block;
	}
	#lp_main_wrap .lp_viewxs_none {
	  display: none;
	}
}
