@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300..700&display=swap');

html {
    font-size: 62.5%;
}
:root {
    --color-main: #222;
    --color-text: #333;
    --color-yellow: #FFD708;
    --color-gray: #434343;
}

*::before,
*::after {
  content: none;
}
i::before {
  content: none;
}
a::before {
  content: "";
}

body {
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.5;
    font-family: "Noto Sans JP", sans-serif;
    letter-spacing: 0.14rem;
    font-weight: 400;
    color: #333;
	background: #F5F5F5;
	overflow-x: hidden;
}

body.open {
    overflow: hidden;
}

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

main {
    position: relative;
}

.grecaptcha-badge {
    visibility: hidden;
}

picture {
    display: block;
}

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

.c-fff {
	color: #fff!important;
}

.u-en {
    font-family: "Outfit", sans-serif;
}

.u-marker {
    background: linear-gradient(transparent 60%, #FFD708 60%);
}

.u-asterisk {
    position: relative;
    font-size: 0.6rem;
    font-weight: 500;
}

.u-asterisk::after {
    content: "※";
    width: 1em;
    height: 1em;
    font-size: 0.6rem;
    position: absolute;
    right: 0;
    top: -0.65em;
    text-indent: 0;
    line-height: 1;
}

.u-mb0 {
    margin-bottom: 0 !important;
}

.u-mb60 {
    margin-bottom: 6rem !important;
}



.anchor {
    display: block;
    width: 0;
    height: 0;
    position: relative;
    top: -4rem;
}

.sp,
.spbr {
    display: none !important;
}

.pc {
    display: block !important;
}

.pcbr {
    display: inline !important;
}


@media screen and (min-width:751px) and (max-width:1100px) {
    body {
        width: 1100px;
    }
}

@media screen and (min-width:750px) {
    a {
        transition: opacity .4s 0s cubic-bezier(.44, .14, .09, 1.02);
    }

    a:hover {
        opacity: .7;
    }
}

@media screen and (max-width:750px) {
    html {
        font-size: calc(100vw*(10/375));
    }

    .sp {
        display: block !important;
    }

    .spbr {
        display: inline !important;
    }

    .pc,
    .pcbr {
        display: none !important;
    }

    .anchor {
        top: -7rem;
    }
}

/*==========================
       c-menu
==========================*/
.c-menu-btn-check {
  display: none;
}

/* ハンバーガー */
.c-header-menubtn {
  position: relative;
  z-index: 2000;
  cursor: pointer;
}

/* メニュー初期状態 */
.c-header-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  display: block;
  height: 100vh;
  background: #fff;
  transform: translateX(100%);
  /*transition: transform .3s ease;*/
  z-index: 1500;
}

/* 開く */
.c-menu-btn-check:checked ~ .c-header-menu {
  transform: translateX(0);
}

.c-menu-btn-check:checked + .c-header-menubtn span:nth-child(1) {
  transform: rotate(45deg) translateY(6px) translateX(6px);
}
.c-menu-btn-check:checked + .c-header-menubtn span:nth-child(2) {
  opacity: 0;
}
.c-menu-btn-check:checked + .c-header-menubtn span:nth-child(3) {
  transform: rotate(-45deg) translateY(-6px) translateX(5px);
}
.c-header-menu a {
  pointer-events: auto;
}

/*==========================
       c-header
==========================*/
.c-header {
    height: 6rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 4px 21px rgba(0, 0, 0, 0.25);
    z-index: 100;
}

.c-header__left {
    position: absolute;
    left: 3.1rem;
    top: 50%;
    transform: translateY(-50%);
}

.c-header__logo {
    max-width: 12.6rem;
}

.c-header-button {
    position: absolute;
    right: 6.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 21.3rem;
}

.c-header-button a {
    display: block;
    position: relative;
    background: var(--color-yellow);
    color: #fff;
    height: 4rem;
    line-height: 4rem;
    border-radius: 6px;
    font-weight: 700;
    padding: 0 3.1rem 0 3.6rem;
    letter-spacing: 0.14rem;
}
/*
.c-header-button a::after {
    content: "";
    width: 17px;
    height: 11px;
    background: url(../img/article/btn-arw-bottom-wh.svg) no-repeat;
    background-size: contain;
    background-position: center;
    position: absolute;
    /* right: 30px;
    top: 53%;
    transform: translateY(-50%); *//*
    right: 1rem;
    top: 53%;
    transform: translateY(-50%) rotate(-90deg);
}*/

.c-header-menubtn {
	width: 50px;
	right: 0;
	height: 100%;
	background: #333;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}

.c-header-menubtn:hover {
    transition: 0.3s;
}

.menu-nav {
	width: 40%;
    height: auto;
}
.c-header-menubtn span {
    display: block;
    height: 2px;
    margin: 0 0 6px;
    background: #fff;
    border-radius: 6px;
}

.c-header-menubtn span:last-child {
    margin: 0;
}

.c-header-menu {
    overflow-y: auto;
}

.c-header-menu-close {
    width: 19px;
    position: absolute;
    top: 18px;
    right: 14px;
    cursor: pointer;
}

.c-overlay {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    backdrop-filter: blur(0px);
    pointer-events: none;
    transition:
        -webkit-backdrop-filter 0.3s ease,
        backdrop-filter 0.3s ease;
}

.open .c-overlay {
    background: rgba(255, 255, 255, 0.18);
}


.c-header-menu-close span:last-child {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: rotate(90deg) translate(-50%, -50%);
}

.c-header-menu-about {
    background: #fff;
    padding: 5.8rem 2.5rem 4.4rem;
    height: 50%;
    /* min-height: 44rem;  各ページ実装後*/
    min-height: 40rem;
}

.c-header-menu-article {
    background: var(--color-gray);
    color: #fff;
    padding: 5rem 2.5rem 4.4rem;
    height: 50%;
    min-height: 44rem;
}

.c-header-menu-ttl {
    margin: 0 0 3rem;
    font-size: 2.4rem;
    font-weight: 600;
    letter-spacing: 0.11em;
	text-align: left;
}

h2.c-header-menu-ttl span.logo {
    width: 200px;
    margin: 20px 0 0 0;
}

ul.c-header-menu-list {
    text-align: left;
}

.c-header-menu-about .c-header-menu-ttl {
    font-size: 1.6rem;
}

.c-header-menu-ttl .logo {
    display: inline-block;
    width: 12.8rem;
    margin: 0 0.4rem 0 0;
    line-height: 1;
    vertical-align: -0.7rem;
}

.c-header-menu-ttl .icon {
    display: inline-block;
    width: 1.8rem;
    margin: 0 1rem 0 0;
    line-height: 1;
}

.c-header-menu-list-item {
    display: block;
}
.c-header-menu-list-item a {
    display: block;
    height: 5.1rem;
    padding: 2.3rem 2rem 1.2rem 0;
    font-size: 1.5rem;
    letter-spacing: 0.11em;
    font-weight: 600;
    position: relative;
    border-bottom: 1px solid var(--color-main);
    line-height: 1;
}
/*
.c-header-menu-list-item a::after {
    content: "";
    width: 16px;
    height: 16px;
    background: url(../img/article/btn-ccl-arw.svg) no-repeat;
    background-size: contain;
    background-position: center;
    position: absolute;
    right: 0.3rem;
    bottom: 0.8rem;
}*/

.c-header-menu-article .c-header-menu-list-item a {
    border-color: rgba(255, 255, 255, 0.5);
}
/*
.c-header-menu-article .c-header-menu-list-item a::after {
    width: 15px;
    height: 18px;
    background-image: url(../img/article/icn-doc.svg);
}*/

@media screen and (max-width:750px) {
    .c-header {
        height: 5rem;
    }

    .c-header__left {
        left: 1rem;
    }

    .c-header-menu {
        width: 100%;
    }

    .c-header-menubtn {
        right: 0;
    }

    .c-header-button {
        right: 7rem;
        width: 14.3rem;
    }

    .c-header-button a {
        height: 3.5rem;
        line-height: 3.5rem;
        font-size: 1.3rem;
        padding: 0 1.5rem;
    }

    .c-header-button a::after {
        right: 1rem;
        width: 1rem;
        height: 0.8rem;
    }
}

@media screen and (min-width:751px) and (max-height:780px) {

    .c-header-menu-about,
    .c-header-menu-article {
        height: auto;
        min-height: none;
    }
}


/*==========================
       c-footer
==========================*/
.c-footer {
	position: relative;
    background: #fff;
    color: var(--color-main);
    padding: 3rem 0 2rem;
	box-shadow: 0 4px 21px rgba(0, 0, 0, 0.25);
}

.c-footer__logo {
    width: fit-content;
    margin: 0 auto 2rem;
}

.c-footer__logo a {
    display: block;
}

.c-footer-service-bnr {
    width: fit-content;
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 0 auto 3rem;
}

.c-footer-service-bnr li {
    max-width: 40rem;
}


.c-footer__list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 0 auto 2rem;
}

