* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  padding: 0px;
  margin: 0px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
}
p {
  margin: 0;
  font-size: 14px;
}
.disabled-link {
  pointer-events: none;
  opacity: 0.5;
  color: #999 !important;
  text-decoration: none;
  cursor: not-allowed;
}
.disabled-link:hover {
  opacity: 0.5;
  background-color: #F8F7FF;
}
.display-none {
  display: none;
}
/*header*/
.header {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-around;
  text-align: center;
  align-items: center;
  font-size: 40px;
  position: fixed;
  background-color: rgb(255 255 255 / 50%);
  top: 0;
  z-index: 100;
  width: 100%;
}
.logo {
  width: 20%;
}
.logo-img {
  width: 100%;
}
.header > p {
  margin: auto 20px;
}
.header > ul {
  display: flex;
  margin-right: 1rem;
  font-size: 1vw;
  font-weight: bold;
  background-color: #F8F7FF;
  border-radius: 40px;
  padding: 5px;
}
li {
  list-style: none;
  margin: 10px;
}
.nav {
  color: #050505;
}
.nav:hover {
  background-color: #FEE34B;
  border-radius: 40px;
  padding: 15px 15px;
  margin: -15px;
}
.nav-link {
  font-size: 1vw;
  font-weight: bold;
  margin-right: 1rem;
  align-items: center;
  width: 10%;
}
.nav-link-text {
  background-color: #FEE34B;
  display: flex;
  padding: 0.3rem 1rem;
}
.nav-link-text:hover {
  border-bottom: 1px solid #2C3481;
}
.dot-border {
  border-bottom: 1px dotted;
}
.nav-link-a {
  text-align: left;
  color: #050505;
  width: 100%;
  display: flex;
  align-items: center;
}
.nav-link-a::before {
  content: "";
  display: inline-block;
  background-image: url(../images/hands-line-icon.png);
  background-size: cover;
  background-repeat: no-repeat;
  width: 14px;
  height: 14px;
  margin-right: 0.5rem;
}
.nav-link-a2::before {
  content: "";
  display: inline-block;
  background-image: url(../images/mail-icon.png);
  background-size: cover;
  background-repeat: no-repeat;
  width: 14px;
  height: 11px;
  margin-right: 0.5rem;
}
.nav-link-icon-img {
  width: 55%;
}

/*MV*/
.fixed-background-container {
  height: 100vh; /* ビューポート全体を覆う */
  position: relative;
}
#mv {
  background-image: url(../images/mv-bg2.png);
  background-size: 100%;
  background-repeat: no-repeat;
}
.mv-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/mv-bg.png);
  background-size: 100%;
  background-repeat: no-repeat;   
    /* 初期状態で背景を固定 */
  background-attachment: fixed;
  z-index: -1; /* コンテンツの下に配置 */
}		
.mv1 {
  position: relative;
  z-index: 2;
  max-width: 70%;
  margin: -100vh auto 0 auto;
  padding: 10% 0;
}
.mv2 {
  padding: 11% 0 6% 15%;
}
.mv-title {
  font-size: 3.5vw;
  font-weight: bold;
  color: #2C3481;
}
 {
  background-color: #2C3481;
  padding: 0 1rem 0.5rem 1rem;
}
.mv-h6 {
  color: #414143;
  font-size: 1.8vw;
  font-weight: bold;
  padding: 0 1rem;
  line-height: 2;
  text-shadow: 1px 1px 2px #fff;
}
.mv-text {
  font-size: 1.2vw;
  font-weight: bold;
  padding: 0 1rem;
} 
.mv-h4 {
  font-size: 1.2vw;
  color: #2C3481;
}
.mv-h4::before {
  content: '●';
  margin-right: 0.5rem;
}
.mv-h1 {
  font-size: 2.5vw;
  margin: 1rem 0;
}
.circle {
  position: absolute; 
  top: 0;             /* 画面の最上部から開始 */
  left: 0;
  width: 100%;
  height: 100vh;      /* 画面全体を覆う高さに設定 */
　z-index: 5;         /* MVコンテンツ (z-index: 10) の後ろ、背景 (z-index: 1) の前に配置 */
    /* サークルを画面中央などに配置するための flex/grid スタイルを追加 */
  display: flex; 
  justify-content: center;
  align-items: center;
}
.mv-circle {
　background-color: #355aa8;
  border-radius: 50%;
  animation: fadeOut 3.5s ease-in-out forwards;
}
.circle1 {
  position: absolute;
  top:20%;
  left:0%;
  width: 5.5vw;
  height: 5.5vw;
  background-color: #355aa8;
  border-radius: 50%;
  animation: fadeOut 3.5s ease-in-out forwards;
}
.circle2 {
  position: absolute;
  top:11%;
  right:20%;
  width: 7.5vw;
  height: 7.5vw;
  background-color: #355aa8;
  border-radius: 50%;
  animation: fadeOut 3.5s ease-in-out forwards;
}
.circle3 {
  position: absolute;
  top:35%;
  right:45%;
  width: 7.5vw;
  height: 7.5vw;
  background-color: #355aa8;
  border-radius: 50%;
  animation: fadeOut 3.5s ease-in-out forwards;
}
@keyframes fadeOut {
  0% {
    opacity: 1; /* 開始時：不透明 */
  }
  100% {
    opacity: 0.5; /* 終了時：透明 */
  }
}

