@charset "UTF-8";
/* --------------------------------------
BASE
-------------------------------------- */
@font-face {
  font-family: "NotoSansJP-Regular";
  src: url("../fonts/NotoSansJP-Regular.ttf");
}
@font-face {
  font-family: "NotoSansJP-Medium";
  src: url("../fonts/NotoSansJP-Medium.ttf");
}
@font-face {
  font-family: "NotoSansJP-SemiBold";
  src: url("../fonts/NotoSansJP-SemiBold.ttf");
}
@font-face {
  font-family: "NotoSansJP-Bold";
  src: url("../fonts/NotoSansJP-Bold.ttf");
}
@font-face {
  font-family: "Alexandria-Medium";
  src: url("../fonts/Alexandria-Medium.ttf");
}
html {
  font-size: 62.5%;
  line-height: 1;
  scroll-behavior: smooth;
}

body {
  font-family: "NotoSansJP-Regular", sans-serif;
  font-style: normal;
  font-weight: normal;
  color: #333;
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
  box-sizing: border-box;
  font-size: 16px;
  line-height: 1.8;
}

img {
  max-width: 100%;
  height: auto;
}

@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

em {
  font-style: normal;
}

.display_sp, .br_sp {
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .display_sp, .br_sp {
    display: none;
  }
}

.display_pc, .br_pc {
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .display_pc, .br_pc {
    display: none;
  }
}

.br_tab {
  display: none;
}
@media screen and (max-width: 1280px) {
  .br_tab {
    display: inline-block;
  }
}

em {
  font-style: normal;
}

.js_fadeup {
  transform: translateY(20px);
  opacity: 0;
}

