@charset "UTF-8";

/* ------------------------------------------- */
/* root */
/* ------------------------------------------- */
:root {
	--default-text-color: #000;
}

/* --------------------------------------------------------------- */
/* reset start */
/* --------------------------------------------------------------- */
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	background: transparent;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
video {
	display: block;
}

ul,
li,
ol,
dl {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: "";
	content: none;
}

a {
	display: inline-block;
	margin: 0;
	padding: 0;
	text-decoration: none;
	transition: 0.2s;
}
@media (hover: hover) and (pointer: fine) {
	a:hover {
		text-decoration: none;
		opacity: 0.8;
	}
}

del {
	text-decoration: line-through;
}

abbr[title],
dfn[title] {
	border-bottom: 0.1rem dotted;
	cursor: help;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

*,
*:after,
*:before {
	-webkit-appearance: none;
	word-break: break-all;
	box-sizing: border-box;
}

video{
	filter:contrast(1);
}

/* --------------------------------------------------------------- */
/* reset end */
/* --------------------------------------------------------------- */


/* タブレット(1081px以上)のみ非表示 */
@media screen and (min-width: 1081px) {
	.tab-off {
		display: none !important;
	}
}
/* PC(768px以上)のみ非表示 */
@media screen and (min-width: 768px) {
	.pc-off {
		display: none !important;
	}
}
/* スマホのみ非表示 */
@media screen and (max-width: 767px) {
	.sp-off {
		display: none !important;
	}
}

@media screen and (max-width: 767px) {
	a[href^="tel:"] {
		color: var(--default-text-color);
	}
}
@media screen and (min-width: 768px) {
	a[href^="tel:"] {
		pointer-events: none;
		text-decoration: none;
	}
}

html {
	font-size: 62.5%;
	letter-spacing: 0.05em;
	font-family: "Noto Sans JP", sans-serif;
	-webkit-text-size-adjust: none;
	scroll-behavior: smooth;
    /* overflow-x: hidden; */

	@media screen and (min-width: 1081px) and (max-width: 1919px) {
		font-size: calc(10 / 1919 * 100 * 1vw);
	}

	/* あまりにも文字サイズが小さくなった場合 */
	@media screen and (min-width: 768px) and (max-width: 1080px) {
		font-size: calc(12 / 1920 * 100 * 1vw);
	}

	/* スマホ用（デザインサイズが375の場合） */
	@media screen and (max-width: 767px) {
		font-size: calc(10 / 375 * 100 * 1vw);
        overflow-x: hidden;
	}

}

body {
	font-size: 1.6rem;
	letter-spacing: 0.1rem;
	line-height: 1;
	overflow-x: hidden;

	@media screen and (max-width: 767px) {
		font-size: 1.4rem;
	}
}
img {
	max-width: 100%;
	height: auto;
	vertical-align: top;
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;

	@media screen and (max-width: 767px) {
		/* スマホ画像長押し禁止対策 */
		pointer-events: none;
	}
}

a {
	color: var(--default-text-color);
}


/* ------------------------------------------- */
/* inner config */
/* ------------------------------------------- */
.inner {
	position: relative;
	z-index: 1;
	margin: 0 auto;

	@media screen and (max-width: 767px) {
		width: calc(100% - 3rem);
	}
}

.w800 {
	max-width: 80rem;
}
.w960 {
	max-width: 96rem;
}
.w806 {
	max-width: 80.6rem;
}
.w1080 {
	max-width: 108rem;
}
.w1200 {
	max-width: 120rem;
}
.w1278 {
	max-width: 127.8rem;
}
.w1280 {
	max-width: 128rem;
}
.w1408 {
    max-width: 140.8rem;
}
.w1440 {
	max-width: 144rem;
}
.w1446 {
    max-width: 144.6rem;
}
.w1695 {
    max-width: 169.5rem;
}
.w1820 {
	max-width: 182rem;
}
.w1920 {
    max-width: 192rem;
}
.w1281 {
	max-width: 128.1rem;
}


/* ------------------------------------------- */
/* YOSHINOYA */
/* ------------------------------------------- */



/* ------------------------------------------- */
/* header*/
/* ------------------------------------------- */

header {
    padding-top: 1.5rem;
    padding-left: 3rem;
    padding-right: 0;
    display: flex;
    justify-content: space-between;
    /* align-items: center; */
    position: fixed;
    /* width: 192rem; */
    width: 100%;
    z-index: 18;
    transition: all 0.2s ease;
    padding-bottom: 2rem;
    @media screen and (max-width: 767px) {
        padding-left: 1rem;
        transition: 0.3s ease-in-out;
        padding-top: 0;
    }
}

header.header-scrolled {
    background-color: #ffffff80;
    @media screen and (max-width: 767px) {
        background-color: transparent;
    }
}

header.open {
    background-color: white;
}

.logo-container {
    width: 38.9rem;
    padding-top: 1.5rem;
    display: block;
    @media screen and (max-width: 767px) {
        width: 14rem;
        padding-top: 0.5rem;
    }
}

.header-link-container {
    display: flex;
    gap: 6rem;
    /* padding-top: 3.4rem; */
    @media screen and (max-width: 1080px) {
      gap: 3rem;
    }
    @media screen and (max-width: 767px) {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 10rem;
        right: -100rem;
        width: 100%;
        background-color: #FFFFFF;
        padding: 2rem 0;
        z-index: 10;
        transition: 0.1s ease-in-out;

    }
}

.header-link-container a {
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
    font-style: normal;
    font-weight: 900;
    font-size: 1.8rem;
    text-align: center;
    letter-spacing: 0.1em;
    color: #FFFFFF;
    @media screen and (max-width: 767px) {
        line-height: 4rem;
        color: #000;
        font-weight: 700;
    }
}

.header-link-container a::before {
    content: "";
    position: absolute;
    bottom: -2rem;
    left: 0;
    width: 0;
    height: 0.2rem;
    background-color: #000000;
    transition: width 0.5s ease-in-out;
}

.header-link-container a:hover::before {
    width: 100%;
}

.header-link-container a:hover {
    color: #ff6600;
}

.header-scrolled .header-link-container a {
    color: #000;
}

.link-and-btn-header-container {
    display: flex;
    gap: 6.7rem;
    align-items: center;
    @media screen and (max-width: 767px) {
        
    }
}

.header-button-container {
    display: flex;
    align-items: center;
    padding-right: 4.2rem;
    @media screen and (max-width: 767px) {
        padding-right: 0;
    }
}

.header-button-entry {
    background-color: #F18200;
    border-radius: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 26rem;
    height: 5.5rem;
    transition: 0.4s ease-in-out;
    @media screen and (max-width: 767px) {
        padding: 0;
        height: 5.4rem;
        /* padding-top: 1.7rem; */
        width: 11rem;
        border-radius: 0;
    }
}
.header-btn-txt {
    font-style: normal;
    font-weight: 700;
    font-size: 1.8rem;
    line-height: 5.5rem;
    letter-spacing: 0.07em;
    color: #FFFFFF;
    padding: 1.5rem 0 1.7rem;
}

.button-header-mid-title {
    font-style: normal;
    font-weight: 900;
    font-size: 2rem;
    text-align: center;
    letter-spacing: 0.02em;
    color: #FFFFFF;
    transition: 0.4s ease-in-out;
    @media screen and (max-width: 767px) {
        font-size: 1rem;
    }
}

.header-button-entry:hover {
	background-color: white;
    opacity: 1;
}

.header-button-entry:hover .button-header-mid-title  {
	color: #F18200;
}

.arrow-header-container {
    width: 1.4rem;
    height: 1.2rem;
    transition: 0.6s ease-in-out;
}

.nav-button-sp {
    display: none;
    transition: 0.3s ease-in-out;
    @media screen and (max-width: 767px) {
        width: 6rem;
        height: 5.4rem;
        position: relative;
        z-index: 20;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #785A37;
    }
}

.nav-button {
    display: none;
    @media screen and (max-width: 767px) {
        display: block;
        width: 1.8rem;
        height: 0.1rem;
        position: relative;
        z-index: 20;
        background-color: white;
        border-radius: 0.5rem;

    }
}

.nav-button::before,
.nav-button::after {
    content: "";
    position: absolute;
    background: white;
    transition: all 0.3s ease;
    top: -0.6rem;
    left: 0;
    right: 0;
    width: 1.8rem;
    height: 0.1rem;
    border-radius: 0.5rem;

}

.nav-button::after {
    top: 0.6rem;
}
@media screen and (max-width: 767px) {
    header.open .header-link-container {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 10rem;
        right: 0;
        width: 100%;
        background-color: #FFFFFF;
        padding: 2rem 0;
        z-index: 10;
    }

    .nav-button-sp.active {
        background-color: #FFFFFF;

    }
    .nav-button.open {
        background-color: transparent;
    }
    .nav-button.open::before {
        transform: rotate(45deg);
        top: 0;
        background-color: #785A37;
        height: 0.2rem;
    }
    .nav-button.open::after {
        transform: rotate(-45deg);
        top: 0;
        background-color: #785A37;
        height: 0.2rem;
    }
}

.no-scroll {
    overflow: hidden !important;
    height: 100vh;
    touch-action: none;
}

.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #fff;
    opacity: 1;
    z-index: 17; /* doit être juste sous le header (header z-index: 18) */
    transition: opacity 0.6s;
    pointer-events: none;
}
header.open + .menu-overlay {
    display: block;
    pointer-events: auto;
}

/* ------------------------------------------- */
/* content */
/* ------------------------------------------- */

.top-fv {
    position: relative;
}