/*ボタン*/
.button {
  background-color: #FEE34B;
  color: #2C3481;
  font-size: 23px;
  font-weight: bold;
  padding: 0.5rem 1rem;
  border-radius: 0.3rem;
  display: flex;
  align-items: center;
  width: 40%;
 justify-content: space-between;
}
.button-icon {
  width: 30px;
  height: 30px;
  margin-left: 0.5rem;
  transition: transform 0.5s ease;
}
.fadein {
  transition: opacity 1.5s ease-out, transform 1.5s ease-out;
  opacity: 0;
  transform: translateY(20px);
}
.fadein.fadein-after {
  opacity: 1;
  transform: translateY(0);
}
.button:hover {
  font-size: 20px;
  padding: 0.6rem 1.3rem;
}
.button-icon: hover {
  width: 27px;
  height: 27px;
}
@keyframes elm {
  to {
       margin-left:40%;
  }     
}
.button:hover .longbutton-icon {
  animation:long 0.5s 1;
  animation-fill-mode:forwards;
}
@keyframes long {
  to {
       margin-left:15%;
  }     
}
.button:hover .system-buton-icon {
  animation:short 0.8s 1;
  animation-fill-mode:forwards;
}
@keyframes short {
  to {
       transform:translateX(20px)
  }     
}
/*mission-message*/
#mission {
  position: relative;
  z-index: 2;
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 2rem 5rem 2rem;
}
.mission {
  display: flex;
}
.mission-title-img {
  width: 7%;
  height: 100%;
  margin: 0.5rem 1rem;
}
.mission-message {
  width: 93%;
}
.message {
  margin-bottom: 2rem;
}
.message-point {
  position: relative;
}
.message-point::before {
  content: "・";
  position: absolute;
  left: -2%;
}
.message-bold {
  font-size: 18px;
  font-weight: bold;
}
.blue {
  color: #2C3481;
  display: inline;
}
.underline {
  background: linear-gradient(transparent 60%, #FEE34B 30%);
  display: inline;
}
.message-img {
  float: right;
  width: 40%;
  margin-left: 4rem;
} 
.message-img > img {
  width: 100%;
}
.message2 {
  margin-bottom: 1rem;
}
/*タレント事業*/
#service {
  position: relative;
  z-index: 2;
  background-color: #F8F7FF;
  padding: 2rem;
}
#service2 {
  padding: 2rem;
}
.section {
  display: flex;
  max-width: 1250px;
  position: relative;
  height: 967px;
  margin: 0 auto;
}
.section-title {
  position: absolute;
  top: 15%;
  left: 5%;
}
.title-h2 {
  font-size: 3vw;
  font-weight: bold;
  color: #2C3481;
  line-height: 1;
}
.subtitle {
  font-size: 1.2vw;
  color: #2C3481;
}
.subtitle::before {
  content: '●';
  margin-right: 0.3rem;
}
.section-bg {
  width: 65%;
  position: absolute;
  top: 15%;
  right: 0;
}
.section-bg2 {
  left: 0;
}
.section-content {
  width: 50%;
  height: 40%;
  background-color: #fff;
  position: absolute;
  bottom: 10%;
  left: 5%;
  overflow-wrap: anywhere;
  word-break: normal; 
  line-break: strict;
  padding: 1rem 2rem;
}
.section-content2 {
  left: 45%;
}
.content-title {
  font-size: 24px;
  margin: 1rem 0;
}
.section-button {
  width: 60%;
  margin: 1rem auto;
  position: absolute;
  bottom: 2%;
  left: 0;
  right: 0;
}
/*system*/
#system {
  max-width: 1250px;
  padding: 2rem;
  margin: 0 auto;
}
.system-section {
  display: flex;
  margin-top: 3rem;
}
.system {
  width: 50%;
  background-color: #fff;
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
  padding: 1rem;
  margin-top: 3rem;
}
.system-title {
  margin: 0 0 2rem 0;
}
.system-bg {
  width: 50%;
  height: 50%;
  margin-left: 2rem;
}
.system-content {
  display: flex;
  justify-content: space-around;
  margin: 6rem 1rem;
}
.system-content-box {
  width: 30%;
}
.system-content-title {
  background-color: #2C3481;
  color: #fff;
  text-align: center;
  font-size: 28px;
  padding: 2rem 1rem;
}
.system-textbox {
  background-color: #F8F7FF;
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
  padding: 2rem;
}
.system-content-text {
  margin: 2rem 3rem;
}
.system-button {
  width: 100%;
  margin-top: 2rem;
}
/*リクルート*/
#recruit {
  background-color: #2C3481;
  padding: 2rem;
}
.recruit-title {
  color: #fff;
}
/*CTA*/
#cta {
  background-color: #F8F7FF;
  padding: 2rem 2rem 3rem 2rem;
}
.cta-content {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  display: flex;
  justify-content: space-between;
}
.cta {
  display: flex;
  align-items: center;
  margin: 1rem 0;
}
.cta-icon {
  width: 28px;
  height: 21px;
  margin-right: 0.6rem;
}
.cta-h6 {
  font-size: 24px;
  color: #2C3481;
}
.cta-text {
  color: #2C3481;
}
.footer-button {
	height: 10%;
	margin: auto 1rem auto 3rem;
}
/*footer*/
#footer {
  background-color: #414143;
  padding: 6rem 5rem;
}
.footer {
  display: flex;
  justify-content: space-around;
}
.footer-logo {
  width: 40%;
}
.footer-logo-img {
  width: 90%;
}
.footer-nav-li {
  margin-bottom: 1rem;
}
.footer-nav {
  color: #fff;
}
.footer-nav-link-text {
  display: flex;
  margin: 10px 0 5px 0;
}
.footer-nav-link-a {
  color: #fff;
  display: flex;
}
.footer-nav-link-icon-img {
  width: 60%;
  padding: 3px 0;
}
.footer-icon::before {
  content: ""; 
  display: inline-block; 
  background-image: url(../images/footer-hands-line-icon.png);
  background-size: cover;
  background-repeat: no-repeat;
  width: 16px;
  height: 15px;
  margin-right: 0.5rem;
}
.footer-icon2::before {
  content: ""; 
  display: inline-block; 
  background-image: url(../images/footer-mail-icon.png);
  background-size: cover;
  background-repeat: no-repeat;
  width: 17px;
  height: 15px;
  margin-right: 0.5rem;
}
/*topへ戻る*/
.page-top {
  width: 50px;
  height: 50px;
  position: fixed;
  right: 10px;
  bottom: 10px;
  background: #2C3481;
  color: #fff;
  border-radius: 50%;
  opacity: 1;
}
.page-top-text {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}
/*PC画面*/
@media screen and (min-width: 768px) {
    #menu-sp, #nav-sp, .sp, .sp-title-box {
	  display: none;
    } 
}