ul.c-footer__list li a {
    color: var(--color-main);
    font-size:16px;
	letter-spacing: 0.05em;
}

.c-footer-service-bnr address {
    font-size:12px;
}

.c-footer__copy {
    font-size: 1.2rem;
    text-align: center;
    font-weight: 300;
    letter-spacing: 0.05em;
}

@media screen and (max-width:750px) {
    .c-footer {
		padding: 3rem 0 1rem;
    }

    .c-footer-service-bnr {
        display: block;
    }

    .c-footer-service-bnr li {
        margin: 0 auto 2rem;
    }

    .c-footer-service-bnr li:last-child {
        margin: 0 auto;
    }

    .c-footer__copy {
        font-size: 1rem;
    }
}

#page-top {
    position: fixed;
    z-index: 999;
    bottom: 0;
    right: 0;
}
#page-top a {
    background: var(--color-yellow);
    color: #000;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
    font-size: 1.4rem;
    padding-left: 0.1rem;
}

/*==========================
       c-main
==========================*/
.c-main-aside {
    max-width: 1150px;
    /* 広告なし*/
    /* margin: 0 auto; 広告あり*/
    display: flex;
    /*flex-wrap: wrap;*/
    justify-content: flex-start;
    gap: 0 4rem;
	margin: 0 auto;
}
.only-top {
	background-repeat: no-repeat;
    background-size: 100vw 20rem;
    background-image: url(../img/top-kv.webp);
}
@media screen and (min-width: 768px) {
.only-top {
    background-size: 100vw 60rem;
}
}
.c-main-noaside {
    /* max-width: 950px; */
    margin: 6rem auto 0;
}

.c-main {
    padding: 80px 0 0 0 ;
    width: auto;
	flex: 1;
}

.c-main-noaside .c-main {
    width: 100%;
}

section.mv-wrap {
    width: 90%;
    margin: 0 auto;
	position: relative;
	max-width: 650px;
}

h1.mv-ttl {
    font-size: 3rem;
    font-weight: 600;
	text-align: left;
}
h1.mv-ttl span.mv-lead {
    font-size: 18px;
    font-weight: 600;
    text-align: left;
    background: var(--color-yellow);
    padding: 1% 2%;
	margin: 0 auto;
}
    /*.mv-balloon {
        font-size: 1.1rem;
        position: absolute;
        right: -4.5rem;
        top: -4.5rem;
        padding: 2.5rem 0 0 0;
        background-image: url(../img/mv-ballon-sp.webp);
        width: 9rem;
        height: 9rem;
        text-align: center;
        letter-spacing: 0.05em;
    }*/

@media screen and (min-width: 768px) {
h1.mv-ttl span.mv-lead {
    font-size: 16px;
	}	
}
span.mv-main-ttl {
    display: block;
    font-size: 2.5rem;
    margin: 20px 0;
	transform: skew(-7deg,-5deg);
}
span.bl {
    font-size: 42px;
    color: var(--color-yellow);
    text-shadow: 1px 1px 1px #999;
    letter-spacing: normal;
    text-indent: -.25em;
}
@media screen and (min-width: 768px) {
span.bl {
    font-size: 72px;
	}
}
.mv-img {
    position: absolute;
    width: 12rem;
    right: 0;
    bottom: 3rem;
}


@media screen and (min-width: 768px) {
.mv-img {
    width: 22rem;
}
}

p.mv-en-txt {
    font-size: 14px;
    text-align: center;
    padding-top: 30px;
	font-weight: 600;
}

@media screen and (min-width: 768px) {
p.mv-en-txt {
    font-size: 14px;
    text-align: left;
}
}
a.content-cta {
    display: block;
    width: 90%;
	max-width: 350px;
    height: auto;
	margin: 30px auto;
	position: relative;
	z-index: 10;
}
@media screen and (min-width: 768px) {
a.content-cta {
	margin: 50px auto;
}
}
.c-ad-bnr-top {
    width: 100%;
    max-width: 1420px;
    margin: 10rem auto 2rem;
}

.c-ad-bnr-left,
.c-ad-bnr-right {
    position: absolute;
    width: 11rem;
    top: -2rem;
    left: -13.5rem;
}

.c-ad-bnr-right {
    left: auto;
    right: -52.8rem;
}

.c-ad-bnr-top img,
.c-ad-bnr-left img {
    width: 100%;
}

.c-ad-bnr-top-sp {
    display: none;
}

@media screen and (min-width:751px) and (max-width:1500px) {
    .c-ad-bnr-left {
        width: 7vw;
        left: -8vw;
    }
}

@media screen and (max-width:1000px) {

    .c-main-aside {
        display: block;
    }
}

