@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;
}
.w1428 {
    max-width: 142.8rem;
}
.w1437 {
    max-width: 143.7rem;
}
.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: 0.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;
        padding-bottom: 0;
    }
}

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

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

.logo-container {
    width: 30.9rem;
    padding-top: 1.5rem;
    display: block;
    @media screen and (max-width: 767px) {
        width: 14rem;
        padding-top: 0.5rem;
        position: fixed;
        z-index: 999;
    }
}

.header-link-container {
    display: flex;
    gap: 5rem;
    /* 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%; */
        width: 100vw;
        background-color: #FFFFFF;
        padding: 2rem 0;
        background-size: cover;
        height: 100vh;
        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;
        font-weight: 700;
    }
}

.header-scrolled a {
    color: black;
    @media screen and (max-width: 767px) {
        color: white;
    }
}

.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;
}

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

.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: #32A26B;
    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: 8.1rem;
        border-radius: 0 0 0 1.1rem;
        z-index: 999;
    }
}
.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;
    @media screen and (max-width: 767px) {
        background-color: #32A26B;
    }
}

.header-button-entry:hover .button-header-mid-title  {
	color: #32A26B;
     @media screen and (max-width: 767px) {
        color: white;
    }
}

.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: white;
    }
}

.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: #F08300;
        border-radius: 0.5rem;

    }
}

.nav-button::before,
.nav-button::after {
    content: "";
    position: absolute;
    background: #F08300;
    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: 0rem;
        right: 0;
        /* width: 100%; */
        width: 100vw;
        background: url(../newgraduate/img/sp-open-bk.png) no-repeat;
        background-size: cover;
        padding: 2rem 0;
        z-index: 100%;
        padding-top: 10.8rem;
    }

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

    }
    .nav-button.open {
        background-color: transparent;
    }
    .nav-button.open::before {
        transform: rotate(45deg);
        top: 0;
        background-color: white;
        height: 0.2rem;
    }
    .nav-button.open::after {
        transform: rotate(-45deg);
        top: 0;
        background-color: white;
        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;
    height: 104rem;
}
.top-bk-bottom {
    content: "";
    position: absolute;
    background: url(./img/top-bk-bottom.png) no-repeat;
    width: 100%;
    height: 100%;
    bottom: -52rem;
    left: 0rem;
    right: 0rem;
    z-index: 2;
    opacity: 1;
    background-size: 100%;
    @media screen and (max-width: 767px) {
        bottom: -36rem;
    }
}
.dots-animation {
    content: "";
    position: absolute;
    background: url(./img/top-bk-dots.png) no-repeat;
    width: 170rem;
    height: 100%;
    bottom: 0;
    top: 23rem;
    left: 0rem;
    right: 0rem;
    margin: auto;
    z-index: 3;
    background-size: 100%;
	animation: quantum 3.5s infinite;
}

@media screen and (max-width: 767px) {
    .dots-animation {
        width: 100%;
        top: -10rem;
        height: 15rem;
    }      
}
.bottom-fv-text {
    position: absolute;
    top: 51rem;
    left: 61rem;
    font-family: 'Roboto';
    font-style: normal;
    color: #FFFFFF;
    z-index: 3;
    /* font-family: 'Poppins'; */
    font-style: normal;
    font-weight: 500;
    font-size: 1.9rem;
    letter-spacing: 0.18em;
    @media screen and (max-width: 767px) {
        top: 19.6rem;
        left: 0;
        font-size: 0.8rem;
        text-align: center;
        right: 0;
        margin: auto;
        line-height: 1.6rem;
        letter-spacing: 0.2em;
    }
}

.title-absolute-top-container {
    position: absolute;
    top: 28rem;
    left: 55rem;
    width: 77.8rem;
    height: auto;
    z-index: 3;
    transform: scale(0.95);
}


@media screen and (max-width: 767px) {
    .top-fv {
        /* overflow: hidden; */
        padding-bottom: 0;
        height: 56rem;
    }  
    .title-absolute-top-container {
        top: 10rem;
        left: 0rem;
        width: 30.8rem;
        height: 6.8rem;
        right: 0;
        margin: auto;
        transform: scale(1);
    }    
}

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