/*SP画面*/
@media screen and (max-width: 767px) {
    #nav-pc, .pc, .page-top {
      display: none;
    }
    #menu-sp {
      margin: 0.3rem;
      width: 9%;
    }
    .nav-sp {
      text-decoration: none;
      display: block;
      color: #2C3481;
      font-size: 3.5vw;
      margin: 0 2rem;
      text-align: left;
      padding: 1rem;
      border-bottom: 1px solid #2C3481;
    }
    .nav-sp-top {
      margin-top: 2rem;
    }
    #nav-sp {
      display: block;
      background-color: #F8F7FF;
      position: absolute;
      right: 0;
      top: 0;
      width: 70%;
      display: none;
      z-index: 100;
    }
    #close {
      position: absolute;
      top: 10px;
      right: 10px;
      width: 10%;
    }
    .logo {
      margin: 0 0.5rem 0.5rem 0.5rem;
      width: 40%;
	  text-align: left;
    }
	.logo-img {
		width: 90%;
	}
    .nav-link {
      display: flex;
      margin-right: 0;
      align-items: center;
      width: 55%;
      font-size: 3vw;
    }
    .nav-link-text {
      width: 100%;
      padding: 0.3rem 0.5rem;
      margin: 0 0.1rem;
    }
	.dot-border {
		border-bottom: none;
	}
    /*mv*/
    #mv {
      margin-top: 4rem;
    }
	#main-mv {
	   background-size: 140%;
	}
    .mv {
      padding: 21% 0 6% 0;
      max-width: 75%;
    }
	.mv1 {
		padding: 20% 0 10% 0; 
	}
	.mv2 {
		padding: 6%;
	}
	.mv3 {
		padding: 23% 0 6% 0;
	}
    .mv-title {
      font-size: 5vw;
    }
	.mv-title2 {
		font-size: 6vw;
	}
    .mv-title > span {
      padding: 0.2rem 1rem;
    }
    .mv-h6 {
      font-size: 3.8vw;
      padding: 0 0 0 1rem;
      text-shadow: 1px 1px 2px #fff;
    }
	.mv-h4 {
      font-size: 3.5vw;
    }
    .mv-text {
      font-size: 3vw;
      padding: 0;
      text-shadow: 1px 1px 2px #fff;
    }
    .breadcrumbs {
      font-size: 3.5vw;
    }
    .mv-h1 {
      margin: 0 0 0.5rem 0;
    }
	.circle3 {
		right: 5%;
	}
    /*タイトル*/
    .sp-title-box {
      color: #2C3481;
      margin-bottom: 1rem;
    }
    .sp-title {
      font-size: 7vw;
    }
    .sp-subtitle {
      font-size: 3vw;
    }
    .sp-subtitle::before {
      content: '●';
      margin-right: 0.2rem;
    }
    /*ボタン*/
    .button {
      font-size: 4.5vw;
      width: 100%;
      padding: 1rem 1.5rem;
      justify-content: space-between;
    }
    /*mission*/
    #mission {
      padding: 2rem 1rem 3.5rem 1rem;
    }
    .mission {
      display: block;
    }
    .message {
      font-size: 3.5vw;
      margin-bottom: 1.5rem;
    }
    .message-bold {
      font-size: 4vw;
    }
	.sp-bold {
	  font-size: 3.5vw;
	  font-weight: 400;
	}
    .message2 {
      margin-bottom: 1rem;
    }
    .message-point {
      font-size: 3.5vw;
      padding-left: 5vw;
    }
    .message-point::before {
      left: 0;
    }
    .message-img {
      width: 80%;
      margin: 0 auto 1rem auto;
      float: none;
    }
    .message-img > img, .message-img2 > img {
      width: 100%;
    }
    .message-img2 {
      width: 45%;
    }
    /*タレント事業*/
    .section {
      display: block;
      height: auto;
    }
    .section-title {
      position: static;
      margin: 0 auto 1.5rem 0;
    }
    .title-h2 {
      font-size: 7vw;
    }
    .subtitle {
      font-size: 3vw;
    }
    .section-bg {
      position: static;
      width: 80%;
      display: block;
      margin: 0 auto;
    }
    .section-content {
      width: 100%;
      position: static;
      margin-top: -2rem;
	  padding: 1rem;
    }
    .content-title {
      font-size: 5vw;
      margin: 2rem 0 1rem 0;
    }
    .content-text {
      font-size: 3.5vw;
    }
    .section-button {
      position: static;
    }
    /*system*/
    .system-section {
      display: block;
    }
    .system {
      width: 100%;
    }
    .system-title {
      margin-bottom: 1rem;
    }
    .system-bg {
      width: 100%;
      height: auto;
      margin-left: 0;
    }
    .system-content {
      display: block;
      margin: 2rem 0;
    }
    .system-content-box {
      width: 100%;
      margin-bottom: 2rem;
    }
    .system-content-title {
      padding: 1rem;
      font-size: 5vw;
    }
    /*CTA*/
	#cta {
		padding: 1rem;
	}
    .cta-h6 {
      font-size: 5vw;
    }
	.cta-content {
		display: block;
	}
    .cta-icon {
      width: 6vw;
      height: 5vw;
	  margin-top: 6px;
    }
    .cta-text {
      font-size: 3.5vw;
    }
	.footer-button {
		margin: 1rem auto;
	}
	/*footer*/
	#footer{
		padding: 2rem;
	}
	.footer-logo {
		width: 100%;
	}
	.footer-logo-img {
		width: 100%;
	}
	.footer-nav-ul {
        margin: 0;
		font-size: 3.5vw;
    }
	.footer-nav-li {
		margin: 1rem 0;
	}
	.footer-nav-link-icon-img {
		width: 45%;
	}
}