.top-fv-textes {
    position: absolute;
    top: 22.6rem;
    left: 22rem;
    display: flex;
    flex-direction: column;
    row-gap: 0;
    z-index: 3;
    @media screen and (max-width: 767px) {
        top: inherit;
        row-gap: 1.8rem;
        position: relative;
        left: inherit;
        width: 100%;;
    }
}

.bottom-fv-text {
    position: absolute;
    bottom: 23.9rem;
    left: 24.2rem;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 600;
    font-size: 2.4rem;
    letter-spacing: 0.04em;
    color: black;
    z-index: 3;
    @media screen and (max-width: 1080px) {
        bottom: 8.9rem;
    }
    @media screen and (max-width: 767px) {
        font-size: 1.2rem;
        white-space: nowrap;
        position: inherit;
        margin-top: 2.2rem;
        width: 100%;
    }
}

.top-fv-textes .txt-fv-cotnainer-white {
    font-style: normal;
    font-weight: 700;
    font-size: 10.8rem;
    /* line-height: 10.3rem; */
    letter-spacing: -0.01em;
    color: #000000;
    /* background-color: white; */
    padding-left: 1.5rem;
    line-height: 12.8rem;
    @media screen and (max-width: 767px) {
        font-size: 4.8rem;
        line-height: 5.7rem;
        padding-left: 0.5rem;
        padding-bottom: 0.6rem;
        padding-top: 0;
    }
}

.top-fv-textes .txt-fv-cotnainer-white span {
    color: #F18200;
}

.txt-fv-cotnainer-white-top {
    max-width: 92rem;
    padding-top: 0;
    padding-bottom: 1.3rem;
    padding-right: 1rem;
    line-height: 6.3rem;
    @media screen and (max-width: 767px) {
        max-width: inherit;
        padding-right: 0;
    }
}

.txt-fv-cotnainer-white-bottom {
    line-height: 6rem;
    display: flex;
    align-items: center;
    /* justify-content: center; */
    width: 67.1rem;
    transform: translateY(-1.4rem);
    @media screen and (max-width: 767px) {
        width: fit-content;
        height: 4rem;
    }
}

@media screen and (max-width: 767px) {
    .top-fv {
        /* overflow: hidden; */
        padding-bottom: 0;
    }      
}

.top-fv-container {
    width: 100%;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    /* padding-top: 14.2rem; */
}


.slick-fv-container {
  position: relative;
  overflow: hidden;
}

.bottom-fv-scroll-container {
    display: flex;
    position: absolute;
    bottom: 6rem;
    right: 8rem;
    border-bottom: 2px solid white;
    padding-bottom: 0.8rem;
    align-items: center;
    gap: 1rem;
    z-index: 3;
    @media screen and (max-width: 767px) {
        bottom: 2rem;
        right: 1rem;
        gap: 0.3rem;
        display: none;
    }
}

.scroll-text-bottom {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    font-size: 2rem;
    /* line-height: 56px; */
    letter-spacing: 0.06em;
    color: #FFFFFF;
    @media screen and (max-width: 767px) {
        font-size: 0.9rem;
    }
}

.scroll-icon-container {
    width: 1.4rem;
    height: 1rem;
    animation: bounce 2s infinite;
    @media screen and (max-width: 767px) {
        width: 0.8rem;
        height: 0.6rem;
        animation: bounce-sp 1.5s infinite;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(-0.6rem);
    }
    50% {
        transform: translateY(0.6rem);
    }
}

@keyframes bounce-sp {
    0%, 100% {
        transform: translateY(-0.3rem);
    }
    50% {
        transform: translateY(0.3rem);
    }
}

/* .slick-fv-container .slick-slide {
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 0.8s cubic-bezier(.7, 0, .3, 1),
              transform 1s cubic-bezier(.7, 0, .3, 1);
  z-index: 1;
}

.slick-fv-container .slick-slide.is-next {
  opacity: 1;
  transform: scale(1.05);
  z-index: 2;
}

.slick-fv-container .slick-slide.is-current {
  opacity: 1;
  transform: translateX(-2%) scale(1); /* effet de glissement gauche + zoom-out 
  z-index: 3;
} */


.top-fv-container img {
    /* width: 180rem !important; */
    z-index: 1;
}

@media screen and (max-width: 767px) {
    .top-fv-container {
        padding-top: 5.4rem;
    }     
}

/* Ajoute à la fin du fichier ou dans la section content */
.slick-fv-container {
    width: 100%;
    margin: 0 auto;
}

.slick-fv-container .slick-slide img {
    width: 100%;
    display: block;
}
.slick-fv-container .slick-slide {
    text-align: center;
}
@media screen and (max-width: 1080px) {
    .slick-fv-container {
        width: 100vw;
    }      
}
@media (max-width: 767px) {
    .slick-fv-container {
        width: 100%;
    }
}

/* .top-fv-container::after {
    position: absolute;
    content: "";
    background: url(./img/bk-icon01.png) no-repeat;
    width: 131.3rem;
    height: 68.5rem;
    bottom: -45rem;
    right: -31rem;
    background-size: 100%;
    z-index: 0;
    transform: rotate(6deg);
} */

.web-wrapper {
    position: relative;
}

.web-wrapper::after {
    content: "";
    position: fixed;
    background: url(./img/top-bk.png) no-repeat;
    /* width: 202.6rem; */
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0rem;
    z-index: 0;
    background-size: 100%;
    opacity: 0.5;
    cursor: unset;
    pointer-events: none;
}

@media screen and (max-width: 767px) {
    .web-wrapper::after {
        width: 100%;
        height: 100%;
        background-size: cover;
    }
}



/* about */

.about {
    position: relative;
    background-color: #FFF7E9;
    padding-bottom: 14.1rem;
    @media screen and (max-width: 767px) {
        padding-bottom: 5rem;
    }
}

/* .about::before {
    content: "";
    position: absolute;
    background: url(./img/bk-icon03.png) no-repeat;
    width: 220.4rem;
    height: 233.6rem;
    top: -44rem;
    right: -19rem;
    background-size: 100%;
} */

.about-container {
    display: flex;
    justify-content: space-between;
    padding-top: 11.2rem;
    @media screen and (max-width: 767px) {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        padding-top: 3.2rem;
    }
}

.title-about-message {
    font-style: normal;
    font-weight: 700;
    font-size: 4.4rem;
    line-height: 6rem;
    letter-spacing: -0.01em;
    margin-bottom: 4.3rem;
    margin-top: 5.8rem;
    @media screen and (max-width: 767px) {
            font-weight: 800;
            font-size: 3REM;
            line-height: 4REM;
            margin-bottom: 3rem;
            margin-top: 1.5rem;
    }
}

.orange-txt {
    color: #F08300;
    display: inline-block;
}

.orange-bk-txt {
    background-color: #F08300;
    display: inline;
}

.msg-img-container {
    width: 64rem;
    height: 81rem;
    @media screen and (max-width: 767px) {
        width: 100%;
        height: auto;
        margin-top: 3rem;
        margin-bottom: 4rem;
    }
}

.about .paragraph-center {
    clip-path: inset(0 100% 0 0);
    transition: 1.4s cubic-bezier(0.37, 0, 0.63, 1);
    transition-property: clip-path;
    max-width: 68.9rem;
    padding-top: 1rem;
    @media screen and (max-width: 767px) {
        padding-top: 0;
    }
}

.about .paragraph-center.is-animated {
  clip-path: inset(0);
}

.paragraph-center p {
    width: 100%;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    will-change: opacity, transform;
    font-style: normal;
    font-weight: 500;
    font-size: 1.8rem;
    line-height: 3.9rem;
    letter-spacing: 0.01em;
    color: #000000;
    @media screen and (max-width: 767px) {
        font-size: 1.6rem;
        line-height: 2.6rem;
    }
}

.paragraph-center p.is-visible {
    opacity: 1;
    transform: translateX(0);
}

@media screen and (max-width: 767px) {
    .paragraph-img-container-sp {
        position: relative;
        width: 34.4rem;
        height: 25.6rem;
        margin-top: 2.8rem;
        margin-bottom: 2rem;
    }
    .paragraph-img-solo-container-sp {
        width: 28.2rem;
        margin-top: 4rem;
        margin-bottom: 2rem;
    }
    .paragraph-img-position-up {
        position: absolute;
        top: 0rem;
        left: 1rem;
        margin: auto;
        width: 20.3rem;
        height: 15.2rem;
        z-index: 1;
    }
    .paragraph-img-position-down {
        position: absolute;
        bottom: 0rem;
        right: 0rem;
        margin: auto;
        width: 20.3rem;
        height: 15.2rem;
    }
}

.pic-right-container {
    position: relative;
    width: 51.4rem;
    height: 38.4rem;
    @media screen and (max-width: 1080px) {
      width: 40rem;
    }
    @media screen and (max-width: 767px) {
        width: 13rem;
    }
}

.pic-right-container img {
    position: absolute;
    bottom: -20rem;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    @media screen and (max-width: 767px) {
        bottom: -11rem;
        left: 0rem;
    }
}




.about .pic-left-container,
.about .pic-right-container {
    position: sticky;
    top: 10vh; 
    align-self: flex-start;
    height: 74.4rem;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    @media screen and (max-width: 767px) {
        height: 9.4rem;
        
    }
}
.about .pic-left-container img,
.about .pic-right-container img {
    position: relative;
    width: 100%;
    height: auto;
}

.about-container img.fade {
    opacity: 0;
    transition: opacity 0.4s;
}
.about-container img {
    transition: opacity 0.4s;
}

/* .underline-orange::before {
    content: "";
    position: absolute;
    background: url(./img/underline-orange.png) no-repeat;
    width: 32.2rem;
    height: 1.6rem;
    bottom: 1rem;
    left: 0;
    right: 0;
    margin: auto;
    background-size: 100%;
} */

/* attractive */

