/*====================================================*/
/*common*/
/*====================================================*/
/* Light */
@font-face {
    font-family: "Noto Sans CJK JP";
    font-style: normal;
    font-weight: 300;
    src: url("../fonts/NotoSansCJKjp-Light.ttf") format("truetype"), url("../fonts/NotoSansCJKjp-Light.woff") format("woff");
}
/* Regular */
@font-face {
    font-family: "Noto Sans CJK JP";
    font-style: normal;
    font-weight: 400;
    src: url("../fonts/NotoSansCJKjp-Regular.ttf") format("truetype"), url("../fonts/NotoSansCJKjp-Regular.woff") format("woff");
}
/* Medium */
@font-face {
    font-family: "Noto Sans CJK JP";
    font-style: normal;
    font-weight: 500;
    src: url("../fonts/NotoSansCJKjp-Medium.ttf") format("truetype"), url("../fonts/NotoSansCJKjp-Medium.woff") format("woff");
}
/* Bold */
@font-face {
    font-family: "Noto Sans CJK JP";
    font-style: normal;
    font-weight: 700;
    src: url("../fonts/NotoSansCJKjp-Bold.ttf") format("truetype"), url("../fonts/NotoSansCJKjp-Bold.woff") format("woff");
}

html{
    font-size: 62.5%;
    margin-top: 0 !important;
}
body {
    color: #222;
    line-height: 1.65;
    letter-spacing: 0.04em;
    font-family: 'Noto Sans CJK JP', 'Noto Sans JP', sans-serif;
}
.wrapper {
    margin-left : auto;
	margin-right : auto;
}
img {
    max-width: 100%;
}
:root{
  --bounce-height: 80px;    
  --bounce-duration: 1.8s;
}

/*====================================================*/
/* ヘッダー */
/*====================================================*/
.header {
    width: 100%;
    position: relative;
    z-index: 50;
}
.header.is_fixed {
    background-color: #fff;
    box-shadow: 0px 2px 2px 0px rgba(248,239,244,0.7);
    position: fixed;
    top: 0;
    left: 0;
    animation-name: anime;
    animation-duration: 0.3s;
}
@keyframes anime {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
}

/* ロゴ */
.pink-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 6rem;
    height: 6rem;
    background-color: #BC6499;
	transition: all .3s;
}
.pink-logo img {
    width: 78%;
}
.black-logo {
    display: block;
}

/* Mobile メニュー */
.mobile_head-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding-top: 1rem;
}
.mobile_head-inner .logo-box {
    display: flex;
    align-items: flex-start;
}
.mobile_head-inner .pink-logo {
    margin-left: 1.2rem;
}
.mobile_head-inner .black-logo {
    display: block;
    width: 98px;
    height: 20px;
    line-height: 2rem;
    padding-left: 1.5rem;
    background-color: #fff;
}
.toggle-inner {
    width: 0;
    height: 0;
    opacity: 0;
	transition: all .5s;
}
.toggle-inner.is-active {
    width: 100%;
    height: 100vh;
    opacity: 1;
}



.mobile_head-inner.is-active .toggle_btn span:first-of-type {
    top: 5px;
    transform: rotate(45deg);
}
.mobile_head-inner.is-active .toggle_btn span:nth-of-type(2) {
    top: 5px;
    transform: rotate(-45deg);
}
/* ハンバーガーメニュー内 */
.mobile_head-inner.is-active .pink-logo {
    width: 5.5rem;
    height: 5.5rem;
    margin-left: 1.8rem;
}
.mobile_head-inner.is-active .black-logo {
    display: none;
}
.toggle-inner.is-active {
    margin: 3.5rem auto;
}
.mobile-navi {
    width: 60%;
    margin: 0 auto;
    font-size: 1.2rem;
}
.mobile-navi li.navi_title {
    margin-bottom: 4.5rem;
}
.mobile-navi li.navi_title > a {
    display: block;
    font-size: 1.7rem;
    font-weight: bold;
    letter-spacing: 0.1em;
    transition: all 0.3s;
}
.mobile-navi li.navi_title > a span {
    display: block;
    font-size: 1.2rem;
    font-weight: normal;
}
.mobile-navi li.navi_title > a.open {
    color: #BC6499;
}
.mobile-navi ul.sub-menu {
    display: none;
    background-color: #F8EFF4;
    margin-top: 1.5rem;
}
.mobile-navi ul.sub-menu li a {
    display: block;
    position: relative;
    padding: 0 2rem 0 1.7rem;
    line-height: 3.3rem;
    transition: all 0.3s;
}
.mobile-navi ul.sub-menu li a::after {
    content: "";
    -webkit-mask-image: url(../img/common/arrow.svg);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;
    width: 1.5em;
    height: 1.5em;
    background-color: #E0ADC7;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 1.7rem;
}
.mobile-navi ul.sub-menu li a:hover {
    opacity: 0.6;
}