.ningen-absolute02 {
    position: absolute;
    width: 63rem;
    height: auto;
    top: 9rem;
    left: 128rem;
    z-index: 3;
    filter: drop-shadow(16px -1px 5px #00000056);
}

.ningen-absolute01 {
    position: absolute;
    width: 64.7rem;
    height: auto;
    top: 11.2rem;
    left: -3rem;
    z-index: 3;
    filter: drop-shadow(16px -1px 5px #00000056);
    
}

/* .ningen-absolute01, .ningen-absolute02, .ningen-absolute03 {
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
} */

/* .ningen-absolute01:hover, .ningen-absolute02:hover, .ningen-absolute03:hover {
    transform: rotateZ(5deg) scale(1.02);
    transition: transform 0.3s ease;
} */

/* .ningen-absolute01, .ningen-absolute02, .ningen-absolute03 {
    animation: fadeIn 2s ease-out, slideFromRight 1.5s ease-out;
} */

.ningen-absolute03, .ningen-absolute02, .ningen-absolute01 {
    animation: pulse 3s infinite;
}

@keyframes pulse {
    0%, 100% { filter: drop-shadow(16px -1px 5px #00000056); }
    50% { filter: drop-shadow(0 0 15px #ff000080); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideFromRight {
    from { transform: translateX(100px); }
    to { transform: translateX(0); }
}

.bottom-fv-scroll-container {
    position: absolute;
    /* bottom: 24.4rem; */
    bottom: -5rem;
    right: 6.8rem;
    width: 13rem;
    height: 13rem;
    border-radius: 50%;
    padding-bottom: 0.8rem;
    z-index: 4;
    border: 4px solid #F08300;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: white;
    @media screen and (max-width: 767px) {
        bottom: 2rem;
        right: 1rem;
        gap: 0.3rem;
        display: none;
    }
}

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

.scroll-text-bottom {
    font-family: 'Roboto';
    /* font-family: 'Poppins'; */
    font-style: normal;
    font-weight: 600;
    font-size: 1.6rem;
    text-align: center;
    letter-spacing: 0.06em;
    color: #F08300;
    @media screen and (max-width: 767px) {
        font-size: 0.9rem;
    }
}

.scroll-icon-container {
    width: 2rem;
    height: 2rem;
    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(1.4rem);
    }
    50% {
        transform: translateY(3rem);
    }
}

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

@keyframes quantum {
    0%, 100% {
        transform: scale(0.9);
    }
    50% {
        transform: scale(1);
    }
}


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

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

.top-bk-contents {
    content: "";
    position: absolute;
    background: url(./img/top-bk.png) no-repeat;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0rem;
    z-index: 2;
    opacity: 1;
    background-position: top;
    background-size: 100%;
}

@media screen and (max-width: 767px) {
    .top-bk-contents {
        width: 100%;
        height: 66.7rem;
        background: url(./img/top-bk-sp.png) no-repeat;
        background-size: 100%;
    }
}



/* about */

.about {
    position: relative;
    background-color: #FFFFFF;
    padding-bottom: 11.1rem;
    z-index: 2;
    @media screen and (max-width: 767px) {
        padding-bottom: 5rem;
    }
}

.dots-msg-bk-container {
    content: "";
    position: absolute;
    background: url(./img/msg-bk-dots.png) no-repeat;
    width: 100%;
    height: 100%;
    bottom: 0;
    top: -15rem;
    left: 0rem;
    right: 0rem;
    margin: auto;
    z-index: 3;
    background-size: 100%;
	animation: quantum 3.5s infinite;
}

@media screen and (max-width: 767px) {
    .dots-msg-bk-container {
        background: url(./img/msg-bk-top-sp.png) no-repeat;
        width: 100%;
        height: 54.6rem;
        bottom: 0;
        top: -13rem;
        z-index: 0;
        left: 0rem;
    }      
}

/* .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 {
    margin-top: -6rem;
    display: inline-block;
    width: 100%;
    @media screen and (max-width: 767px) {
        justify-content: center;
    }
}

.title-about-message {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 4.1rem;
    /* line-height: 53px; */
    text-align: center;
    letter-spacing: 0.07em;
    color: #000000;
    position: relative;
    @media screen and (max-width: 767px) {
        /* font-weight: 700; */
        font-size: 2.1REM;
        line-height: 2REM;
        margin-bottom: 3rem;
        margin-top: 10.5rem;
    }
}

.title-about-message::after {
    content: "";
    position: absolute;
    background: url(./img/message-undertitle-line.svg) no-repeat;
    width: 62.7rem;
    height: 0.9rem;
    bottom: -3rem;
    left: 0;
    right: 0;
    margin: auto;
    background-size: 100%;
}

.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;
    }
}

.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;
    padding-top: 1rem;
    @media screen and (max-width: 767px) {
        padding-top: 0;
    }
}

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

.paragraph-center p {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 1.8rem;
    line-height: 3.7rem;
    text-align: center;
    letter-spacing: 0.01em;
    color: #000000;
    padding-top: 7.3rem;
    @media screen and (max-width: 767px) {
        font-size: 1.6rem;
        line-height: 2.6rem;
        padding-top: 4rem;
    }
}

.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%;
} */