.attractive {
    position: relative;
    background-color: #F08300;
    scroll-margin-top: 20rem;
    padding-bottom: 10rem;
    padding-top: 10rem;
    @media screen and (max-width: 767px) {
        margin-top: 0;
        padding-bottom: 7rem;
        scroll-margin-top: 10rem;
        padding-top: 5rem;
    }

}

.common-up-title-white-bk {
    width: fit-content;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 900;
    font-size: 4.4rem;
    line-height: 3.4rem;
    text-align: center;
    color: #F08300;
    margin: 0 auto 2rem;
    padding: 0 1rem;
    background-color: white;
    transform: translateX(-6rem);
    opacity: 0;
    transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease-out;
    will-change: transform, opacity;
    &.is-visible {
        transform: translateX(0);
        opacity: 1;
    }
    @media screen and (max-width: 767px) {
        font-size: 3rem;
        margin: 0 auto;
        line-height: 2.1rem;
    }
}

.common-up-title-white-bk-why-us {
    line-height: 3rem;
    @media screen and (max-width: 1050px) {
        line-height: 2.9rem;
    }
    @media screen and (max-width: 767px) {
        line-height: 2rem;
    }
}

.attractive-title-container {
    margin-top: 3.8rem;
    display: flex;
    justify-content: center;
    transform: scale(0.65);
    opacity: 0;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease-out;
    will-change: transform, opacity;
    align-items: center;
    &.is-visible {
        transform: scale(1);
        opacity: 1;
        animation: bounceIn 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    }
    @media screen and (max-width: 767px) {
        align-items: center;
        padding-top: 0;
        margin-top: 1.6rem;
    }
}

.attractive-title-container p {
    font-style: normal;
    font-weight: 700;
    font-size: 5.2rem;
    /* line-height: 3.4rem; */
    text-align: center;
    letter-spacing: 0.06em;
    color: rgb(0, 0, 0);
    @media screen and (max-width: 767px) {
        padding-left: 0;
        /* line-height: 3rem; */
        font-size: 2.6rem;
    }
}

.attractive-title-number {
    font-family: 'Roboto' !important;
    font-style: italic !important;
    font-weight: 700 !important;
    font-size: 11.2rem !important;
    /* line-height: 38px; */
    letter-spacing: -0.01em !important;
    color: #000000;
    transform: translateX(-0.6rem) translateY(-0.6rem);
    @media screen and (max-width: 767px) {
        font-size: 5.6rem !important;
        transform: inherit;
    }
}

.flex-container-attractive {
    display: flex;
    justify-content: space-between;
    height: auto;
    margin-top: 7rem;
    padding-bottom: 3rem;
    /* transform: translateX(1.6rem); */
    @media screen and (max-width: 767px) {
        flex-direction: column;
        align-items: center;
        height: auto;
        padding-bottom: 0;
        margin-top: 3rem;
        gap: 2rem;
    }
}

.attractive-box-container {
    position: relative;
    height: 66.8rem;
    width: 42.4rem;
    background-color: white;
    border-radius: 0.8rem;
    clip-path: polygon(9rem 0%, 100% 0%, 100% 100%, 0% 100%, 0% 9rem);
    transform: scale(0.65);
    opacity: 0;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease-out;
    will-change: transform, opacity;
    padding-top: 21.5rem;
    &.is-visible {
        transform: scale(1);
        opacity: 1;
    }
    @media screen and (max-width: 767px) {
        width: 100%;
        height: auto;
        padding-bottom: 0rem;
        margin-bottom: 2rem;
        padding-left: 3.9rem;
        padding-right: 3.2rem;
        /* height: 41.1rem;     */
        padding-top: 13.9rem;
    }
}


.why-us-icon01 {
    position: absolute;
    width: 8rem;
    top: 6rem;
    left: 0;
    right: 0;
    margin: auto;
    @media screen and (max-width: 767px) {
        width: 5rem;
        top: 5rem;
    }
}

.why-us-icon02 {
    position: absolute;
    width: 11.7rem;
    top: 6rem;
    left: 0;
    right: 0;
    margin: auto;
    @media screen and (max-width: 767px) {
        width: 7rem;
        top: 5rem;
    }
}

.why-us-icon03 {
    position: absolute;
    width: 15.5rem;
    top: 7rem;
    left: 0;
    right: 0;
    margin: auto;
    @media screen and (max-width: 767px) {
        width: 8.5rem;
        top: 6rem;
    }
}

.why-us-icon04 {
    position: absolute;
    width: 11.2rem;
    top: 8.7rem;
    left: -1rem;
    right: 0;
    margin: auto;
    @media screen and (max-width: 767px) {
        width: 7rem;
        top: 7rem;
        left: 0rem;
    }
}

.why-us-icon05 {
    position: absolute;
    width: 11.5rem;
    top: 5.5rem;
    left: 5rem;
    right: 0;
    margin: auto;
    @media screen and (max-width: 767px) {
        width: 6rem;
        top: 6rem;
        left: 1rem; 
    }
}

.why-us-icon06 {
    position: absolute;
    width: 12.8rem;
    top: 8rem;
    left: 0;
    right: 0;
    margin: auto;
    @media screen and (max-width: 767px) {
        width: 7rem;
        top: 6rem;
    }
}


.attractive-number-container {
    margin: 5.3rem auto 0;
    width: 6.8rem;
    position: relative;
    @media screen and (max-width: 767px) {
        margin: 3.2rem auto 0;
        width: 4.3rem;
    }
}

.number-wrapper {
    position: relative;
}

.number-absolute {
    position: absolute;
    width: fit-content;
    height: auto;
    top: -4rem;
    left: 1rem;
    transform: translateX(-50%);
    background-size: 100%;
    font-family: 'Roboto';
    font-style: italic;
    font-weight: 700;
    font-size: 10.4rem;
    /* line-height: 38px; */
    letter-spacing: -0.01em;
    color: #FFFFFF;
    @media screen and (max-width: 767px) {
        top: 0rem;
        left: 6%;
        font-size: 6rem;
    }
}

/* .attractive-number-container::before {
    content: attr(data-attribute);
    position: absolute;
    width: fit-content;
    height: auto;
    top: -6rem;
    left: 50%;
    transform: translateX(-50%);
    background-size: 100%;
    font-family: 'Roboto';
    font-style: italic;
    font-weight: 700;
    font-size: 10.4rem;
    /* line-height: 38px; 
    letter-spacing: -0.01em;
    color: #FFFFFF;
} */

.attractive-img-box-container {
    width: 12.3rem;
    margin: 0 auto;
    padding-top: 7.2rem;
    @media screen and (max-width: 767px) {
        width: fit-content;
        padding-top: 4.2rem;
    }
}

.attractive-box-txt-container {
    width: 33.5rem;
    margin: 0 auto;
    @media screen and (max-width: 767px) {
        max-width: 26.4rem;
    }
}

.attractive-box-txt-container h3 {
    letter-spacing: 0.02em;
    margin-bottom: 2.3rem;
    /* margin-top: 4.6rem; */
    position: relative;
    font-style: normal;
    font-weight: 700;
    font-size: 2.4rem;
    line-height: 3.5rem;
    text-align: center;
    color: #000000;
    @media screen and (max-width: 767px) {
        font-size: 1.9rem;
        line-height: 2.8rem;
        margin-bottom: 1.5rem;
        margin-top: 1.5rem;
    }
}
.attractive-box-txt-container p {
    font-style: normal;
    font-weight: 400;
    font-size: 1.8rem;
    line-height: 3rem;
    letter-spacing: -0.01em;
    color: #000000;
    @media screen and (max-width: 767px) {
        font-size: 1.6rem;
        line-height: 2.8rem;
        padding-bottom: 3.4rem;
    }
}

.box-mt4 {
    margin-top: 4rem;
    @media screen and (max-width: 767px) {
        margin-top: 0;
    }
}

.flex-container-attractive-second {
    margin-top: 4rem;
    @media screen and (max-width: 767px) {
        margin-top: 2rem;
    }
}

.width368 {
    width: 36.8rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    @media screen and (max-width: 767px) {
        width: 100%;
    }
}

.max-width32 {
    max-width: 32rem;
}

/* data */

.data {
    background-color: #EBDABE;
    position: relative;
    padding-bottom: 7rem;
    /* z-index: 2; */
    scroll-margin-top: 26rem;
    padding-top: 9.5rem;
    @media screen and (max-width: 767px) {
        scroll-margin-top: 8rem;
        padding-top: 4rem;
    }
}

.data-title-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
    transform: scale(0.65);
    opacity: 0;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease-out;
    will-change: transform, opacity;
    &.is-visible {
        transform: scale(1);
        opacity: 1;
        animation: bounceIn 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    }
    @media screen and (max-width: 767px) {
        margin-bottom: 0rem;
        padding-top: 1.6rem;
        flex-direction: column;
    }
}

/* .data-title-container::before {
    content: "";
    position: absolute;
    background: url(./img/data-icon.png) no-repeat;
    width: 22.1rem;
    height: 9rem;
    background-size: 100%;
    top: -9rem;
    left: 0;
    right: 0;
    margin: auto;
} */

.data-title-container p {
    font-style: normal;
    font-weight: 700;
    font-size: 4.4rem;
    line-height: 3.8rem;
    text-align: center;
    letter-spacing: 0.06em;
    color: #000000;
    @media screen and (max-width: 767px) {
        font-size: 2.6rem;
        line-height: 2.8rem;
    }
}

.data-tittle-img-container {
    width: 24.7rem;
    height: 8.2rem;
    margin: 0 1rem 0;
    @media screen and (max-width: 767px) {
        width: 14.8rem;
        height: 4.5rem;
    }   
}