/* Mobileの追従ナビ */
/* 動き */
/* #floating-nav {
    position: sticky;
    top: 0;
    left: 0;
    height: 0;
    transform: translateY(-60px);
    opacity: 0;
    transition: transform 0.6s, opacity 0.6s;
    z-index: 500;
}
#floating-nav .pink-logo {
    width: 5.5rem;
    height: 5.5rem;
    margin-left: 1.8rem;
}
#floating-nav.m_fixed {
    transform: translateY(0);
    opacity: 1;
} */

/* Mobileの追従ナビ デザイン */
/* .floating_head-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding-top: 1rem;
	transition: all .5s;
}
.floating_head-inner.is-active {
    background-color: #fff;
}
.floating_head-inner .logo-box {
    display: flex;
    align-items: flex-start;
}
.floating_head-inner .pink-logo {
    margin-left: 1.2rem;
}
.floating_toggle-inner {
    width: 0;
    height: 0;
    opacity: 0;
	transition: all .5s;
}
.floating_toggle-inner.is-active {
    width: 100%;
    height: 100vh;
    opacity: 1;
} */

/* ハンバーガーメニューデザイン */
.floating_toggle_btn {
    display: block;
    width: 3rem;
    height: 3rem;
    position: relative;
    color: #BC6499;
    cursor: pointer;
    margin-top: 5px;
    margin-right: 1.8rem;
}
.floating_toggle_btn span {
    display: block;
    position: absolute;
	transition: all .3s;
}
.floating_toggle_btn span:not(:last-of-type) {
    background-color: #BC6499;
    width: 2.4rem;
    height: 2px;
}
.floating_toggle_btn span:first-of-type {
    top: 0;
    left: 3px;
}
.floating_toggle_btn span:nth-of-type(2) {
    top: 8px;
    left: 3px;
}
.floating_toggle_btn span:last-of-type {
    line-height: 1;
    bottom: 0;
    font-weight: bold;
}
.floating_head-inner.is-active .floating_toggle_btn span:first-of-type {
    top: 5px;
    transform: rotate(45deg);
}
.floating_head-inner.is-active .floating_toggle_btn span:nth-of-type(2) {
    top: 5px;
    transform: rotate(-45deg);
}
/* ハンバーガーメニュー内 */
.floating_head-inner.is-active .pink-logo {
    width: 5.5rem;
    height: 5.5rem;
    margin-left: 1.8rem;
}
.floating_head-inner.is-active .black-logo {
    display: none;
}
.floating_toggle-inner.is-active {
    margin: 0 auto;
    padding-top: 3.5rem;
    background-color: #fff;
}


