@charset "utf-8";
/* ======================================
	body [ ボディ ]
====================================== */
html {
    width: 100%;
    font-size: 60%;
}
body {
    color: #000;
    font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック体", YuGothic, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    line-height: 1.6;
    letter-spacing: 0.06em;
    font-weight: 400;
    width: 100%;
    background: #fff;
}
body * {
    box-sizing: border-box;
}
/* リンク */
a {
    color: #000;
    word-break: break-all;
    text-decoration: none;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
a:hover {
    text-decoration: none;
    cursor: pointer;
    opacity: 0.6;
}
a, a:focus, area, area:focus {
    outline: none;
}
p, dd, li {
    text-align: justify;
    letter-spacing: 0.06em;
}
img {
    max-width: 100%;
    vertical-align: bottom;
}
.d_sp {
    display: none !important;
}

/* ======================================
	content common
====================================== */
#content {
    position: relative;
    width: 100%;
    overflow: hidden;
}
section {
    position: relative;
}
.cont_inner {
    margin: 0 auto;
    width: 940px;
    max-width: 92%;
    position: relative;
}
.cont_wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
/* ttl */
.ttl_A {
    margin-bottom: 48px;
    text-align: center;
    position: relative;
}
.ttl_A span{
    font-size: 2.8rem;
    font-weight: bold;
}
.ttl_A::after {
    display: block;
    content: '';
    position: absolute;
    bottom: -8px;
    left: calc(50% - 120px);
    width: 240px;
    height: 5px;
    background: #FFDD00;
}
/* txt */
.marker {
    background: linear-gradient(transparent 80%, #FFDD00 0%);
    display: inline;
    padding: 0 1px 0px;
}
/* btn */
.btn_A {
    display: block;
    margin: 0 auto;
    padding: 0.9em;
    border-radius: 30px;
    line-height: 1;
    text-align: center;
    font-weight: bold;
    font-size: 1.8rem;
    width: 354px;
    background: #F27186;
    color: #fff;
}
.btn_B {
    display: block;
    margin: 0 auto;
    text-align: center;
}
.btn_B a {
    background: #FFD300;
    padding: 0.8em 2em;
    border-radius: 30px;
    line-height: 1;
    font-weight: bold;
    font-size: 1.8rem;
    display: inline-block;
}
.btn_C {
    display: block;
    padding: 0.9em;
    border-radius: 30px;
    line-height: 1;
    text-align: center;
    font-size: 1.7rem;
    width: 100%;
    background: #fff;
    border: 1px solid #707070;
}
.btn_D {
    display: block;
    margin: 0 auto;
    padding: 0.9em;
    border-radius: 30px;
    line-height: 1;
    text-align: center;
    font-weight: bold;
    font-size: 1.8rem;
    width: 346px;
    background: #fff;
    color: #E87C1E;
    border: 2px solid #E87C1E;
}
.btn_window a {
    padding-right: calc(2em + 19px);
}
.btn_window span {
    position: relative;
}
.btn_window span::after {
    display: block;
    content: '';
    width: 19px;
    height: 19px;
    background: url("../images/ic_window_b.png") 0 50% / contain;
    position: absolute;
    top: 0.15em;
    right: -30px;
}
/* content */
.content_lead {
    position: relative;
    background: #FFD300;
    padding: 80px 0;
}
.content_lead .cont_inner {
    position: relative;
    background: #fff;
    padding: 80px 45px 45px;
}
.content_lead .cont_inner .content_lead_txt p {
    text-align: center;
}
.content_lead .cont_inner .content_lead_txt p:not(:last-child) {
    margin-bottom: 1.1em;
}
.c_article {
    padding: 60px 0;
}
.img_scale img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.content_about {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    z-index: 1;
    position: relative;
}
.content_about .img {
    width: 16.596%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.content_about .txt {
    padding: 25px;
    width: calc(100% - 16.596%);
    background: #fff;
    border: 5px solid #FFDD00;
}
.content_about .txt .content_about_ttl {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 8px;
}
.content_about .txt .content_about_txt {
    font-size: 1.6rem;
}

/* ======================================
	animation
====================================== */
.fade-in {
  opacity: 0;
}
.fade-in-up {
  transform: translate(0, 100px);
}
.fade-in-down {
  transform: translate(0, -100px);
}
.fade-in-left {
  transform: translate(-100px, 0);
}
.fade-in-right {
  transform: translate(100px, 0);
}
.scroll-in {
  animation: fadeIn 0.8s ease-out;
  animation-fill-mode: forwards;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}

/* ======================================
	header
====================================== */
#header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    background: #fff;
    padding: 10px 0 10px;
    z-index: 10;
}
#header .header_inner {
    width: 940px;
    max-width: 94%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#header #header_logo {
    width: 145px;
}
#header #header_nav {
    max-width: calc(100% - 40px);
}
#header #header_nav ul {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    flex-wrap: wrap;
}
#header #header_nav li {
    margin-left: 2em;
    font-size: 1.3rem;
}
#header #header_nav li a {
    display: inline-block;
    font-weight: 700;
    transition: all 0.5s ease;
    position: relative;
}
#header #header_nav li a::after {
    position: absolute;
    left: 0;
    content: '';
    width: 100%;
    height: 4px;
    background: #ffdd00;
    bottom: -4px;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform 0.5s;
}
#header #header_nav li a:hover::after {
    transform: scale(1.02, 1);
}
#header #header_nav li a span::after {
    content: '';
    display: inline-block;
    vertical-align: middle;
    color: #333;
    line-height: 1;
    width: 0.4em;
    height: 0.4em;
    border: 0.15em solid currentColor;
    border-left: 0;
    border-bottom: 0;
    transform: translateY(-25%) rotate(135deg);
    margin-left: 0.6em;
}