.data-datacontainer {
    margin-top: 10rem;
    display: flex;
    gap: 3.1rem;
    flex-wrap: wrap;
    @media screen and (max-width: 767px) {
        margin-top: 4rem;
    }
}

.data-boxup {
    background: #FFFFFF;
    border-radius: 0.8rem;
    width: 45.4rem;
    /* padding-top: 6.2rem; */
    padding-top: 5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: scale(0.65);
    opacity: 0;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease-out;
    will-change: transform, opacity;
    z-index: 1;
    &.is-visible {
        transform: scale(1);
        opacity: 1;
    }
    @media screen and (max-width: 767px) {
        width: 100%;
        padding-top: 4rem;
    }
}

.data-box-title {
    font-style: normal;
    font-weight: 700;
    font-size: 2.4rem;
    line-height: 3.5rem;
    letter-spacing: 0.01em;
    color: #060606;
    height: 5.2rem;
    text-align: center;
    @media screen and (max-width: 767px) {
        font-size: 2.2rem;
        line-height: 2.6rem;
        height: auto;
    }
}

.data-box-img-container {
    width: 15.1rem;
    margin-top: 4.6rem;
    margin-bottom: 2.2rem;
    @media screen and (max-width: 767px) {
        width: 12rem;
        margin-top: 2.5rem;
        margin-bottom: 2.5rem;
    }
}

.data-box-txt {
    font-style: normal;
    font-weight: 400;
    font-size: 1.8rem;
    line-height: 3rem;
    letter-spacing: -0.01em;
    color: #000000;
    padding-bottom: 4.1rem;
    max-width: 33.6rem;
    position: relative;
    @media screen and (max-width: 767px) {
        font-size: 1.6rem;
        line-height: 2.6rem;
        padding-bottom: 4.5rem;
        max-width: 26.4rem;
    }
}

.data-txt-animation-container {
    display: flex;
    margin-top: 5.3rem;
    margin-bottom: 7rem;
    /* align-items: flex-end; */
    align-items: center;
    justify-content: space-between;
    @media screen and (max-width: 767px) {
        margin-top: 2rem;
        margin-bottom: 3rem;
    }
}

.data-txt-animation-container01 {
    gap: 0.8rem;
}

.sup-two-animation-numbers-container .data-txt-animation-container {
    margin-top: 0;
    margin-bottom: 0;
}

.sup-two-animation-numbers-container  {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 2.3rem;
    margin-bottom: 4rem;
}

.sup-two-animation-numbers-container-2 .data-txt-animation-container {
    margin-top: 0;
    margin-bottom: 0;
}

.sup-two-animation-numbers-container-2 {
    gap: 1.5rem;
    display: flex;
    flex-direction: column;
    margin-top: 2.3rem;
    margin-bottom: 4.4rem;
    @media screen and (max-width: 767px) {
        margin-bottom: 3rem;
    }
}

.text-data-animation-first {
    font-style: normal;
    font-weight: 700;
    font-size: 2.5rem;
    /* line-height: 154%; */
    letter-spacing: 0.01em;
    color: #58BECC;
    margin-bottom: 1rem;
    /* font-size: 4rem; */
}

.animations-numbers-and-units-container {
    display: flex;
    align-items: center;
}

.txt-left-animation-container {
    font-style: normal;
    font-weight: 700;
    font-size: 1.8rem;
    /* line-height: 154%; */
    letter-spacing: 0.01em;
    color: #000000;
    margin-bottom: 1rem;
    padding-right: 4rem;
}

.green-units {
    font-style: normal;
    font-weight: 700;
    font-size: 2rem;
    /* line-height: 154%; */
    letter-spacing: 0.01em;
    color: #A8D68F;
    padding-right: 0.1rem;
}

.data-txt-under-txt01, .data-txt-under-txt02, .data-txt-under-txt03, .data-txt-under-txt04, .data-txt-under-txt05 {
    position: relative;
}

.data-txt-under-txt01 {
    margin-bottom: 11.7rem;
    @media screen and (max-width: 767px) {
        margin-bottom: 3rem;
    }
}

.data-txt-animation-container5 {
    margin-bottom: 5.8rem;
    @media screen and (max-width: 767px) {
        margin-bottom: 3rem;
    }
}

.data-txt-under-txt01::after {
    position: absolute;
    content: "(25年8月末)";
    font-style: normal;
    font-weight: 400;
    font-size: 1.8rem;
    text-align: center;
    letter-spacing: -0.01em;
    color: #000000;
    bottom: -4rem;
    left: -1rem;
    right: 0;
    margin: auto;
}

.data-txt-under-txt02::after {
    position: absolute;
    content: "（25年8月末）";
    font-style: normal;
    font-weight: 400;
    font-size: 1.8rem;
    text-align: center;
    letter-spacing: -0.01em;
    color: #000000;
    bottom: -1.3rem;
    left: -1rem;
    right: 0;
    margin: auto;
}

.data-txt-under-txt03::after {
    position: absolute;
    content: "（過去3年平均）";
    font-style: normal;
    font-weight: 400;
    font-size: 1.8rem;
    text-align: center;
    letter-spacing: -0.01em;
    color: #000000;
    bottom: -1.3rem;
    left: -1rem;
    right: 0;
    margin: auto;
}

.data-txt-under-txt04::after {
    position: absolute;
    content: "（24年末）";
    font-style: normal;
    font-weight: 400;
    font-size: 1.8rem;
    text-align: center;
    letter-spacing: -0.01em;
    color: #000000;
    bottom: -3.5rem;
    left: -1rem;
    right: 0;
    margin: auto;
}

.data-box-txt-before::after {
    position: absolute;
    content: "（25年6月末）";
    font-style: normal;
    font-weight: 400;
    font-size: 1.8rem;
    text-align: center;
    letter-spacing: -0.01em;
    color: #000000;
    top: -9rem;
    left: 60rem;
    right: 0;
    margin: auto;
    width: 13rem;
}

@media screen and (max-width: 767px) {
    .data-txt-under-txt01::after {
        font-size: 1.2rem;
        bottom: -2.2rem;
    }
    .data-txt-under-txt02::after {
        font-size: 1.2rem;
        bottom: -1.2rem;
    }
    .data-txt-under-txt03::after {
        font-size: 1.2rem;
        bottom: -1.2rem;
    }
    .data-txt-under-txt04::after {
        font-size: 1.2rem;
        bottom: -2.2rem;
    }
    .data-box-txt-before::after {
        font-size: 1.2rem;
        left: 0rem;
        top: -3.5rem;
    }
}

.box-data-number {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-size: 10.5rem;
    font-size: 10.5rem;
    line-height: 8rem;
    letter-spacing: 0.02em;
    color: #DDB88D;
    @media screen and (max-width: 767px) {
        font-size: 8rem;
        line-height: 6rem;
    }
}

.box-data-number-big-number {
    font-size: 7.7rem;
    @media screen and (max-width: 767px) {
        font-size: 6.5rem;
    }
}

.box-data-person {
    font-style: normal;
    font-weight: 700;
    font-size: 5rem;
    line-height: 6rem;
    letter-spacing: -0.01em;
    color: #DDB88D;
    @media screen and (max-width: 767px) {
        font-size: 4rem;
    }
}

.box-data-person-en {
    font-size: 3.6rem;
    padding-left: 1rem;
    height: 6.5rem;
    @media screen and (max-width: 767px) {
        height: auto;
        font-size: 2.2rem;
    }
}

.box-data-person-green {
    color: #A8D68F;
    font-size: 2rem;
}

.box-data-number-green {
    color: #A8D68F;
    font-size: 4rem;
    line-height: 3.5rem;
}

.box-data-green {
    color: #A8D68F;
}

.data-big-box-container {
    display: flex;
    flex-direction: column;
    gap: 2.4rem;
    margin-top: 4.5rem;
    margin-bottom: 5.1rem;
}

.data-number-box-container {
    display: flex;
    gap: 5.8rem;
    @media screen and (max-width: 767px) {
        gap: 2rem;
    }
}

.box-place-number-container {
    display: flex;
    gap: 1.3rem;
    align-items: center;
    @media screen and (max-width: 767px) {
        gap: 0.5rem;
        align-items: flex-start;
    }
}

.ml-numb {
    margin-left: 2.3rem;
    @media screen and (max-width: 767px) {
        margin-left: 0;
    }
}

.box-place {
    width: 9.7rem;
    font-style: normal;
    font-weight: 700;
    font-size: 1.8rem;
    letter-spacing: -0.01em;
    color: #000000;
    @media screen and (max-width: 767px) {
        font-size: 1.8rem;
        width: auto;
    }
}

.box-number-under-place {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-size: 4.8rem;
    /* line-height: 205px; */
    letter-spacing: -0.05em;
    color: #E98E79;
    @media screen and (max-width: 767px) {
        font-size: 2.2rem;
    }
}

.box-number-under-place span {
    font-family: "Noto Sans JP", sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 2.6rem;
    /* line-height: 205px; */
    letter-spacing: -0.01em;
    color: #E98E79;
    display: inline-block;
    transform: translate(0.6rem, -0.4rem);
    @media screen and (max-width: 767px) {
        font-size: 1.4rem;
        transform: translate(3px, -1px);
    }
}

.box-data-separator {
    font-style: normal;
    font-weight: 700;
    font-size: 5rem;
    letter-spacing: -0.01em;
    color: #E98E79;
}

.box-data-number-red {
    color: #E98E79;
}

.box-data-person-red {
    color: #E98E79;
}

.box-data-number-blue {
    color: #58BECC;
    /* font-size: 6rem; */
    line-height: normal;
}

.box-data-separator-blue {
    color: #58BECC;
    font-size: 2.5rem;
}

.data-boxmid {
    width: 83.9rem;
    @media screen and (max-width: 767px) {
        width: 100%;
    }
}

