/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  color: #333333;
  text-decoration: none;
}

html { scroll-behavior: smooth;}

/* common */
header {
  width: 100%;
  height: 120px;
  position: fixed;
  top: 0;
  padding: 2rem 0;
  margin: 0;
  z-index: 500;
  /* background-color: rgba(255, 251, 241, 0.95); */
  background-color: rgba(255, 255, 255, 0.8);
  display: flex;
  justify-content: center;
}
@media screen and (max-width:480px) {
  header{
    height: 80px;
  }
}


header .h-container {
  width: 100%;
  padding: 0 3rem;
  max-width: none;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

header .right-menu {
  width: 40%;
  display: flex;
  flex-direction: row;
  justify-content: right;
  align-items: center;
  position: relative;
  gap: 2rem;
}

header h1 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 25%;
}
.h-logo {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.h-button {
  width: 45%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.h-button img {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0;
}

.hamburger-container {
  z-index: 1000;
}

/* ハンバーガーアイコン */
.hamburger {
  background-color: rgba(0, 0, 0, 0);
  color: #ee887a;
  border: none;
  padding: 0px;
  width: 55px;
  height: 55px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.hamburger .line {
  width: 40px;
  height: 1px;
  background-color: #ee887a;
  margin: 6px 0;
  transition: all 0.3s ease;
}

.hamburger .label {
  font-size: 10px;
  margin-top: 0px;
  color: #fbe1b5;
}

/* ナビメニュー */
.nav-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #faf6eb;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  overflow-y: auto;
  animation: fadeIn 0.3s ease forwards;
}

.nav-menu.active {
  display: flex;
}

.close-button {
  position: absolute;
  top: 0px;
  right: 0px;
  background: none;
  border: 2px solid #e08970;
  color: #e08970;
  font-size: 28px;
  width: 44px;
  height: 44px;
  line-height: 1;
  cursor: pointer;
}

/* メニュー内部 */
.nav-content {
  text-align: center;
  max-width: 940px;
}
.nav-content .logo {
  width: 250px;
  margin-bottom: 3rem;
}
.recruit-title {
  font-size: 14px;
  color: #3d4b79;
  margin-bottom: 30px;
  letter-spacing: 2px;
}
.nav-col-wrapper{
  display: flex;
  flex-direction: row;
  gap: 8rem;
}
.nav-columns {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  text-align: left;
}
.nav-columns > li {
  font-size: 18px;
  margin: 2rem 0;
  font-weight: bold;
  color: #666666;
}
.nav-columns > li > a {
  color: #666666;
}
.nav-columns > li ul {
  margin-top: 1.5rem;
  margin-left: 2rem;
}
.nav-columns > li ul li {
  font-size: 16px;
  font-weight: normal;
  color: #666666;
  margin: 6px 0;
}

.nav-columns > li ul li a {
  color: #666666;
}

/* アニメーション */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

header nav {
  display: none;
}

.sp-visible{
  display: none;
}

#toft {
  padding-top: 220px;
  margin-top: -100px;
}
@media screen and (max-width:480px) {
  #toft{
    padding-top: 180px;
    margin-top: -100px;
  }
}


main {
  margin: 120px 0 0;
  padding: 0 0;
}
@media screen and (max-width:480px) {
  main{
    margin-top: 80px;
  }
}

section {
  margin: 0;
}
.container {
  width: 80%;
  max-width: 1200px;
  margin: -5rem auto;
  padding: 5rem 0;
  text-align: center;
}
article {
  background-color: #fff;
  width: 40%;
  max-width: 500px;
  border-radius: 25px;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
  align-items: center;
  position: relative;
}

h2 {
  width: 30%;
  height: 200px;
}

h3 {
  font-size: 1.8rem;
  margin: 1rem auto;
  color: #333333;
}

.section-title {
  font-size: 2.5rem;
  width: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0 auto 3rem;
  gap: 0.5rem;
  position: relative;
}

.y-h {
  color: #edae00;
}

.g-h {
  color: #6ca679;
}

.b-h {
  color: #5dbeb3;
}

.lg-h {
  color: #a7cc38;
}

.section-title img {
  width: auto;
  height: 15px;
}