/*--------------------
プライバシーポリシー
--------------------  */
.policy {
  max-width: 720px;
  margin: 2rem auto;
  padding: 2rem;
  line-height: 2;
}
.mail {
	color: #414143;
}
.policy-box {
	border: 1px solid #414143;
	padding: 0.5rem;
}

/*--------------------
私たちについて
----------------------*/
#aboutus, #ceo-message {
  max-width: 1250px;
  margin: 3rem auto;
  padding: 2rem;
}
.aboutus-title {
  font-size: 2vw;
  color: #2C3481;
  margin: 2rem 1rem 2rem 0;
}
.aboutus-textbox {
  margin-left: 6rem;
  display: flex;
}
.aboutus-text-img {
  width: 30%;
  height: 50%;
}
.aboutus-textbox-img {
  width: 20%;
  height: 30%;
  margin: 2rem;
}
.aboutus-text {
  width: 65%;
  font-size: 16px;
}
.aboutus-text-big, .aboutus-text2 {
  font-size: 20px;
  font-weight: bold;
}
.aboutus-text2 {
  display: flex;
  justify-content: center;
  margin: 0 auto;
}
.aboutus-point {
  font-size: 32px;
  font-weight: bold;
  color: #2C3481;
}
.aboutus-point::before {
  content: ""; /* ← 空っぽのコンテンツを用意しておく */
  display: inline-block; /* ← 行頭に表示させるならinline-block */
  background-image: url(../images/point1.png);
  background-size: cover;
  background-repeat: no-repeat;
  width: 28px;
  height: 28px;
  margin-right: 0.5rem;
}
.aboutus-point2::before {
  background-image: url(../images/point2.png);
}
.aboutus-point3::before {
  background-image: url(../images/point3.png);
}
.center {
	justify-content: center;
}
.between {
	justify-content: space-between;
}
.ceo-message {
  margin: 2rem 0;
}
.ceo-message-title {
  font-size: 4.2vw;
  color: #fff;
  background-color: #2C3481;
  padding: 1rem 2rem;
  margin: 1rem 0;
  width: 510px;

}
.ceo-message-content {
  display: flex;
  margin: 2rem 0 5rem 0;
}
.ceo-message-content-textbox {
  width: 50%;
}
.ceo-message-content-text-small {
}
.ceo-message-content-imgbox {
  text-align: center;
  width: 50%;
}
.ceo-message-content-img {
  width: 70%;
}
#talent {
  background-color: #F8F7FF;
  padding: 2rem;
}
.talent-section {
  max-width: 1250px;
  margin:0 auto 5rem auto;
}
.placeholder-wrapper {
 display: flex;
 flex-wrap: nowrap; 
}
.talent-bg {
  width: 45%;
  height: 45%;
}
.talent-section-content {
  width: 55%;
  overflow-wrap: anywhere;
  word-break: normal; 
  line-break: strict;
  padding: 1rem;
}
.talent-content-text {
  background-color: #fff;
  padding: 2rem;
}
.talent-section2 {
  display: flex;
  max-width: 1250px;
  margin: 0 auto;
}
.talent-section-left {
  margin: -1rem 1rem 1rem 1rem;
}
.talent-section-right {
  margin: 10rem 1rem 0 1rem ;
}
.talent-section2box {
	margin-bottom: 6rem;
}
.talent-section2-img {
  width: 100%;
}
.border-bottom {
	border-bottom: 3px solid #414143;
	width: 70%;
}
.talent-section2box-text {
	margin-bottom: 2rem;
}
.button2 {
  margin: 2rem;
}
#ceo {
  background: no-repeat center 100%url(../images/ceo-bg.png);
  background-size: cover;
}
.ceo {
  max-width: 1000px;
  margin: 0 auto;
  padding: 4rem 2rem;
}
.company-title {
	text-align: center;
	font-size: 2vw;
}
.ceo-content {
  padding: 2rem;
  font-size: 14px;
  display: flex;
  justify-content: center;
  margin: 0 auto;
}
.ceo-content-left {
	width: 20%;
	border-right: 1px solid;
	padding: 2rem;
}
.ceo-content-right {
	padding: 2rem;
}
.company-content {
  display: flex;
  margin: 1rem 0;
}
.affiliate-company {
	margin-left: 1rem;
	overflow-wrap: anywhere;
    word-break: normal;
    line-break: strict;
}
.affiliate-company::before {
  content: ""; /* ← 空っぽのコンテンツを用意しておく */
  display: inline-block; /* ← 行頭に表示させるならinline-block */
  background-image: url(../images/affiliate1-logo.png);
  background-size: cover;
  background-repeat: no-repeat;
  width: 22px;
  height: 16px;
  margin: 0.5rem 0.5rem 0 0;
}
.affiliate-company2::before {
  content: ""; /* ← 空っぽのコンテンツを用意しておく */
  display: inline-block; /* ← 行頭に表示させるならinline-block */
  background-image: url(../images/affiliate2-logo.png);
}
.affiliate-company-link {
	color: #414143;
	margin-left: 14px;
}
.affiliate-company-img {
	width: 30%;
}
.access {
	margin: 1rem;
}
.access-text {
	font-size: 14px;
	margin-right: 1rem;
}
.access-img {
	width: 30%;
	height: 30%;
}
.googlemap {
	background-color: #414143;
	color: #fff;
	text-align: center;
	display: flex;
	justify-content: center;
	margin: 2rem auto;
	width: 20%;
	padding: 1rem;
}
.googlemap:hover {
    opacity: 0.8;
}
.google-map {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    /* 16:9のアスペクト比 */
    height: 0;
}
.google-map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
/*SP画面*/
@media screen and (max-width: 767px) {
  p {
    font-size: 3.5vw;
  }
  #aboutus, #ceo-message {
    margin: 0 auto;
    padding: 1rem;
  }
  .aboutus-title, .aboutus-title2, .aboutus-text2 {
    font-size: 4.5vw;
    margin: 0.5rem 0;
  }
  .aboutus-text-big {
	font-size: 5vw;
	margin: 0;
  }
  .aboutus-textbox {
    margin-left: 0;
    flex-wrap: wrap;
  }
  .aboutus-text-img {
	width: 80%;
	margin: 1rem auto;
  }
  .aboutus-textbox-img {
    width: 55%;
    height: auto;
    margin: 1rem auto;
  }
  .aboutus-text {
    font-size: 3.5vw;
	width: 100%;
  }
  .ceo-message-content-text-small {
    font-size: 12px;
  }
  .placeholder-wrapper, .talent-section2 {
    display: block;
  }
  .talent-section-content, .talent-bg {
    width: 100%;
  }
	.talent-section2box {
	margin-bottom: 2rem;
}
  .talent-section-left, .talent-section-right {
    margin: 0;
  }
  .ceo-content-top {
    margin-top: 4rem;
  }
  .ceo-content {
    width: 100%;
    padding: 1rem 0;
	display: block;
	font-size: 14px;
  }
  .ceo-message-content {
	display:  block;
	margin: 2rem 0;
  }
  .ceo-message-content-textbox {
	width: 100%;
  }
  .ceo-message-content-imgbox {
	width: 100%;
    margin: 2rem auto;
  }
	.ceo {
  padding: 2rem 1rem;
}
.ceo-content-left {
	width: 25%;
	padding: 0.5rem;
}
.ceo-content-right {
	padding: 0.5rem;
}
.company-content {
  display: block;
  margin: 1rem 0;
}
.affiliate-company {
	margin-left: 0;
	font-size: 14px;
}
.affiliate-company-img {
	width: 80%;
}
	.accesee {
		margin: 0;
	}
	.access-text {
		margin-right: 0;
	}
	.access-img {
		width: 100%;
		height: auto;
		margin: 1rem 0 0 0;
	}
	.googlemap {
		width: 50%;
	}
}