.ningen-absolute04 {
    position: absolute;
    width: 17rem;
    height: auto;
    top: 19rem;
    left: 46rem;
    z-index: 3;
    @media screen and (max-width: 767px) {
        
    }
}
.ningen-absolute05 {
    position: absolute;
    width: 15.3rem;
    height: 40.7rem;
    top: 21rem;
    right: 45rem;
    z-index: 3;
}
.exclamation-absolute01 {
    position: absolute;
    width: 4.9rem;
    height: 5.6rem;
    top: 17rem;
    left: 47rem;
    z-index: 3;
}
.exclamation-absolute02 {
    position: absolute;
    width: 4.9rem;
    height: 5.6rem;
    top: 18rem;
    right: 46rem;
    z-index: 3;
    transform: rotate(108deg);
}

.ningen-absolute04, .ningen-absolute05, .exclamation-absolute01 {
    animation: float 4s ease-in-out infinite, pulse 3s infinite;
}
.exclamation-absolute02 {
    animation: float02 4s ease-in-out infinite, pulse 3s infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
} 

@keyframes float02 {
    0%, 100% { transform: translateY(0) rotate(108deg); }
    50% { transform: translateY(-20px) rotate(108deg); }
} 

/* attractive */

.attractive {
    position: relative;
    background-color: #FFF7E9;
    scroll-margin-top: 20rem;
    /* padding-bottom: 11.5rem;
    padding-top: 9.3rem; */
    /* clip-path: ellipse(calc(90% / 0.866) calc(22.8vw * 2) at 50% 50%); */
    clip-path: ellipse(170% 100% at bottom);
    @media screen and (max-width: 767px) {
        margin-top: 0;
        padding-bottom: 15rem;
        scroll-margin-top: 10rem;
        padding-top: 5rem;
        clip-path: ellipse(726% 100% at bottom);
    }

}

.attractive-title-container {
    padding-top: 15.4rem;
    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;
    position: relative;
    &.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;
    }
}

.attractive-title-container::before {
    content: "";
    position: absolute;
    background: url(./img/title-icon-why-us.png) no-repeat;
    width: 38.4rem;
    height: 9.4rem;
    top: 12rem;
    left: 0;
    right: 0;
    margin: auto;
    background-size: 100%;
    z-index: 1;
}

@media screen and (max-width: 767px) {
    .attractive-title-container::before {
        width: 24.8rem;
        height: 6.4rem;
        top: -1rem;
    }
}

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

.attractive-title-number {
    font-weight: 700 !important;
    font-size: 6.6rem !important;
    /* line-height: 38px; */
    letter-spacing: -0.01em !important;
    color: #000000;
    padding-bottom: 2rem;
    z-index: 2;
    @media screen and (max-width: 767px) {
        font-size: 5.6rem !important;
    }
}

.flex-container-attractive {
    display: flex;
    justify-content: space-between;
    height: auto;
    margin-top: 6.6rem;
    padding-bottom: 20rem;
    @media screen and (max-width: 767px) {
        flex-direction: column;
        align-items: center;
        height: auto;
        padding-bottom: 1.5rem;
        margin-top: 3rem;
    }
}

.column-container-why-us-boxs {
    display: flex;
    flex-direction: column;
    gap: 4.5rem;
    @media screen and (max-width: 767px) {
        gap: 1.5rem;
    }
}

.column-container-why-us-boxs-second {
    margin-top: 4.9rem;
    @media screen and (max-width: 767px) {
        margin-top: 1.8rem;
    }
}

.column-container-why-us-boxs-third {
    margin-top: 10.9rem;
}

.attractive-box-container {
    position: relative;
    /* height: 47.8rem;
    width: 40.6rem; */
    width: 44.4rem;
    background-color: white;
    border: #FCEBCD 2rem solid;
    border-radius: 2rem;
    padding-top: 21rem;
    padding-bottom: 0;
    /* padding-left: 0.5rem;
    padding-right: 3.4rem; */
    /* clip-path: polygon(7rem 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;
    height: 64.1rem;
    &.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: 2.5rem;
        padding-right: 2.5rem;
        padding-top: 15.3rem;
        border-radius: 1.5rem;
        border: #fcebcd 1rem solid;
        height: auto;
    }
}

.number-wrapper {
    position: relative;
}

.number-absolute {
    position: absolute;
    width: 9.2rem;
    height: 4rem;
    top: -2.3rem;
    left: 17%;
    transform: translateX(-50%);
    background-size: 100%;
    z-index: 2;
    @media screen and (max-width: 767px) {
        top: -1.3rem;
        left: 18%;
        font-size: 6rem;
        width: 6rem;
        height: 6rem;
    }
}

.attractive-img-box-container {
    width: 10.4rem;
    position: absolute;
    top: 1rem;
    left: 0;
    right: 0;
    margin: auto;
    @media screen and (max-width: 767px) {
        /* width: fit-content; */
        width: 8rem;
    }
}