p {
  width: 100%;
  font-family: NotoSans;
  font-size: 1.5rem;
  line-height: 2;
  color: #333333;
}

img {
  width: 100%;
  height: auto;
}

.button {
  text-decoration: none;
  margin: -5rem auto 0;
  padding: 5rem 0;
}

.line1 {
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 0;
  position: relative;
  z-index: 5;
}

.line2 {
  width: 100%;
  height: auto;
  margin: 0 auto;
  position: relative;
  z-index: 5;
}
.line2 .line-deco {
  width: 25%;
  position: absolute;
  right: 0;
  top: -120px;
}

.line3 {
  width: 100%;
  height: auto;
  margin: -3rem auto 0;
  position: relative;
  z-index: 5;
}

.line4 {
  width: 100%;
  height: auto;
  margin: 0 auto 0;
  position: relative;
  z-index: 5;
}
.line4 .line-deco {
  width: 25%;
  position: absolute;
  left: 0;
  top: -120px;
}

.line5 {
  width: 100%;
  height: auto;
  margin: 0 auto -2rem;
  position: relative;
  z-index: 5;
}

.line6 {
  width: 100%;
  height: auto;
  margin: -1rem auto -2rem;
  position: relative;
  z-index: 5;
}

/* hero-img */
#hero-img {
  background-image: url(../image/top/main-bg.png);
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 5;
  padding-top: 5rem;
  margin: 0;
  height: 51vw;
}

#hero-img .container {
  padding: 0;
}

.hero-text {
  width: 50%;
  margin: auto;
}

.hero-text h2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* about */
#about {
  background-color: #fff;
  background-image: url(../image/top/about-bg.png);
  background-size: 90%;
  background-position: left bottom 5rem;
  background-repeat: no-repeat;
  position: relative;
  z-index: 0;
}

#about .container {
  padding: 10rem 0;
}

#about p {
  width: 50%;
  margin: 0 auto;
  padding: 1.5rem 0;
  font-size: 20px;
	line-height: 220%;
  text-align: center;
}



/* 20250930 */

#about .searchjob_btn{
	display: inline-block;
	width: 40%;
	height: auto;
	margin-top: 40px;
}

#about .searchjob_btn a{
	display: inline-block;
	width: 100%;
	height: auto;
}

#about .searchjob_btn a img{
	width: 100%;
	height: auto;
}

.btn_top{
	display: inline-block;
	width: 300px;
	height: auto;
}

.btn_top a.button{
	display: inline-block;
	font-size: 0;
}

.btn_top a.button img{
	
}

/* 20250930 */


/* reason */
#reasons {
  background-color: #fffbf1;
}

#reasons .reas-deco {
  height: 70px;
  position: absolute;
  left: -15px;
  top: 0px;
}

#reasons .art-band {
  height: auto;
  margin: -5rem auto 5rem;
  padding: 2rem 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 44px;
}

#reasons .under {
  margin: 3rem 0 -3rem;
  align-items: bottom;
}

#reasons .yellow {
  background-color: #fff5d3;
}

#reasons .pink {
  background-color: #fcedeb;
}

#reasons .green {
  background-color: #f2f7e1;
}

#reasons article .reas-No {
  display: inline-block;
  position: absolute;
  width: 7rem;
  left: -1rem;
  top: -2.5rem;
}

#reasons article p {
  font-size: 1rem;
  text-align: left;
  vertical-align: top;
  margin: -1rem 0;
}

#reasons article img {
  border-radius: 15px;
  margin: 1.5rem auto 0;
}

/* service */
#service {
  background-color: #fff;
  padding: 0;
}

#sevice .container {
  padding: 0;
}

#service .intro {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
}

.intro img {
  width: 50%;
}
.intro p {
  width: 35%;
  text-align: left;
}

#service .art-band {
  height: auto;
  margin: 0 auto 2rem;
  padding: 5rem 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 15px;
}

#service article {
  width: 33%;
  padding: 2rem;
}

.green-border {
  border: #a7cc38 solid 2.5px;
  margin: 3rem 0 -3rem;
  overflow: hidden;
}
.green-border .round {
  color: #d3e59b;
  font-size: 10rem;
  position: absolute;
  top: -110px;
  left: -70px;
}