/*--------------------
FAQ
--------------------  */
#faq {
  padding: 2rem;
  background-color: #F8F7FF;
}
.faq {
  max-width: 1250px;
  margin: 6rem auto;
}
.faq-title {
  font-size: 1.8vw;
  font-weight: bold;
}
.faq-box {
  background-color: #fff;
  border-radius: 0.5rem;
  box-shadow: 5px 5px 5px #B3B3B3;
  padding: 2rem;
  margin: 2rem auto;
}
.question {
  color: #2C3481;
  font-weight: bold;
  border-bottom: 1px solid #B3B3B3;
  padding: 1rem;
}
.answer {
  font-size: 16px;
}
/*SP画面*/
@media screen and (max-width: 767px) {
  .faq {
    margin: 1rem auto;
  }
  .faq-title {
    font-size: 5.5vw;
  }
  .faq-box {
    padding: 1rem;
  }
  .question {
    padding: 0 0 1rem 0;
  }
  .answer {
    font-size: 12px;
  }
}

/*--------------------
給与制度
--------------------  */
#content {
	max-width: 1000px;
	margin: 0 auto;
	padding: 2rem;
}
.title2 {
	margin: 2rem 0;
}

/*--------------------
お問い合わせ、カジュアル面談エントリー
--------------------  */
.contact-form {
	max-width: 720px;
	margin: 4rem auto;
}
.border {
	height: 0;
	width: 100%;
	border: 1px solid;
	margin: 1rem;
}
#entry {
	display:flex;
	max-width: 1000px;
	margin: 4rem auto;
	padding: 2rem;
	justify-content: space-between;
}
.entry-title {
	font-size: 1.8vw;
	font-weight: bold;
}
.contact-form-entry {
	width: 70%;
}
/*SP画面*/
@media screen and (max-width: 767px) {
	.contact-form {
		padding: 1rem;
	}
	#entry {
	    display:block;
 	    margin: 2rem auto;
	    padding: 1rem;
    }
    .entry-title {
	    font-size: 5.5vw;
		margin-bottom: 2rem;
    }
    .contact-form-entry {
	    width: 100%;
    }
	.border {
		margin: 0;
	}
}

