@charset "utf-8";
:root {
    --text_size:16px;
    --main_color:#E56349;
    --bg_color:#F5F5F5;
    --light_color:#E1CEFC;
    --dark_color:#B577F4;
    --darker_color:#7F6AAE;
    --plan_color:#FE7C96;
    --design_color:#B577F4;
    --pr_color:#4FBFC0;
    --accent_color:#E8300F;
    --inner_width:1100px;
}
@media screen and (max-width: 1100px) {
    :root {
        --inner_width:90%;
    }
}
@media screen and (max-width: 800px) {
    :root {
        --text_size:14px;
    }
}

html {
    font-size: var(--text_size);
    font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #333;
    font-weight: 500;
    box-sizing: border-box;
}
body {
    background-color: var(--bg_color);
}
img {
    max-width: 100%;
}
.en {
    font-family: "Figtree", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.inner{
    max-width: var(--inner_width);
    margin: auto;
}
.accent {
    color: var(--main_color);
}
.lineSpan {
    padding-bottom: 1em;
}
.link__btn {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--main_color);
    letter-spacing: 0.1em;
    background-color: #fff;
    border: 1px solid var(--main_color);
    border-radius: 50px;
    padding: 1em 0;
    max-width: 260px;
    overflow: hidden;
    position: relative;
    margin: 30px auto 0;
}
.link__btn span {
    letter-spacing: 0.1em;
    position: relative;
    transition: 0.3s;
}
.link__btn:hover span {
    color: #fff;
}
.link__btn::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: var(--main_color);
    transform: translateX(-100%);
    transition: .3s;
}
.link__btn:hover::before {
    transform: translateX(0);
}
.link__btn::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 20px;
    transform-origin: center;
    transform: scale(1) translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--main_color);
    transition: .3s;
    z-index: 2;
}
.link__btn:hover::after {
    border: 1px solid #fff; 
    width: 24px;
    height: 24px;
}
.link__btn .btn__arrow {
    position: absolute;
    top: 24%;
    right: 20px;
    transform: translateX(-100%);
    width: 24px;
    height: 24px;
    overflow: hidden;
    transition: .3s;
    z-index: 3;
}
.link__btn:hover .btn__arrow {
    transform: translateX(0);
}
.link__read {
    color: var(--main_color);
    position: relative;
    letter-spacing: 0.05em;
    padding-bottom: 5px;
    padding-right: 1.2rem;
    border-bottom: 1px solid var(--main_color);
    transition: .3s;
}
.link__read::after {
    content: "\025b6";
    font-size: 14px;
    transition: .3s;
    position: absolute;
    bottom: 0.01em;
    right: 2px;
}
.link__read:hover {
    opacity: .8;
}
.link__read:hover::after {
    right: 0;
}

