@charset "UTF-8";
/* 

メイン画像

*/
.header {
    height: 100vh;
    position: relative;
    background-image: url(../img/mv-bg-pc.jpg);
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
    object-fit: cover;
}
.mv-catc {
    width: 50%;
    position: absolute;
    left: 50%;
    bottom: 5.5%;
    transform: translateX(-50%);
}

.mv-catc.sp {
    display: none;
}

@media screen and (max-width: 550px) {
    .mv-catc {
        display: none;
    }
    .mv-catc.sp {
        display: block;
        width: 78%;
    }
}

.mv-title {
    width: 100%;
    width: 57%;
    position: absolute;
    bottom: 29%;
    left: 50%;
    z-index: 99;
    transform: translateX(-50%);
    /* kari */
    font-family: "Orbitron", sans-serif;
    font-size: var(--font-h1);
    font-weight: normal;
    letter-spacing: 0.3em;
    width: 100%;
    text-align: center;
    text-shadow: 13px 19px 5px #fff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mv-title::before {
    content: "SUCCESS";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    text-shadow: none;
    background: linear-gradient(90deg, #00a2e8 40%, #ffffac 50%, #00a2e8 60%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 100%;
    text-align: center;
    z-index: 100;
    animation: mv-title-color 5s linear infinite;
}

@keyframes mv-title-color {
    0% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.memberimg {
    position: absolute;
}

.member1 {
    width: 19.5%;
    bottom: 32%;
    left: 4.3%;
}

.member2 {
    width: 23%;
    bottom: 55.6%;
    left: 23.5%;
}
.member3 {
    width: 19.5%;
    bottom: 39%;
    right: 11.7%;
}

.mv-bg {
    object-fit: cover;
}
.mv-sp {
    display: none;
}

@media screen and (max-width: 880px) {
    .mv-catc {
        bottom: 15.5%;
    }
}

@media screen and (max-width: 660px) {
    .header {
        background-image: url(../img/mv-bg-sp.jpg);
    }
    .member2 {
        width: 37%;
        bottom: 65.6%;
        left: 23.5%;
    }

    .member1 {
        width: 30%;
        bottom: 45%;
        left: 10%;
    }
    .member3 {
        width: 30%;
        bottom: 55%;
        right: 10%;
    }
    .mv-title {
        width: 90%;
        bottom: 39%;
    }
    .mv-catc.sp {
        bottom: 11.5%;
    }
}

/* 

バナー

*/
.banner {
    width: 100%;
    flex-wrap: wrap;
    position: fixed;
    justify-content: space-evenly;
    bottom: 5px;
    left: 0;
    z-index: 110000;
    visibility: hidden;
    transition: 1s;
}

.banner__inner .btn {
    font-weight: bold;
    font-size: var(--font-h7);
    padding: 1em;
    margin-bottom: 1rem;
}
.banner__inner--green {
    background-color: #06c755;
}

@media screen and (max-width: 880px) {
    .banner {
        visibility: visible;
        display: flex;
    }
}

/* 
ゴートップ
*/

.pagetop {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    border-top: 1px solid #fff;
    border-left: 1px solid #fff;
    position: fixed;
    bottom: 75px;
    right: 3.25%;
    z-index: 10001;
    display: flex;
    justify-content: center;
    align-items: center;
}
.pagetop a {
    text-align: center;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}
.pagetop a::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f062";
    font-size: 36px;
    color: var(--color-main);
    margin: auto;
    text-align: center;
}

@media (any-hover: hover) {
    .pagetop:hover {
        background-color: rgba(255, 255, 255, 1);
    }
}
/* 

ヘッダー

*/
.header {
    position: relative;
}

/* 

メインコンテンツ 

*/
.container {
    background-color: var(--color-white);
    position: relative;
}
.nav {
    width: 100%;
    justify-content: space-between;
    background-color: rgba(255, 255, 255, 0.2);
    position: sticky;
    top: 0;
    padding: 2em;
    z-index: 10000;
    transition: 1s;
}

@media (any-hover: hover) {
    .nav:hover {
        background-color: rgba(255, 255, 255, 1);
    }
}

.nav-list {
    width: 100%;
    justify-content: space-between;
}

.nav-list__iteme {
    font-size: var(--font-h5);
    font-weight: bold;
    position: relative;
    white-space: nowrap;
}

.nav-list__iteme a {
    color: var(--color-black);
    font-size: var(--font-h);
    background-image: linear-gradient(#00a2e8, #00a2e8);
    background-repeat: no-repeat;
    background-position: bottom right; /* 下線の初期位置 */
    background-size: 0 1px; /* 下線のサイズ（横幅、高さ） */
    transition: background-size 0.3s;
}
@media (any-hover: hover) {
    .nav-list__iteme a:hover {
        color: var(--color-main);
        background-position: bottom left; /* 下線のホバー時位置 */
        background-size: 100% 1px; /* 下線の横幅を100%にする */
    }
}

.nav__btn .btn {
    font-size: var(--font-h5);
    padding-left: 3em;
    padding-right: 3em;
}

.nav-list__inner {
    background-color: rgba(255, 255, 255, 0.2);
    width: 9%;
    position: absolute;
    bottom: 1400%;
    left: 14.5%;
    border-radius: 20px;
    transition: 0.5s;
    z-index: -1;
}

/* 

ハンバーガー

*/
.hamburger {
    display: none;
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.2);
    border-top: 1px solid #fff;
    border-left: 1px solid #fff;
    aspect-ratio: 1;
    border-radius: 50%;
    position: fixed;
    top: 3.25%;
    right: 3.25%;
    z-index: 100000;
    transition: 1s;
}

.hamburger span {
    display: block;
    width: 60%;
    height: 3px;
    background-color: var(--color-main);
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.5s;
}

.hamburger1 {
    top: 30%;
}

.hamburger2 {
    top: 50%;
}

.hamburger3 {
    top: 70%;
}

.nav--sp {
    height: 100vh;
    background-color: rgba(216, 58, 58, 0);
    border: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    align-items: flex-start;
    justify-content: start;
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(43%, -43%) skew(39deg, 10deg) scale(0);
    z-index: 10000;
    transition: 0.5s;
}

.nav--sp:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.nav-list--sp {
    width: 50%;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 100px;
}

.nav-list--sp .nav-list__iteme {
    white-space: nowrap;
    margin-bottom: 1.5em;
}

.menu-open .nav--sp {
    display: flex;
    flex-direction: column;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    justify-content: start;
    align-items: center;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0) skew(0, 0) scale(1);
}