/* tablet */
/* @media print,screen and (min-width: 600px){
    .mobile_head-inner,
    .floating_head-inner {
        padding-top: 2rem;
    }
    .mobile_head-inner .black-logo {
        width: 40%;
    }
    .toggle_btn,
    .floating_toggle_btn {
        width: 5rem;
        height: 5rem;
    }
    .toggle_btn span:not(:last-of-type),
    .floating_toggle_btn span:not(:last-of-type) {
        width: 4.4rem;
        height: 4px;
    }
    .toggle_btn span:nth-of-type(2),
    .floating_toggle_btn span:nth-of-type(2) {
        top: 20px;
    }
    .toggle_btn span:last-of-type,
    .floating_toggle_btn span:last-of-type {
        left: 2px;
        right: 2px;
        font-size: 1.4rem;
    }
    .mobile_head-inner.is-active .toggle_btn span:first-of-type,
    .mobile_head-inner.is-active .toggle_btn span:nth-of-type(2),
    .floating_head-inner.is-active .floating_toggle_btn span:first-of-type,
    .floating_head-inner.is-active .floating_toggle_btn span:nth-of-type(2) {
        top: 15px;
    }
    .mobile-navi {
        font-size: 1.4rem;
    }
    .mobile-navi li.navi_title > a {
        font-size: 2rem;
    }
    .mobile-navi li.navi_title > a span {
        font-size: 1.4rem;
    }
    .mobile-navi ul.sub-menu li a {
        line-height: 6rem;
    }
}
@media print, screen and (min-width: 600px) and (max-width: 999px){
    .mobile_head-inner .logo-box,
    .mobile_head-inner.is-active .logo-box {
        margin-left: calc( 24 * 100% / 1025 );
    }
}
@media print, screen and (min-width: 600px) and (max-width: 999px){
    .toggle_btn,
    .floating_toggle_btn {
        margin-right: calc( 80 * 100% / 1350 );
    }
}
@media print,screen and (max-width: 999px){
    .header-inner {
        display: none;
    }
} */
/* PC */


@media print,screen and (max-width: 1024px){
    .pc-navi {
        display: none;
    }
    .haed-wrap {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        padding-top: 1rem;
        padding-bottom: 1rem;
        margin-left: calc( 20 * 100% / 750 );
        margin-right: calc( 20 * 100% / 750 );
    }
    .header .logo-box {
        display: flex;
        align-items: flex-start;
        width: calc(100% - 3rem);
    }
    .header .logo-box .black-logo {
        display: block;
        width: min(28%, 98px);
        margin-left: 8px;
        margin-top: 4px;
    }
    .header.is_fixed .haed-wrap {
        align-items: center;
    }
    .header.is_fixed .logo-box {
        align-items: center;
    }
    .header.is_fixed .pink-logo {
        width: 5rem;
        height: 5rem;
    }
    /* ハンバーガーメニューデザイン */
    .toggle_btn {
        display: block;
        width: 3rem;
        height: 2.5rem;
        margin-top: 4px;
        color: #BC6499;
        text-align: center;
        position: relative;
        cursor: pointer;
    }
    .toggle_btn span {
        display: block;
        position: absolute;
        transition: all .3s;
    }
    .toggle_btn span:not(:last-of-type) {
        width: 2.4rem;
        height: 2px;
        background-color: #BC6499;
        left: 2px;
    }
    .toggle_btn span:first-of-type {
        top: 0;
    }
    .toggle_btn span:nth-of-type(2) {
        top: 8px;
    }
    .toggle_btn span:last-of-type {
        line-height: 1;
        font-weight: bold;
        bottom: 0;
        left: 0;
    }
}
@media print,screen and (min-width: 1025px){
    .toggle_btn,
    .toggle-inner {
        display: none;
    }
    .haed-wrap {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        margin-right: calc( 100 * 100% / 1500 );
    }
    .logo-box {
        width: 100%;
        position: relative;
    }
    .pink-logo {
        width: 20rem;
        height: 20rem;
    }
    .black-logo {
        width: min(36%, 250px);
        position: absolute;
        top: 23%;
        left: 22.5rem;
    }
    .header.is_fixed .haed-wrap {
        align-items: center;
        margin-left: calc( 20 * 100% / 1500 );
        padding: 1.5rem 0 1rem;
    }
    .header.is_fixed .pink-logo {
        width: 7.3rem;
        height: 7.3rem;
    }
    .header.is_fixed .black-logo {
        top: 50%;
        left: 10rem;
        transform: translateY(-50%);
    }

    .pc-navi {
        display: flex;
        align-items: center;
        padding-top: 2.4rem;
    }
    .pc-navi li {
        position: relative;
        text-align: center;
        cursor: pointer;
        transition: all .3s;
    }
    .pc-navi li:hover {
        color: #ca8fac;
    }
    .pc-navi > li.has-child:not(:last-of-type) {
        margin-right: 4rem;
    }
    .pc-navi .has-child > a {
        font-size: 2.1rem;
        font-weight: bold;
    }
    .pc-navi .has-child > a span {
        display: block;
        font-size: 1.4rem;
        font-weight: normal;
        white-space: nowrap;
    }
    .pc-navi li ul {
        display: block;
    }
    li.has-child ul{
        display: none;
        position: absolute;
        left: -20%;
        top: 7rem;
        z-index: 4;
        background:#F8EFF4;
        padding-top: 1.8rem;
        padding-bottom: 1.8rem;
        z-index: 50;
    }
    li.has-child:last-of-type ul {
        left: -130%;
    }
    li.has-child ul li {
        display: flex;
        align-items: center;
        width: 347px;
        color: #000;
    }
    .pc-navi li ul.sub-menu li a {
        display: flex;
        align-items: center;
        width: 100%;
        font-size: 1.6rem;
        font-weight: normal;
        text-align: left;
        position: relative;
        padding: 5px 0 5px 3.5rem;
    }
    .pc-navi li ul.sub-menu li:not(:last-of-type) a {
        margin-bottom: 1rem;
    }
    .pc-navi li ul.sub-menu li a img {
        display: inline-block;
        margin-right: 2.5rem;
        width: 6rem;
    }
    .pc-navi li ul.sub-menu li a::after {
        content: "";
        -webkit-mask-image: url('../img/common/arrow.svg');
        -webkit-mask-repeat: no-repeat;
        -webkit-mask-position: center;
        -webkit-mask-size: contain;
        display: inline-block;
        width: 2em;
        height: 2em;
        vertical-align: middle;
        background-color: #E0ADC7;
        position: absolute;
        right: 10%;
    }
    .header.is_fixed .pc-navi {
        padding-top: 0;
    }
}
@media print,screen and (min-width: 1400px){
    .black-logo {
        width: 250px;
    }
}