.data-boxmid .data-box-txt {
    max-width: 76.6rem;
    padding-bottom: 6rem;
    @media screen and (max-width: 767px) {
        max-width: 92%;
        padding-bottom: 3rem;
    }
}

.data-datacontainer-btn {
    margin: 3rem auto;
}

.second-box-data-container {
    padding-top: 2rem;
    padding-bottom: 4.5rem;
    position: relative;
    @media screen and (max-width: 767px) {
        padding-bottom: 4rem;;
    }
}

.second-box-data-container::after {
    position: absolute;
    content: "（2025）";
    font-style: normal;
    font-weight: 400;
    font-size: 1.8rem;
    text-align: center;
    letter-spacing: -0.01em;
    color: #000000;
    bottom: 1rem;
    left: -1rem;
    right: 0;
    margin: auto;
}


@media screen and (max-width: 767px) {
    .second-box-data-container::after {
        font-size: 1.2rem;
        bottom: 1rem;
    }      
}

.second-box-data-container .units-before {
    font-family: 'Zen Maru Gothic';
    font-style: normal;
    font-weight: 900;
    font-size: 2.2rem;
    letter-spacing: -0.01em;
    padding-right: 1rem;
    @media screen and (max-width: 767px) {
        font-size: 1.6rem;
    }
}

.second-box-data-container .flex-container-number-animation .box-data-number-blue {
    font-size: 4.5rem;
    @media screen and (max-width: 767px) {
        line-height: 2.8rem;
        font-size: 3rem;
    }
}

.second-box-data-container .flex-container-number-animation {
    display: flex;
    gap: 4rem;
}

.second-box-data-container .box-data-person {
    font-size: 2rem;
    color: #58BECC;
}

.second-box-data-container .data-txt-animation-container {
    margin-top: 0;
    margin-bottom: 0;
}

/* guidelines */

.guidelines {
    position: relative;
    background-color: #F5EFDF;
    padding-bottom: 16.5rem;
    scroll-margin-top: 15rem;
    padding-top: 10rem;
    @media screen and (max-width: 767px) {
        padding-bottom: 8rem;
        scroll-margin-top: 8rem;
        padding-top: 6rem;
    }
}
/* 
.guidelines::before {
    content: "";
    position: absolute;
    background: url(./img/guidelines-icon.png) no-repeat;
    background-size: 100%;
    width: 36.7rem;
    height: 9.7rem;
    top: -13rem;
    left: 0;
    right: 0;
    margin: auto;
} */

@media screen and (max-width: 767px) {
    .guidelines::after {
        width: 15.7rem;
        height: 15.7rem;
        right: 1.5rem;
        top: 0.5rem;
    }
}

.guidelines-title {
    /* padding-top: 12.7rem; */
    transform: scale(0.65);
    opacity: 0;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease-out;
    will-change: transform, opacity;
    font-style: normal;
    font-weight: 700;
    font-size: 4.4rem;
    text-align: center;
    letter-spacing: 0.06em;
    color: #000000;
    &.is-visible {
        transform: scale(1);
        opacity: 1;
        animation: bounceIn 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    }
    @media screen and (max-width: 767px) {
        font-size: 2.6rem;
        margin-top: 1.6rem;
        padding-top: 0;
    }
}

.guidelines-table-container {
    width: 100%;
    border-bottom: #B4B4B4 1px solid;
    display: flex;
    @media screen and (max-width: 767px) {
        flex-direction: column;
        align-items: center;
        border-bottom: none;
    }
}

.guidelines-table-container-top {
    margin-top: 9rem;
    @media screen and (max-width: 767px) {
        margin-top: 6rem;
    }
}

.guidelines-table-container-end {
    border-bottom: inherit;
}