.attractive-img-box-container1 {
    width: 27rem;
    left: -3rem;
    top: 9rem;
    @media screen and (max-width: 767px) {
        width: 20.4rem;
        left: -1rem;
        top: 7rem;
    }
}

.attractive-img-box-container2 {
    width: 11rem;
    top: 7rem;
    left: 0rem;
    @media screen and (max-width: 767px) {
        width: 7.5rem;
        left: 0rem;
        top: 4.5rem;
    }
}

.attractive-img-box-container3 {
    width: 11rem;
    top: 7rem;
    left: 0rem;
    @media screen and (max-width: 767px) {
        width: 7.5rem;
        left: 0rem;
        top: 4.5rem;
    }
}

.attractive-img-box-container4 {
    width: 11rem;
    top: 7rem;
    left: 0rem;
    @media screen and (max-width: 767px) {
        width: 7.5rem;
        left: 0rem;
        top: 4.5rem;
    }
}

.attractive-img-box-container5 {
    width: 11rem;
    top: 7rem;
    left: 0rem;
    @media screen and (max-width: 767px) {
        width: 7.5rem;
        left: 0rem;
        top: 4.5rem;
    }
}

.attractive-img-box-container6 {
    width: 11rem;
    top: 7rem;
    left: 0rem;
    @media screen and (max-width: 767px) {
        width: 8rem;
        left: 0rem;
        top: 5.5rem;
    }
}

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

.attractive-box-txt-container h3 {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 2.2rem;
    line-height: 140%;
    letter-spacing: 0.07em;
    color: #000000;
    padding-bottom: 2.2rem;
    text-align: center;
    @media screen and (max-width: 767px) {
        font-size: 1.9rem;
        line-height: 2.8rem;
        padding-bottom: 1.5rem;
        /* padding-top: 1.5rem; */
    }
}
.attractive-box-txt-container p {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 1.8rem;
    line-height: 150%;
    letter-spacing: 0.01em;
    color: #000000;
    @media screen and (max-width: 767px) {
        font-size: 1.6rem;
        line-height: 2.8rem;
        padding-bottom: 3.4rem;
        max-width: auto;
    }
}

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

.flex-container-attractive-second {
    margin-top: 0rem;
}

.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: 11rem;
    z-index: 2;
    scroll-margin-top: 26rem;
    padding-top: 14.5rem;
    background: url(./img/bk-var-orange.svg) no-repeat;
    border-radius: 8rem 8rem 0 0;
    margin-top: -10rem;
    background-size: cover;
    border-radius: 3.5rem 3.5rem 0 0;
    @media screen and (max-width: 767px) {
        scroll-margin-top: 8rem;
        padding-top: 6rem;
        background: url(./img/bk-var-orange-sp.svg) no-repeat;
        background-size: cover;
        padding-bottom: 6rem;
    }
}

.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: 3rem;
        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: 3.8rem;
    /* line-height: 57px; */
    text-align: center;
    letter-spacing: 0.07em;
    color: #FEFEFE;
    position: relative;
    @media screen and (max-width: 767px) {
        font-size: 2.6rem;
        line-height: 2.8rem;
    }
}

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

@media screen and (max-width: 767px) {
    .data-title-container::before {
        width: 23.8rem;
        height: 6.4rem;
        background-size: 100%;
        top: -0.5rem;
    }      
}

.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: 6.9rem;
    display: flex;
    gap: 3.1rem;
    flex-wrap: wrap;
    @media screen and (max-width: 767px) {
        margin-top: 4rem;
        gap: 2rem;
    }
}

.data-boxup {
    background: #FFFFFF;
    border-radius: 2rem;
    width: 45.4rem;
    padding-top: 5.7rem;
    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;
    box-shadow: #0000003d 0px 0px 14px 1px;
    height: 64.6rem;
    &.is-visible {
        transform: scale(1);
        opacity: 1;
    }
    @media screen and (max-width: 767px) {
        width: 100%;
        height: auto;
        padding-top: 4rem;
    }
}

.data-box-title {
    font-style: normal;
    font-weight: 700;
    font-size: 2.2rem;
    line-height: 3rem;
    text-align: center;
    letter-spacing: 0.07em;
    color: #000000;
    padding-bottom: 2.6rem;
    @media screen and (max-width: 767px) {
        font-size: 2.2rem;
        line-height: 2.6rem;
        height: auto;
        padding-bottom: 1rem;
    }
}

.under-data-box-title-scrib {
    width: 3rem;
    height: 0.4rem;
    background-color: #F08300;
    margin: 0 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: 154%;
    letter-spacing: 0.01em;
    color: #000000;
    padding-bottom: 4.5rem;
    max-width: 34.5rem;
    @media screen and (max-width: 767px) {
        font-size: 1.6rem;
        line-height: 2.6rem;
        padding-bottom: 4.5rem;
        max-width: 26.4rem;
    }
}

.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;
    }
}