/*====================================================*/
/* フッター */
/*====================================================*/
.foot-wrap {
    margin-left: calc( 48 * 100% / 750 );
    margin-right: calc( 48 * 100% / 750 );
    padding-top: 3.5rem;
    padding-bottom: 1rem;
}
.footer-banner {
    margin-bottom: 3.5rem;
}
.footer-navi {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.footer-navi div:last-of-type {
    margin-top: 3rem;
}
.footer-navi h3 {
    margin-bottom: 1em;
    font-size: 1.2rem;
    font-weight: bold;
    line-height: 1;
    letter-spacing: 0.1em;
}
.footer-navi h3::after {
    content: "";
    display: block;
    width: min(65%, 170px);
    height: 1px;
    margin-top: 0.75em;
    background-color: #000;
}
.footer-navi ul li {
    line-height: 1;
}
.footer-navi ul li:not(:last-of-type) {
    margin-bottom: 1.5em;
}
.footer-navi a {
	transition: all .3s;
}
.footer-navi a:hover {
    color: #ca8fac;
}
.footer-navi address {
    margin: 1em 0;
    line-height: 1.6;
}
.footer-navi address + a {
    text-decoration: underline;
}
.foot-wrap small {
    display: block;
    margin-top: 5.5rem;
    font-size: 1rem;
    text-align: center;
}
@media print,screen and (min-width: 1025px){
    .foot-wrap {
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
        justify-content: space-between;
        margin-left: calc( 100 * 100% / 1500 );
        margin-right: calc( 100 * 100% / 1500 );
        padding-top: 13rem;
        padding-bottom: 1.5rem;
        font-size: 1.2rem;
    }
    .footer-banner {
        width: min(55%, 748px);
        margin-bottom: 0;
        order: 2;
    }
    .footer-navi {
        width: 45%;
        order: 1;
    }
    .footer-navi h3 {
        font-size: 1.4rem;
    }
    .foot-wrap small {
        width: 100%;
        margin-top: 3.5rem;
        font-size: 1.2rem;
        order: 3;
    }
}
@media print,screen and (min-width: 1500px){
    .foot-wrap {
        margin-left: calc( ( 100% - 1300px ) / 2 );
        margin-right: calc( ( 100% - 1300px ) / 2 );
    }
}


/*====================================================*/
/* 共通 */
/*====================================================*/
/* ボタンデザイン */
.btn {
    display: block;
    padding: 1rem 0;
    position: relative;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1;
    cursor: pointer;
    -moz-user-select: none;
    user-select: none;
    transition: all 0.3s;
    overflow: hidden;
    max-width: 100%;
}
.btn span {
    position: relative;
}
.btn:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    height: 100px;
    transition: all 0.5s ease-in-out;
    -webkit-transform: translateX(-100%) translateY(-17%);
    transform: translateX(-100%) translateY(-17%);
    border-radius: 50%;
}
.btn::after {
    content: "";
    -webkit-mask-image: url("../img/common/arrow.svg");
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;
    display: inline-block;
    margin-left: 2.5rem;
    width: 2em;
    height: 2em;
    vertical-align: middle;
}
.btn:hover:before {
    height: 400px;
}
@media print,screen and (min-width: 1025px){
    .btn {
        font-size: 1.6rem;
    }
}