.yellow-border {
  border: #efb820 solid 2.5px;
  overflow: hidden;
}
.yellow-border .round {
  color: #f5d67f;
  font-size: 10rem;
  position: absolute;
  top: -110px;
  left: -70px;
}

.pink-border {
  border: #f2a59b solid 2.5px;
  margin: -3rem 0 3rem;
  overflow: hidden;
}
.pink-border .round {
  color: #f6c3bc;
  font-size: 10rem;
  position: absolute;
  top: -110px;
  left: -70px;
}

#service article h3 {
  font-size: 1.5rem;
}

#service article p {
  width: 95%;
  font-size: 1rem;
  line-height: 1.8em;
  padding: 1rem 0;
}

#service article img {
  width: 40%;
  padding: 0 0.5rem;
}

#service article .button {
  background-color: rgba(0, 0, 0, 0);
  font-weight: bold;
}

#service article div {
  width: 45%;
  padding-bottom: 0.5rem;
  min-width: 150px;
}

#service article .button {
  margin: 0 auto;
}

#service .button span {
  margin-left: 1rem;
}

.green-border div {
  border-bottom: #a7cc38 solid 1px;
}

.yellow-border div {
  border-bottom: #efb820 solid 1px;
}

.pink-border div {
  border-bottom: #f2a59b solid 1px;
}

.green-border .button {
  color: #a7cc38;
}

.yellow-border .button {
  color: #efb820;
}

.pink-border .button {
  color: #f2a59b;
}

.green-border div .button span{
  color: #a7cc38;
}

.yellow-border div .button span{
  color: #efb820;
}

.pink-border div .button span{
  color: #f2a59b;
}

/* qa */

#qa {
  background-color: #f1f8f7;
}

#qa ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0rem;
  margin-top: -5rem;
}

#qa .ques {
  width: 90%;
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: auto;
  justify-content: left;
}
.ques img {
  width: 20%;
  max-width: 170px;
  max-height: 170px;
}
.ques span {
  color: #fff;
  transform: rotate(90deg);
  text-shadow: #5bbfb4 3px -1px;
  margin: auto -1rem auto 1rem;
}
.ques div {
  width: 60%;
  background-color: #fff;
  border-radius: 25px;
  box-shadow: #5bbfb4 5px 5px;
  margin: auto 0.8rem auto;
  z-index: 1;
  position: relative;
}

.ques div img {
  width: 15%;
  position: absolute;
  left: -10px;
  top: 0;
}

.ques p {
  width: auto;
  margin-left: 0%;
  padding: 1rem 0rem 1rem 1rem;
  font-weight: bold;
}

#qa .answ {
  width: 90%;
  display: flex;
  flex-direction: row;
  margin: -1rem auto 2.5rem;
  align-items: center;
  justify-content: right;
}
.answ span {
  color: #cff0eb;
  transform: rotate(-90deg);
  margin: auto 1rem auto -1rem;
}
.answ img {
  width: 20%;
  max-width: 170px;
  max-height: 170px;
}
.answ div {
  width: 60%;
  background-color: #cff0eb;
  border-radius: 25px;
  margin: auto 0.8rem auto;
  z-index: 1;
  position: relative;
}
.answ p {
  font-size: 1.2rem;
  width: auto;
  padding: 1rem 2rem;
  text-align: left;
}

/* interview */

#interview {
  background-color: #fff;
}

#interview .container .content {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: top;
  gap: 2rem;
  margin-top: -3rem;
}

#interview .content div {
  width: 40%;
  display: flex;
  flex-direction: column;
  padding: 0 2rem;
  gap: 1rem;
}

#interview .content div h3 {
  text-align: left;
  width: 100%;
}

#interview .content h3 b {
  color: #a7cc38;
}

#interview .content div p {
  width: 100%;
  font-size: 1.1rem;
  display: flex;
  flex-direction: column;
  justify-content: right;
  text-align: left;
}

#interview .content p span {
  text-align: right;
  font-size: 0.8rem;
}

#interview .content span b {
  font-size: 1rem;
  margin-left: 0.5rem;
}

#interview .ceo {
  width: 340px;
  height: 400px;
}

/* btn-block */

#button-block {
  background-color: #fcf2f0;
  position: relative;
  z-index: 5;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#button-block .container div {
  width: 70%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  margin: 0 auto 0;
  padding: 5rem 0 10rem;
}