.data-txt-animation-container {
    display: flex;
    margin-top: 2rem;
    align-items: flex-end;
    @media screen and (max-width: 767px) {
        margin-top: 2rem;
    }
}

.data-txt-animation-container424 {
    display: flex;
    margin-top: 2rem;
    align-items: center;
    gap: 1.2rem;
    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: #85C3E3;
    margin-bottom: 1rem;
    /* font-size: 4rem; */
}

.data-txt-animation-container-whitout-underdata {
    padding-bottom: 7.7rem;
    @media screen and (max-width: 767px) {
        padding-bottom: 2rem;
    }
}

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

.box-data-number {
    font-family: 'Zen Maru Gothic';
    font-style: normal;
    font-weight: 700;
    font-size: 10.5rem;
    /* line-height: 205px; */
    letter-spacing: 0.02em;
    color: #FD9876;
    @media screen and (max-width: 767px) {
        font-size: 8rem;
        line-height: 6rem;
    }
}

.box-data-person {
    font-family: 'Zen Maru Gothic';
    font-style: normal;
    font-weight: 900;
    font-size: 5rem;
    /* line-height: 205px; */
    letter-spacing: -0.01em;
    color: #FD9876;
    @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-number-green {
    color: #5AE193;
}
.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-blue {
    color: #85C3E3;
}

.box-data-number-blue2 {
    font-size: 2.5rem;
}

.under-data-animation {
    font-style: normal;
    font-weight: 400;
    font-size: 1.8rem;
    /* line-height: 33px; */
    text-align: center;
    letter-spacing: -0.01em;
    color: #000000;
    padding-top: 2.4rem;
    padding-bottom: 3.5rem;
    @media screen and (max-width: 767px) {
        font-size: 1.4rem;
        padding-top: 1.8rem;
        padding-bottom: 2rem;
    }
}

.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: 4rem auto;
    @media screen and (max-width: 767px) {
        margin: 2rem auto;
    }
}

.flex-container-number-animation {
    display: flex;
    gap: 2.5rem;
    justify-content: space-between;
}

.flex-container-number-animation2 {
    display: flex;
    gap: 0.5rem;
    flex-direction: column;
    align-items: center;
}

.flex-container-number-animation .data-txt-animation-container, .flex-container-number-animation2 .data-txt-animation-container{
   margin-top: 0;
}

.flex-container-number-animation .box-data-number, .flex-container-number-animation2 .box-data-number {
    font-size: 3rem;
}


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

.data-after {
    font-size: 2.2rem;
    color: #85C3E3;
}

.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-container2 {
    padding-top: 2rem;
    padding-bottom: 1.2rem;
    @media screen and (max-width: 767px) {
        padding-bottom: 2rem;;
    }
}

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


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

.first-box-data-container2 {
    padding-top: 2rem;
    padding-bottom: 1.2rem;
    @media screen and (max-width: 767px) {
        padding-bottom: 2rem;;
    }
}

.first-box-data-container2 .box-data-number-blue, .first-box-data-container2 .data-after {
    color: #FD9876;
}

.data-txt-animation-container3 {
    /* padding-bottom: 7.6rem; */
    padding-bottom: 0;
    @media screen and (max-width: 767px) {
        /* padding-bottom: 2rem;; */
    }
}

.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;
    }
}

.chubu-data {
    margin-left: 8rem;
    
    @media screen and (max-width: 767px) {
        margin-left: 5.8rem;
    }
}
.okinawa-data {
    margin-left: 2.1rem;
    @media screen and (max-width: 767px) {
        margin-left: 1.5rem;
    }
}

.data-container-second-row {
    gap: 3rem;
    justify-content: inherit;    
    @media screen and (max-width: 767px) {
        gap: 3.9rem;
    }
}

.shikoku-data {
    margin-right: 1.8rem;
    @media screen and (max-width: 767px) {
        margin-right: 1.3rem;
    }
}

.chugoku-data {
margin-left: 7.8rem;
margin-right: 2rem;
@media screen and (max-width: 767px) {
        margin-left: 5.9rem; 
        margin-right: 1rem;
    }
}

/* guidelines */

.guidelines {
    position: relative;
    background-color: #FFF7E9;
    padding-bottom: 14.6rem;
    scroll-margin-top: 15rem;
    padding-top: 16.1rem;
    @media screen and (max-width: 767px) {
        padding-bottom: 8rem;
        scroll-margin-top: 0rem;
        padding-top: 6rem;
    }
}

@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: 3.8rem;
    /* line-height: 57px; */
    text-align: center;
    letter-spacing: 0.07em;
    color: #000000;
    position: relative;
    z-index: 2;
    &.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: 3rem;
        padding-top: 0;
    }
}