.guide-th {
    background-color: #EEECEC;
    width: 20.7rem;
    padding-top: 4rem;
    padding-left: 4rem;
    font-style: normal;
    font-weight: 700;
    font-size: 1.8rem;
    line-height: 2.9rem;
    letter-spacing: -0.01em;
    color: #000000;
    padding-bottom: 4.5rem;
    @media screen and (max-width: 767px) {
        width: 100%;
        padding-left: 2rem;
        padding-right: 2rem;
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
}

.guide-td {
    background-color: white;
    width: 123.3rem;
    padding-bottom: 4.5rem;
    padding-top: 4rem;
    padding-left: 5.1rem;
    padding-right: 6.2rem;
    font-style: normal;
    font-weight: 400;
    font-size: 1.8rem;
    line-height: 3.5rem;
    letter-spacing: -0.01em;
    color: #000000;
    @media screen and (max-width: 767px) {
        width: 100%;
        padding-bottom: 2rem;
        padding-top: 2rem;
        padding-left: 2rem;
        padding-right: 2rem;
        font-style: normal;
        font-weight: 400;
        font-size: 1.6rem;
        line-height: 2.5rem;
        overflow: auto;
    }
}

.td-top {
    border-radius: 0 0.8rem 0 0;
    @media screen and (max-width: 767px) {
        border-radius: 0rem 0rem 0 0;
    }
}

.th-top {
    border-radius: 0.8rem 0 0 0;
    @media screen and (max-width: 767px) {
        border-radius: 0.8rem 0.8rem 0 0;
    }
}

.bot-th {
    border-radius: 0 0 0 0.8rem;
}

.bot-td {
    border-radius: 0 0 0.8rem 0;
}

/* welfare */

.welfare {
    background-color: #EBDABE;
    position: relative;
    padding-top: 12.1rem;
    padding-bottom: 14.2rem;
    scroll-margin-top: 6rem;
    @media screen and (max-width: 767px) {
        padding-top: 7rem;
        padding-bottom: 7rem;
        scroll-margin-top: 3rem;
    }
}

.welfare p {
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 400;
    line-height: 3rem;
    text-align: center;
    margin: 2rem auto;
}
/* 
.welfare::before {
    content: "";
    position: absolute;
    background: url(./img/bk-welfare-top.png) no-repeat;
    background-size: 100%;
    width: 192rem;
    height: 51.8rem;
    top: -23rem;
    left: 0rem;
    right: 0;
    margin: auto;
} */

/* .welfare::after {
    content: "";
    position: absolute;
    background: url(./img/welfare-icon.png) no-repeat;
    background-size: 100%;
    width: 28rem;
    height: 12.7rem;
    top: 18rem;
    left: 0;
    right: 0;
    margin: auto;
} */

.welfare-title {
    font-style: normal;
    font-weight: 700;
    font-size: 4.4rem;
    text-align: center;
    letter-spacing: 0.06em;
    color: #000000;
    line-height: 3.8rem;
    transform: scale(0.65);
    opacity: 0;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease-out;
    will-change: transform, opacity;
    &.is-visible {
        transform: scale(1);
        opacity: 1;
        animation: bounceIn 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    }
    @media screen and (max-width: 767px) {
        font-size: 2.6rem;
        line-height: 2.2rem;
        margin-top: 1.6rem;
    }
}

.welfare-top-container {
    display: flex;
    justify-content: space-between;
    margin-top: 6.8rem;
    @media screen and (max-width: 767px) {
        flex-direction: column;
        align-items: center;
        margin-top: 5rem;
    }
}

.welfare-box-top {
    background-color: white;
    padding-left: 4.3rem;
    padding-right: 4.3rem;
    width: 40.6rem;
    height: 67.8rem;
    border-radius: 0.8rem;
    padding-top: 21.7rem;
    position: relative;
    @media screen and (max-width: 767px) {
        width: 100%;
        padding-top: 16rem;
        padding-left: 1rem;
        padding-right: 1rem;
        margin-bottom: 2rem;
        height: auto;
    }
}

.welfare-box-top-img01 {
    position: absolute;
    /* width: 13.4rem; */
    width: 15.3rem;
    top: 6.5rem;
    left: 0;
    right: 0;
    margin: auto;
    @media screen and (max-width: 767px) {
        width: 9.7rem;
        top: 5.5rem;

    }
}

.welfare-box-top-img02 {
    position: absolute;
    width: 14.6rem;
    top: 6.5rem;
    left: 0;
    right: 0;
    margin: auto;
    @media screen and (max-width: 767px) {
        width: 10rem;
        top: 6.2rem;
    }
}

.welfare-box-top-img03 {
    position: absolute;
    width: 10.5rem;
    top: 6.5rem;
    left: 0;
    right: 0;
    margin: auto;
    @media screen and (max-width: 767px) {
        width: 8.3rem;
        top: 4.2rem;
    }
}

.welfare-box-top-title {
    font-style: normal;
    font-weight: 700;
    font-size: 2.4rem;
    line-height: 3.6rem;
    text-align: center;
    letter-spacing: 0.01em;
    color: #000000;
    margin-bottom: 3.8rem;
    width: 33.2rem;
    @media screen and (max-width: 767px) {
        width: 100%;
        font-size: 1.9rem;
        line-height: 2.8rem;
        margin-bottom: 2rem;
    }
}

.welfare-box-top-title span {
    font-size: 2rem;
}

.welfare-box-top-txt {
    font-style: normal;
    font-weight: 400;
    font-size: 1.8rem;
    line-height: 3rem;
    letter-spacing: -0.01em;
    color: #000000;
    padding-bottom: 5.8rem;
    @media screen and (max-width: 767px) {
        font-size: 1.6rem;
        line-height: 2.8rem;
        padding-bottom: 5rem;
        max-width: 26.6rem;
        margin: 0 auto;
    }
}

.welfare-bot-txt {
    letter-spacing: 0.01em;
    margin-top: 6.1rem;
    margin-bottom: 4.4rem;
    font-style: normal;
    font-weight: 700;
    font-size: 3.2rem;
    line-height: 3.5rem;
    text-align: center;
    color: #000000;
    @media screen and (max-width: 767px) {
        font-size: 2rem;
        margin-top: 3rem;
        margin-bottom: 3rem;
    }
}

.welfare-bottom-container {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    @media screen and (max-width: 767px) {
        gap: 1rem;
    }
}

.welfare-bot-box {
    letter-spacing: -0.01em;
    width: 24rem;
    height: 11.4rem;
    border: 0.4rem solid #F08300;
    border-radius: 0.8rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    font-style: normal;
    font-weight: 700;
    font-size: 2.2rem;
    line-height: 3.7rem;
    text-align: center;
    color: #000000;
    @media screen and (max-width: 767px) {
        font-size: 1.4rem;
        line-height: 2rem;
        width: 16rem;
        height: 8.1rem;
    }
}

.welfare-box-top3 {
    padding-top: 20rem;
    @media screen and (max-width: 767px) {
        padding-top: 16rem;
    }
}

.welfare-box-top-title3 {
    margin-bottom: 2rem;
}

/* faq */

.faq {
    background-color: #FFF7E9;
    position: relative;
    padding-top: 8.4rem;
    padding-bottom: 11rem;
    scroll-margin-top: 6rem;
    @media screen and (max-width: 767px) {
        padding-top: 4rem;
        padding-bottom: 2rem;
    }
}


.faq-title {
    text-align: center;
    transform: translateX(-6rem);
    opacity: 0;
    transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease-out;
    will-change: transform, opacity;
    font-style: normal;
    font-weight: 700;
    font-size: 4.4rem;
    text-align: center;
    letter-spacing: 0.06em;
    color: #000000;
    &.is-visible {
        transform: scale(1);
        opacity: 1;
        animation: bounceIn 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    }
    @media screen and (max-width: 767px) {
        font-size: 2.6rem;
        letter-spacing: 0.05em;
        margin-top: 1.6rem;
    }
}

.question-answer-corner-container {
    margin-top: 8.7rem;
    @media screen and (max-width: 767px) {
        margin-top: 4rem;
    }
}

.question-container {
    position: relative;
    width: 120rem;
    height: 6.8rem;
    background-color: black;
    padding-left: 2rem;
    display: flex;
    align-items: center;
    cursor: pointer;
    margin: 0 auto 2.2rem;
    @media screen and (max-width: 767px) {
        width: 100%;
        padding-left: 1.5rem;
    }
}

/* Barre horizontale du + / - */
.question-container::after {
    position: absolute;
    content: "";
    width: 2.4rem;
    height: 0.4rem;
    background-color: white;
    top: 50%;
    right: 3rem;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
    border-radius: 2px;
}

/* Barre verticale du + */
.question-container::before {
    position: absolute;
    content: "";
    width: 0.4rem;
    height: 2.4rem;
    background-color: white;
    top: 2.2rem;
    right: 4rem;
    transition: transform 0.3s ease;
    border-radius: 2px;
}

.question-container.active::before {
    transform: rotate(90deg);
}

@media screen and (max-width: 767px) {
    .question-container::before {
        width: 0.2rem;
        height: 1.2rem;
        top: 2.8rem;
        right: 2.5rem;
    }
    .question-container::after {
        width: 1.2rem;
        height: 0.2rem;
        top: 50%;
        right: 2rem;
    }
}

.question-logo {
    background-color: white;
    width: 4.8rem;
    height: 4.8rem;
    border-radius: 50%;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 900;
    font-size: 3.5rem;
    letter-spacing: 0.07em;
    color: black;
    margin-right: 1.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    @media screen and (max-width: 767px) {
        width: 2.7rem;
        height: 2.7rem;
        font-size: 1.6rem;
        margin-right: 0.9rem;
    }
}

.question-container p {
    font-style: normal;
    font-weight: 700;
    font-size: 2.4rem;
    letter-spacing: 0.02em;
    color: #FFFFFF;
    @media screen and (max-width: 767px) {
        font-size: 1.6rem;
        max-width: 23.9rem;
        line-height: 2.2rem;
    }
}

.answer-container {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: 
        max-height 0.4s ease, 
        opacity 0.3s ease 0.1s,
        padding 0.4s ease,
        margin 0.4s ease;
    margin: 0;
    padding: 0 2rem;
    background: #FFFFFF;
    border-radius: 0.8rem;
    display: flex;
    gap: 2.9rem;
    align-items: center;
}

.answer-container.open {
    max-height: 100rem;
    opacity: 1;
    margin-top: 2.7rem;
    padding: 4.3rem 2rem;
    margin-bottom: 4.2rem;
    transition: 
        max-height 0.4s ease, 
        opacity 0.2s ease,
        padding 0.4s ease,
        margin 0.4s ease;
}

@media screen and (max-width: 767px) {
    .answer-container {
        gap: 0.9rem;
        align-items: flex-start;
    }
    
    .answer-container.open {
        margin-top: 1rem;
        padding: 2rem 1.6rem;
        margin-bottom: 2rem;
        align-items: flex-start;
    }
}

.answer-logo {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 900;
    font-size: 3.5rem;
    letter-spacing: 0.07em;
    color: #FFFFFF;
    width: 4.8rem;
    height: 4.8rem;
    background: #F18200;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.00em;
    @media screen and (max-width: 767px) {
        width: 2.7rem;
        height: 2.7rem;
        font-size: 1.6rem;
    }
}

.answer-container p {
    font-style: normal;
    font-weight: 400;
    font-size: 1.8rem;
    line-height: 3.2rem;
    letter-spacing: -0.01em;
    color: #000000;
    max-width: 107rem;
    @media screen and (max-width: 767px) {
        font-size: 1.6rem;
        line-height: 2.6rem;
        max-width: 26.4rem;
    }
}

.contact-txt-form {
    font-style: normal;
    font-weight: 500;
    font-size: 1.8rem;
    letter-spacing: -0.01em;
    color: #000000;
    margin-top: 7.8rem;
    text-align: center;
    @media screen and (max-width: 767px) {
        font-size: 1.4rem;
        margin-top: 3rem;
        line-height: 2.4rem;
        text-align: left;
    }
}

.form {
    background-color: #EBDABE;
    padding-top: 20rem;
    padding-bottom: 9.2rem;
    position: relative;
    z-index: 1;
    @media screen and (max-width: 767px) {
        padding-top: 7rem;
        padding-bottom: 5.7rem;
    }
}

.form-title {
    position: relative;
    margin-bottom: 8.7rem;
    transform: scale(0.65);
    opacity: 0;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease-out;
    will-change: transform, opacity;
    font-style: normal;
    font-weight: 700;
    font-size: 4.4rem;
    text-align: center;
    letter-spacing: 0.06em;
    color: #000000;
    &.is-visible {
        transform: scale(1);
        opacity: 1;
        animation: bounceIn 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    }
    @media screen and (max-width: 767px) {
        font-size: 2.2rem;
        margin-bottom: 4rem;
        margin-top: 1.6rem;
    }
}

@media screen and (max-width: 767px) {
    .form-title::after {
        width: 32.7rem;
        /* height: 1.2rem; */
        bottom: -1.3rem;
    }
}


ul.entry-step {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 4.2rem;
    margin-bottom: 5rem;
    @media screen and (max-width: 767px) {
        gap: 1.2rem;
        margin-bottom: 2.5rem;
    }
}

.entry-step__item {
    font-style: normal;
    font-weight: 700;
    font-size: 2rem;
    line-height: 2.7rem;
    text-align: center;
    letter-spacing: -0.01em;
    color: #BCBCBC;
    padding: 1.2rem 2.4rem;
    background-color: #FFFFFF;
    border-radius: 0.4rem;
    border: 2px solid #BCBCBC;
    width: 24rem;
    position: relative;
    @media screen and (max-width: 767px) {
        font-size: 1.4rem;
        line-height: 2.2rem;
        padding: 0.8rem 0.5rem;
        width: calc(100% / 3);
    }
}

.entry-step__item::after {
    content: "";
    position: absolute;
    width: 0.6rem;
    height: 1.2rem;
    background: url(./img/step-arrow.svg) no-repeat;
    background-size: 100%;
    right: -2.3rem;
    top: 0;
    bottom: 0;
    margin: auto;
}

.entry-step__item:last-child::after {
    display: none;
}
.entry-lead {
    /* font-style: normal;
    font-weight: 400;
    font-size: 1.6rem;
    line-height: 2.4rem;
    text-align: left;
    letter-spacing: -0.01em;
    color: #000000; */
    font-style: normal;
    font-weight: 400;
    font-size: 1.8rem;
    line-height: 2.8rem;
    letter-spacing: -0.01em;
    color: #000000;
    text-align: center;
    @media screen and (max-width: 767px) {
        font-size: 1.2rem !important;
    }
}

#js-form {
    background-color: white;
    border-radius: 0.8rem 0.8rem 0 0;
    padding-top: 2rem;
    padding-left: 8rem;
    padding-right: 8rem;
    margin-top: 8rem;
    /* padding-bottom: 7.9rem; */
    padding-bottom: 0;
    /* margin-bottom: 6rem; */
    margin-bottom: 0;
    width: 96rem;
    margin-left: auto;
    margin-right: auto;
    @media screen and (max-width: 767px) {
        width: 100%;
        padding-left: 2rem;
        padding-right: 2rem;
        padding-top: 0rem;
        /* margin-bottom: 4rem; */
        padding-bottom: 0;
        margin-bottom: 0;
        margin-top: 2rem;
    }
}

.entry-form__input--2col {
    grid-column: 1 / 3;
}
.entry-tab-panel[aria-hidden="false"] {
    display: block;
}

.entry-tab-panel[aria-hidden="true"] {
  display: none;
}
.entry-tab-panel[aria-hidden="false"] {
  display: block;
}