.menu-open .hamburger {
    background-color: rgba(255, 255, 255, 0);
    border: none;
    box-shadow: 0px 10px 10px -6px rgba(0, 0, 0, 0);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.menu-open .hamburger1 {
    top: 50%;
    transform: translateX(-50%) rotate(45deg);
}

.menu-open .hamburger2 {
    top: 50%;
    width: 0;
    left: 50%;
}

.menu-open .hamburger3 {
    top: 50%;
    transform: translateX(-50%) rotate(-45deg);
}

@media screen and (max-width: 880px) {
    .nav {
        display: none;
    }
    .nav--sp {
        display: flex;
    }
    .hamburger {
        display: block;
    }
}

main {
    max-width: 1280px;
    margin: 0 auto;
}

.section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 100px 8%;
}

.section h2::before {
    content: "";
    display: block;
    width: 12em;
    height: 2em;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    object-fit: cover;
}

@media screen and (max-width: 450px) {
    .section {
        padding: 50px 7.5%;
    }
}

/* 

COMPANY

*/
/* 会社説明 */
.company {
    background-color: rgba(0, 162, 232, 0.3);
    background-image: url(../img/companyBg.png);
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: contain;
    object-fit: cover;
}

.company h2::before {
    background-image: url(../img/section-title-company.svg);
}
.company-list {
    width: 100%;
    justify-content: center;
    background-color: var(--color-white);
    box-shadow: 10px 10px 5px 0 rgba(255, 255, 99, 0.5);
}