/* ======================================
	main
====================================== */
/* mv
 * *********************************** */
#mv {
    margin-top: 81px;
    padding: 20px 0;
    background: #FFDD00;
}
#mv h1 {
    display: block;
    width: 100%;
    height: 0;
    padding-top: 60%;
    overflow: hidden;
    background: url("../images/mv.png") no-repeat 50% 50% / contain;
}
/* mv_line
 * *********************************** */
#mv_line {
    background: #06C755;
    padding: 10px;
}
#mv_line .mv_line_inner {
    display: flex;
    justify-content: center;
    align-content: center;
}
#mv_line .mv_line_inner p {
    font-size: 3.6rem;
    font-weight: bold;
    color: #fff;
    margin-right: 60px;
    line-height: 1;
}
#mv_line .mv_line_inner a {
    display: block;
    padding: 4px 0 6px;
    line-height: 1;
    width: 222px;
    background: #fff;
    color: #06C755;
    font-size: 3rem;
    font-weight: bold;
    text-align: center;
}
/* c_feature
 * *********************************** */
#c_feature {
    padding: 60px 0;
    background: #fff5b2;
    z-index: 2;
}
#c_feature .feature_box {
    padding: 35px;
    background: #fff;
    position: relative;
    z-index: 2;
}
#c_feature .cont_inner::before {
    display: block;
    content: '';
    position: absolute;
    bottom: -160px;
    right: -220px;
    width: 400px;
    height: 400px;
    background: url("../images/feature_bg.png") no-repeat 0 0 / contain;
    z-index: 1;
}
#c_feature .feature_ttl_name {
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: 5px;
    font-weight: 800;
}
#c_feature .feature_ttl {
    text-align: center;
    font-size: 3.2rem;
    margin-bottom: 45px;
    line-height: 1.5;
    font-weight: 800;
}
#c_feature .feature_cont {
    width: 28.8%;
}
#c_feature .feature_cont .feature_cont_ttl {
    margin-bottom: 30px;
}
#c_feature .feature_cont .feature_cont_txt {
    font-size: 1.6rem;
}
/* c_item
 * *********************************** */
