@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Montserrat+Alternates:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* -------------------- */
/*  COMMON              */
/* -------------------- */
html,body {
	font-family: "Noto Sans JP", Hiragino Kaku Gothic ProN, ヒラギノ角ゴ Pro W3, Meiryo, メイリオ, sans-serif;
	font-size:18px;
	color:#000000 !important;
	letter-spacing: 0.05em;
	line-height: 2;
	width:100%;
	font-feature-settings: "palt" 1;
    background-color: #f4f4f4 !important;
}

a {
	text-decoration: none;
	color:#000000;
	transition: .4s;
}
a:hover {
	text-decoration: none;
	color:#ccc;
}
hr {
	border-color: #000000;
}
.bg-white {
	background-color: #FFFFFF;
}
.content-area {
	background-color: #f4f4f4;
	padding: 1rem 0;
}
/* パンくず */
.breadcrumb-area {
	display: none;
}
@media screen and (min-width: 768px){
	.breadcrumb-area {
		display: block;
		
	}
	.breadcrumb-area .breadcrumb {
		padding: 0 0 0 .5rem;
		background-color: #FFFFFF00;
		margin-bottom: 0;
	}
	.breadcrumb-item.active {
		color:#000000;
	} 
	.breadcrumb-item+.breadcrumb-item::before {
		color:#000000;
		content: "＞";
	}
}
.container {
	padding:60px 80px;
}
.container:not(:last-child) {
	margin-bottom: 1rem;
}
@media (min-width: 992px) {
    .container.bg-white {
        max-width:800px;
		padding:60px;
    }
}
@media (min-width: 1070px) {
	.container.bg-white {
		max-width: 980px;
	}
}
@media screen and (min-width: 576px){
	.container {
		border-radius: 14px;
	}
}
@media screen and (max-width: 959px) {
	.container:not(:last-child) {
		margin-bottom: 0;
	}
}
@media screen and (max-width: 767px){
	.content-area {
		padding-top: 1rem;
	}
	.container {
		padding:20px;
	}
}
/* 見出し */
.title {
	font-family: "Montserrat Alternates", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W3", Meiryo, "メイリオ", sans-serif;
	font-weight: 700;
	font-style: normal;
	margin: 15px 0 30px;
}
.title-span {
	font-size: 18px;
	padding-left: 15px;
    border-left:5px solid #6d4069;
    padding:0px 8px;
}
.title-span2 {
	font-size: 18px;
}
@media screen and (max-width: 991px){
	.title-span2 {
		display: block;
		padding: 10px 0;
	}
}
@media screen and (max-width: 959px) {
	.title {
		margin: 40px 0 0;
	}
}
@media screen and (max-width: 767px){
	.title {
		margin: 15px 0;
	}
}
.border-left-ttl {
	border-left: 4px solid #40508B;
	color: #40508B;
	padding-left: 10px;
}
.radius-border-left-ttl {
	padding-left: 15px;
	position: relative;
}
.radius-border-left-ttl::before {
	position: absolute;
	content:"";
	left: 0;
	width: 4px;
	height: 100%;
	background-color: #40508B;
	border-radius: 14px;
}
.border-right-ttl {
	padding-right: 15px;
	position: relative;
}
.border-right-ttl::after {
	position: absolute;
	content:"";
	right: 0;
	bottom: 3px;
	width: 4px;
	height: 70%;
	background-color: #6d4069;
} 
/* ボタン */
.btn{
    position: relative;
    text-decoration: none;
    display: inline-block;
    background:#fff;
    padding: 10px 40px 10px 30px;
    border-radius:28px;
    transition: ease .2s;
}
.btn::after {
	background-image: url(../img/black_arrow_right.png);
}
.btn .btn-text {
    display: inline-block;
    margin-right: 15px;
    font-weight: 1000;
    font-size: 1.1rem;
}
.btnarrow::after{
    content: '';
    position: absolute;
    top:33%;
    right: 20px;
    width: 17px;
    height: 17px;
    display: inline-block;
	background-size: contain;
	background-repeat: no-repeat;
    transition: all .3s;
}
.btnarrow:hover::after{
    right: 17px;
}
/* リンク */
.pdf-download-link {
	margin: 15px 0;
}
.pdf-download-link img {
	margin-right: 5px;
}
.pdf-download-link span {
	color: #518ED7;
	padding-bottom: 3px;
	border-bottom: 1px solid #518ED7;
}
/* ヘッダー */
#header{
	position: fixed;
	left:0;
	right:0;
	margin:0 auto;
    z-index: 999;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: center;
	background:#f4f4f4cc;
	text-align: center;
	padding: 30px 100px;
}
#header ul li {
	list-style:none;
}
.pc.head-nav {
	display: block;
}
.toggle {
	display: none;
}
.head-nav ul{
	display: flex;
	padding:10px 10px;
	margin-bottom: 0;
    flex-wrap: nowrap;
    justify-content: center;
}
.head-nav ul li{
	font-weight: 600;
	padding: 0px 15px;
}
.head-nav li a:hover, #head-company-nav ul li a:hover {
	color: #40508B;
}
#head-company-nav {
	display: none;
	width: calc(100% + 40px);
	margin: 0 -20px;
	padding-top: 10px;
	text-align: left;
	border-top: 1px solid #D4D6D6;
}
#head-company-nav ul {
	margin-bottom: 0;
	column-count: 3;
}
#head-company-nav ul li {
	padding: 0px 40px 0 25px;
}
.header-upper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-under{
    border-bottom:1px solid #000;
    border-top:1px solid #000;
}
.site-title {
  flex-direction: row;
  align-items: flex-end;
  margin: 10px;
  text-align: left;
}
.site-title img{
    width: 300px;
}
.header-upper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sightdescription{
    font-size: 12px;
	margin: 0;
}