.company-list.sp {
    padding-right: 5%;
}

.company-list img {
    width: 30%;
    position: absolute;
}

.server {
    top: 3%;
    right: 3%;
}

.cloud {
    bottom: 3%;
    left: 3%;
}

.company-list__item {
    font-size: var(--font-h4);
    list-style-type: none;
    margin-bottom: 2.5em;
    padding-left: 12vw;
    margin-left: 0.5em;
    position: relative;
    z-index: 100;
}

.company-list__item::before {
    content: "";
    display: block;
    width: 1em;
    border-radius: 50%;
    aspect-ratio: 1;
    background-color: var(--color-black);
    margin-left: -1em;
    margin-right: 0.5em;
    margin-bottom: -1.3em;
}

.company-list-wrap img {
    width: 30%;
}

/* 事業内容 */
.three-circle {
    justify-content: space-between;
    margin-bottom: 60px;
}

.three-circle__card {
    width: 23%;
    aspect-ratio: 1;
    justify-content: center;
}

.presidentimg {
    position: relative;
    width: 28%;
}

.president__name {
    width: 100%;
}

.company-list.president {
    background-color: rgba(255, 255, 255, 0.2);
    border-top: 1px solid #fff;
    border-left: 1px solid #fff;
    padding: 0 5%;
    padding-top: 5%;
    width: 63%;
}

.company-list__item.president {
    padding-left: 1em;
    font-weight: bold;
}

.company-list__item.president::before {
    background-color: var(--color-main);
}

.company-list__item.president a {
    text-decoration: underline;
    color: var(--color-black);
    display: inline;
    position: relative;
}

.company-list__item.president a img {
    width: clamp(1.6rem, calc(1rem + 1.09vw), 2.4rem);
    position: absolute;
    transform: translateY(-40%);
}

.president-box {
    justify-content: space-between;
}

@media screen and (max-width: 950px) {
    .president-box {
        flex-direction: column;
    }

    .presidentimg {
        width: 50%;
    }

    .company-list__item.president:first-child {
        margin-top: 2em;
    }

    .company-list__item.president:nth-last-of-type(2) {
        margin-top: -1em;
    }
    .company-list__item.president:nth-last-of-type(2)::before {
        margin-bottom: -1em;
    }
    .company-list.president {
        width: 100%;
    }
}

@media screen and (max-width: 680px) {
    .company-list.sp .company-list__item {
        margin-left: -0.5em;
    }
}

@media screen and (max-width: 550px) {
    .company-list {
        padding-right: 5px;
    }
    .three-circle__card {
        width: 50%;
    }

    .company-list__item.president:first-child {
        margin-top: 0;
    }

    .three-circle {
        gap: 10px;
    }

    .presidentimg {
        width: 50%;
    }
    .company-list__item.president {
        font-size: var(--font-h7);
    }
    .company-list.president {
        width: 100%;
        padding: 55px;
        padding-bottom: 0;
    }
}

@media screen and (max-width: 450px) {
    .presidentimg {
        width: 50%;
        align-items: center;
    }
    .presidentimg img {
        width: 50%;
    }
}

@media screen and (max-width: 405px) {
    .company-list.president {
        padding-right: 10px;
    }
}

@media screen and (max-width: 375px) {
    .company-list__item.sp {
        font-size: 22px;
    }
}

/* 

〇分でわかる会社データ

*/

.date .h2 span {
    white-space: nowrap;
    display: inline;
}

.date-inner {
    width: 100%;
    justify-content: space-between;
    align-items: flex-start;
}

.date-inner .h3 span {
    white-space: nowrap;
    display: inline;
}