#c_item {
    padding: 60px 0 110px;
    background: #F7F7F7;
}
/* slider */
#c_item .slider_wrap {
    position: relative;
}
#c_item .slider li.item_cont {
    margin: 0 10px;
    padding-bottom: 10px;
    opacity: 0.4;
    transition: all 0.3s ease;
}
#c_item .slider li.item_cont .item_cont_inner {
    padding: 30px;
    background: #fff;
    box-shadow: 3px 3px 8px 0px rgba(0, 0, 0, 0.16);
}
#c_item .slider li.item_cont.slick-active {
    opacity: 1;
    transition: all 0.3s ease;
}
#c_item .slider li.item_cont .img {
    margin-bottom: 10px;
}
#c_item .slider li.item_cont .item_catch {
    font-size: 2.2rem;
    line-height: 1.5;
    margin-bottom: 20px;
}
#c_item .slider li.item_cont .item_name {
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 1.4;
    margin-bottom: 15px;
}
#c_item .slider li.item_cont .item_feature li {
    font-size: 1.6rem;
    line-height: 1.5;
    margin-bottom: 10px;
    position: relative;
    padding-left: 18px;
}
#c_item .slider li.item_cont .item_feature li::before {
    display: block;
    content: '';
    width: 12px;
    height: 12px;
    background: #ffd300;
    border-radius: 10px;
    position: absolute;
    top: 0.3em;
    left: 0;
}

#c_item .slick-dots {
    bottom: -50px;
}
#c_item .slick-dots li {
    margin: 0 10px;
    width: 12px;
    height: 12px;
}
#c_item .slick-dots li button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
}
#c_item .slick-dots li.slick-active button {
    background: #999;
}
#c_item .slick-dots li button:before {
    width: 12px;
    height: 12px;
    content: '';
    color: #999;
}
#c_item .slick-prev {
    width: 54px;
    height: 54px;
    background: url("../images/item_arrow_l.png") no-repeat 0 0 / contain;
    position: absolute;
    top: calc(50% - 14px);
    left: 28%;
    z-index: 1;
}
#c_item .slick-next {
    width: 54px;
    height: 54px;
    background: url("../images/item_arrow_r.png") no-repeat 0 0 / contain;
    position: absolute;
    top: calc(50% - 14px);
    right: calc(28% - 6px);
    z-index: 1;
}
#c_item .slick-prev::before,
#c_item .slick-next::before {
    content: '';
    display: block;
    width: 54px;
    height: 54px;
}
/* c_carekatsu
 * *********************************** */
#c_carekatsu {
    padding: 60px 0;
    border-bottom: 3px solid #F0F0F0;
}
#c_carekatsu .cont_inner::after {
    display: block;
    content: '';
    position: absolute;
    top: -140px;
    left: -150px;
    width: 226px;
    height: 226px;
    background: url("../images/carekatsu_bg.png") no-repeat 0 0 / contain;
    z-index: 1;
}
#c_carekatsu .carekatsu_ttl_wrap * {
    text-align: center;
}
#c_carekatsu .carekatsu_ttl_s01 {
    font-size: 2rem;
}
#c_carekatsu .carekatsu_ttl_s02 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    font-weight: 800;
}
#c_carekatsu .carekatsu_ttl {
    margin: 0 auto 40px;
    width: 619px;
    height: 152px;
    background: url("../images/carekatsu_ttl.png") no-repeat 50% 50% / contain;
    display: flex;
    justify-content: center;
    align-items: center;
}
#c_carekatsu .content_about {
    margin-bottom: 30px;
}
#c_carekatsu .carekatsu_ttl h2 span:first-child {
    display: block;
    font-size: 3.6rem;
    font-weight: 800;
}
#c_carekatsu .carekatsu_ttl h2 span:last-child {
    display: block;
    font-size: 2rem;
}
#c_carekatsu .content_about .img {
    background: #f27186;
}
/* c_event
 * *********************************** */
#c_event {
    padding: 60px 0;
}
#c_event .cont_wrap {
    align-items: center;
}
#c_event .txt {
    width: 44.681%;
}
#c_event .txt .event_txt {
    font-size: 2rem;
    margin-bottom: 75px;
}
#c_event .img {
    width: 52.128%;
}
/* c_information
 * *********************************** */