/*--------------------
リンク
----------------------*/
#link {
  background-color: #2C3481;
  padding: 2rem;
}
.link {
  display: flex;
  max-width: 1000px;
  margin: 0 auto;
}
.link-box {
  color: #2C3481;
  text-shadow: 1px 1px 2px #fff;
  padding: 1rem 2rem 5rem 2rem;
  width: 50%;
  margin: 1rem 4rem;
}
.link-box1 {
	background: no-repeat center 80%url(../images/link1.png);
	background-size: cover;
}
.link-box2 {
	background: no-repeat center 100%url(../images/link2.png);
	background-size: cover;
}
.link-box3 {
	background: no-repeat center 100%url(../images/link3.png);
	background-size: cover;
}
.link-box4 {
	background: no-repeat center 100%url(../images/link4.png);
	background-size: cover;
}
.link-box5 {
	background: no-repeat center 100%url(../images/link5.png);
	background-size: cover;
}
.link-box6 {
	background: no-repeat center 100%url(../images/link6.png);
	background-size: cover;
}
.link-box7 {
	background: no-repeat center 80%url(../images/link7.png);
	background-size: cover;
}
.link-title-h2 {
  font-size: 1.6vw;
  font-weight: bold;
}
.link-sbtitle {
  font-size: 0.9vw;
}
@media screen and (max-width: 767px) {
	#link {
		padding: 0.5rem 0;
	}
   .link-box {
        padding: 1rem;
        margin: 0.5rem;
    }
	.link-title-h2 {
		font-size: 4vw;
	}
	.link-sbtitle {
		font-size: 1.5vw;
	}
}
/*--------------------
プライバシーポリシー
----------------------*/
.policy-title {
	font-size: 18px;
}
.policy-sbtitle {
	font-size: 16px;
}
.policy-table {
	font-size: 14px;
	margin-left: 1.5rem;
}
.policy-list::before {
  content: '●';
  margin-right: 0.5rem;
  font-size: 6px;
}
.policy-underline {
	text-decoration: underline;
}
.bold {
	font-weight: bold;
}
.left {
	text-align: left;
}
.right {
	text-align: right;
}
.margin-left {
	margin-left: 1.5rem;
}
/*SP画面*/
@media screen and (max-width: 767px) {
	.policy > p {
		font-size: 12px;
	}
	.policy {
		padding: 1rem;
	}
	.policy-title {
		font-size: 16px;
	}
	.policy-table {
		font-size: 12px;
	}
}