.date-inner.flex-row {
    margin-top: 60px;
}

.date-inner__about {
    width: 47%;
    align-items: center;
}
.date-inner__about h3 {
    font-weight: bold;
    margin-top: 1em;
}

.date-inner__about p {
    width: 75%;
    margin-bottom: 1em;
}

.date-inner.bottom {
    align-items: center;
}

.date-inner--bottom {
    align-items: center;
    justify-content: space-evenly;
}

.date-inner__img {
    width: 47%;
}

.date-inner__img--about {
    display: none;
}

.president__name {
    text-align: center;
    font-size: var(--font-h5);
    font-weight: bold;
}

.stepup {
    align-items: center;
    gap: 20px;
}

.stepup-inner {
    width: 100%;
    justify-content: space-between;
    align-items: flex-start;
}

.stepup-inner__img {
    width: 30%;
    margin-bottom: 50px;
    align-items: center;
}

.stepup-inner__img img {
    width: 100%;
    margin-bottom: 5px;
}

.stepup-box1 {
    border: 5px solid #6495c3;
}

.stepup-box2 {
    border: 5px solid #91d9c5;
}

.stepup-box3 {
    border: 5px solid var(--color-main);
}

.stepup-inner__text {
    padding: 0.5em 1em;
}

.arrow {
    margin-bottom: 3%;
}

@media screen and (min-width: 601px) {
    .graphstep1.inview {
        opacity: 0;
        transform: translateY(40%);
        transition: 1s;
    }
    .graphstep2.inview {
        opacity: 0;
        transform: translateY(40%);
        transition: 1.5s;
    }
    .graphstep3.inview {
        opacity: 0;
        transform: translateY(40%);
        transition: 2s;
    }

    .graphstep1.inview.fade-in {
        opacity: 1;
        transform: translateY(0);
    }

    .graphstep2.inview.fade-in {
        opacity: 1;
        transform: translateY(-10%);
    }

    .graphstep3.inview.fade-in {
        opacity: 1;
        transform: translateY(-20%);
    }
}

.date-inner__img.sp {
    display: none;
}

.date-inner h3 {
    font-weight: bold;
}

/*companyのスマホ*/
@media screen and (max-width: 914px) {
    .arrow {
        transform: rotate(353deg);
    }
}
@media screen and (max-width: 652px) {
    .arrow {
        transform: rotate(350deg);
        margin-bottom: 5%;
    }
}
@media screen and (max-width: 600px) {
    .date .h2 span {
        display: block;
    }
    .date-inner .h3 span {
        display: block;
    }
    .date-inner {
        flex-direction: column;
    }
    .date-inner__about {
        width: 100%;
    }
    .date-inner__img {
        width: 100%;
    }
    .arrow {
        display: none;
    }
    .stepup-inner {
        flex-direction: column;
    }
    .stepup-inner__img {
        width: 100%;
        transform: none;
    }
    .date-inner__img.textimg {
        display: none;
    }
    .date-inner__img.sp {
        display: block;
    }

    .date-inner__img--about {
        display: block;
    }
    .date-inner.bottom {
        display: block;
    }

    .date-inner--bottom {
        display: block;
    }
}