#c_information {
    padding: 60px 0;
    background: #F7F7F7;
}
#c_information .txt {
    width: 34.043%;
}
#c_information .txt .information_name {
    font-size: 2.4rem;
    font-weight: bold;
    margin-bottom: 30px;
    line-height: 1.3;
}
#c_information .txt .information_access_ttl {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 15px;
}
#c_information .txt .information_access_txt {
    font-size: 1.8rem;
    margin-bottom: 30px;
}
#c_information .txt .information_access_way {
    margin-top: 30px;
}
#c_information .txt .information_access_way li {
    margin-bottom: 15px;
}
#c_information .txt .information_access_way li a {
    font-size: 1.6rem;
    font-weight: 500;
    position: relative;
}
#c_information .txt .information_access_way li a::after {
    display: block;
    content: '';
    width: 19px;
    height: 19px;
    background: url("../images/ic_window_g.png") 0 50% / contain;
    position: absolute;
    bottom: 0.1em;
    right: -28px;
}
#c_information .img {
    width: 61.702%;
    margin-bottom: 50px;
}
/* c_what
 * *********************************** */
#c_what {
    padding: 60px 0;
    border-bottom: 3px solid #F0F0F0;
}
#c_what .cont_inner::before {
    display: block;
    content: '';
    position: absolute;
    top: -180px;
    right: -165px;
    width: 207px;
    height: 264px;
    background: url("../images/what_bg.png") no-repeat 0 0 / contain;
    z-index: 1;
}
#c_what .what_lead {
    margin-bottom: 35px;
    text-align: center;
    font-size: 2rem;
}
#c_what .what_main {
    margin: 0 auto 55px;
    width: 750px;
    max-width: 100%;
}
#c_what .what_main .what_main_img {
    width: 37.867%;
}
#c_what .what_main .what_main_feature {
    width: 25.333%;
}
#c_what .what_main .what_main_feature .what_cont {
    margin-bottom: 55px;
    position: relative;
}
#c_what .what_main .what_main_feature .what_cont::after {
    display: block;
    content: '';
    width: 60%;
    height: 1px;
    background: #000000;
    position: absolute;
    bottom: -25px;
    left: 20%;
}
#c_what .what_main .what_main_right .what_cont:last-child {
    margin-bottom: 0;
}
#c_what .what_main .what_main_right .what_cont:last-child::after {
    display: none;
}
#c_what .what_main .what_main_feature .img {
    width: 43.158%;
    margin: 0 auto 10px;
}
#c_what .what_main .what_main_feature .app_feature_ttl {
    font-size: 1.8rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 8px;
    line-height: 1.5;
}
#c_what .what_main .what_main_feature .app_feature_txt {
    font-size: 1.6rem;
    text-align: center;
    line-height: 1.5;
}
/* c_caretomo
 * *********************************** */
#c_caretomo {
    padding: 60px 0;
    border-bottom: 3px solid #F0F0F0;
}
#c_caretomo .caretomo_ttl_wrap * {
    text-align: center;
}
#c_caretomo .caretomo_ttl_s01 {
    font-size: 2rem;
}
#c_caretomo .caretomo_ttl_s02 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    font-weight: 800;
}
#c_caretomo .caretomo_ttl {
    margin: 0 auto 40px;
    width: 619px;
    height: 152px;
    background: url("../images/caretomo_ttl.png") no-repeat 50% 50% / contain;
    display: flex;
    justify-content: center;
    align-items: center;
}
#c_caretomo .content_about {
    margin-bottom: 30px;
}
#c_caretomo .caretomo_ttl h2 span:first-child {
    display: block;
    font-size: 3.6rem;
    line-height: 1.3;
    letter-spacing: 0.08em;
    margin-top: 5px;
    margin-bottom: 4px;
    font-weight: 800;
}
#c_caretomo .caretomo_ttl h2 span:last-child {
    display: block;
    font-size: 2rem;
    line-height: 1.4;
    letter-spacing: 0.08em;
}
#c_caretomo .content_about .img {
    background: #E87C1E;
}
/* c_app
 * *********************************** */