#button-block div a {
  width: 49%;
}

/* entry */

#entry {
  background-image: url(../image/top/ent-bg.png);
  background-size: 80%;
  background-repeat: no-repeat;
  background-position: center bottom 1rem;
  padding: 0;
  margin: 0;
  background-color: #fffbf1;
  height: 28vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#entry .container {
  width: 80%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#entry .container h2 {
  width: 100%;
  font-size: 2rem;
  margin: 1rem auto -7rem;
}

#entry img {
  width: 25%;
}

#entry a {
  width: 100%;
}

/* footer */

footer {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: top;
  padding: 5rem 2rem;
  margin-top: -2.5vw;
  position: relative;
  z-index: 10;
  background-color: #fff;
}

footer div {
  width: 23%;
  display: flex;
  flex-direction: column;
  justify-content: top;
  align-items: left;
  gap: 1rem;
}

footer div img {
  width: 50%;
}

footer div p {
  font-size: 1rem;
  color: #666666;
}

footer div .access {
  display: flex;
  flex-direction: column;
  align-items: left;
  gap: 0rem;
  font-weight: normal;
  margin: 0 0 3rem;
}

footer div .f-menu {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: left;
  gap: 1rem;
  font-weight: bold;
  letter-spacing: 0.12rem;
}

footer div h4{
  color: #666666;
}
footer div li{
  color: #666666;
}
footer div .f-menu li a{
  color: #666666;
}

footer div p{
  font-size: 0.8rem;
  display: flex;
}

footer div p a{
  display: flex;
  align-items: center;
  justify-content: center;
}

footer div ul li ul {
  font-weight: normal;
  padding: 1rem 0 0 1.5rem;
  gap: 0.5rem;
}

footer div .contact {
  width: 70%;
}

footer .contact img {
  width: 100%;
}

footer .sp-visible{
  display: none;
}

.regi{
  width: 30px;
  height: 30px;
}

.to-top{
  position:fixed;
  right: 2%;
  top: 90%;
  z-index: 1000;
  background: rgba(153,153,153,0.6);
  border-radius: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.to-top div{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
}

.to-top div span{
  font-size: 25px;
  font-weight: bold;
  color: #fff;
  position: absolute;
  top:17px;
  transform: scaleX(120%);
}


/* ------------SP Layout------------ */

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

header{
  justify-content: space-around;
  padding: 0;
  background-color: #fff;
}

header .h-container{
  padding: 0rem 1rem 0;

}

header h1{
  padding-top: 0.5rem;
  width: 45%;
}

section{
  padding-bottom: 5rem;
}

.nav-content .logo {
  width: 250px;
  margin-bottom: 2rem;
}

.nav-col-wrapper{
  display: flex;
  flex-direction: column;
  gap: 0rem;
}

.nav-columns {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  text-align: center;
}
.nav-columns > li {
  font-size: 18px;
  margin:1rem 0;
  font-weight: bold;
}
.nav-columns > li ul {
  margin: 0 0 -2rem 0;
}
.nav-columns > li ul li {
  font-size: 16px;
  font-weight: normal;
  margin: 6px 0;
}


main{
  width: 100%;
}
section{
  width: 100%;
}

.section-title{
  width: 100%;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.section-title img{
  height: 12px;
}

.line1 {
  width: 100%;
  height: auto;
  margin:  auto;
  padding: 0;
  position: relative;
  z-index: 5;
}

.line2,.line4,.line5 {
  width: 100%;
  height: auto;
  margin: -1rem auto 0;
  padding: 0;
  position: relative;
  z-index: 5;
}

.line3{
  margin: -1rem 0 0;
}

.button img{
  width: 70%;
  height: auto;
}
.container{
  width: 100%;
  padding: 0 1.5rem;
  margin: 0;
}


article{
  width: 100%;
  padding: 1.5rem;
}

#hero-img {
  background-image: url(../image/top/FV.png);
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  height: 155vw;
}

#about{
  background-image: url(../image/top/about-bg-sp.png);
  background-position: left 0rem bottom -2rem;
  background-size: 100%;
}

#about .container{
  padding: 5rem 0 0;
}