@media screen and (max-width:750px) {
    .c-main-noaside {
        margin: 7rem auto 0;
    }

    .c-main-aside.sp-top-ad,
    .c-main-noaside.sp-top-ad {
        margin: 2rem auto 0;
    }

    .c-main {
        width: 100%;
    }

    .c-ad-bnr-top-sp {
        display: block;
        margin: 6rem auto 0;
    }

}
.card-item {
	background: var(--color-yellow);
    width: 15px;
    height: 15px;
    margin-left: 10px;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 10px;
}
/*==========================
       aside
==========================*/
.c-aside {
    width: 30%;
	max-width: 350px;
	padding: 80px 0 0 0;
    position: relative;
    z-index: 1;
}

.c-aside-ad-bnr {
    margin: 0 0 2rem;
}

.c-aside-ad-bnr img {
    width: 100%;
}

.c-article-pop-list {
    margin: 0 0 3rem;
}

.c-article-pop-list li {
    margin: 0 0 2.6rem;
}

.c-article-pop-list li:last-child {
    margin: 0;
}

.c-article-pop-list li a {
    position: relative;
    display: flex;
    gap: 1rem;
}

.c-article-pop-list li:nth-child(1) a::after {
    content: "";
    width: 5rem;
    height: 5rem;
    background: url(../img/pop-article-1st.webp) no-repeat;
    background-size: contain;
    position: absolute;
    top: -1.2rem;
    left: -1.2rem;
}

.c-article-pop-list li:nth-child(2) a::after {
    content: "";
    width: 5rem;
    height: 5rem;
    background: url(../img/pop-article-2nd.webp) no-repeat;
    background-size: contain;
    position: absolute;
    top: -1.2rem;
    left: -1.2rem;
}
.c-article-pop-list .content {
    width: 50%;
}
.c-article-pop-excerpt {
    font-size: 14px;
    text-align: left;
}
.c-article-pop-list li:nth-child(3) a::after {
    content: "";
    width: 5rem;
    height: 5rem;
    background: url(../img/pop-article-3rd.webp) no-repeat;
    background-size: contain;
    position: absolute;
    top: -1.2rem;
    left: -1.2rem;
}


.c-article-pop-list li .img {
    width: 50%;
    max-width: 250px;
    height: 80px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 6px 9px rgba(0, 0, 0, 0.15);
}

.c-article-pop-list li .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.c-article-pop-ttl {
    width: 100%;
    text-align: left;
    letter-spacing: 0.11em;
    font-weight: 500;
    line-height: 1.5;
	font-size: 14px;
}

.c-aside .c-btn {
    margin: 0 0 14rem;
}

.c-keyword-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem 1rem;
}

.c-keyword-list-item {
    width: fit-content;
}