.guidelines::before {
    content: "";
    position: absolute;
    background: url(./img/title-icon-job.png) no-repeat;
    width: 79.6rem;
    height: 8.2rem;
    background-size: 100%;
    top: 11rem;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 1;
}

@media screen and (max-width: 767px) {
    .guidelines::before {
        width: 25.6rem;
        height: 4rem;
        background-size: 100%;
        top: 7rem;
    }      
}

.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: 6rem;
    @media screen and (max-width: 767px) {
        margin-top: 4rem;
    }
}

.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: #FFF7E9;
    position: relative;
    /* padding-top: 12.1rem; */
    padding-top: 0;
    padding-bottom: 12.5rem;
    scroll-margin-top: 6rem;
    @media screen and (max-width: 767px) {
        padding-top: 7rem;
        padding-bottom: 7rem;
        scroll-margin-top: 3rem;
    }
}

.welfare::before {
    content: "";
    position: absolute;
    background: url(./img/title-icon-benefits.png) no-repeat;
    background-size: 100%;
    width: 42.3rem;
    height: 8rem;
    top: -5rem;
    left: 0rem;
    right: 0;
    margin: auto;
    z-index: 1;
} 

.welfare::after {
    content: "";
    position: absolute;
    background: url(./img/benefits-bk-top.svg) no-repeat;
    background-size: 100%;
    width: 100%;
    height: 80.1rem;
    top: -49.7rem;
    left: 0rem;
    right: 0;
    margin: auto;
} 

@media screen and (max-width: 767px) {
    .welfare::before {
        width: 16.3rem;
        height: 4rem;
        top: 7.5rem;
    }      
    .welfare::after {
        top: -6rem;
    }
}

.welfare-title {
    font-style: normal;
    font-weight: 700;
    font-size: 3.8rem;
    /* line-height: 57px; */
    text-align: center;
    letter-spacing: 0.07em;
    color: #000000;

    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: 3rem;
    }
}

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

.welfare-box-top {
    background-color: white;
    padding-top: 6rem;
    /* padding-left: 4.3rem;
    padding-right: 4.3rem; */
    width: 40.6rem;
    border-radius: 0.8rem;
    box-shadow: #00000020 0px 0px 15px 0px;
    @media screen and (max-width: 767px) {
        width: 100%;
        padding-top: 4rem;
        padding-left: 1rem;
        padding-right: 1rem;
        margin-bottom: 2rem;
    }
}

.welfare-box-top-img {
    width: 9.4rem;
    margin: 5.4rem auto;
    @media screen and (max-width: 767px) {
        width: 8.4rem;
        margin: 0 auto 2rem;
        display: flex;
        justify-content: center;
    }
}

.welfare-box-top-img1 {
    margin: 5.4rem auto 4.5rem;
    @media screen and (max-width: 767px) {
        margin: 2rem auto;
    }
}

.welfare-box-top-img2 {
    margin: 4.2rem auto;
    width: 12rem;
    @media screen and (max-width: 767px) {
        margin: 2rem auto;
        width: 9rem;
    }
}

.welfare-box-top-img3 {
    margin: 4.8rem auto 5.2rem;
    width: 16rem;
    @media screen and (max-width: 767px) {
        margin: 2rem auto;
        width: 12rem;
    }
}

.welfare-box-top-top-title {
    /* font-family: 'Zen Kaku Gothic New'; */
    font-style: normal;
    font-weight: 700;
    font-size: 2.4rem;
    /* line-height: 150%; */
    text-align: center;
    letter-spacing: 0.07em;
    color: #000000;
    @media screen and (max-width: 767px) {
        width: 100%;
        font-size: 1.9rem;
        line-height: 2.8rem;
        padding-bottom: 0;
    }
}

.welfare-box-top-bot-title {
    font-style: normal;
    font-weight: 700;
    font-size: 2rem;
    line-height: 2.8rem;
    letter-spacing: 0.01em;
    color: #000000;
    max-width: 32rem;
    margin: 0 auto 2.4rem;
    @media screen and (max-width: 767px) {
        width: 100%;
        font-size: 1.9rem;
        line-height: 2.8rem;
        padding-bottom: 0rem;
        max-width: 29rem;
        margin: 0 auto 1rem;
    }
}

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

.welfare-bot-txt {
    width: 72rem;
    height: 5.7rem;
    font-family: 'Zen Maru Gothic';
    font-style: normal;
    font-weight: 700;
    font-size: 2.4rem;
    text-align: center;
    letter-spacing: 0.07em;
    color: #FFFFFF;
    position: relative;
    background-color: #F08300;
    border-radius: 3.9rem;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 5rem auto 0;
    @media screen and (max-width: 767px) {
        font-size: 2rem;
        margin-top: 2rem;
        margin-bottom: 3rem;
        width: 100%;
        height: 5rem;
    }
}