.sns-icons {
  display: flex;
  gap: 15px;
}
.header-corp-img {
	margin-bottom: 5px;
	padding-left: 15px;
	border-left: 1px solid #000000;
}
.header-share{
	list-style: none;
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin-top: 0px;
    justify-content: flex-end;
    gap: 7px;
}
.share-title{
	display: flex;
}
.share-title i{
	    padding:8px 8px 0 0;
}
.share-title p{
	font-family: 'Montserrat Alternates';
	font-weight: 700;
	margin: 0;
}
.sns-button a{
	font-size: 17px;
}
ul.header-share {
  margin: 0;
  padding: 0;
}

@media screen and (max-width: 1070px){
    .sns-icons{
        display: none;
    }
	.header-share{
		display: none;
	}
}

.sns-icons a {
  color: #000; /* アイコンの色調整はここで */
}
.sns-icons a:nth-child(2) {
  color: #1877F2; /* Facebook */
}
.sns-icons a:nth-child(3) {
  color: #C13584; /* Instagram */
}
.sns-icons a:nth-child(4) {
  color: #FF0033; /* Instagram */
}
.sns-icons a:nth-child(5) {
  color: #00B900; /* Line */
}

/* -------------------- */
/*  NAV　ハンバーガー     */
/* -------------------- */
nav.nav-menu{
    display:none;
    text-align: left;
    width: 100%;
}
nav.nav-menu ul{
    margin: 10px auto 0;
    padding: 0;
}
nav.nav-menu ul li{
	border-bottom: 1px solid #999999;
	padding: 0 20px;
}
nav.nav-menu ul li a{
    display: block;
    padding: .5em 0;
}
nav.nav-menu ul li:last-child {
	border-radius: 0 0 10px 10px;
}

@media screen and (max-width: 1070px){
	.pc.head-nav {
		display: none;
	}
	#header {
		padding: 2px 0 0;
	}
	#header h1 {
		padding-left: 20px;
		padding-bottom: 10px;
	}
    .toggle {
        display: block;
        position: absolute;
        right: 10px;
        top: 10px;
        width: 42px;
        height: 42px;
        cursor: pointer;
        z-index: 3;
    }
    .toggle span {
        display: block;
        position: absolute;
        width: 30px;
        border-bottom: solid 3px #000000;
        -webkit-transition: .35s ease-in-out;
        -moz-transition: .35s ease-in-out;
        transition: .35s ease-in-out;
        left: 6px;
    }
    .toggle span:nth-child(1) {
        top: 9px;
    }
    .toggle span:nth-child(2) {
        top: 18px;
    }
    .toggle span:nth-child(3) {
        top: 27px;
    }
}
#header.UpMove{
	animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime {
	from {
		opacity: 1;
		transform: translateY(0);
	}
	to {
		opacity: 0;
		transform: translateY(-100px);
	}
}
#header.DownMove{
	animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime {
	from {
		opacity: 0;
		transform: translateY(-100px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
/* 上に戻るボタン */
.footer-page-up {
	position: fixed;
	background:#6d4069;
	color: #FFFFFF;
	right: 20px;
	bottom: 20px;
	width: 60px;
	height: 60px;
	border-radius: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
}
.footer-page-up:hover {
	opacity: 0.6;
	bottom: 30px;
	transition: all .3s;
}
@media screen and (max-width: 991px) {
	.footer-page-up {
		opacity: 0.6;
	}
}
/* フッター */
footer {
	background: #000000;
}
footer * {
	color: #FFFFFF;
}
.f-menu li{
    font-size: 14px;
    line-height: 1.7rem;
}
.f-address{
    font-size: 14px;
    line-height: 1.7rem;
}
.menu3{
    padding: 0;
}
.footer {
    margin-top: 30px;
    background-color: rgba(9, 6, 58, 1);
    color: #fff;
    text-align: center;
    padding: 2rem 1rem;
}

footer p {
    font-size: 0.9rem;
    color: #aaa;
	text-align: center;
}
.footer-logo-area{
	text-align: center;
	margin-bottom: 1rem;
}
.footer-snslink{
    display: flex;    
    gap: 10px;
    justify-content: center;
	margin-bottom: 1rem;
}
.footer-snslink a {
	background: #FFFFFF;
	font-size: 1.8rem;
	border-radius: 2.2rem;
    width: 2.4rem;
    height: 2.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer-snslink a:hover{
	opacity: 0.6;
	transition: all .3s;
}
.footer-snslink a i {
	color: #000000;
}
.footer-snslink a {
	font-size: 1.4rem;
}

@media screen and (min-width: 992px) {
	.footer-block3 {
		display: flex;
		flex-direction: column;
		justify-content: space-between;
	}
}
@media screen and (max-width: 991px) {
	footer .container {
		padding-top: 30px;
	}
	.footer-logo-area p {
		margin-bottom: 0;
	}
	.footer-sp-link {
		padding-inline-start: 0;
		column-count: 2;
		margin: 1rem 0;
	}
	.footer-lang-link {
		display: block;
		width: 50%;
		text-align: center;
		border: 1px solid #FFFFFF;
		border-radius: 28px;
		margin: 0 auto;
	}
	.footer-lang-link:hover {
		color: #000000;
		background: #FFFFFF;
	}
}
@media screen and (max-width: 400px){
	.footer-logo-area p {
		font-size: 14px;
	}
	footer .copyright {
		font-size: 12px;
	}
}
/* -------------------- */
/*  　　　記事内CSS　　   */
/* -------------------- */
.job-position{
	font-size:16px;
	line-height:1.5rem;
	font-weight:500;
	margin-bottom:5px
}
.name{
	font-size:25px;
	margin-right:10px
}