/* 角丸-button */
.btn.round {
    border: 1px solid #fff;
    border-radius: 100px;
}
.btn.round:before {
    background: #BC6499;
}
.btn.round::after {
    background-color: #fff;
}
/* 角丸-button hover */
.btn.round:hover {
    border: 1px solid #BC6499;
}
.btn.round:hover:before {
    width: 100%;  
    transform: translateX(0) translateY(-175px);
}

/* pink-button */
.btn.pink {
    width: 16rem;
    background-color: #BC6499;
    color: #fff;
}
.btn.pink::after {
    background-color: #fff;
}
.btn.pink:before {
    background: #fff;
}
/* pink-button hover */
.btn.pink:hover {
    opacity: 0.6;
}

/* White-button */
.btn.White {
    background-color: #fff;
    color: #CA8FAC;
    border: 1px solid #E0ADC7;
}
.btn.White::after {
    background-color: #E0ADC7;
}
.btn.White:before {
    background: #E0ADC7;
}
/* White-button hover */
.btn.White:hover {
    color: #fff;
    border: 1px solid #E0ADC7;
}
.btn.White:hover:after {
    background-color: #fff;
}
.btn.White:hover:before {
    width: 110%;
    -webkit-transform: translateX(-10px) translateY(-175px);
    transform: translateX(-10px) translateY(-175px);
}


/* 表示切り替え */
@media print,screen and (max-width: 1024px){
    .pc_only {
        display: none;
    }
}
@media print,screen and (min-width: 1025px){
    .sp_only {
        display: none;
    }
}


/*====================================================*/
/* cta */
/*====================================================*/
.content-contact-inner {
    padding-top: 2rem;
    padding-left: calc( 48 * 100% / 750 );
    padding-right: calc( 48 * 100% / 750 );
    padding-bottom: 3rem;
    background-color: #F5F5F5;
}
.content-contact-inner .contents-boxA p {
    margin-bottom: 2rem;
    font-size: 1.4rem;
    font-weight: bold;
}
.content-contact-inner .contents-boxA p span {
    display: inline-block;
}
.content-contact-inner .contents-boxA .flex-box .mail_link {
    color: #CA8FAC;
    font-size: 1.2rem;
    font-weight: bold;
    letter-spacing: 0.09em;
}
.content-contact-inner .contents-boxA .flex-box .mail_link::before {
    content: "\f0e0";
	font-family: "Font Awesome 5 Free";
    font-size: 1.25em;
	font-weight: 900;
    margin-right: 1rem;
}
.content-contact-inner .contents-boxA .flex-box .mail_link span {
    display: inline-block;
    margin-left: 0.5em;
    color: #222;
    font-size: 1rem;
    font-weight: normal;
}
.content-contact-inner .contents-boxA .flex-box .btn.White {
    width: 165px;
    margin: 3rem auto 3.5rem;
}
.content-contact-inner .contents-boxB {
    padding: 2rem 1.3rem;
    background-color: #fff;
    font-size: 1.2rem;
}
.content-contact-inner .contents-boxB p span {
    color: #CA8FAC;
    font-weight: bold;
}
.content-contact-inner .contents-boxB .btn.pink {
    width: 165px;
    margin: 2rem auto 0;
}