.welfare-bot-txt::after {
    content: "";
    position: absolute;
    background: url(./img/benefits-orange-triangle.svg) no-repeat;
    background-size: 100%;
    width: 3.6rem;
    height: 3.6rem;
    bottom: -2rem;
    left: 0;
    right: 0;
    margin: auto;
    z-index: -1;
}

@media screen and (max-width: 767px) {
    .welfare-bot-txt::after {
        width: 1.6rem;
        height: 1.6rem;
        bottom: -1rem;
    }      
}

.welfare-bottom-container {
    width: 100%;
    background-color: white;
    /* padding-top: 9.3rem; */
    font-style: normal;
    font-weight: 700;
    font-size: 2rem;
    line-height: 4.7rem;
    letter-spacing: 0.01em;
    color: #000000;
    /* padding-bottom: 5.7rem; */
    z-index: -2;
    position: relative;
    margin-top: -3rem;
    border-radius: 0.8rem;
    box-shadow: #00000020 0px 0px 15px 0px;
    padding: 8.5rem 8.2rem 6.1rem;
    text-align: center;
    @media screen and (max-width: 767px) {
        padding-top: 3rem;
        font-size: 1.6rem;
        line-height: 3.4rem;
        text-align: left;
        padding-bottom: 2.7rem;
        margin-top: -5rem;
        padding-left: 2rem;
        padding-right: 2rem;
    }
}


/* faq */

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

.faq::before {
    content: "";
    position: absolute;
    background: url(./img/title-icon-faq.png) no-repeat;
    width: 20rem;
    height: 8rem;
    top: -4.5rem;
    left: 0;
    right: 0;
    margin: auto;
    background-size: 100%;
}

@media screen and (max-width: 767px) {
    .faq::before {
        width: 13rem;
        height: 5rem;
        top: 4rem;
    }      
}


.faq-title {
    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: 3.8rem;
    /* line-height: 57px; */
    text-align: center;
    letter-spacing: 0.07em;
    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: 3rem;
    }
}

.question-answer-corner-container {
    margin-top: 8.7rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    @media screen and (max-width: 767px) {
        margin-top: 4rem;
        gap: 3.8rem;
    }
}

.question-container {
    position: relative;
    width: 120rem;
    height: 10.7rem;
    background-color: white;
    padding-left: 2rem;
    display: flex;
    align-items: center;
    cursor: pointer;
    margin: 0 auto 2rem;
    border-radius: 0.8rem;
    box-shadow: #00000020 0px 0px 15px 0px;
    transition: 
        max-height 0.4s ease, 
        opacity 0.3s ease 0.1s,
        padding 0.4s ease,
        margin 0.4s ease;
    @media screen and (max-width: 767px) {
        width: 100%;
        padding-left: 1.5rem;
        margin: 0 auto 0;
    }
}

.question-container.active {
    border-radius: 0.8rem 0.8rem 0 0;
    box-shadow: #0000000a 0px -12px 15px 0px;
}

/* Barre horizontale du + / - */
.question-container::after {
    position: absolute;
    content: "";
    width: 2.4rem;
    height: 0.4rem;
    background-color: #5C380D;
    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: #5C380D;
    top: 4.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: 4.7rem;
        right: 2.5rem;
    }
    .question-container::after {
        width: 1.2rem;
        height: 0.2rem;
        top: 50%;
        right: 2rem;
    }
}

.question-logo {
    font-family: 'Poppins';
    background-color: #5C380D;
    width: 4.8rem;
    height: 4.8rem;
    border-radius: 50%;
    font-style: normal;
    font-weight: 500;
    font-size: 2.9rem;
    letter-spacing: 0.07em;
    color: #FFFFFF;
    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;
    /* line-height: 150%; */
    text-align: center;
    letter-spacing: 0.07em;
    color: #5C380D;
    @media screen and (max-width: 767px) {
        font-size: 1.6rem;
        max-width: 23.9rem;
        line-height: 2.2rem;
        text-align: left;
    }
}

.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: 0rem 0rem 0.8rem 0.8rem;
    display: flex;
    gap: 2.9rem;
    align-items: center;
    margin-top: -2.3rem;
}

.answer-container.open {
    max-height: 100rem;
    opacity: 1;
    margin-top: -2.3rem;
    padding: 2.3rem 2rem 5rem;
    margin-bottom: 4.2rem;
    box-shadow: #00000012 0px 7px 20px 0px;
    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: 0rem;
        padding: 2rem 1.6rem;
        margin-bottom: 2rem;
        align-items: flex-start;
    }
}

.answer-logo {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-size: 2.9rem;
    letter-spacing: 0.07em;
    color: #F08300;
    width: 4.8rem;
    height: 4.8rem;
    background: #FFE7C9;
    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 {
    line-height: 3.2rem;
    max-width: 107rem;
    font-style: normal;
    font-weight: 400;
    font-size: 1.8rem;
    letter-spacing: 0.01em;
    color: #000000;
    @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;
    }
}