#c_app {
    padding: 60px 0 80px;
}
#c_app .cont_inner::after {
    display: block;
    content: '';
    position: absolute;
    top: 94px;
    left: -243px;
    width: 298px;
    height: 298px;
    background: url("../images/app_bg.png") no-repeat 0 0 / contain;
    z-index: 1;
}
#c_app .app_ttl {
    text-align: center;
    margin-bottom: 0.9em;
    font-size: 3rem;
    font-weight: bold;
}
#c_app .app_lead {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
}
#c_app .app_dl_ttl {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 30px;
}
#c_app .app_dl_icon {
    margin: 0 auto 35px;
    width: 128px;
}
#c_app .app_dl_get {
    justify-content: center;
}
#c_app .app_dl_get a {
    display: block;
    width: 217px;
    margin: 0 10px;
}

/* ======================================
	footer
====================================== */
.pagetop {
    position: fixed;
    bottom: -100px;
    right: 15px;
    width: 50px;
    transition: .6s ease-out;
    z-index: 21;
}
.pagetop.is-active {
    bottom: 15px;
}
#footer {
    padding: 40px 0;
    font-size: 75%;
}
#footer .footer_inner {
    margin: 0 auto;
    width: 1100px;
    max-width: 100%;
}
#footer .footer_navi {
    padding-top: 30px;
    border-top: 1px solid #c0c0c0;
}
#footer .footer_navi .cont_inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
}
#footer .footer_navi .footer_navi_menu {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    flex-wrap: wrap;
    width: 720px;
}
#footer .footer_navi .footer_navi_menu li {
    width: 33%;
    margin-bottom: 8px;
}
#footer .footer_navi .footer_navi_menu li a {
    display: inline-block;
    transition: all 0.5s ease;
    position: relative;
    font-size: 1.4rem;
    letter-spacing: 0.05em;
}
#footer .footer_navi .footer_navi_sns {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
#footer .footer_navi .footer_navi_sns li {
    margin-left: 15px;
    width: 37px;
}
#footer .footer_navi .footer_navi_sns li a {
    display: block;
}
#footer .footer_navi .footer_navi_sns li a:hover {
    opacity: 1;
    transform: translate(0, -3px);
}
#footer .copy p {
    margin-bottom: 15px;
    letter-spacing: 0.05em;
    font-size: 1.2rem;
}
#footer .footer_aeon {
    border-top: 1px solid #c0c0c0;
    padding: 20px 10px 0;
}
#footer .footer_aeon .cont_inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#footer .footer_aeon .logo_aeon {
    display: block;
    width: 160px;
}
#footer .footer_aeon .logo_tree {
    width: 260px;
}
/* ======================================
	モーダル
====================================== */
.js_modalWrap {
  display: none;
  z-index: 1001;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.js_modalBG {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}
.js_modalContInner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 1400px;
  max-width: 92%;
  background-color: #fff;
  max-height: 90vh;
  padding: 35px;
}
.js_modalCont {
  overflow-y: scroll;
  max-height: calc(90vh - 70px);
}
.js_modalCont > * + * {
  margin-top: 10px;
}
.js_modalContInner > .js_modalClose + * {
  margin-top: 0;
}
.js_modalClose {
  display: block;
  position: absolute;
  top: 10.5px;
  right: 10.5px;
  width: 20px;
  height: 20px;
  overflow: hidden;
  cursor: pointer;
  z-index: 1001;
}
.js_modalClose::before,
.js_modalClose::after {
  content: "";
  background-color: #222;
  position: absolute;
  top: -5px;
  right: 10px;
  width: 1px;
  height: 30px;
}
.js_modalClose::before {
  transform: rotate(45deg);
}
.js_modalClose::after {
  transform: rotate(-45deg);
}
@media (max-width: 960px) {
    .btn_C {
        font-size: 1.4rem;
    }
    #c_what .what_lead {
        font-size: 1.8rem;
    }
}