/*動画 　--*/
.youtube {
    background-color: #91d9c530;
}
.youtube__movie {
    text-align: center;
    position: relative;
}
.movie__hover {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.movie__thumbnail {
    width: 100%;
    aspect-ratio: 16 / 9;
}
/*動画のスマホ*/
@media screen and (max-width: 800px) {
    .movie__hover {
        width: 20%;
        height: auto;
    }
}

/*社員メッセージ*/
.employeemsg__slide {
    margin: 0 auto;
    max-width: 40%;
}

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

/*社員メッセージのスマホ*/
@media screen and (max-width: 1024px) {
    .line-break {
        display: inline-block;
    }

    .message-image {
        max-width: 200px !important;
        margin-top: -100px !important;
    }
}

@media screen and (max-width: 450px) {
    .message-area1 {
        margin-top: 20%;
    }
    .form-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .member-name {
        margin-top: 0px !important;
    }

    .message-image {
        max-width: 130px !important;
        margin-top: -100px !important;
    }

    .message-photo img {
        margin: 10px 0 !important;
        max-width: 100%;
    }
}

.employeemsg {
    background-color: rgba(0, 162, 232, 0.3);
}

.message-area1 {
    margin-bottom: 19.2%;
    margin-top: 12.8%;
}
@media screen and (max-width: 450px) {
    .message-area1,
    .message-area2 {
        margin-top: 20%;
    }
}
.message-icon {
    text-align: center;
}

.member-name {
    margin-top: -1.3%;
}

.message-area1,
.message-area2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--color-white);
    border-radius: 30px;
    padding: 12%;
    box-shadow: 10px 10px 5px 0 rgba(255, 255, 99, 0.5);
}

.message-image {
    margin-top: -40%;
}

.message-business h3,
.message-favorite h3 {
    margin-bottom: 20px;
}

.phototext {
    margin-bottom: 20px;
}

.message-photo {
    text-align: center;
}

.message-photo img {
    margin: 0px 2.8%;
    margin-bottom: 2.5%;
}

.smalltext {
    font-size: 1.5rem;
}

/*採用フロー*/
.flow h2 {
    position: relative;
    z-index: 10;
}
.flow h2::before {
    background-image: url(../img/section-title-recruit.svg);
}

.flow {
    position: relative;
    background: linear-gradient(
        to bottom,
        rgba(0, 162, 232, 0.3),
        rgba(255, 255, 99, 0.2)
    );
}

.flow-box {
    position: relative;
    z-index: 10;
}

.flow__blue {
    color: #00a2e8;
    font-weight: bold;
    margin-bottom: -20px;
}
.order {
    justify-content: space-between;
    align-items: flex-start;
}

.order__arrow {
    width: 5%;
    transform: translateY(255%);
}

.order__inner {
    width: 25%;
}