.c-keyword-list-item a,
.c-keyword-list-item>span {
	font-size: 14px;
    display: block;
    font-weight: 600;
    background: #fff;
    border-radius: 30px;
    padding: 0 1.8rem 0 2.8rem;
    position: relative;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.c-keyword-list-item a::before,
.c-keyword-list-item>span::before {
    content: "";
    width: 0.8rem;
    height: 0.8rem;
    border-radius: 50%;
    background: #FFCED9;
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
}

@media screen and (max-width:1000px) {
    .c-aside {
        display: none;
    }
}
@media screen and (max-width:750px) {
    .c-keyword-chara {
        max-width: 23.8rem;
    }

    .c-keyword-list-item a,
    .c-keyword-list-item>span {
        font-size: 1.4rem;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }
}

/*==========================
       layout
==========================*/
.l-section {
    padding: 8rem 0 12rem;
}

.l-inner {
    /* position: relative; */
}

.c-main-noaside .l-inner {
    max-width: 950px;
    margin: 0 auto;
}

@media screen and (max-width:750px) {
    .l-section {
        padding: 6rem 0 8rem;
    }

    .l-inner {
        width: calc(100% - 4rem);
        margin: 0 auto;
    }
}

/*==========================
       other
==========================*/
.c-bg-grad {
    position: relative;
}

.c-bg-grad::before {
   content: "";
    width: 100%;
    height: 40rem;
    background: #fff;
    background: linear-gradient(180deg, rgb(245, 245, 245) 0%, rgb(232, 232, 232) 50%, rgb(215, 215, 215) 100%);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
.c-bg-grad .l-inner {
    position: relative;
    z-index: 1;
}

.c-bg-pink {
    position: relative;
}

.c-bg-pink::before {
    content: "";
    width: calc(100vw + 20px);
    height: 100%;
    background: rgba(255, 206, 217, 0.3);
    position: absolute;
    bottom: 0;
    left: calc(50% + 196px);
    transform: translateX(-50%);
}

.c-bg-pink .l-inner {
    position: relative;
    z-index: 1;
}

.c-caption {
    font-size: 2.8rem;
    font-weight: 600;
    /*letter-spacing: 0.14rem;*/
    margin: 0 auto 3.6rem;
    text-align: center;
    line-height: 1;
}

.c-caption.page-title {
    font-size: 3.2rem;
    margin-top: 2rem;
}

.c-caption.mt-caption {
    margin: 8rem auto 3.6rem;
}

.c-caption .en {
    display: block;
    font-size: 0.57em;
    color: var(--color-yellow);
    margin: 14px auto 0;
    text-shadow: 1px 1px 1px #ddd;
}

.c-category-caption {
    text-align: center;
    position: relative;
    font-size: 5rem;
    font-weight: 600;
    line-height: 1;
    margin: 0 auto 6rem;
    letter-spacing: 0.34rem;
}

.c-category-caption::before {
    content: "";
    width: 100%;
    height: 1px;
    background: #434343;
    position: absolute;
    left: 50%;
    bottom: 0.5em;
    transform: translateX(-50%);
}

.c-category-caption .txt {
    display: inline-block;
    background: #F5F5F5;
    position: relative;
    z-index: 1;
    padding: 0 3.6rem;
}

.c-category-caption .en {
    display: block;
    background: var(--color-yellow);
    color: #fff;
    width: fit-content;
    padding: 0 2rem;
    font-size: 1.2rem;
    letter-spacing: 0.1rem;
    margin: 0 auto 3rem;
    height: 1.8rem;
    line-height: 1.8rem;
    border-radius: 30px;
}

.c-border-caption {
    font-size: 2.8rem;
    font-weight: 700;
    /*letter-spacing: 0.14rem;*/
    line-height: 1.2;
    padding: 0 0 12px;
    border-bottom: 1px solid #434343;
    margin: 0 0 2.4rem;
}


.c-btn {
    width: fit-content;
    margin: 5rem auto 0;
}

.c-btn a {
    justify-content: center;
    display: flex;
    align-items: center;
    background: var(--color-yellow);
    color: #fff;
    text-align: center;
    border-radius: 5rem;
    height: 50px;
	width: 300px;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-shadow: 0 0.32rem 1.45rem rgba(0, 0, 0, 0.25);
    box-shadow: 0 6px 9px rgba(0, 0, 0, 0.15);
	margin: 0 auto;
}

.c-btn .category {
    display: inline-block;
    background: #fff;
    color: var(--color-main);
    height: 49%;
    padding: 0 0.5rem;
    transform: skew(-12deg, 0deg);
    letter-spacing: 0.1rem;
    font-size: 16px;
    margin: 0 1.5rem 0 0;
    vertical-align: 0.2rem;
    text-shadow: none;
}

.c-btn .arw {
    line-height: 1;
    margin: 0 0 0 1rem;
    /* vertical-align: 0.2rem; */
    display: inline-block;
}

.c-btn-wh {
    max-width: 20.9rem;
}

.c-btn-wh a {
    display: block;
    height: 3.1rem;
    line-height: 2.7rem;
    border: 1px solid var(--color-main);
    background: #fff;
    color: var(--color-main);
    border-radius: 30px;
    text-align: center;
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    position: relative;
}

.c-btn-wh a::after {
    content: "";
    width: 0.8rem;
    height: 1.1rem;
    background: url(../img/article/btn-arw-right.svg) no-repeat;
    background-size: contain;
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
}

.c-category-list {
		padding: 50px 0;
    display: flex;
	justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.c-category-list li {
    width: calc((100% - 3rem) / 4);
}

.c-category-list li.large-list {
    width: calc((100% - 8rem) / 3);
    min-width: 220px;
}

.c-category-list li a {
    display: block;
    background: #fff;
    text-align: center;
    height: 6rem;
    line-height: 5.8rem;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    border-radius: 6px;
}

.c-category-list li .arw {
    line-height: 1;
    display: inline-block;
    margin: 0 0 0 10px;
}

/*slick*/
.slick-slider {
    visibility: hidden;
}

.slick-slider.slick-initialized {
    visibility: visible;
}

.slick-slider .slick-list {
    padding-bottom: 3rem !important;
}

.slick-slider .slick-prev,
.slick-slider .slick-next {
    z-index: 1;
    top: calc(50% - 2.9rem);
}

.slick-slider .slick-prev:hover,
.slick-slider .slick-next:hover {
    opacity: 0.6;
    transition: 0.3s;
}

.slick-slider .slick-prev {
    left: -2.8rem;
}

.slick-slider .slick-next {
    right: 0.9rem;
}

.slick-slider .slick-prev:before,
.slick-slider .slick-next:before {
    content: "";
    width: 5.8rem;
    height: 5.8rem;
    background: url(../img/article/slick-prev.svg) no-repeat;
    background-size: contain;
    display: block;
    opacity: 1;
}

.slick-slider .slick-next:before {
    background-image: url(../img/article/slick-next.svg);
}


.slick-slider .slick-dots li button::before {
    content: "";
    width: 1.3rem;
    height: 1.3rem;
    background: #C2C2C2;
    border-radius: 50%;
    opacity: 1;
}

.slick-slider .slick-dots li.slick-active button::before {
    opacity: 1;
    background: var(--color-gray);
}

.slick-slider .slick-dots li {
    margin: 0 1rem;
}

.slick-dots>li:first-child:last-child {
    display: none;
}

@media screen and (min-width: 1024px) {

    .c-bg-grad::before,
    .c-bg-pink::before {
        left: 50%;
        width: 142vw;
    }
}
@media screen and (min-width: 1440px) {

    .c-bg-grad::before,
    .c-bg-pink::before {
        left: 50%;
		width: 126vw;
    }
}

@media screen and (max-width:750px) {
    .c-bg-grad::before {
        left: 50%;
        height: 20rem;
		width:100%;
    }

    .c-bg-pink::before {
        left: 50%;
    }

    .c-category-list li.large-list {
        width: 100%;
    }

    .c-category-list {
        max-width: calc(100% - 4rem);
        margin: 0 auto;
		padding: 50px 0;
    }

    .c-category-list li {
        width: calc(50% - 0.5rem);
    }

    .c-category-list li a {
        height: 4rem;
        line-height: 3.8rem;
        font-size: 1.4rem;
    }

    .slick-slider .slick-prev {
        left: 2.3rem;
    }

    .slick-slider .slick-next {
        right: 4.2rem;
    }

    .slick-slider .slick-prev::before,
    .slick-slider .slick-next::before {
        width: 3.8rem;
        height: 3.8rem;
    }

    .slick-slider .slick-dots {
        bottom: -1rem;
    }

    .slick-slider .slick-dots li button::before {
        width: 0.8rem;
        height: 0.8rem;
    }

    .slick-slider .slick-dots li {
        margin: 0 0.25rem;
    }

    .c-category-caption {
        font-size: 3.6rem;
        margin: 0 auto 6rem;
    }

    .c-category-caption .txt {
        padding: 0 1.6rem;
		background: #F5F5F5;
    }

    .c-category-caption::before {
        width: 80%;
    }

    .c-caption {
        font-size: 2.4rem;
    }

    .c-caption.page-title {
        margin-top: 4rem;
    }

    .c-category-caption .en {
        margin: 0 auto 1.8rem;
    }

    .c-btn {
        width: 100%;
    }

    .c-btn .category {
        line-height: 1.6;
        vertical-align: -0.005rem;
    }

    .c-btn a {
        padding: 0;
    }

    .c-btn-wh a {
        height: 4.1rem;
        line-height: 3.7rem;
    }
}

/*==========================
       c-article
==========================*/
/*article-list*/
.c-article-list {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.c-article-list-item {
    box-shadow: 0 1.4rem 1.4rem rgba(0, 0, 0, 0.15);
    border-radius: 20px;
    overflow: hidden;
    /* margin: 0 2.1rem; */
    background: #fff;
    width: calc((100% - 3rem) / 2);
    margin: 0;
}

.c-article-list-item a {
    display: block;
	padding: 0 0 2% 0;
}

.c-article-img {
    height: 180px;
    overflow: hidden;
    position: relative;
}

.c-article-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.c-article-img .category {
    width: fit-content;
    background: #fff;
    height: 2.7rem;
    line-height: 2.5rem;
    padding: 0 2.1rem;
    border-radius: 4px;
    position: absolute;
	font-size: 14px;
    top: 2rem;
    left: 2rem;
    z-index: 1;
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.15);
	display: inline-flex;
    justify-content: center;
    align-items: center;
}

.c-article-img .category .arw {
    line-height: 1;
    display: inline-block;
    margin: 0 0 0 6px;
    width: 14px;
    vertical-align: -0.2rem;
}
ul.c-article-list.c-pop-article-list span.arw span {
    background: var(--color-yellow);
    width: 15px;
    height: 15px;
    margin-left: 10px;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 10px;
}
.c-article-list li a:hover .c-article-img>img {
    transform: scale(1.1);
    transition: transform 0.3s ease;
    transform-origin: center center;
}

.c-article-txt {
    /* background: #fff; */
    padding: 0 2.1rem 1.8rem;
    height: 180px;
}

.c-article-date-ttl {
    display: flex;
    justify-content: flex-start;
    gap: 1.2rem;
}

.c-article-date {
    width: 4.6rem;
    background: var(--color-gray);
	background: var(--color-gray);
    color: #fff;
    padding: 1.2rem 0 0.7rem;
    text-align: center;
}

.c-article-date span {
    display: block;
    font-size: 1.3rem;
    line-height: 0.85;
    margin: 0 0 0.2rem;
    font-weight: 500;
}

.c-article-date span:last-child {
    margin: 0;
}

.c-article-date .month {
    letter-spacing: 0.11rem;
}

.c-article-date .date {
    font-size: 1.84em;
    letter-spacing: 0.11rem;
    margin-bottom: 0.5rem;
}

.c-article-ttl {
    width: calc(100% - 1.2rem);
    font-weight: 600;
    letter-spacing: 0.05rem;
    padding: 1.8rem 0 0;
	text-align: left;
}

.c-article-keyword {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 2rem 0 0;
}

.c-article-keyword-item {
    width: fit-content;
    padding: 0 1.7rem 0 2.8rem;
    height: 2.3rem;
    line-height: 2.1rem;
    font-weight: 600;
    position: relative;
    letter-spacing: 0.14rem;
    background: #fff;
    border-radius: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.c-article-keyword-item::before {
    display: block;
    content: "";
    width: 0.8rem;
    height: 0.8rem;
    position: absolute;
    left: 1.3rem;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    background: #FFCED9;
}

/*人気記事*/
.c-pop-article-list .c-article-list-item a {
    position: relative;
}

.c-article-list-item.pop-1st a::after {
    content: "";
    width: 5rem;
    height: 5rem;
    background: url(../img/pop-article-1st.webp) no-repeat;
    background-size: contain;
    position: absolute;
    top: -1.8rem;
    left: -1.8rem;
    z-index: 1;
}

.c-article-list-item.pop-2nd a::after {
    content: "";
    width: 5rem;
    height: 5rem;
    background: url(../img/pop-article-2nd.webp) no-repeat;
    background-size: contain;
    position: absolute;
    top: -1.8rem;
    left: -1.8rem;
    z-index: 1;
}

.c-article-list-item.pop-3rd a::after {
    content: "";
    width: 5rem;
    height: 5rem;
    background: url(../img/pop-article-3rd.webp) no-repeat;
    background-size: contain;
    position: absolute;
    top: -1.8rem;
    left: -1.8rem;
    z-index: 1;
}

.c-pop-article-list.slick-slider .slick-list {
    padding-top: 2rem !important;
}

.c-pop-article-list .c-article-img {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.c-pop-article-list .c-article-list-item {
    overflow: visible;
}

@media screen and (max-width:750px) {
    .c-article-list {
        position: relative;
        /* width: 100vw;
        left: 50%;
        transform: translateX(-50%); */
        display: block;
    }

    .c-article-list-item {
        border-radius: 1rem;
        width: 100%;
        margin: 0 0 3rem;
    }

    .c-article-list-item:last-child {
        margin: 0;
    }

    /* .c-article-img {
        aspect-ratio: 16/9;
    } */

    .c-article-keyword {
        font-size: 1.2rem;
    }

    .c-article-keyword-item {
        padding: 0 1.2rem 0 2.2rem;
        height: 2rem;
        line-height: 1.8rem;
    }

    .c-article-keyword-item::before {
        width: 0.6rem;
        height: 0.6rem;
        left: 1.0rem;
    }

    .c-article-date {
        width: 4.6rem;
        padding: 0.6rem 0 0.8rem;
    }

    .c-article-date span {
        font-size: 1.1rem;
    }

    .c-article-date .date {
        font-size: 1.6em;
    }

    .c-article-img .category {
        height: 2rem;
        line-height: 2rem;
        padding: 0 1rem;
        font-size: 1.2rem;
    }

    .c-pop-article-list .c-article-img {
        border-top-left-radius: 1rem;
        border-top-right-radius: 1rem;
    }
}

/*==========================
       c-reason-wrap
==========================*/
.c-reason-wrap .c-reason-list.slick-dotted.slick-slider {
    margin: 0 auto 14.7rem;
    max-width: 758px;
}

.c-reason-wrap .c-caption {
    margin: 0 auto 6rem;
}

.c-reason-wrap .c-btn {
    width: 100%;
    max-width: 32rem;
}

.c-reason-list {
    margin: 0 0 12rem;
}

.c-reason-list-item {
    position: relative;
    background: var(--color-gray);
    color: #fff;
    padding: 5.6rem 10.6rem 4.6rem;
    border-radius: 1.9rem;
    /* margin: 0 1rem; */
    margin: 0 0 8rem;
    font-weight: 600;
}

.c-reason-list-item::after {
    content: "";
    width: 3rem;
    height: 1.5rem;
    background: var(--color-gray);
    clip-path: polygon(50% 100%, 0 0, 100% 0);
    position: absolute;
    bottom: -4.75rem;
    left: 50%;
    transform: translateX(-50%);
}

.c-reason-list-item:last-child {
    margin: 0;
}

.c-reason-list-item:last-child::after {
    display: none;
}

.c-reason-list-num {
    width: 18rem;
    text-align: center;
    height: 4.1rem;
    line-height: 3.2rem;
    color: var(--color-main);
    font-size: 1.8rem;
    letter-spacing: 0.2rem;
    background: #fff;
    border: 2px solid var(--color-main);
    border-radius: 30px;
    position: absolute;
    top: -2.05rem;
    left: 5.5rem;
}

.c-reason-list-img {
    position: absolute;
    top: 3.1rem;
    right: 6.4rem;
    line-height: 1;
    width: 18.4rem;
}

.c-reason-list-item.second .c-reason-list-img {
    right: 3.9rem;
    width: 19.9rem;
    top: 4rem;
}

.c-reason-list-item.third .c-reason-list-img {
    right: 8.4rem;
    width: 12.9rem;
    top: 1rem;
}

.c-reason-list-caption {
    width: fit-content;
    font-size: 2.4rem;
    font-weight: 600;
    line-height: 1.66;
    letter-spacing: 0.2rem;
    margin: 0 auto 2.3rem 0;
}

.c-reason-list-txt01 {
    width: fit-content;
    background: var(--color-yellow);
    color: #fff;
    font-size: 2.4rem;
    letter-spacing: 0.21rem;
    height: 5.9rem;
    line-height: 5.7rem;
    padding: 0 3.2rem 0 2.5rem;
    margin: 0 auto 2.6rem 0;
    border-radius: 0.45rem;
}

.c-reason-list-txt01 .num {
    font-size: 1.5em;
}

.c-reason-list-txt01 .icon {
    width: 1.5rem;
    display: inline-block;
    margin: 0 1rem 0 0;
    line-height: 1;
}

.c-reason-list-txt02 {
    font-size: 1.5rem;
    line-height: 1.73;
    letter-spacing: 0.2rem;
    min-height: 5.19rem;
}

.c-reason-list-note {
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 0.13em;
    position: absolute;
    bottom: 0.7rem;
    right: 2rem;
}

.c-reason-list .slick-list {
    padding-top: 4.3rem;
}

.c-reason-list .slick-prev,
.c-reason-list .slick-next {
    top: 50%;
}

.c-reason-list .slick-next {
    right: -2.8rem;
}

.c-reason-list .slick-next::before,
.c-reason-list .slick-prev::before {
    width: 2.2rem;
    height: 2.5rem;
    background: var(--color-gray);
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
}

.c-reason-list .slick-prev::before {
    clip-path: polygon(100% 0, 100% 100%, 0 50%);
}

.c-reason-list .slick-list {
    padding-bottom: 0 !important;
}

.c-reason-wrap .slick-dots {
    bottom: -5rem;
}

/*flow*/
.c-flow-list {
    max-width: 758px;
    margin: 0 auto;
    padding: 0 0 0 6.2rem;
    position: relative;
}

.c-flow-list::before {
    content: "";
    width: 1px;
    height: 100%;
    border-left: 1px dashed var(--color-main);
    position: absolute;
    top: 0;
    left: 2rem;
}

.c-flow-list-item {
    margin: 0 0 5rem;
    position: relative;
}

.c-flow-list-item:last-child {
    margin: 0;
}

.c-flow-list-cap {
    text-align: center;
    font-size: 2.2rem;
    color: var(--color-main);
    font-weight: 600;
    line-height: 1.2;
    margin: 0 0 1.2rem;
	padding: 4% 0 3% 0;
}

.c-flow-list-cap .step {
    display: inline-block;
    background: var(--color-yellow);
    color: #fff;
    height: 2.4rem;
    line-height: 2.3rem;
    font-size: 1.4rem;
    padding: 0 1.3rem;
    border-radius: 20px;
    margin: 0 0 0 1.7rem;
    vertical-align: 0.2rem;
}

.c-flow-list-txt {
    background: var(--color-gray);
    color: #fff;
    font-size: 24px;
    text-align: center;
    line-height: 1.5;
    padding: 2rem 3rem;
    font-weight: 500;
    border-radius: 10px;
}

.c-flow-list-num {
    width: 11rem;
    height: 4rem;
    border: 2px solid var(--color-main);
    text-align: center;
    line-height: 3.4rem;
    position: absolute;
    top: -2rem;
    left: -6.2rem;
    color: var(--color-main);
    border-radius: 20px;
    font-weight: 600;
    font-size: 2rem;
    background: #fff;
    z-index: 1;
}

@media screen and (max-width:750px) {
    .c-reason-wrap .c-caption {
        letter-spacing: normal;
    }

    .c-reason-wrap .c-caption .en {
        letter-spacing: 0.14rem;
    }

    .c-reason-wrap .c-reason-list.slick-dotted.slick-slider {
        margin: 0 0 8rem;
    }

    .c-reason-list {
        position: relative;
        width: 90%;
        margin: 0 auto 8rem;
    }

    .c-reason-list-item {
        padding: 3.6rem 2rem 2.6rem;
        margin: 0 0 8rem;
    }

    .c-reason-list-num {
        width: 13rem;
        height: 3.1rem;
        line-height: 2.6rem;
        font-size: 1.6rem;
        top: -1.55rem;
        left: 50%;
        transform: translateX(-50%);
    }

    .c-reason-list-caption {
        font-size: 1.5rem;
        width: 100%;
        margin: 0 auto 2rem;
    }

    .c-reason-list-img {
        width: 11.4rem;
        position: static;
        margin: 0 auto 1rem;
    }

    .c-reason-list-item.first .c-reason-list-txt02 {
        min-height: 1em;
    }

    .c-reason-list-item.second .c-reason-list-img {
        width: 12.9rem;
    }

    .c-reason-list-item.third .c-reason-list-img {
        width: 9.9rem;
    }

    .c-reason-list .slick-next::before,
    .c-reason-list .slick-prev::before {
        width: 1.8rem;
        height: 2.1rem;
    }

    .c-reason-list.slick-slider .slick-prev {
        left: 1rem;
    }

    .c-reason-list .slick-next {
        right: 1rem;
    }

    .c-reason-list-txt01 {
        font-size: 1.5rem;
        height: 3.9rem;
        line-height: 3.7rem;
        margin: 0 auto 1.6rem 0;
        width: 100%;
        text-align: center;
        padding: 0;
    }

    .c-reason-list-txt02 {
        font-size: 1.2rem;
        min-height: 8.4rem;
    }

    .c-reason-list-note {
        font-size: 1rem;
        bottom: 1rem;
        left: 2rem;
        width: 90%;
        line-height: 1.35;
        font-weight: 300;
    }

    .c-reason-wrap .slick-dots {
        bottom: -4rem;
    }

    .c-flow-list {
        margin: 0 0 4rem;
        padding: 0 0 0 4.2rem;
    }

    .c-flow-list::before {
        left: 1.5rem;
    }

    .c-flow-list-num {
        width: 120px;
        height: 3rem;
        line-height: 2.4rem;
        left: -4.2rem;
    }

    .c-flow-list-cap {
        font-size: 1.8rem;
        position: relative;
    }

    .c-flow-list-cap .step {
        height: 2rem;
        line-height: 2rem;
        font-size: 1.2rem;
        position: absolute;
        left: -2rem;
        top: -2.5rem;
    }

    .c-flow-list-txt {
        padding: 2rem;
        font-size: 1.4rem;
        line-height: 1.75;
    }
}

/*==========================
       c-keyword-wrap
==========================*/
.c-keyword-wrap .c-caption {
    margin-bottom: 2rem;
}

.c-keyword-chara {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 25.8rem;
    margin: 0 auto 5rem;
}

@media screen and (max-width:750px) {}



/*===========================================================================*/
/*  contact  */
/*===========================================================================*/
.p-contact {
    /* padding-top: 4rem;
    padding-bottom: 4rem; */
    padding-bottom: 12rem;
}

.p-contact span {
    display: inline-block;
}

.p-contact__content {
    max-width: 758px;
    margin: 0 auto;
    border-radius: 1rem;
    background: #fff;
    box-shadow: 8px 8px 30px 0px rgba(27, 34, 76, 0.05);
    background-color: #fff;
    overflow: hidden;
}

.p-contact__content--heads {
    padding: 1.2rem .5rem 1.1rem;
    background: var(--color-gray);
    color: #fff;
    text-align: center;
}

.p-contact__subHead {
    font-feature-settings: 'palt' on;
    font-size: 1.5rem;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: .03em;
}

.p-contact__subHead span {
    position: relative;
}

.p-contact__subHead span::before {
    background: url('../img/form-head-deco.svg') no-repeat center center/contain;
    content: '';
    height: 1.9rem;
    left: -1.6rem;
    position: absolute;
    bottom: -.2rem;
    width: 1.2rem;
}

.p-contact__subHead span::after {
    background: url('../img/form-head-deco02.svg') no-repeat center center/contain;
    content: '';
    height: 1.9rem;
    right: -1.6rem;
    position: absolute;
    bottom: -.2rem;
    width: 1.2rem;
}

.p-contact__head {
    margin-top: .3rem;
    font-feature-settings: 'palt' on;
    font-size: 2.6rem;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: .05em;
}

.p-contact__form {
    padding: 1.5rem 2rem 2.5rem;
}

.p-contact__nums {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.8rem;
    position: relative;
}

.p-contact__nums::before {
    content: '';
    height: calc(50% + .2rem);
    left: 50%;
    position: absolute;
    top: 0;
    width: 15rem;
    border-bottom: #f1f1f1 dashed .2rem;
    transform: translate(-50%, 0);
}

.p-contact__nums li {
    width: 5rem;
    height: 5rem;
    border-radius: 100vh;
    background: #d9d9d9;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.p-contact__nums li.js-active {
    background: var(--color-gray);
}

.p-contact__nums .--step {
    font-feature-settings: 'calt' off;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1;
}

.p-contact__nums .--num {
    font-feature-settings: 'calt' off;
    font-size: 2.1rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -.01em;
    transform: translate(-.1rem, 0);
}

.p-contact__form--contents {
    margin-top: 1.5rem;
}

.p-contact__form--content {
    display: none;
}

.p-contact__form--content.js-active {
    display: block;
}

.p-contact__form--head01 {
    text-align: center;
    font-feature-settings: 'palt' on;
    font-size: 1.6rem;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: .02em;
}

.p-contact .p-contact__btn--next,
.p-contact .p-contact__btn--send {
    position: relative;
    cursor: pointer;
    width: 22.9rem;
    height: 4.8rem;
    border-radius: 100vh;
    background-color: var(--color-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2.4rem auto 0;
    color: #fff;
    font-feature-settings: 'palt' on;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: .02em;
}

.p-contact__btn--next.js-disable,
.p-contact__btn--send.js-disable {
    opacity: .5;
    cursor: not-allowed;
    pointer-events: none;
}

.p-contact__btn--next::before,
.p-contact__btn--send::before {
    background: url('../img/form-arrow.svg') no-repeat center center/contain;
    content: '';
    height: 1.1rem;
    right: 1.8rem;
    position: absolute;
    top: 50%;
    width: .8rem;
    transform: translate(0, -50%);
}

.p-contact__btn--send {
    background-color: var(--color-yellow);
}

.p-contact__btn--send input {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 80;
    opacity: 0;
}

.p-contact__btn--back {
    text-align: center;
    margin-top: 1.5rem;
    color: var(--color-gray);
    font-feature-settings: 'palt' on;
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: .02em;
}

.p-contact__btn--back span {
    position: relative;
    cursor: pointer;
    padding-left: 1.5rem;
}

.p-contact__btn--back span::before {
    background: url('../img/form-arrow-back.svg') no-repeat center center/contain;
    content: '';
    height: 1.1rem;
    left: 0;
    position: absolute;
    top: calc(50% + .1rem);
    width: .8rem;
    transform: translate(0, -50%);
}

.p-contact__form ::placeholder {
    color: #d8d8d8;
}

.p-contact__form--radios {
    margin-top: 1.2rem;
}

.p-contact__form--radios .wpcf7-form-control-wrap {
    display: block;
}

.p-contact__form--radios .wpcf7-form-control {
    display: flex;
    flex-wrap: wrap;
    gap: .9rem;
}

.p-contact__form--radios .wpcf7-form-control .wpcf7-list-item {
    width: calc(50% - .9rem/2);
    margin: 0 !important;
}

.p-contact__form--radios .wpcf7-form-control .wpcf7-list-item label {
    cursor: pointer;
}

.p-contact__form--radios .wpcf7-form-control .wpcf7-list-item label input {
    display: none;
}

.p-contact__form--radios .wpcf7-form-control .wpcf7-list-item label .wpcf7-list-item-label {
    width: 100%;
    padding: 1.1rem .5rem 1.2rem;
    background-color: #fff;
    border-radius: .5rem;
    text-align: center;
    border: #dedede solid .1rem;
    font-feature-settings: 'palt' on;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: .02em;
}

.p-contact__form--radios .wpcf7-form-control .wpcf7-list-item label input:checked+.wpcf7-list-item-label {
    border: var(--color-yellow) solid .2rem;
    color: var(--color-yellow);
}

.p-contact__form--table {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    width: fit-content;
    margin-inline: auto;
}

.p-contact__form--table dt {
    font-feature-settings: 'palt' on;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: .02em;
}

.p-contact__form--table dd {
    margin-top: .7rem;
}

.p-contact__form--table dd input[type=text],
.p-contact__form--table dd input[type=email],
.p-contact__form--table dd input[type=tel],
.p-contact__form--table dd select {
    width: 100%;
    background-color: #fff;
    padding: 1.3rem 1.6rem 1.4rem;
    border: #dedede solid .1rem;
    border-radius: .5rem;
    font-feature-settings: 'palt' on;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: .02em;
}

.p-contact__form--table dd input[type=text]:focus,
.p-contact__form--table dd input[type=email]:focus,
.p-contact__form--table dd input[type=tel]:focus,
.p-contact__form--table dd select:focus {
    width: 100%;
    background-color: #fff;
    padding: 1.3rem 1.6rem 1.4rem;
    border: #dedede solid .1rem;
    border-radius: .5rem;
    font-feature-settings: 'palt' on;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: .02em;
    outline: #FFD708 solid .1rem;
}

.p-contact__form--select {
    width: 8rem;
    position: relative;
}

.p-contact__form--select .wpcf7-form-control-wrap {
    width: 100%;
    position: relative;
}

.p-contact__form--select .wpcf7-form-control-wrap::before {
    background: url('../img/select-arrow.svg') no-repeat center center/contain;
    content: '';
    height: .9rem;
    right: 1.4rem;
    position: absolute;
    top: 1.9rem;
    width: 1.4rem;
    pointer-events: none;
    z-index: 5;
}

.p-contact__form .wpcf7-spinner {
    display: none;
}

.p-contact__recaptcha {
    margin-top: 1rem;
    font-size: 1rem;
    line-height: 1.44;
    text-align: center;
}

.p-contact__recaptcha a {
    text-decoration: underline;
}

.p-contact__date {
    display: none;
}

.p-contact__agreement {
    margin-top: 2.4rem;
    font-size: 1.3rem;
    line-height: 1.44;
    text-align: center;
}

.p-contact__agreement a {
    text-decoration: underline !important;
    color: var(--color-main) !important;
}

.p-contact__agreement label input {
    display: none;
}

.p-contact__agreement label .wpcf7-list-item-label {
    position: relative;
    padding-left: 2rem;
}

.p-contact__agreement label .wpcf7-list-item-label::before {
    background-color: #fff;
    content: '';
    height: 1.3rem;
    left: 0;
    position: absolute;
    top: 50%;
    width: 1.3rem;
    transform: translate(0, -50%);
    border-radius: .3rem;
    border: .1rem solid #dedede;
}

.p-contact__agreement label .wpcf7-list-item-label::after {
    background: url('../img/check.svg') no-repeat center center/contain;
    content: '';
    height: 1.3rem;
    left: 0;
    position: absolute;
    top: 50%;
    width: 1.3rem;
    transform: translate(0, -50%);
    border-radius: .3rem;
    border: .1rem solid #dedede;
    opacity: 0;
}

.p-contact__agreement label input:checked+.wpcf7-list-item-label::after {
    opacity: 1;
}

.p-contact__form .wpcf7-list-item.first {
    position: relative;
    z-index: 2;
}

.p-contact__form .wpcf7-list-item.first::before {
    background-color: var(--color-yellow);
    content: '';
    height: calc(100% + .6rem);
    left: 50%;
    position: absolute;
    top: 50%;
    width: calc(100% + .6rem);
    transform: translate(-50%, -50%);
    opacity: 0;
    animation: blink 1.8s ease-in-out infinite;
    border-radius: .5rem;
    z-index: -1;
}

@keyframes blink {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@media screen and (min-width:750px) {


    .p-step__list--head {
        font-size: 2.1rem;
    }

    .p-step__list--txt {
        font-size: 1.2rem;
    }
}

@media screen and (max-width:750px) {
    .p-contact {
        padding: 0 0 8rem;
    }
}

/*==========================
       パンくずリスト
==========================*/
.c-breadcrumb {
    display: flex;
    margin: 0 0 2rem;
    gap: 3rem;
    line-height: 1;
    letter-spacing: 0.05em;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
}

.c-breadcrumb::-webkit-scrollbar {
    opacity: 0;
}

.c-breadcrumb-item {
    position: relative;
}

.c-breadcrumb-item::after {
    content: "＞";
    width: 1em;
    height: 1em;
    position: absolute;
    right: -2rem;
    top: 52%;
    transform: translateY(-50%) scaleX(0.5);
    font-size: 0.8em;
}

.c-breadcrumb-item:last-child::after {
    display: none;
}

@media screen and (max-width:750px) {
    .c-breadcrumb {
        gap: 2rem;
        font-size: 1.4rem;
    }

    .c-breadcrumb-item::after {
        right: -1.5rem;
    }
}

.best-post {
	width: 90%;
	margin: 0 auto;
}

.sidebar-cta:first-child {
	margin: 0 0 50px 0;
	display: block;
}
.sidebar-cta {
    width: 90%;
	max-width: 350px;
    margin: 50px auto;
    display: block;
}
.sidebar-post {
    text-align: left;
}
li.latest-post-item {
    margin-bottom: 5%;
}
.latest-post-item a {
    display: flex;
    gap: 3%;
}
.latest-post-item a .thumb {
    width: 50%;
    max-width: 350px;
}
.latest-post-item a .thumb img {
    border-radius: 10px;
}
.latest-post-item a .content {
    width: 50%;
}
.latest-post-item a .content h3 {
	width: 100%;
    font-weight: bold;
}
a.sidebar-post-link {
    text-align: right;
    display: block;
    color: var(--color-main);
    text-decoration: underline;
}

.advisor-card {
        border: 1px solid var(--color-main);
    border-radius: 10px!important;
    }
/*----------関連記事--------------*/
.related-post {
    margin-bottom: 10%;
    width: 90%;
    margin: 3% auto;
}
.link-card {
    width: 100%;
	display: block;
    border: 1px solid #ddd;
    padding: 15px 25px;
	gap: 2%;
}
.link-card img {
	width: 100%;
	height: auto;
    max-height: 250px;
    object-fit: cover;
}
.link-card-inner {
	margin-top: 2%;
}	
span.link-card-inner-ttl {
    width: auto;
    height: auto;
    display: inline-block;
    padding: 0 4px;
    background-color: var(--color-main);
    color: #fff;
}
p.link-card-inner-content {
	font-size: 12px!important;
}
.link-card-inner h3 {
    font-size: 16px !important;
    font-weight: 600;
    padding: 2% 0;
}
.dictionary-links-list {
    margin-bottom: 100px;
}
@media screen and (min-width: 768px) {
	.c-aside {
    padding-right: 1%;
}
	.c-main {
    padding-left: 1%;
}
	.related-post {
    margin-bottom: 10%;
    width: 95%;
    margin: 0 auto 10% auto;
}
.link-card-inner h3 {
    font-size: 24px !important;
}
	p.link-card-inner-content {
    font-size: 16px !important;
}
.link-card img {
    width: 40%;
    height: auto;
}
	.link-card-inner-content {
    font-size: 16px;
}
	.link-card {
    width: 100%;
    align-items: center;
    display: flex;
    justify-content: flex-start;
	gap: 2%;
}
	.top-post-img {
    width: 40%!important;
}
	.article-detail-content h3 {
    font-size: 2rem;
}
}
li.term-post-item {
    margin-bottom: 5%;
}
a.term-post-link {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3%;
}
span.term-post-thumb {
    width: 45%;
}
span.term-post-title {
    width: 60%;
}
a.tag-post-link {
    padding: 3%;
    display: block;
    border: 1px solid #ddd;
    border-left: 10px solid #ddd;
    background: #fff;
    margin-bottom: 5%;
	text-align: center;
}
span.tag-post-title {
    font-size: 24px;
    font-weight: 600;
    display: block;
}
span.tag-post-reading {
    font-weight: 600;
    font-size: 14px;
}
.related-border {
    border: 1px solid #ddd;
	display: block;
}
img.top-banner-img {
    max-height: 300px;
    object-fit: cover;
}
span.related-title {
    font-size: 20px;
    font-weight: 600;
    display: block;
}
.dictionary-links-list-inner {
	flex-wrap: wrap;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3%;
}

a.dictionary-link {
  font-size: calc(100% + 2px)!important;
	text-decoration: underline!important;
	color: #555;
}
a.tag-post-link:hover {
    transform: translateY(-10px);
}
@media screen and (min-width: 768px) {
span.related-title {
    font-size: 28px;
}
}
@media screen and (min-width: 768px) {
    .content-cta-wrap {
      	display: flex;
		justify-content: center;
		align-items: center;
		gap: 10px;
    }
}
/*--- 関連記事ここまで --*/