/* header
--------------------- */
.header {
    position: relative;
    z-index: 999;
}
.header__contents {
    width: 95%;
    margin: auto;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header__hamburger {
    width: 60px;
    height: 60px;
    background-color: var(--main_color);
    border-radius: 50%;
    position: fixed;
    top: 5px;
    right: 2%;
    z-index: 100;
}
.header__hamburger span {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 22px;
    height: 3px;
    border-radius: 5px;
    background-color: #fff;
    transition: .35s ease-in-out;
}
.header__hamburger span:nth-of-type(1) {
    top: 35%;
}
.header__hamburger span:nth-of-type(2) {
    top: 50%;
}
.header__hamburger span:nth-of-type(3) {
    top: 65%;
}
.is-open .header__hamburger span:nth-of-type(1) {
    top: 45%;
    transform: translateX(-50%) rotate(45deg);
}
.is-open .header__hamburger span:nth-of-type(2) {
    width: 0;
	left: 50%;
}
.is-open .header__hamburger span:nth-of-type(3) {
    top: 45%;
    transform: translateX(-50%) rotate(-45deg);
}
@media screen and (max-width: 600px) {
    .header__contents h1 a img {
        height: 28px;
        width: auto;
    }
    .header__hamburger {
        width: 50px;
        height: 50px;
    }
}

/* nav
--------------------- */
.nav {
    position: fixed;
	right: -400px;
	font-size: 20px;
    letter-spacing: 0.1em;
	width: 400px;
	height: 100%;
	display: flex;
	align-items: center;
    z-index: 10;
}
.nav ul {
    padding-top: 300px;
}
.nav li {
    padding-left: 1.2em;
    color: var(--darker_color);
	transition: transform .5s ease;
	transition-delay: 0;
    line-height: 2.5;
    position: relative;
}
.nav li:hover::before {
    content: "\025b6";
    font-size: 14px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.nav li:nth-child(2) {
	transition-delay: .1s;
}
.nav li:nth-child(3) {
	transition-delay: .2s;
}
.nav li:nth-child(4) {
	transition-delay: .3s;
}
.nav__bg {
	position: fixed;
    z-index: 1;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    right: -600px;
    top: -600px;
    bottom: initial;
    background: rgba(255, 255, 255, 0.86);
    image-rendering: -webkit-optimize-contrast;
    transition: .8s;
}
.is-open .nav__bg {
	translate: none;
    rotate: none;
    scale: none;
    transform: translate(-58%, -50%);
    right: 100px;
    top: 0;
}
.is-open .nav li {
	transform: translateX(-400px);
}
.is-open .nav li:nth-child(1) {
	transition-delay: .3s;
}
.is-open .nav li:nth-child(2) {
	transition-delay: .4s;
}
.is-open .nav li:nth-child(3) {
	transition-delay: .5s;
}
.is-open .nav li:nth-child(4) {
	transition-delay: .6s;
}
.is-open .nav li:nth-child(5) {
	transition-delay: .8s;
}
.is-open .nav__bg {
	transform: matrix(2.7, 0, 0, 2.7, 0, 0);
	transition-delay: 0s;
}
@media screen and (max-width: 600px) {
    .nav__bg {
        width: 600px;
        height: 600px;
    }
    .is-open .nav li {
        transform: translateX(-300px);
    }
}

/* footer
--------------------- */
.footer {
    margin-top: 80px;
}
.footer__links {
    display: flex;
    justify-content: center;
}
.footer__btn {
    width: 168px;
    height: 168px;
    text-align: center;
    background-color: #fff;
    border: 1px solid var(--dark_color);
    border-radius: 50%;
    padding: 30px 0 0;
    transition: .3s;
}
.footer__btn:hover {
    background-color: var(--light_color);
}
.footer__btn:first-of-type .footer__btn__txt {
    margin-top: 1.1em;
    line-height: 1.5;
}
.footer__btn:not(:first-of-type) {
    margin-left: 30px;
}
.footer__btn__txt {
    font-size: 18px;
    color: var(--darker_color);
    margin-top: 1em;
    font-weight: 600;
}
.footer__btn__txt span {
    font-size: 11px;
    font-weight: 500;
    line-height: 1;
}
.footer__lead {
    font-weight: 600;
    line-height: 1.7;
    text-align: center;
    letter-spacing: 0.1em;
    margin-top: 30px;
}
.footer__bottom {
    margin-top: 30px;
    padding: 20px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    font-size: 12px;
    font-weight: 400;
}
.footer__logo {
    display: flex;
    align-items: end;
}
.footer__logo p {
    padding-left: 20px;
}
.footer__copy {
    text-align: right;
}
.footer__copy a {
    color: var(--main_color);
}
@media screen and (max-width: 600px) {
    .footer {
        margin-top: 60px;
    }
    .footer__btn {
        width: 150px;
        height: 150px;
    }
    .footer__btn:not(:first-of-type) {
        margin-left: 10px;
    }
    .footer__btn__txt {
        font-size: 16px;
        line-height: 1;
    }
    .footer__bottom {
        padding: 10px;
    }
    .footer__logo img {
        height: 28px;
        width: auto;
        max-width: 120px;
    }
    .footer__bottom {
        flex-wrap: wrap;
        justify-content: flex-start;
    }
    .footer__copy {
        text-align: left;
        margin-top: 10px;
    }
}

/* 下層ページ
--------------------- */
.sub__mainttl {
    width: 90%;
    max-width: 800px;
    margin: 40px auto 0;
    padding: 30px 15px;
    text-align: center;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 20px;
    color: var(--main_color);
    letter-spacing: 0.1em;
    font-weight: 600;
}
.sub__mainttl h2 {
    font-size: 60px;
}
.sub__mainttl p {
    font-size: 18px;
    margin-top: 1em;
}
.sub__subttl {
    text-align: center;
    letter-spacing: 0.1em;
    margin-bottom: 30px;
}
.sub__subttl .en {
    font-size: 14px;
    font-weight: 600;
    color: var(--main_color);
    margin-bottom: 10px;
}
.sub__subttl h3 {
    font-size: 24px;
}
.sub__box {
    width: var(--inner_width);
    margin: 80px auto;
    background-color: #fff;
    padding: 60px;
}
@media screen and (max-width: 800px) {
    .sub__mainttl {
        padding: 20px 10px;
    }
    .sub__mainttl h2 {
        font-size: 40px;
    }
    .sub__mainttl p {
        font-size: 16px;
        margin-top: 0.8em;
    }
    .sub__box {
        margin: 40px auto;
        padding: 30px;
    }
}
@media screen and (max-width: 400px) {
    .sub__mainttl {
        padding: 15px 10px;
    }
    .sub__mainttl h2 {
        font-size: 30px;
    }
    .sub__mainttl p {
        font-size: 14px;
    }
    .sub__box {
        margin: 30px auto;
        padding: 20px;
    }
    .sub__subttl .en {
        font-size: 12px;
        margin-bottom: 5px;
    }
    .sub__subttl h3 {
        font-size: 20px;
    }
}

.breadcrumbs {
    width: 90%;
    max-width: 800px;
    margin: 10px auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.breadcrumbs li {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.1em;
    position: relative;
}
.breadcrumbs li:not(:first-of-type) {
    padding-left: 20px;
    margin-left: 40px;
}
.breadcrumbs li a {
    color: var(--main_color);
}
.breadcrumbs li:not(:first-of-type)::before {
    content: "";
    width: 20px;
    height: 1px;
    background-color: #ccc;
    position: absolute;
    top: 50%;
    left: -20px;
    transform: translateY(-50%);
}
@media screen and (max-width: 800px) {
    .breadcrumbs li {
        font-size: 12px;
    }
}


/* スライド */
.swiper-button-next, .swiper-button-prev {
  width: 40px; /* 矢印幅 */
  height: 40px; /* 矢印高さ */
  top: 100%;
}
@media screen and (max-width: 1200px) {
    .swiper-button-next, .swiper-button-prev {
        width: 30px;
        height: 30px;
    }
}
.swiper-button-next {
    left: 55%;
    transform: translateX(-55%);
}
.swiper-button-prev {
    left: 45%;
    transform: translateX(-45%);
}
@media screen and (max-width: 600px) {
    .swiper-button-next, .swiper-button-prev {
        top: 105%;
    }
    .swiper-button-next {
        left: 60%;
    }
    .swiper-button-prev {
        left: 40%;
    }
}
.swiper-button-next svg, .swiper-button-prev svg {
  width: 40px; /* 矢印幅 */
  height: 40px; /* 矢印高さ */  
  transition: 0.2s;
}
.swiper-button-next svg:hover, .swiper-button-prev svg:hover {
  opacity: 0.7; /* ボタンホバー時 */
}
.swiper-button-prev svg {
  transform: rotate(180deg); /* ボタンを反転（prev用） */
}
.swiper-button-prev::after, .swiper-rtl .swiper-button-next::after {
  content: ''; /* デフォルトの矢印を削除 */
}
.swiper-button-next::after, .swiper-rtl .swiper-button-prev::after {
  content: ''; /* デフォルトの矢印を削除 */
}
.slide-invisible {
    opacity: 0;
}
.swiper .swiper-slide {
	height: auto;
}
.swiper .swiper-slide-item {
	height: 100%;
}