#about p{
  width: 95%;
  font-size: 0.9rem;
}

#about .container .button{
}
	
/* --20250901-- */
		
	#about .link_hrmos{
		padding-bottom: 15em;
	}
	
	#about .link_hrmos ul.link_hrmos_btn{
		flex-direction: column;
		justify-content: center;
	}
	
	#about .link_hrmos ul.link_hrmos_btn li{
		width: 80%;
		height: auto;
		margin: 12px auto;
	}
	
	#about .link_hrmos ul.link_hrmos_btn a{
		height: 50px;
		line-height: 50px
	}
	
	#about .link_hrmos p.link_hrmos_top{
		width: 80%;
	}

/* --20250901-- */

	
	
/* --20250930-- */
	#about p{
	line-height: 200%;
        padding: 20px 0 0;
}

#about .container p+p {
	margin-bottom: 110px;
}
	
	#about .container .searchjob_btn{
		display: inline-block;
		margin-top: 160px;
		width: 70%;
	}

#about .container .searchjob_btn a.button{
	display: inline-block;
	font-size: 0;
	width: 100%;
}

#about .container .searchjob_btn a.button img{
	margin-bottom: unset;
	width: 100%;
}
	
.btn_top{
	width: 70%;
	height: auto;
}

.btn_top a.button{
	width: 100%;
	height: auto;
}

.btn_top a.button img{
	width: 100%;
	height: auto;
}
	
/* --20250930-- */

#reasons .container{
  padding-top: 3rem;
}

#reasons .reas-deco{
  height: 50px;
  top: 20px;
  left: 0;
}

#reasons .art-band{
  flex-direction: column;
  gap: 0;
  margin-bottom: 7rem;
}

#reasons article .reas-No{
  width: 5rem;
}
#reasons article h3{
  font-size: 1.4rem;
}
#reasons article p{
  font-size: 0.9rem;
}

#reasons .container .button img{
  margin-top: -3rem;
}

#service .intro{
  width: 100%;
  flex-direction: column-reverse;
}

#service .intro p{
  width: 100%;
  font-size: 0.9rem;
}

#service .intro img{
  width: 100%;
}

#service .art-band{
  width: 100%;
  flex-direction: column;
  gap: 5rem;
  margin: 0;
  padding: 0;
}

#service article{
  width: 100%;
}

#service .container .button img{
  margin: -1rem auto 5rem;
}

#qa .container{
  padding: 0.5rem;
}

#qa .container ul{
  width: 100%;
  margin: 0 auto;
  padding: 0;
  gap: 2rem;
}

#qa .ques{
  width: 100%;
  margin: 0;
  padding: 0;
}

.ques div{
  padding: 0;
  width: 100%;
  border-radius: 15px;
}

.ques div img{
  display: none;
}

.ques div p{
  width: 95%;
font-size: 0.9rem;
text-align: left;
line-height: 1.5;}

#qa .answ{
  width: 100%;
  padding: 0;
  margin: 0;
}
.answ div{
  padding: 0;
  width: 100%;
  border-radius: 15px;
}

.answ div p{
  width: 100%;
  padding: 1rem;
  font-size: 0.9rem;
  text-align: left;
  line-height: 1.5;
}


#interview .container .content{
  flex-direction: column-reverse;
}

#interview .container .content div{
  width: 100%;
}

#interview .ceo{
  width: 60%;
  height: auto;
  margin: 0 auto;
  border-radius: 25px;
}

#interview .content div h3{
  font-size: 1.1rem;
  text-align: center;
}

#interview .content div p{
  width: 100%;
  padding: 0;
  line-height: 2;
  font-size: 0.9rem;
}

#interview .content p span{
  margin: 1rem 0;
}

#button-block .container div {
  width: 100%;
  flex-direction: column;
}

#button-block .container div {
  padding: 3rem 0;
}

#button-block div a{
  width: 100%;
}

#entry{
  height: 110vw;
  background-image: url(../image/top/oj-sp.png);
  background-size: contain;
}

#entry .container{
  display: none;
}

#entry .container-sp{
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 120vw;
  min-height: 350px;
  position: relative;
  padding: 2rem 0;
}

#entry .container-sp img{
  width: 60%;
}

#entry .container-sp a{
  width: 75%;
  margin: 2rem;
}