/* Form */
.entry-agree-container {
  margin-top: 40px;
}
.entry-agree-container[aria-hidden="true"] {
  display: none;
}
.entry-agree-container[aria-hidden="false"] {
  display: block;
}

.entry-form-container[aria-hidden="true"] {
  display: none;
}

.entry-form-container[aria-hidden="false"] {
  display: block;
}

.entry-agree-btn-area .entry-form-btn {
    margin: 4rem auto 0;
    padding: 0 8rem;
    @media screen and (max-width: 767px) {
        margin: 2rem auto 0;
        padding: 0 3rem;
    }
}

.entry-agree-btn-area .entry-form-btn:disabled {
    opacity: 0.4;
    background-color: #678ca3;
    border: 1px solid #678ca3;
    cursor: not-allowed;
}
/* ------------------------------------------- */
/* footer*/
/* ------------------------------------------- */

footer {
    position: relative;
    z-index: 1;
}

.footer-bk {
    background-color: #F18200;
    padding-top: 6.5rem;
    padding-bottom: 8.1rem;
    position: relative;
    z-index: 1;
    @media screen and (max-width: 767px) {
        padding-top: 5.2rem;
        padding-bottom: 5.2rem;
    }
}

.footer-bk h3 {
    font-style: normal;
    font-weight: 700;
    font-size: 3rem;
    text-align: center;
    letter-spacing: 0.11em;
    color: #FFFFFF;
    @media screen and (max-width: 767px) {
        font-size: 2rem;
    }
}

.footer-button-link-container {
    display: flex;
    justify-content: space-between;
    margin-top: 4.1rem;
    @media screen and (max-width: 767px) {
        margin-top: 3.1rem;
        flex-direction: column;
        gap: 0.9rem;
    }
}

.footer-button {
    font-style: normal;
    font-weight: 700;
    font-size: 2rem;
    line-height: 2.6rem;
    text-align: center;
    letter-spacing: 0.07em;
    color: #000000;
    background: #FFFFFF;
    border-radius: 7.5rem;
    position: relative;
    width: 38.6rem;
    height:  9.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    @media screen and (max-width: 767px) {
        width: 33.5rem;
        height: 6.3rem;
        font-size: 1.6rem;
        line-height: 1.9rem;
    }
}

.footer-button::after {
    position: absolute;
    content: "";
    width: 2.2rem;
    height: 1.9rem;
    background: url(./img/yellow-icon.svg) no-repeat;
    top: 0;
    bottom: 0;
    right: 2rem;
    margin: auto;
    transition: 0.4s ease-in-out;
    background-size: 100%;
}

@media screen and (max-width: 767px) {
    .footer-button::after {
        width: 1.5rem;
        height: 1.3rem;
    }      
}

.footer-button:hover::after {
    right: 1rem;
}

.grey-bk {
    /* background-color: #E4E4E4; */
    padding: 4.2rem 0;
    background: white;
}

.footer-parent-flex-ext-link {
    display: flex;
    align-items: center;
    @media screen and (max-width: 767px) {
        flex-direction: column;
    }
}

.footer-parent-flex-ext-link:first-child {
    margin-bottom: 1.5rem;
    @media screen and (max-width: 767px) {
        margin-bottom: 1.5rem;
    }
}

.footer-parent-flex-ext-link p {
    font-style: normal;
    font-weight: 700;
    font-size: 1.8rem;
    /* line-height: 38px; */
    letter-spacing: 0.11em;
    color: #000000;
    width: 34.6rem;
    border-right: #7B7B7B 1px solid;
    @media screen and (max-width: 767px) {
        font-size: 1.6rem;
        width: auto;
        border-right: unset;
        margin-bottom: 0.7rem;
    }
}

.footer-ext-link-container {
    display: flex;
    justify-content: flex-start;
    gap: 3rem;
    margin-left: 4.3rem;
    @media screen and (max-width: 767px) {
        flex-wrap: wrap;
        gap: 1.5rem;
        margin-left: 0;
    }
}

.footer-ext-link-container a {
    font-style: normal;
    font-weight: 500;
    font-size: 1.6rem;
    line-height: 3.2rem;
    color: #000000;
    text-decoration: underline;
    transition: 0.4s;
    @media screen and (max-width: 767px) {
        font-size: 1.2rem;
        line-height: 2.2rem;
    }
}

.footer-ext-link-container a:hover {
    text-decoration: none;
    opacity: 0.8;
}

.footer-copyright {
    font-style: normal;
    font-weight: 400;
    font-size: 1.6rem;
    line-height: 3.2rem;
    letter-spacing: -0.01em;
    color: black;
    padding-top: 4.2rem;
    padding-bottom: 3.3rem;
    display: block;
    text-align: center;
    background-color: #FFF7E9;
    @media screen and (max-width: 767px) {
        font-size: 1.2rem;
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }
}


/* form */

.entry-form__head {
    padding-bottom: 7px;
    border-bottom: 4px solid #F08200;
}

.entry-form__cont {
    display: grid;
    gap: 4rem;
    @media screen and (max-width: 767px) {
        gap: 2rem;
    }
}

.entry-form__input-area {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    -webkit-box-align: start;
    -webkit-align-items: start;
    -ms-flex-align: start;
    align-items: start;
    gap: 4rem;
    @media screen and (max-width: 767px) {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
}

.entry-form__input {
    display: grid;
    gap: 1rem;
    @media screen and (max-width: 767px) {
        gap: 0.8rem;
        width: 100%;
    }
}

.entry-form input[type="submit"], .entry-form input[type="button"], .entry-form label, .entry-form select {
    cursor: pointer;
}

.entry-form__input-wrap {
    position: relative;
}

.entry-form__input input, .entry-form__input textarea, .entry-form__input select {
    width: 100%;
    font-size: 1.6rem;
    letter-spacing: 0.05em;
}


.entry-form__input input {
    padding-bottom: 10px;
    border-bottom: 1px solid #A7A7A7;
    padding-top: 1rem;
    padding-bottom: 1rem !important;
}

.entry-form__input .select-wrap {
    position: relative;
}

.entry-form__input select:invalid {
    color: #212121;
    padding-top: 1.3rem;
    padding-bottom: 1.3rem !important;
}

.entry-form__input select {
    display: block;
    width: 100%;
    height: 100%;
    padding: 7px 16px;
    border: 1px solid #A7A7A7;
}

.entry-form__input input, .entry-form__input textarea, .entry-form__input select {
    width: 100%;
    font-size: 1.6rem;
    letter-spacing: 0.05em;
}

.entry-form input[type="submit"], .entry-form input[type="button"], .entry-form label, .entry-form select {
    cursor: pointer;
}

.entry-form input, .entry-form select, .entry-form textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: #F4F4F4;
    border: none;
    border-radius: 0;
    font: inherit;
    outline: none;
    opacity: 1;
    border-radius: 0.6rem;
    padding-left: 1.8rem;
}

.entry-form__input .select-wrap::after {
    content: "▼";
    font-size: 1.2rem;
    color: rgb(51, 51, 51);
    position: absolute;
    top: 50%;
    right: 26px;
    pointer-events: none;
    transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
    .entry-form__input .select-wrap::after  {
        right: 1.6rem;
    }
}

.entry-lead sup {
    color: #F00;
}

.entry-form__input textarea {
    width: 100%;
    height: 240px;
    padding: 7px 16px;
    border: 1px solid #A7A7A7;
    @media screen and (max-width: 767px) {
        height: 15rem;
    }
}

.entry-lead--bold {
    font-weight: bold;
}

.entry-form-btn--back {
    color: white;
    background-color: #AAAAAA;
    border: 1px solid #AAAAAA;
    border-radius: 4.2rem;
    position: relative;
}

.entry-form-btn--back::after {
    content: "";
    position: absolute;
    width: 1.8rem;
    height: 1.4rem;
    background: url(./img/step-page-arrow.svg) no-repeat;
    top: 0;
    bottom: 0;
    left: 5rem;
    margin: auto;
    transition: 0.4s ease-in-out;
    background-size: 100%;
    transform: rotate(180deg);
}

.entry-form-btn {
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 0.05em;
    position: relative;
    height:  6rem;
    padding: 0 6px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    @media screen and (max-width: 767px) {
        font-size: 1.2rem;
        height: 5rem;
    }
}

.entry-form-btn--next {
    color: white;
    background-color: #0C92E5;
    border: 1px solid #0C92E5;
    border-radius: 4.2rem;
    position: relative;
}

.entry-form-btn--next::after {
    content: "";
    position: absolute;
    width: 1.8rem;
    height: 1.4rem;
    background: url(./img/step-page-arrow.svg) no-repeat;
    top: 0;
    bottom: 0;
    right: 5rem;
    margin: auto;
    transition: 0.4s ease-in-out;
    background-size: 100%;
}

@media screen and (max-width: 767px) {
    .entry-form-btn--next::after    {
        width: 1.3rem;
        height: 1rem;
        right: 1rem;
    }
}



.entry-form-btn-group {
    /* padding: 0 20rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 0; */
    padding: 4rem 10rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 2rem;
    margin: 0 auto;
    background-color: white;
    width: 96rem;
    border-radius: 0 0 0.8rem 0.8rem;
    @media screen and (max-width: 767px) {
        padding: 0 1rem;
        display: flex;
        gap: 1rem;
        /* margin-top: 4rem; */
        padding: 2rem 1rem;
        flex-direction: column-reverse;
        width: 100%;
    }
}

.entry-form-btn:hover {
  opacity: 0.8;
}

.entry-form__input--other {
    visibility: hidden;
}

.entry-form__input--other.is-show {
    visibility: visible;
}

.is-confirm .entry-form__input--other {
    display: none;
}

