@charset "utf-8";

.content_area {
    max-width: 1920px;
    padding: 0 0 100px;
}

/*---------- company ----------*/

#top_message {
    padding: 90px 0 70px;
}

#top_message .section-title::after {
    content: "";
    position: absolute;
    top: 0;
    left: -30px;
	width: 292px;
	height: 245px;
    background-image: url(../images/bg-blue.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    z-index: -1;
    pointer-events: none;
	opacity: .2;
}
/*
#top_message .section-title::after {
    transition: none;
    animation: jobsBlobWiggle 18s ease-in-out infinite;
}*/

/*
@keyframes jobsBlobWiggle {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    20% {
        transform: translate(18px, -14px) rotate(10.2deg);
    }

    40% {
        transform: translate(-22px, 10px) rotate(-10.0deg);
    }

    60% {
        transform: translate(14px, 22px) rotate(10.8deg);
    }

    80% {
        transform: translate(-16px, -18px) rotate(-10.3deg);
    }

    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}*/

p.company_name {
    font-size: 2.0rem;
	margin: 25px 0 0;
}

.president_name {
    font-size: 3.4rem;
}

#top_message .column_1-1 {
    flex-direction: row-reverse;
}

#ten_meaning .column_1-1 .link_btn {
    white-space: nowrap;
}

#company_links {
    padding: 125px 0 72px;
}

#company_links a:hover {
    opacity: 0.7;
    transition-duration: 0.3s;
}

#company_links a img {
    border-radius: 0;
}

#company_links.column_1-1 {
	align-items: flex-start;
}

/* ul{
	padding-left: 0;
}

ul li {
	list-style: none;
}


.president_img {
    padding-bottom: 50px;
}

.president_img img {
	border-radius: 20px;
} */

/*---------- /company/offices ----------*/

/* a.collapse-toggle.collapse-button {
    display: inline-block;
    position: relative;
    max-width: 100px;
    width: 100%;
	margin-bottom: 10px;
    padding: 10px 20px;
    background: #fff;
    border: 1px solid #0077C0;
    border-radius: 50px;
    color: #0077C0;
    font-size: 1.5rem;
    font-weight: 500;
    text-align: left;
    text-decoration: none !important;
    transition: background 0.3s, border 0.3s, color 0.3s;
	cursor: pointer;
}

.collapse-wrap {
  display: none;
	max-width:600px;
	width:100%;
}

.collapse-ctrl {
  position: relative;
  width: 12px;
  height: 12px;
  margin-right: 6px;
  display: inline-block;
} */

/* 横棒（−） */
/* .collapse-ctrl::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: #0077C0;
  transform: translateY(-50%);
} */

/* 縦棒（＋） ← 初期表示 */
/* .collapse-toggle:not(.open) .collapse-ctrl::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  background: #0077C0;
	transform: translateX(-50%);
}

.text-box {
	display: inline-block;
    border: 1px solid #e2e2e2;
	margin-top: 20px;
    padding: 1.5em;
}

.label-blue {
	background-color: #007fc9;
    color: #fff;
    display: inline-block;
    margin-bottom: 10px;
    padding: 10px 15px;
    border-radius: 2px;
    line-height: 1.5em;
    font-size: 1.4rem;
}

.access_info p {
    margin-bottom: 0;
}

.history table td:first-child {
	width: 10%;
}

.table.simple {
    table-layout: fixed; 
	border-top: none;
    width: 100%;
    border-collapse: collapse;
}

.table.simple th {
	width: 35%; 
    text-align: left;
    vertical-align: top;
} */

#company_links a {
    position: relative;
    --bg: #fff;
    --fg: #0084DD;
    --dot: #0084DD;
    --arr: #fff;
    text-decoration: none;
}

#company_links a::before {
    content: "";
    position: absolute;
    right: 12px;
    bottom: 8px;
    width: 45px;
    height: 45px;
    transform: translateY(-50%);
    display: grid;
    place-items: center;
    --size: 17px;
    background: radial-gradient(circle at center, var(--arr) var(--size), var(--arr) var(--size));
    -webkit-mask: url(../images/arrow-right.svg) no-repeat center / var(--size) var(--size);
    mask: url(../images/arrow-right.svg) no-repeat center / var(--size) var(--size);
    background-color: var(--arr);
    z-index: 1;
}

#company_links a::after {
    content: "";
    position: absolute;
    right: 12px;
    bottom: 8px;
    width: 45px;
    height: 45px;
    transform: translateY(-50%);
    border-radius: 50%;
    background: #0084DD;
}

p.company_links_ttl {
    color: #0084DD;
    font-size: 3.4rem;
    font-weight: 600;
	margin-top: 10px;
}

#company_links {
	margin-bottom: 0;
}

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

    #top_message {
        padding: 30px 0 20px;
    }

    p.company_links_ttl {
        font-size: 2.0rem;
        margin-top: 10px;
    }

    #company_links a::before {
        bottom: -2px;
        width: 30px;
        height: 30px;
        --size: 12px;
    }

    #company_links a::after {
        bottom: -2px;
        width: 30px;
        height: 30px;
    }

    #company_links {
        padding: 50px 0 0;
    }

    #company_links.column_1-1 {
        gap: 20px;
    }
	
	p.company_name {
		font-size: 1.6rem;
		margin: 15px 0 0;
	}
	
	.president_name {
		font-size: 2.6rem;
		margin-top: 7px;
	}
	 
	#top_message .column_1-1 {
		flex-direction: column-reverse;
		gap: 20px;
	}
	
	#ten_meanings .column_1-1 {
        flex-direction: column-reverse;
        gap: 20px;
		margin-bottom: 30px;
    }

}