.door-bg {
    width: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.door-sp {
    display: none;
}

/*採用フローのスマホ*/

@media screen and (max-width: 480px) {
    .order {
        flex-direction: column;
        align-items: center;
    }
    .flow__blue {
        margin-bottom: 2em;
    }
    .order__inner {
        width: 100%;
    }
    .order__inner h3 {
        margin-top: 0;
    }
    .order__arrow {
        width: 22%;
        transform: none;
        transform: rotate(90deg);
    }
    .order-sp {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .order-sp img {
        width: 48%;
    }
    .order-sp p {
        width: 48%;
    }
    .door-bg {
        display: none;
    }
    .door-sp {
        display: block;
        width: 96%;
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translate(-50%, 0);
        z-index: 0;
    }
}
/*

RECRUIT

*/
.recruit {
    background-color: rgba(145, 217, 197, 30%);
}

.recruit ul {
    padding-left: 0;
}

.requirements-wrap {
    padding: 10%;
    width: 100%;
    padding-right: 5%;
    padding-top: 5%;
}
.requirements {
    line-height: 1.5;
}

.definition-list {
    font-size: var(--font-h7);
    align-items: flex-start;
    margin-bottom: 1.5em;
    justify-content: space-between;
    border-bottom: 1px dotted #bbb;
    padding-bottom: 1.5em;
}

.definition-list li {
    position: relative;
    margin-bottom: 0.5em;
}

.definition-list li .amount {
    position: absolute;
    left: 9em;
}

.definition-list li .amount.nowrap {
    position: relative;
    left: 0;
}
@media screen and (max-width: 456px) {
    .requirements-wrap {
        padding-right: 3px;
    }
}
@media screen and (max-width: 390px) {
    .definition-list li .amount {
        position: relative;
        left: 0;
        margin-left: 2em;
    }
    .definition-list li {
        display: flex;
        flex-direction: column;
    }

    .definition-list li .amount.nowrap {
        margin-left: 0;
    }
}

.definition-list__title {
    width: 6em;
    font-weight: bold;
    align-items: flex-start;
}

.definition-list dd {
    width: 70%;
}

.recruit__btn {
    color: var(--color-white);
    font-size: var(--font-h5);
    font-weight: normal;
    padding-left: 5em;
    padding-right: 5em;
}
/*RECRUITのスマホ*/

@media screen and (max-width: 450px) {
    .recruit {
        padding-left: 0;
        padding-right: 0;
    }
    .requirements-wrap {
        padding-right: 5%;
    }
    .definition-list__title {
        width: 30%;
    }

    .definition-list dd {
        width: 70%;
    }
    .definition-list {
        flex-direction: row;
        justify-content: center;
    }
}

.h3__adjustment {
    margin-top: 1rem;
}

@media screen and (max-width: 456px) {
    .h3__adjustment {
        margin-top: 0rem;
    }
}

/*Q&A*/
.faq h2::before {
    background-image: url(../img/section-title-faq.svg);
}
.faq {
    background-color: rgba(0, 162, 232, 0.3);
}

.QAbox {
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

.QAbox-card {
    width: 45%;
    background-color: #ffffff;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 5%;
    aspect-ratio: 3.36/1;
    position: relative;
    box-shadow: 3px 3px 5px 0px rgba(0, 0, 0, 0.3);
    transition: 0.5s;
}
@media (any-hover: hover) {
    .QAbox-card:has(.QAbox-card__question:hover) {
        box-shadow: 10px 10px 5px 0 rgba(255, 255, 99, 0.5);
    }
}
.QAbox-card:has(.open:hover) {
    box-shadow: 3px 3px 5px 0px rgba(0, 0, 0, 0.3);
}

.QAbox-card__question,
.QAbox-card__question::before {
    cursor: pointer;
}

.QAbox-card__question,
.QAbox-card__answer {
    margin-left: 30px;
    margin-top: 10px;
}

.QAbox-card__answer {
    display: none;
    margin-top: 50px;
}

.QAbox-card__question::before {
    content: "Q";
    background-color: yellow;
    cursor: pointer;
}
.QAbox-card__answer::before {
    content: "A";
    background-color: yellow;
}
.QAbox-card__question::before,
.QAbox-card__answer::before {
    color: #000;
    font-size: 20px;
    font-weight: bold;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: -40px;
    margin-top: -20px;
    flex-shrink: 0;
}
.QAicon-wrap {
    width: 20px;
    height: 20px;
    aspect-ratio: 1;
    position: absolute;
    top: 10px;
    right: 3%;
    transition: 0.5s;
}
.QAicon1 {
    width: 100%;
    height: 2px;
    background-color: var(--color-black);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.QAicon2 {
    width: 2px;
    height: 100%;
    background-color: var(--color-black);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.open .QAicon-wrap {
    transform: rotate(315deg);
}

.open .QAicon-wrap span {
    background-color: var(--color-main);
}

/*Q&Aのスマホ*/

@media screen and (max-width: 800px) {
    .QAbox {
        flex-direction: column;
    }
    .QAbox-card {
        width: 100%;
        aspect-ratio: 1 / 0.2;
    }
}

/*

LINK 

*/

.flow__border {
    aspect-ratio: 0;
    border-radius: 50%;
}

.link h2::before {
    background-image: url(../img/section-title-link.svg);
}
.linkbox {
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}
.linkbox__card {
    width: 45%;
    background-color: #ffffff;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 5%;
    aspect-ratio: 3.36/1;
}
.linetext {
    text-align: center;
}

.linkbox__card_sp {
    display: none;
}

/*LINKのスマホ*/
@media screen and (max-width: 600px) {
    .linkbox {
        flex-direction: column;
    }
    .flex-column {
        width: 100%;
    }
    .linkbox__card {
        width: 100%;
    }
    .linkbox__card_pc {
        display: none;
    }
    .linkbox__card_sp {
        display: block;
    }
}

/*ACCESS*/
.access h2::before {
    background-image: url(../img/section-title-access.svg);
}

.access__box {
    text-align: center;
}
.access__text {
    text-align: left;
    margin-left: 5%;
}
.maptext {
    margin-bottom: 1.5em;
}

/*CONTACT*/
.contact h2::before {
    background-image: url(../img/section-title-contact.svg);
}
.contact {
    background: #fff;
    border-radius: 8px;
}
.reservation {
    width: 100%;
}
.form-row {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

.from-flex {
    display: flex;
    flex-direction: row;
}

.from-flex input {
    width: 20%;
}

.form-row label {
    margin-right: 10px;
    font-weight: bold;
}
.form-row input,
.form-row textarea {
    flex: 1;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box;
}
.situation__select {
    flex: 1;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box;
}
.checkbox-container {
    display: block;
    text-align: center;
    font-size: 14px;
    margin-bottom: 20px;
    white-space: nowrap;
}
.checkbox-container a {
    display: inline;
}
.checkbox-container span {
    text-decoration: underline;
}
.checkbox-container input[type="checkbox"] {
    margin-right: 8px;
}
.contact__button {
    width: 60%;
    background-color: var(--color-main);
}
.contact__button button {
    color: var(--color-white);
    border: none;
}

.form-row__checkbox {
    display: flex;
    padding: 5px;
    white-space: nowrap;
}
.entrybtn__2 {
    margin: 20px 0 10px;
}

.access__text--flex {
    display: flex;
}

.access__text--flex a[href^="tel:"] {
    pointer-events: none;
    text-decoration: none;
    color: var(--color-black);
}

.access__text--row {
    display: flex;
}

.access__text--row a[href^="tel:"] {
    pointer-events: none;
    text-decoration: none;
    color: var(--color-black);
}

.access__text--row .href[href^="tel:"] {
    pointer-events: none;
    text-decoration: none;
    color: var(--color-black);
}

.access__text--wrap {
    display: flex;
    flex-direction: column;
}

@media screen and (max-width: 450px) {
    .access__text--wrap {
        flex-direction: column;
        gap: 0;
    }
}

@media screen and (max-width: 880px) {
    .access__text--row a[href^="tel:"] {
        pointer-events: auto;
        text-decoration: underline;
    }
}

/*CONTACTのスマホ --*/
@media screen and (max-width: 600px) {
    .form-row__checkbox {
        flex-direction: column;
        white-space: nowrap;
    }
}
@media screen and (max-width: 450px) {
    .form-row {
        flex-direction: column;
        align-items: flex-start;
    }
    .form-row label {
        width: 100%;
        margin-bottom: 5px;
    }
    .form-row input,
    .form-row textarea {
        width: 100%;
        box-sizing: border-box;
    }
    .contact h1 {
        font-size: 20px;
    }
    .contact button {
        font-size: 14px;
        padding: 10px;
    }
    .form-row__checkbox input {
        width: 10%;
    }
    .from-flex input {
        width: 7%;
    }
}

@media screen and (max-width: 450px) {
    .access__map {
        height: 250px;
    }
}

/*

footer 

--*/
footer {
    background-color: rgba(0, 162, 232, 0.3);
    text-align: center;
    padding: 60px 0 30px;
}
.logo--footer {
    margin-bottom: 30px;
    width: 328px;
    height: 55px;
    margin: 0 auto;
    margin-bottom: 15px;
}
/*footerのスマホ*/
@media screen and (max-width: 880px) {
    footer {
        padding: 40px 0 70px;
    }
}
@media screen and (max-width: 450px) {
    .logo--footer {
        margin-bottom: 30px;
        width: 150px;
        height: 28px;
        margin: 0 auto;
        margin-bottom: 15px;
    }
}