.is-confirm .entry-form__input--other.is-show {
    display: block;
}

.entry-form__input .error {
    font-size: 1.2rem;
    letter-spacing: 0.05em;
    background-color: #ED5252;
    margin-top: 1rem;
    color: white;
    padding: 0.5rem;
    width: fit-content;
    border-radius: 0.2rem;
}

.entry-form-btn-area {
    /* margin-top: 8rem; */
    margin-top: 0;
    display: none;
    gap: 30px;
    @media screen and (max-width: 767px) {
        margin-top: 0;
    }
}

.entry-form-container.is-input .entry-form-btn-area.input {
    display: grid;
}

.entry-form-lead {
    display: none;
    gap: 1.6rem;
    @media screen and (max-width: 767px) {
        gap: 0;
    }
}

.entry-form-container.is-input .entry-form-lead.input {
    display: grid;
    max-width: 80rem;
    margin: 0 auto;
}

.entry-form-container.is-input .entry-step__item.input {
    color: #F08200;
    border: 2px solid #f08200;
}

.entry-form-container.is-confirm .entry-step__item.confirm {
    color: #F08200;
    border: 2px solid #f08200;
}

.entry-form-container.is-submit .entry-step__item.submit {
    color: #F08200;
    border: 2px solid #f08200;
}

.entry-form__cont .entry-form__head {
    margin-top: 8rem;
}

.entry-form__input.entry-form__input--2col {
    margin-top: 4rem;
}

.entry-form__cont {
    display: grid;
    gap: 4rem;
    @media screen and (max-width: 767px) {
        gap: 2rem;
    }
}

.entry-form-container.is-confirm .entry-form__input-area {
    grid-template-columns: 1fr;
}

.entry-form-container.is-confirm .entry-form__input {
    padding-bottom: 1rem;
    border-bottom: 1px solid #A7A7A7;
    grid-template-columns: 21rem 1fr;
}

.entry-form-container.is-confirm .entry-step__item.confirm {
  opacity: 1;
}

.entry-form-container.is-confirm .entry-form-lead.confirm {
  display: grid;
}

.entry-form-container.is-confirm .entry-form-btn-area.confirm {
  /* display: grid; */
  display: block;
}

.entry-form-container.is-confirm .entry-form__input-area {
  grid-template-columns: 1fr;
}

.entry-form-container.is-confirm .entry-form__input {
  padding-bottom: 10px;
  border-bottom: 1px solid #A7A7A7;
  grid-template-columns: 210px 1fr;
}
.entry-form-container.is-confirm .entry-form__input sup {
  display: none;
}
.entry-form-container.is-confirm .entry-form__input br {
  display: block;
}
.entry-form-container.is-confirm .entry-form__input input {
  padding-bottom: 0;
  border-bottom: none;
  background-color: #FFF !important;
}
.entry-form-container.is-confirm .entry-form__input .select-wrap {
  height: 100%;
}
.entry-form-container.is-confirm .entry-form__input .select-wrap::after {
  display: none;
}
.entry-form-container.is-confirm .entry-form__input select {
    padding: 1rem;
    padding-left: 1.8rem;
    border: none;
    opacity: 1;
}
.entry-form-container.is-confirm .entry-form__input textarea {
  overflow: hidden;
  resize: none;
  padding: 0;
  border: none;
    padding-top: 1rem;
    padding-left: 1.5rem;
    padding-bottom: 3rem;
}

.entry-form-container.is-confirm #g-recaptcha {
  /* display: block; */
      width: 96rem;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    background: white;
    padding-top: 4rem;
    @media screen and (max-width: 767px) {
        width: 100%;
    }
}
.entry-form-container.is-confirm .entry-form__input {
grid-template-columns: 1fr;
}

.entry-form-container.is-submit .entry-step__item.submit {
  opacity: 1;
}

.entry-form-container.is-submit .entry-form-lead.submit {
  display: grid;
}

.entry-form-container.is-submit .entry-form {
  display: none;
}

.entry-form-container.is-submit .entry-form-btn-area.submit {
  display: grid;
}

.entry-lead {
    font-size: 1.6rem;
    letter-spacing: 0.05em;
    line-height: calc(30 / 16);
}

.entry-check-area {
    margin: 8\6rem 0 4rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    @media screen and (max-width: 767px) {
        margin: 3rem 0 2rem;
    }
}
.entry-check {
    margin-top: 2rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.entry-check input {
    width: 3.2rem;
    height: 3.2rem;
    -webkit-appearance: checkbox;
}
.entry-check label {
    font-size: 2rem;
    letter-spacing: 0;
    font-weight: bold;
    color: #F08200;
    line-height: 1;
    padding-left: 20px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.entry-form-ttl-md--center {
    text-align: center;
}

.entry-form-ttl-md {
    font-size: 1.8rem;
    letter-spacing: 0.05em;
    font-weight: bold;
    line-height: 1;
}
.entry-scroll-area {
    padding: 4rem;
    background-color: #F4EEE9;
    overflow: auto;
    max-width: 96rem;
    margin: 0 auto 3rem;
    @media screen and (max-width: 767px) {
        padding: 1.5rem;
    }
}
.entry-agree-container .entry-form-ttl-md {
    margin: 3rem 0;
}


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

    .entry-form-lead .entry-lead {
        font-size: 1.4rem;
        line-height: 2rem;
    }

    .entry-form__head .entry-lead.entry-lead--bold {
        font-size: 1.4rem !important;
        text-align: center;
    }

    .entry-form__input .entry-lead {
        font-size: 1.4rem;
    }

    .entry-form__cont .entry-form__head {
        margin-top: 2rem;
    }

    .entry-form__input.entry-form__input--2col {
        margin-top: 2rem;
    }

}


/* ------------------------------------------- */
/* 印刷用の設定 */
/* ------------------------------------------- */
@media print {
	html {
		font-size: calc(10 / 1919 * 100 * 14px);
	}
	body {
		-webkit-print-color-adjust: exact;
		position: relative;
		width: 1400px;
		zoom: 70%;
	}
    header {
        position: absolute;
        top: 0;
        left: 0;
    }
    .pic-left-container {
        display: none;
        visibility: hidden;
    }
    .pic-right-container {
        display: none;
        visibility: hidden;
    }
    .paragraph-img-container-sp {
        display: none;
        visibility: hidden;
    }
    /* .sp-off {
        display: none;
    } */
     .pc-off {
        display: none;
     }
    .slick-fv-container {
        width: 180rem;
    } 
    .about .paragraph-center {
        clip-path: inset(0);
    }
    .paragraph-center p {
        opacity: 1;
        transform: translateX(0);
    }
    .fade-out {
        opacity: 1;
    }
    .about .pic-left-container, .about .pic-right-container {
        display: none;
    }
    .about-container {
        justify-content: center;
    }
}
@page {
	size: A4;
	margin: 10mm;
}

/* animation */

@keyframes bounceIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
    }
}

.fade-out {
    opacity: 0;
    transition: opacity 0.4s ease;
}
.fade-in {
    opacity: 1;
    transition: opacity 0.4s ease;
}

.txt-orange {
    color: #F18200;
}

.common-up-title-orange-bk {
    width: fit-content;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 600;
    font-size: 4.4rem;
    line-height: 3.1rem;
    text-align: center;
    color: white;
    margin: 0 auto 4rem;
    padding: 0 1rem;
    background-color: #F08300;
    transform: translateX(-6rem);
    opacity: 0;
    transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease-out;
    will-change: transform, opacity;
    &.is-visible {
        transform: translateX(0);
        opacity: 1;
    }
    @media screen and (max-width: 767px) {
        font-size: 3rem;
        margin: 0 auto;
        line-height: 2.1rem;
    }
}

.common-up-title-orange-bk-faq {
    margin: 0 auto 3rem;
    @media screen and (max-width: 767px) {
        margin: 0 auto;
    }
}

.data-box-txt h3 {
    font-style: normal;
    font-weight: 700;
    font-size: 1.8rem;
    /* line-height: 154%; */
    letter-spacing: 0.01em;
    color: #000000;
    margin-bottom: 1rem;
    @media screen and (max-width: 767px) {
        margin-bottom: 2.3rem;
    }
}

.form-button-container {
    margin: 10rem auto;
    display: flex;
    justify-content: center;
    @media screen and (max-width: 767px) {
        margin: 6rem auto;
    }
}

.form-button-container a {
    background-color: #FA9A2B;
    border-radius: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 33rem;
    height: 6.4rem;
    transition: 0.4s ease-in-out;
    position: relative;
    color: white;
    font-size: 1.8rem;
    @media screen and (max-width: 767px) {
        width: 28rem;
        height: 5rem;
        font-size: 1.6rem;
    }
}

.yoshinoya-table {
    width: 100%;
    margin-top: 3rem;
    @media screen and (max-width: 767px) {
        position: relative;
        margin-top: 1rem;
        margin-left: -2rem;
        margin-right: -2rem;
        padding-left: 2rem;
        padding-right: 2rem;
        width: 200vw;
        /* max-width: 100vw; */
        /* overflow-x: auto;
        -webkit-overflow-scrolling: touch; */
         &::before {
            content: '←';
            position: absolute;
            left: 2rem;
            bottom: 1rem;
            animation: moveArrow 3s linear infinite;
            font-size: 2rem;
            color: #ddd;
            border: 0.4rem solid #ddd;
            border-radius: 50%;
            width: 4rem;
            height: 4rem;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: opacity 0.5s ease-in-out;
            opacity: 1;
            pointer-events: none;
            z-index: 10;
        }
    }
}

@media screen and (max-width: 767px) {
    @keyframes moveArrow {
        0% {
            left: 100%;
        }
        100% {
            left: 0;
        }
    }
}