@media print,screen and (min-width: 1025px){
    .content-contact-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-right: calc( 100 * 100% / 1500 );
        margin-left: calc( 100 * 100% / 1500 );
        padding: 2rem 2.5rem;
    }
    .content-contact-inner .contents-boxA p {
        font-size: 2rem;
    }
    .content-contact-inner .contents-boxA .flex-box {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
    }
    .content-contact-inner .contents-boxA .flex-box .mail_link,
    .content-contact-inner .contents-boxA .flex-box .mail_link span {
        font-size: 1.6rem;
    }
    .content-contact-inner .contents-boxA .flex-box .btn.White {
        width: 260px;
        margin: 0;
    }
    .content-contact-inner .contents-boxB {
        padding: 1.5rem 4rem;
    }
    .content-contact-inner .contents-boxB .btn.pink {
        width: 282px;
        margin: 1.5rem auto 0;
    }
}
@media print,screen and (min-width: 1500px){
    .content-contact-inner {
        margin-right: auto;
        margin-left: auto;
    }
}



/*====================================================*/
/* アニメーション */
/*====================================================*/
.plural {
    position: absolute;
}
/* はねる */
.btn--bounce.anime {
    animation: bounce-charge var(--bounce-duration) infinite;
}
@keyframes bounce-charge {
    0%   { transform: translateY(0) scaleY(1); }
    10%  { transform: translateY(6px) scaleY(0.9); }  /* ためて下に沈む */
    25%  { transform: translateY(calc( var(--bounce-height) * -1)) scaleY(1.05); animation-timing-function: ease-out; } /* ピョン！ */
    45%  { transform: translateY(0) scaleY(0.95); animation-timing-function: ease-in; } /* 着地でグッとつぶれる */
    60%  { transform: translateY(calc( var(--bounce-height) * -0.4)) scaleY(1.02); } /* 余韻で小ジャンプ */
    80%  { transform: translateY(0) scaleY(1); }
    100% { transform: translateY(0) scaleY(1); }
}

/* くるくる回りながら出現 */
.kurukuru.anime {
    animation: kurukuru 1s ease-out forwards;
}
@keyframes kurukuru {
    0%{
      transform: rotateY(0) translateX(-40px) translate(180px,30px);
    }
    100%{
      transform: rotateY(360deg) translateX(0) translate(0,0);
    }
}

/* ぽよん */
.jello.anime {
    -webkit-animation: jello-horizontal 0.9s infinite;
	animation: jello-horizontal 0.9s infinite;
}
@keyframes jello-horizontal {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
    30% {
        -webkit-transform: scale3d(1.25, 0.75, 1);
        transform: scale3d(1.25, 0.75, 1);
    }
    40% {
        -webkit-transform: scale3d(0.75, 1.25, 1);
        transform: scale3d(0.75, 1.25, 1);
    }
    50% {
        -webkit-transform: scale3d(1.15, 0.85, 1);
        transform: scale3d(1.15, 0.85, 1);
    }
    65% {
        -webkit-transform: scale3d(0.95, 1.05, 1);
        transform: scale3d(0.95, 1.05, 1);
    }
    75% {
        -webkit-transform: scale3d(1.05, 0.95, 1);
        transform: scale3d(1.05, 0.95, 1);
    }
    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}



/*====================================================*/
/* パンくず */
/*====================================================*/
.breadcrumb {
    margin: 1rem 0;
    display: flex;
    align-items: center;
    white-space: nowrap;
    overflow: scroll;
    overflow-y: hidden;
}
.breadcrumb li a {
    display: block;
}
.breadcrumb li {
    display: flex;
    align-items: center;
    letter-spacing: 0.2em;
}
.breadcrumb li:nth-of-type(2) {
    letter-spacing: 0.1em;
}
.breadcrumb li:not(:last-of-type)::after {
    content: "＞";
    display: block;
    margin: 0 1.2rem;
}
.home a {
    width: 1.1rem;
    line-height: 0;
}
.breadcrumb li:last-of-type {
    text-transform: uppercase;
}

@media print,screen and (min-width: 600px){
    .breadcrumb {
        margin: 2rem 0;
    }
    .breadcrumb li {
        font-size: 1.4rem;
    }
    .breadcrumb li:not(:last-of-type)::after {
        margin: 0 3rem;
    }
    .home a {
        width: 1.4rem;
    }
}
@media print,screen and (min-width: 750px){
    .breadcrumb {
        margin-left: 1.5rem;
    }
    .breadcrumb li {
        font-size: 1.6rem;
    }
    .home a {
        width: 1.8rem;
    }
}
@media print,screen and (min-width: 1025px){
    .breadcrumb {
        margin-right: 4rem;
        margin-left: 4rem;
    }
}