/* ----------------------------------------------------------------------
 HEADER
---------------------------------------------------------------------- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10000;
  transition: 0.3s;
}
header .hd_logo {
  position: relative;
  z-index: 300;
  display: inline-block;
}
header .hd_logo img {
  width: 100%;
  height: auto;
}
header .btn_menu {
  display: none;
}
header nav a {
  color: #0B86BC;
  font-family: "NotoSansJP-SemiBold";
}
@media screen and (min-width: 1281px) {
  header {
    padding: 17px 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }
  header .hd_logo {
    width: 100px;
  }
  header .hd_nav_inner {
    position: relative;
  }
  header nav {
    align-items: center;
    display: flex;
    justify-content: space-between;
    background: #fff;
    z-index: 1;
    height: 70px;
    border-radius: 35px;
    border: 1px solid #0B86BC;
  }
  header nav ul {
    display: flex;
    align-items: center;
    padding: 0 10px;
  }
  header nav ul li {
    width: 125px;
    overflow: hidden;
    position: relative;
    height: 70px;
  }
  header nav ul li:last-child {
    display: none;
  }
  header nav ul li a {
    white-space: nowrap;
    position: relative;
    display: block;
    text-align: center;
    overflow: hidden;
    width: 100%;
    height: 70px;
  }
  header nav ul li a span {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
  header nav ul li a span:nth-child(1) {
    top: 0;
  }
  header nav ul li a span:nth-child(2) {
    top: 100%;
  }
  header nav ul li a:hover {
    opacity: 0.7;
  }
  header nav ul li a:hover span:nth-child(1) {
    top: -100%;
  }
  header nav ul li a:hover span:nth-child(2) {
    top: 0;
  }
  header nav ul li + li a {
    position: relative;
  }
  header nav ul li + li a:before {
    content: "";
    display: inline-block;
    width: 1px;
    height: calc(100% - 40px);
    background: #0B86BC;
    position: absolute;
    left: 0;
    top: 20px;
  }
}
@media screen and (max-width: 1280px) {
  header {
    padding: 10px 20px;
    height: 50px;
  }
  header .hd_logo {
    width: 67px;
  }
  header .hd_logo img {
    width: 67px;
    height: auto;
  }
  header .btn_menu {
    line-height: 0;
    position: absolute;
    z-index: 101;
    top: 10px;
    right: 10px;
    display: block;
    width: 60px;
    height: 60px;
    padding: 0;
    font-size: 11px;
    text-align: center;
    font-weight: 700;
    background: #29B6F6;
    border-radius: 10px;
  }
  header .btn_menu span {
    position: absolute;
    left: 15px;
    width: 30px;
    height: 1px;
    transition: 0.3s;
    border-radius: 4px;
    background: #fff;
  }
  header .btn_menu span:nth-child(1) {
    top: 20px;
  }
  header .btn_menu span:nth-child(2) {
    top: 29px;
  }
  header .btn_menu span:nth-child(3) {
    bottom: 20px;
  }
  .js_open header .btn_menu {
    z-index: 1000;
  }
  .js_open header .btn_menu span {
    box-shadow: none;
  }
  .js_open header .btn_menu span:nth-child(1) {
    top: 4px;
    transform: translateY(25px) rotate(-35deg);
  }
  .js_open header .btn_menu span:nth-child(2) {
    opacity: 0;
  }
  .js_open header .btn_menu span:nth-child(3) {
    bottom: 4px;
    transform: translateY(-25px) rotate(35deg);
  }
  header .hd_nav {
    position: fixed;
    z-index: 99;
    top: 0;
    left: 0;
    display: none;
    width: 100%;
    height: 100%;
    padding: 30px 0;
    background: #29B6F6;
  }
  header .hd_nav_wrap {
    position: relative;
    display: table;
    width: calc(100% - 40px);
    height: 100%;
    margin: 0 auto;
    padding: 70px 0 100px;
    background: #fff;
    border-radius: 20px;
  }
  header .hd_nav_inner {
    position: relative;
    display: table-cell;
    vertical-align: middle;
  }
  header nav {
    max-width: 400px;
    width: 100%;
    margin: 0 auto 20px;
  }
  header nav li + li {
    border-top: 1px solid #0B86BC;
  }
  header nav li:last-child {
    padding-top: 20px;
  }
  header nav li:last-child a {
    font-size: 14px;
  }
  header nav li a {
    font-size: 16px;
    display: block;
    text-align: center;
    padding: 15px 10px 15px 15px;
  }
  header nav li a span + span {
    display: none;
  }
}
@media screen and (max-width: 570px) {
  header .hd_nav_inner {
    vertical-align: bottom;
    max-width: 160px;
    margin: 0 auto;
  }
  header nav {
    width: 240px;
  }
}

.js_open {
  overflow: hidden;
}

/* ----------------------------------------------------------------------
 FOOTER
---------------------------------------------------------------------- */
footer {
  color: #fff;
  position: relative;
}
footer .ft_list_sub_nav {
  font-size: 12px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #fff;
}
footer .ft_contact {
  display: flex;
  background: #66BB6A;
  background-size: 100% 100%;
  border-radius: 20px;
  border: 4px solid #fff6f6;
  align-items: center;
  padding: 30px;
  position: relative;
}
footer .ft_contact:before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: url(../../assets/img/common/ft_bg_01.webp) no-repeat center center;
  mix-blend-mode: multiply;
  background-size: cover;
}
footer .ft_contact .title_vertical_wrap_s {
  position: relative;
}
footer .ft_contact .txt_wrap {
  margin-left: 40px;
  position: relative;
}
footer .company {
  margin-top: 10px;
}
footer .ft_list_nav_pc li + li {
  margin-top: 10px;
}
@media screen and (min-width: 1281px) {
  footer {
    padding: 180px 0 40px;
  }
  footer .l_flex {
    justify-content: space-between;
    display: flex;
  }
  footer .ft_logo {
    width: 108px;
  }
  footer .ft_list_nav_pc {
    margin-left: 100px;
  }
  footer .ft_list_nav_sp {
    display: none;
  }
}
@media screen and (max-width: 1280px) {
  footer .ft_logo {
    width: 80px;
  }
  footer .ft_list_nav_pc {
    display: none;
  }
  footer .ft_list_nav_sp .ft_nav_line {
    margin-top: 10px;
  }
  footer .ft_list_nav_sp a {
    display: inline-block;
    margin-right: 10px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1280px) {
  footer {
    padding: 150px 0 40px;
  }
  footer .l_inner {
    max-width: 600px;
    margin: 0 auto;
  }
  footer .l_flex {
    display: block;
  }
  footer .ft_nav_wrap {
    align-items: flex-end;
  }
  footer .ft_contact {
    margin-top: 30px;
  }
}
@media screen and (min-width: 768px) {
  footer {
    background: #fbfcf2 url(../../assets/img/common/ft_bg_02.webp) no-repeat top center;
    background-size: 100%;
  }
  footer .ft_nav_wrap {
    display: flex;
    justify-content: space-between;
  }
  footer .ft_list_sub_nav {
    padding-top: 20px;
    margin-top: 50px;
  }
}
@media screen and (max-width: 767px) {
  footer {
    padding: 70px 0 40px;
    font-size: 14px;
    background: #fbfcf2 url(../../assets/img/common/ft_bg_02_sp.webp) no-repeat top center;
    background-size: 100%;
  }
  footer .l_inner {
    max-width: 400px;
  }
  footer .address {
    margin-top: 10px;
  }
  footer .ft_contact {
    display: none;
  }
  footer .ft_list_nav_sp {
    margin-top: 30px;
    padding-bottom: 30px;
  }
  footer .ft_list_sub_nav {
    padding: 20px 0 30px;
  }
}

/* --------------------------------------
LAYOUT
-------------------------------------- */
.l_main {
  overflow-x: hidden;
}

.l_flex {
  display: flex;
}

.l_flex_reverse {
  flex-direction: row-reverse;
}

@media screen and (min-width: 768px) {
  .l_page_flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  .l_page_flex .l_page_side {
    width: 200px;
  }
  .l_page_flex .l_page_main {
    max-width: 900px;
    width: calc(100% - 250px);
  }
}
@media screen and (max-width: 767px) {
  .l_page_flex {
    display: block;
  }
  .l_page_flex .l_page_side {
    margin-top: 70px;
  }
}

.l_inner {
  margin: 0 auto;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .l_inner {
    padding: 0 40px;
    max-width: 1280px;
  }
}
@media screen and (max-width: 767px) {
  .l_inner {
    padding: 0 20px;
    max-width: 600px;
    margin: 0 auto;
  }
}

@media screen and (min-width: 768px) {
  .l_inner_l {
    padding: 0 40px;
  }
}
@media screen and (max-width: 767px) {
  .l_inner_l {
    padding: 0 20px;
  }
}

.l_inner_m {
  max-width: 1130px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .l_inner_m {
    padding: 0 40px;
  }
}
@media screen and (max-width: 767px) {
  .l_inner_m {
    padding: 0 20px;
    max-width: 600px;
    margin: 0 auto;
  }
}

.l_inner_s {
  max-width: 980px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .l_inner_s {
    padding: 0 40px;
  }
}
@media screen and (max-width: 767px) {
  .l_inner_s {
    padding: 0 20px;
    max-width: 600px;
    margin: 0 auto;
  }
}

.l_inner_ss {
  max-width: 790px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .l_inner_ss {
    padding: 0 40px;
  }
}
@media screen and (max-width: 767px) {
  .l_inner_ss {
    padding: 0 20px;
    max-width: 600px;
    margin: 0 auto;
  }
}

@media screen and (min-width: 768px) {
  .l_sec {
    padding: 130px 0;
  }
}
@media screen and (max-width: 767px) {
  .l_sec {
    padding: 85px 0;
  }
}

.content_wrap_w {
  background: #fff;
  position: relative;
}
@media screen and (min-width: 1281px) {
  .content_wrap_w {
    border-radius: 100px;
    display: flex;
    flex-direction: row-reverse;
    padding: 80px 80px 120px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1280px) {
  .content_wrap_w {
    border-radius: 60px;
    padding: 60px;
  }
}
@media screen and (max-width: 767px) {
  .content_wrap_w {
    border-radius: 50px;
    padding: 25px 20px 130px;
  }
}

.l_wrap_b {
  background: #29B6F6;
}
@media screen and (min-width: 1281px) {
  .l_wrap_b {
    padding: 0 0 140px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1280px) {
  .l_wrap_b {
    padding: 0 0 130px;
  }
}
@media screen and (max-width: 767px) {
  .l_wrap_b {
    padding: 0 0 120px;
  }
}

.l_wrap_g {
  background: #66BB6A;
}
@media screen and (min-width: 1281px) {
  .l_wrap_g {
    padding: 140px 0 200px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1280px) {
  .l_wrap_g {
    padding: 130px 0 180px;
  }
}
@media screen and (max-width: 767px) {
  .l_wrap_g {
    padding: 100px 0 160px;
  }
}

@media screen and (min-width: 1281px) {
  .l_sec {
    padding: 120px 0 150px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1280px) {
  .l_sec {
    padding: 100px 0;
  }
}
@media screen and (max-width: 767px) {
  .l_sec {
    padding: 80px 0;
  }
}

.l_sec_first {
  position: relative;
}
.l_sec_first:before {
  content: "";
  height: 100%;
  background: #fff;
  display: block;
  position: absolute;
  right: 0;
  top: 0;
}
@media screen and (min-width: 1281px) {
  .l_sec_first:before {
    width: calc(100% - 50px);
    margin-left: 50px;
    border-radius: 0 0 0 100px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1280px) {
  .l_sec_first .l_inner {
    padding-left: 80px;
  }
  .l_sec_first:before {
    width: calc(100% - 40px);
    margin-left: 40px;
    border-radius: 0 0 0 70px;
  }
}
@media screen and (max-width: 767px) {
  .l_sec_first .l_inner {
    padding-left: 40px;
  }
  .l_sec_first:before {
    width: calc(100% - 20px);
    margin-left: 20px;
    border-radius: 0 0 0 50px;
  }
}
.l_sec_first .inner {
  position: relative;
}
@media screen and (min-width: 1281px) {
  .l_sec_first .inner {
    max-width: calc(100% - (100% - 1200px) / 2);
    margin-left: calc((100% - 1200px) / 2);
  }
}
@media screen and (min-width: 768px) and (max-width: 1280px) {
  .l_sec_first .inner {
    padding-left: 80px;
  }
}
@media screen and (max-width: 767px) {
  .l_sec_first .inner {
    padding: 0 20px 0 40px;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }
}

.l_sec_even {
  position: relative;
}
.l_sec_even .l_inner {
  position: relative;
}
.l_sec_even:before {
  content: "";
  height: 100%;
  background: #fff;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
}
@media screen and (min-width: 1281px) {
  .l_sec_even:before {
    width: calc(100% - 50px);
    margin-right: 50px;
    border-radius: 0 100px 100px 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1280px) {
  .l_sec_even .l_inner {
    padding-right: 80px;
  }
  .l_sec_even:before {
    width: calc(100% - 40px);
    margin-right: 40px;
    border-radius: 0 70px 70px 0;
  }
}
@media screen and (max-width: 767px) {
  .l_sec_even .l_inner {
    padding-right: 40px;
  }
  .l_sec_even:before {
    width: calc(100% - 20px);
    margin-right: 20px;
    border-radius: 0 50px 50px 0;
  }
}

.l_sec_odd {
  position: relative;
}
.l_sec_odd .l_inner {
  position: relative;
}
.l_sec_odd:before {
  content: "";
  height: 100%;
  background: #fff;
  display: block;
  position: absolute;
  right: 0;
  top: 0;
}
@media screen and (min-width: 1281px) {
  .l_sec_odd:before {
    width: calc(100% - 50px);
    margin-left: 50px;
    border-radius: 100px 0 0 100px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1280px) {
  .l_sec_odd .l_inner {
    padding-left: 80px;
  }
  .l_sec_odd:before {
    width: calc(100% - 40px);
    margin-left: 40px;
    border-radius: 70px 0 0 70px;
  }
}
@media screen and (max-width: 767px) {
  .l_sec_odd .l_inner {
    padding-left: 40px;
  }
  .l_sec_odd:before {
    width: calc(100% - 20px);
    margin-left: 20px;
    border-radius: 50px 0 0 50px;
  }
}

/* --------------------------------------
TEXT
-------------------------------------- */
h1,
h2,
h3,
h4,
h5 {
  font-family: "NotoSansJP-Medium", sans-serif;
}

.txt_en {
  font-family: "Alexandria-Medium";
}

.title_en {
  font-family: "Alexandria-Medium";
  line-height: 1.2;
}

@media screen and (min-width: 1281px) {
  .title_l {
    font-size: 32px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1280px) {
  .title_l {
    font-size: 24px;
  }
}
@media screen and (max-width: 767px) {
  .title_l {
    font-size: 18px;
  }
}

.title_m {
  font-family: "NotoSansJP-SemiBold";
}
@media screen and (min-width: 1281px) {
  .title_m {
    font-size: 24px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1280px) {
  .title_m {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .title_m {
    font-size: 18px;
  }
}

@media screen and (min-width: 1281px) {
  .title_s {
    font-size: 20px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1280px) {
  .title_s {
    font-size: 19px;
  }
}
@media screen and (max-width: 767px) {
  .title_s {
    font-size: 18px;
  }
}

.title_c {
  text-align: center;
}

.txt_c_b {
  color: #29B6F6;
}

.txt_c_g {
  color: #66BB6A;
}

@media screen and (max-width: 767px) {
  .title_vertical img {
    width: 24px;
    height: auto;
  }
}

.title_vertical_wrap {
  position: relative;
  display: flex;
}
.title_vertical_wrap .txt_en {
  position: relative;
  margin-right: 15px;
}
@media screen and (min-width: 1281px) {
  .title_vertical_wrap {
    justify-content: flex-end;
    align-items: flex-start;
  }
  .title_vertical_wrap .txt_en {
    margin-right: 10px;
  }
}
@media screen and (max-width: 1280px) {
  .title_vertical_wrap {
    justify-content: center;
    align-items: flex-start;
  }
}
@media screen and (min-width: 768px) and (max-width: 1280px) {
  .title_vertical_wrap .txt_en {
    margin-right: 10px;
  }
}
@media screen and (max-width: 767px) {
  .title_vertical_wrap .txt_en {
    margin-right: 10px;
    width: 16px;
    height: auto;
  }
}

.title_vertical_wrap_s {
  position: relative;
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
}
.title_vertical_wrap_s .txt_en {
  position: relative;
  margin-right: 10px;
}
@media screen and (min-width: 1281px) {
  .title_vertical_wrap_s {
    justify-content: flex-end;
    align-items: flex-start;
  }
  .title_vertical_wrap_s .title_vertical {
    font-size: 24px;
  }
}
@media screen and (max-width: 1280px) {
  .title_vertical_wrap_s {
    justify-content: center;
    align-items: flex-start;
  }
}

.title_page_wrap {
  color: #fff;
  position: relative;
}
.title_page_wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.title_page_wrap:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.title_page_wrap .title_wrap {
  position: absolute;
  bottom: 2.7777777778vw;
  left: 0;
}
.title_page_wrap .title_page {
  font-family: "NotoSansJP-Medium";
  line-height: 1.5;
  letter-spacing: 0.01em;
}
.title_page_wrap .list_breadcrumb {
  width: -moz-fit-content;
  width: fit-content;
}
.title_page_wrap .list_breadcrumb li {
  display: inline-block;
  font-size: 12px;
  position: relative;
}
.title_page_wrap .list_breadcrumb li + li {
  padding-left: 20px;
  margin-left: 7px;
}
.title_page_wrap .list_breadcrumb li + li:before {
  content: "ー";
  position: absolute;
  left: 0;
}
@media screen and (min-width: 1281px) {
  .title_page_wrap .title_wrap {
    left: 8.6805555556vw;
    bottom: 2.7777777778vw;
    position: absolute;
    z-index: 3;
  }
  .title_page_wrap .title_page {
    font-size: 40px;
  }
  .title_page_wrap .list_breadcrumb_wrap {
    position: absolute;
    right: 8.3333333333vw;
    bottom: 2.7777777778vw;
    z-index: 3;
  }
}
@media screen and (min-width: 768px) and (max-width: 1280px) {
  .title_page_wrap .title_wrap {
    top: 50%;
    left: 10%;
    bottom: auto;
    position: absolute;
    z-index: 3;
  }
  .title_page_wrap .list_breadcrumb_wrap {
    position: absolute;
    right: 8.3333333333vw;
    bottom: 5.3333333333vw;
    z-index: 3;
  }
  .title_page_wrap .title_page {
    font-size: 35px;
  }
}
@media screen and (min-width: 768px) {
  .title_page_wrap .txt_en {
    font-size: 24px;
  }
}
@media screen and (max-width: 767px) {
  .title_page_wrap .txt_en {
    font-size: 20px;
  }
  .title_page_wrap .title_wrap {
    top: 50%;
    left: 10%;
  }
  .title_page_wrap .title_page {
    font-size: 30px;
  }
  .title_page_wrap .list_breadcrumb_wrap {
    position: absolute;
    right: 8.3333333333vw;
    bottom: 5.3333333333vw;
    z-index: 3;
  }
  .title_page_wrap .list_breadcrumb_wrap .l_inner {
    padding: 0;
  }
}

.title_page_wrap_l {
  height: 100vh;
}
@media screen and (min-width: 768px) {
  .title_page_wrap_l {
    height: 100dvh;
  }
}
@media screen and (max-width: 767px) {
  .title_page_wrap_l {
    height: 100dvh;
  }
}
@media screen and (min-width: 768px) {
  .title_page_wrap_l::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../../assets/img/common/flame.webp) no-repeat center center;
    background-size: 100% 100%;
  }
}
@media screen and (max-width: 767px) {
  .title_page_wrap_l::after {
    display: block;
    content: "";
    background: url(../../assets/img/common/frame_sp.webp) no-repeat top left;
    background-size: 100% 100%;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
}
.title_page_wrap_l::before {
  content: "";
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  background: url(../../assets/img/common/flame-deco.webp) no-repeat center center;
  background-size: 100% 100%;
  width: 100%;
  height: 19.4444444444vw;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .title_page_wrap_l::before {
    background: url(../../assets/img/common/flame-deco-sp.webp) no-repeat center center;
    background-size: 100% 100%;
    height: 39.2vw;
  }
}

.title_page_wrap_s::before {
  content: "";
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  background: url(../../assets/img/common/flame-deco.webp) no-repeat center center;
  background-size: 100% 100%;
  width: 100%;
  height: 19.4444444444vw;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .title_page_wrap_s::before {
    background: url(../../assets/img/common/flame-deco-sp.webp) no-repeat center center;
    background-size: 100% 100%;
    height: 39.2vw;
  }
}
@media screen and (min-width: 768px) {
  .title_page_wrap_s::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../../assets/img/common/flame-s.webp) no-repeat center center;
    background-size: 100% 100%;
  }
}
@media screen and (max-width: 767px) {
  .title_page_wrap_s::after {
    display: block;
    content: "";
    background: url(../../assets/img/common/frame_sp.webp) no-repeat top left;
    background-size: 100% 100%;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
}

.title_sec_wrap .title_sec {
  line-height: 1.2;
}
.title_sec_wrap .txt_en {
  padding-left: 21px;
  position: relative;
}
.title_sec_wrap .txt_en:before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -10px;
}
.title_sec_wrap .txt_en_b:before {
  background: url(../../assets/img/common/icon_clover_b.svg) no-repeat center center;
  background-size: contain;
}
.title_sec_wrap .txt_en_g:before {
  background: url(../../assets/img/common/icon_clover_g.svg) no-repeat center center;
  background-size: contain;
}
@media screen and (min-width: 1281px) {
  .title_sec_wrap .txt_en {
    font-size: 16px;
  }
  .title_sec_wrap .title_sec {
    font-size: 32px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1280px) {
  .title_sec_wrap .txt_en {
    font-size: 14px;
  }
  .title_sec_wrap .title_sec {
    font-size: 28px;
  }
}
@media screen and (max-width: 767px) {
  .title_sec_wrap .txt_en {
    font-size: 12px;
  }
  .title_sec_wrap .title_sec {
    font-size: 24px;
  }
}

.title_sec_wrap_c .title_sec_inner {
  display: inline-block;
}
.title_sec_wrap_c .txt_en {
  text-align: left;
}
.title_sec_wrap_c .title_sec {
  text-align: left;
}
@media screen and (min-width: 768px) {
  .title_sec_wrap_c {
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .title_sec_wrap_c {
    text-align: left;
  }
}

.l_wrap_b .title_sec_wrap .txt_en {
  color: #29B6F6;
}

.l_wrap_g .title_sec_wrap .txt_en {
  color: #66BB6A;
}

@media screen and (min-width: 1281px) {
  .txt_lead {
    font-size: 24px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1280px) {
  .txt_lead {
    font-size: 20px;
  }
}
@media screen and (min-width: 768px) {
  .txt_lead {
    text-align: center;
    margin-top: 40px;
  }
}
@media screen and (max-width: 767px) {
  .txt_lead {
    font-size: 18px;
    margin-top: 20px;
  }
}

/* --------------------------------------
LINK
-------------------------------------- */
.link_arrow_l {
  position: relative;
  font-family: "Alexandria-Medium";
  padding-right: 20px;
  line-height: 1.2;
  position: absolute;
}
.link_arrow_l .txt {
  position: relative;
}
.link_arrow_l .txt:before {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: #333;
}
.link_arrow_l .txt:after {
  content: "";
  width: 0;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: #fcbb00;
  transition: 0.3s;
}
.link_arrow_l .arrow {
  width: 16px;
  height: 9px;
  display: inline-block;
  background: url(../../assets/img/common/arrow_b.svg) no-repeat center center;
  background-size: contain;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -5px;
}
.link_arrow_l:before {
  content: "";
  width: 38px;
  height: 38px;
  border-radius: 19px;
  background: #fcbb00;
  position: absolute;
  left: -12px;
  top: 50%;
  margin-top: -18px;
  transition: 0.3s;
}
.link_arrow_l:hover:before {
  transform: scale(1.2);
}
.link_arrow_l:hover .txt:after {
  width: 100%;
}
@media screen and (min-width: 1281px) {
  .link_arrow_l {
    font-size: 24px;
    right: 100px;
    bottom: 100px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1280px) {
  .link_arrow_l {
    font-size: 24px;
    right: 50px;
    bottom: 50px;
  }
}
@media screen and (max-width: 767px) {
  .link_arrow_l {
    font-size: 20px;
    right: 20px;
    bottom: 70px;
  }
}

.link_arrow_s {
  position: relative;
}
.link_arrow_s:before {
  content: "";
  width: calc(100% - 40px);
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: #333;
}
.link_arrow_s .arrow {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto 0;
  line-height: 1;
  display: inline-block;
  width: 30px;
  height: 30px;
  border-radius: 15px;
  background: #29b6f6;
  overflow: hidden;
}
.link_arrow_s .arrow:before, .link_arrow_s .arrow:after {
  content: "";
  display: inline-block;
  width: 15px;
  height: 14px;
  background: url(../../assets/img/common/arrow_w.svg) no-repeat center center;
  background-size: contain;
  position: absolute;
  right: 7px;
  top: 50%;
  margin-top: -7px;
  animation-fill-mode: forwards;
  animation-duration: 0.6s;
}
.link_arrow_s .arrow:after {
  transform: translateX(-150%);
}
.link_arrow_s:hover .arrow:before {
  animation-name: transformRightLeft;
  animation-delay: 0s;
}
.link_arrow_s:hover .arrow:after {
  animation-name: transformLeftRight;
  animation-delay: 0.2s;
}
@media screen and (min-width: 768px) {
  .link_arrow_s {
    padding-right: 40px;
  }
}
@media screen and (max-width: 767px) {
  .link_arrow_s {
    padding-right: 70px;
  }
}

.arrow_c_b {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto 0;
  line-height: 1;
  display: inline-block;
  width: 30px;
  height: 30px;
  border-radius: 15px;
  background: #29b6f6;
  overflow: hidden;
}
.arrow_c_b:before, .arrow_c_b:after {
  content: "";
  display: inline-block;
  width: 15px;
  height: 14px;
  background: url(../../assets/img/common/arrow_w.svg) no-repeat center center;
  background-size: contain;
  position: absolute;
  right: 7px;
  top: 50%;
  margin-top: -7px;
  animation-fill-mode: forwards;
  animation-duration: 0.6s;
}
.arrow_c_b:after {
  transform: translateX(-150%);
}

.list_news a:hover .arrow:before {
  animation-name: transformRightLeft;
  animation-delay: 0s;
}
.list_news a:hover .arrow:after {
  animation-name: transformLeftRight;
  animation-delay: 0.2s;
}

.btn_border_w {
  border: 1px solid #fff;
  height: 50px;
  line-height: 48px;
  border-radius: 25px;
  display: block;
  max-width: 280px;
  padding-left: 23px;
  margin-top: 20px;
  position: relative;
  transition: 0.3s;
}
.btn_border_w .arrow {
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  margin: auto 0;
  line-height: 1;
  display: inline-block;
  width: 30px;
  height: 30px;
  border-radius: 15px;
  background: #fff;
  overflow: hidden;
}
.btn_border_w .arrow:before, .btn_border_w .arrow:after {
  content: "";
  display: inline-block;
  width: 17px;
  height: 15px;
  position: absolute;
  right: 7px;
  top: 50%;
  margin-top: -8.5px;
  animation-fill-mode: forwards;
  animation-duration: 0.6s;
}
.btn_border_w .arrow:before {
  background: url(../../assets/img/common/arrow_g.svg) no-repeat center center;
  background-size: contain;
}
.btn_border_w .arrow:after {
  background: url(../../assets/img/common/arrow_y.svg) no-repeat center center;
  background-size: contain;
  transform: translateX(-150%);
}
.btn_border_w:hover {
  background: #FCBB00;
}
.btn_border_w:hover .arrow:before {
  animation-name: transformRightLeft;
  animation-delay: 0s;
}
.btn_border_w:hover .arrow:after {
  animation-name: transformLeftRight;
  animation-delay: 0.2s;
}

.btn_c_b {
  border: 1px solid #29B6F6;
  background: #29B6F6;
  color: #fff;
  height: 50px;
  line-height: 48px;
  border-radius: 25px;
  display: block;
  width: 100%;
  max-width: 280px;
  padding-left: 23px;
  margin-top: 20px;
  position: relative;
  transition: 0.3s;
}
.btn_c_b .arrow {
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  margin: auto 0;
  line-height: 1;
  display: inline-block;
  width: 30px;
  height: 30px;
  border-radius: 15px;
  background: #fff;
  overflow: hidden;
}
.btn_c_b .arrow:before, .btn_c_b .arrow:after {
  content: "";
  display: inline-block;
  width: 17px;
  height: 15px;
  position: absolute;
  right: 7px;
  top: 50%;
  margin-top: -8.5px;
  animation-fill-mode: forwards;
  animation-duration: 0.6s;
}
.btn_c_b .arrow:before, .btn_c_b .arrow:after {
  background: url(../../assets/img/common/arrow_blue.svg) no-repeat center center;
  background-size: contain;
}
.btn_c_b .arrow:after {
  background: url(../../assets/img/common/arrow_w_02.svg) no-repeat center center;
  background-size: contain;
  transform: translateX(-150%);
}
.btn_c_b:hover {
  background: #fff;
  color: #29B6F6;
}
.btn_c_b:hover .arrow {
  background: #29B6F6;
}
.btn_c_b:hover .arrow:before {
  animation-name: transformRightLeft;
  animation-delay: 0s;
}
.btn_c_b:hover .arrow:after {
  animation-name: transformLeftRight;
  animation-delay: 0.2s;
}

@keyframes transformLeftRight {
  0% {
    transform: translateX(-150%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes transformRightLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(150%);
  }
}
/* --------------------------------------
LIST
-------------------------------------- */
.list_dots li {
  position: relative;
  padding-left: 15px;
  border-bottom: 1px dashed #29B6F6;
  padding-bottom: 5px;
}
.list_dots li:before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 3.5px;
  background: #29B6F6;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -3.5px;
}

/* ------------------------------
 LIST_THUMB_NUM
------------------------------ */
.list_thumb_num {
  counter-reset: number 0;
}
.list_thumb_num .thumb {
  position: relative;
}
.list_thumb_num .thumb:before {
  counter-increment: number 1;
  content: counter(number, decimal-leading-zero) " ";
  color: #fff;
  font-family: "Alexandria-Medium";
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 0 20px 0;
}
@media screen and (min-width: 1281px) {
  .list_thumb_num .thumb:before {
    font-size: 30px;
    width: 60px;
    height: 55px;
    padding: 0 7px 3px 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1280px) {
  .list_thumb_num .thumb:before {
    font-size: 25px;
    width: 55px;
    height: 50px;
    padding: 0 5px 3px 0;
  }
}
@media screen and (max-width: 767px) {
  .list_thumb_num .thumb:before {
    font-size: 20px;
    width: 45px;
    height: 40px;
    padding: 0 3px 3px 0;
  }
}

/* --------------------------------------
NEWS
-------------------------------------- */
.list_news {
  border-top: 1px solid #fff;
  position: relative;
}
.list_news:before {
  content: "";
  width: 80px;
  height: 1px;
  background: #29B6F6;
  position: absolute;
  top: -1px;
  left: 0;
}

.article_news {
  border-bottom: 1px solid #fff;
  position: relative;
}
.article_news:before {
  content: "";
  width: 80px;
  height: 1px;
  background: #29B6F6;
  position: absolute;
  bottom: -1px;
  left: 0;
}
.article_news a {
  width: 100%;
}
.article_news .info {
  display: flex;
  align-items: center;
}
.article_news .date + .cat {
  margin-left: 20px;
}
.article_news .cat {
  font-size: 12px;
  background: #29B6F6;
  color: #fff;
  height: 20px;
  padding: 0 13px;
  border-radius: 10px;
  line-height: 20px;
  margin-left: 10px;
}
@media screen and (min-width: 1281px) {
  .article_news a {
    display: flex;
    padding: 25px 40px 25px 0;
  }
  .article_news .title {
    width: calc(100% - 220px);
  }
}
@media screen and (max-width: 1280px) {
  .article_news a {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .article_news a {
    align-items: center;
    padding: 20px 40px 20px 0;
  }
  .article_news .info {
    width: 220px;
  }
}
@media screen and (max-width: 767px) {
  .article_news a {
    padding: 10px 40px 10px 0;
  }
  .article_news .title {
    margin-top: 3px;
  }
}

/* --------------------------------------
PARTS
-------------------------------------- */
.js-parallax {
  width: 100%;
}

/* --------------------------------------
PAGE
-------------------------------------- */
/* --------------------------------------
SECTION
-------------------------------------- */
.sec_circle_r {
  position: relative;
}
.sec_circle_r:before {
  content: "";
  background: url(../../assets/img/common/circle_txt_01.svg) no-repeat center center;
  background-size: contain !important;
  display: block;
  position: absolute;
  animation: rotateAnimation 55s linear infinite;
}
@media screen and (min-width: 1281px) {
  .sec_circle_r:before {
    width: 560px;
    height: 560px;
    right: -280px;
    top: -280px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1280px) {
  .sec_circle_r:before {
    width: 400px;
    height: 400px;
    right: -200px;
    top: -200px;
  }
}
@media screen and (max-width: 767px) {
  .sec_circle_r:before {
    width: 264px;
    height: 264px;
    right: -132px;
    top: -132px;
  }
}

.sec_circle_l {
  position: relative;
}
.sec_circle_l:before {
  content: "";
  background: url(../../assets/img/common/circle_txt_01.svg) no-repeat center center;
  background-size: contain !important;
  display: block;
  position: absolute;
  animation: rotateAnimation 55s linear infinite;
}
@media screen and (min-width: 1281px) {
  .sec_circle_l:before {
    width: 560px;
    height: 560px;
    left: -280px;
    top: -280px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1280px) {
  .sec_circle_l:before {
    width: 400px;
    height: 400px;
    left: -200px;
    top: -200px;
  }
}
@media screen and (max-width: 767px) {
  .sec_circle_l:before {
    width: 264px;
    height: 264px;
    left: -132px;
    top: -132px;
  }
}

@keyframes rotateAnimation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}/*# sourceMappingURL=common.css.map */