.faqandform {
    background: #FFF7E9;
}

.form {
    /* background-color: #FFF7E9; */
    padding-top: 47rem;
    /* padding-top: 71rem; */
    padding-bottom: 9.2rem;
    position: relative;
    background: url(./img/entry-form-bk.svg) no-repeat;
    background-size: 100%;
    margin-top: -27rem;
    position: relative;
    scroll-margin-top: -30rem;
    @media screen and (max-width: 767px) {
        padding-top: 7rem;
        padding-bottom: 5.7rem;
        margin-top: -6rem;
        background: url(./img/entry-form-bk-sp.svg) no-repeat;
        background-size: cover;
        scroll-margin-top: 0;
    }
}


.form::before {
    content: "";
    position: absolute;
    background: url(./img/form-icon-title.png) no-repeat;
    background-size: 100%;
    width: 54.3rem;
    height: 8rem;
    top: 42rem;
    left: 0rem;
    right: 0;
    margin: auto;
    z-index: 1;
}

@media screen and (max-width: 767px) {
    .form::before {
        width: 26.3rem;
        height: 6rem;
        top: 13.5rem;
    }      
}

/* .form::before {
    content: "";
    position: absolute;
    background: url(./img/entry-form-bk.svg) no-repeat;
    background-size: 100%;
    width: 100%;
    height: 347.7rem;
    top: -52rem;
    left: 0rem;
    right: 0;
    margin: auto;
} */

.form-title {
    position: relative;
    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: 3.8rem;
    /* line-height: 57px; */
    text-align: center;
    letter-spacing: 0.07em;
    color: #FEFEFE;
    &.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: 9rem;
    }
}


ul.entry-step {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 9.7rem;
    margin-bottom: 5rem;
    @media screen and (max-width: 767px) {
        gap: 1.2rem;
        margin-top: 4rem;
        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.9rem;
    height: 1.4rem;
    background: url(./img/step-arrow.svg) no-repeat;
    background-size: 100%;
    right: -2.6rem;
    top: 0;
    bottom: 0;
    margin: auto;
    filter: brightness(999);
}

.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-bk {
    background-color: #F18200;
    padding-top: 6.5rem;
    padding-bottom: 8.1rem;
    @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;
}

.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: white;
    padding-top: 4.2rem;
    padding-bottom: 3.3rem;
    display: block;
    text-align: center;
    background-color: #373737;
    @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: white;
    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;
     }
    .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;
}

.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: white;
    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: #FA9A2B;
    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;
        }
    }
}



@media screen and (max-width: 1080px) {
    .ningen-absolute01 {
        width: 43.7rem;
        height: auto;
        top: 20.2rem;
        left: -1rem;
    }  
    .title-absolute-top-container {
        top: 28rem;
        left: 43rem;
        width: 73.8rem;
    }
    .bottom-fv-text {
        top: 51rem;
        left: 47.4rem;
    }
    .ningen-absolute02 {
        width: 45rem;
        height: auto;
        top: 10rem;
        left: 113rem;
    }
    .ningen-absolute04 {
        width: 17rem;
        height: auto;
        top: 15rem;
        left: 32rem;
    }
    .exclamation-absolute01 {
        width: 4.9rem;
        height: 5.6rem;
        top: 16rem;
        left: 32rem;
    }
    .ningen-absolute05 {
        width: 15.3rem;
        height: 40.7rem;
        top: 18rem;
        right: 33rem;
    }
    .exclamation-absolute02 {
        width: 4.9rem;
        height: 5.6rem;
        top: 16rem;
        right: 32rem;
    }
}

@media screen and (max-width: 767px) {
    .ningen-absolute03 {
        width: 16.7rem;
        height: 25.8rem;
        top: 29rem;
        left: -1rem;
    }
    .ningen-absolute02 {
        width: 20rem;
        height: auto;
        top: 21.6rem;
        left: 17rem;
    }
    .ningen-absolute01 {
        width: 18.7rem;
        height: 26.8rem;
        top: 22.7rem;
        left: 0rem;
    }
    .bottom-fv-text {
        top: 19.6rem;
        left: 0;
        font-size: 0.8rem;
        text-align: center;
        right: 0;
        margin: auto;
        line-height: 1.6rem;
        letter-spacing: 0.2em;
    }
    .title-absolute-top-container {
        top: 10rem;
        left: 0rem;
        width: 30.8rem;
        height: 6.8rem;
        right: 0;
        margin: auto;
        transform: scale(1);
    }
    .ningen-absolute04 {
        display: none;
    }
    .exclamation-absolute01 {
        display: none;
    }
    .exclamation-absolute02 {
        display: none;
    }
    .ningen-absolute05 {
        display: none;
    }
}