#entry .container-sp a img{
  width: 100%;
}

#entry .container-sp h2{
  font-size: 1rem;
  text-align: center;
  width: 100%;
}

footer{
  flex-direction: column;
  padding: 2rem 1rem;
  gap: 2rem;
}

footer .sp-f-logo{
  width: 50%;
  margin-bottom: -1rem;
}

footer div{
  width: 100%;
  font-size: 0.9rem;
  margin-left: 0.5rem;
}


footer div ul li ul li{
  color: #666666;
  margin-top: 0.5rem;
}

footer div ul li{
  color: #666666;
  margin-top: -0.2rem;
}

footer .under-tx{
  font-size: 0.8rem;
  margin-left: 0.5rem;
}

footer .copy-w{
  font-size: 0.7rem;
  margin: auto;
  text-align: center;
}

footer .sp-none{
  display: none;
}

footer .sp-visible{
  display: block;
}

.sp-none{
  display: none;
}

.sp-visible{
  display: block;
}


.find-wk{
  position: fixed;
  width: calc(100% - 120px);
  max-width: 360px;
  bottom: 3%;
  left: 50%;
  transform: translateX(-60%);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
}

}

@media screen and (max-width:960px) {
  .container{
    margin: -3rem auto;
  }
  #about .container p{
    font-size: 1rem;
    width: 100%;
  }
  #about .button{
    padding: 0;
  }
	
/* --20250901-- */

	
	#about .link_hrmos ul.link_hrmos_btn li{
		width: 80%;
		height: auto;
		margin: 12px auto;
	}
	
	#about .link_hrmos ul.link_hrmos_btn a{
		height: 50px;
		line-height: 50px
	}
	
	#about .link_hrmos ul.link_hrmos_btn a.button::after, 
	#about .link_hrmos ul.link_hrmos_btn a.button:hover::after{
		top: 12px;
	}

/* --20250901-- */

#reasons .container .art-band{
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 0rem;
  margin-bottom: 7.5rem;
}

#reasons .container .art-band article{
  width: 100%;
}

  #reasons .container .art-band article h3{
    font-size: 1.2rem;
  }

  #reasons .container .art-band article p{
    font-size: 0.9rem;
    line-height: 1.6;
  }

  #service .art-band{
  width: 100%;
  flex-direction: column;
  gap: 5rem;
  margin: 0;
  padding: 0;
  justify-content: center;
  align-items: center;

}

#service article{
  width: 100%;
}

#service .container .button img{
  margin-top: -1rem;
}

#qa .container ul .answ{
  margin: 2rem auto 2.5rem;
}

#qa .container ul .ques div p{
  font-size: 1rem;
}
#qa .container ul .answ div p{
  font-size: 0.9rem;
}

#interview .container .content{
  flex-direction: column-reverse;
  justify-content: center;
  align-items: center;
}

#interview .container .content div{
  width: 100%;
}

#button-block .container div {
  padding: 5rem 0 5rem;
}
#button-block .container div a{
  width: 100%;
}

#entry{
  height: auto;
}
#entry .container{
  padding: 10rem 0;
}

footer {
    flex-direction: column;
    padding: 2rem 1rem;
    gap: 2rem;
  }

  footer .sp-none {
    display: none;
  }

  footer .sp-visible {
    display: block;
  }


  footer .sp-f-logo {
    width: 50%;
    margin-bottom: 0rem;
    max-width: 250px;
  }

  footer div {
    width: 100%;
    font-size: 0.9rem;
    margin-left: 0.5rem;
  }

  footer div ul li ul li {
    color: #666666;
    margin-top: 0.5rem;
  }

  footer div ul li {
    color: #666666;
    margin-top: -0.2rem;
  }

  footer .under-tx {
    font-size: 0.8rem;
    margin-left: 0.5rem;
    display: flex;
  }

  footer .under-tx a{
    display: flex;
    align-items: center;
  }

  footer .copy-w {
    font-size: 0.7rem;
    margin: auto;
    text-align: center;
  }


  footer div .f-menu {
    width: calc(100% - 6rem);
  }

  footer .f-menu li {
    width: 100%;
  }

  footer .f-menu li ul {
    width: 100%;
  }
}