/*
Theme Name: F-NEXT2025
Theme URI: https://example.com/
Author: HIBInoDesign
Author URI: https://example.com/
Description: F-NEXT 2025 Original Theme
Version: 1.0.0
Text Domain: f-next
*/

@charset "utf-8";
/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
	font-family: "Noto Sans JP", "BIZ UDPGothic", sans-serif;
	font-size: 16px;
	line-height: 1.6;
	color: #333;
}

main{
	overflow: hidden;
}

a {
	background-color: transparent;
	text-decoration: none;
	color: inherit;
}
ul{
	list-style: none;
}
.pc-only{
	display: block;
}
.sp-only{
	display: none;
}


.flex {
    display: flex;
    flex-wrap: wrap;
}

.inner {
    max-width: calc(1200px - 30px);
    margin: 0 auto;
    padding: 0 30px;
}

/* 見出し */
h2.title-ja {
    font-size: 42px;
    font-weight: bold;
	padding-bottom: 24px;
	color: #ed6218;
    line-height: 1.2;
}

p.title-en {
    font-size: 21px;
    font-weight: bold;
    color: #30a4bb;
}

p.p-large {
    font-size: 32px;
    font-weight: 500;
    padding-bottom: 30px;
    line-height: 1.4;
}

p.p-medium {
    font-size: 20px;
}

/* ボタン */
.c-btn-with-arrow {
    width: fit-content;
    padding: 1.5rem 90px 1.5rem 42px;
    align-items: center;
    border-radius: 35px;
    border: 2px solid #ed6218;
/*    border: 2px solid #30a4bb;*/
    background: #ed6218;
/*    background: #30a4bb;*/
    color: #fff;
	font-weight: bold;
    font-size: 16px;
    line-height: 1;
    position: relative;
	margin-top: 55px;
}
.c-btn-with-arrow::before{
	content: "";
    height: 10px;
    width: 10px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
    margin: 0 10px;
    position: absolute;
    right: 30px;
    top: 40%;
}

/*--------------
	全体の動き
---------------*/
/* 　ふわっと */

.fadein {
	opacity: 0;
	transform: translateY(20px);
	transition: all 1.5s;
}


/*	タイトルアニメーション	*/
.matrix .bg-wrap,
.matrix .bg-wrap .inn {
  display: block;
}

.matrix .bg-wrap {
  overflow: hidden;
  opacity: 0;
}

.matrix .bg-wrap + .bg-wrap {
  margin-top: 10px;
}

.matrix .bg-wrap .inn {
  opacity: 0;
  transform: translateY(100px); /* 下から浮かび上がる */
  transition: 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.matrix.is-animated .bg-wrap {
  opacity: 1;
}

.matrix.is-animated .bg-wrap .inn {
  opacity: 1;
  transform: translateY(0);
}




/* Header */
header{
	height: 85px;
	background-color: transparent;
	z-index: 2;
}
.header-wrap{
	width: 100%;
    height: 100%;
    justify-content: space-between;
    align-items: center;
    padding: 0 45px;
}
.header-global-nav{
    gap: 30px;
    font-size: 16px;
    font-style: normal;
	align-items: center;
}

li.menu-item{
	font-size: 18px;
}

.menu-item__contact{
	
}

.header-global-nav .menu-item__contact a {
    width: 152px;
    height: 48px;
    color: #ed6218;
    border: 2px solid #ed6218;
	border-radius: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    transition: .3s all;
}


/*-----------------
		MV
-----------------*/
section.mv-wrap{
	height: 80vh;
    overflow: hidden;
    position: relative;
	background-image: url(img/mv.webp);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	width: 100%;
}

.main-catch{
	position: absolute;
	color: #fff;
	top: 35%;
    left: 11%;
}

.c-heading {
    font-size: 46px;
    line-height: 1.2;
    font-weight: bold;
    letter-spacing: 0.1em;
    padding-bottom: 20px;
}
.c-text {
    font-size: 34px;
    line-height: 1.5;
    font-weight: 500;
	letter-spacing: 0.06em;
}


	

/*-----------------
	ABOUT US
-----------------*/

.about-section-wrap {
  position: relative;
  z-index: 2;  /* MVより前に */
  background-color: #f9f0e4;
}

.about-section-wrap::before {
    content: "";
    position: absolute;
    top: -280px;
    left: 0;
    width: 100%;
    height: calc(100% + 280px);
    background-image: url(img/aboutus-bg.webp);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
}

.about-wrap {
    padding: 120px 0 30px;
	color: #fff; 
}


.about-section-wrap p.title-en, 
.about-section-wrap h2.title-ja{
    color: #fff;
}

.about-item-l {
    width: 40%;
}
.about-item-l img {
    padding: 60px;
}
.about-item-r {
    width: 60%;
}

.c-btn-with-arrow.blue-btn{
	border: 1px solid #ed6218;
    background: #fff;
    color: #ed6218;
	margin-top: 55px;
}

.c-btn-with-arrow.blue-btn::before{
	content: "";
    height: 10px;
    width: 10px;
    border-top: 2px solid #ed6218;
    border-right: 2px solid #ed6218;
    transform: rotate(45deg);
    margin: 0 10px;
    position: absolute;
    right: 30px;
    top: 40%;
}



/*-----------------
	REASONS
-----------------*/
section#reason {
    padding: 80px 0;
}

.reason-card-wrap {
    gap: 30px;
    justify-content: space-between;
    padding: 45px 0 0;
}
.reason-section-wrap .title-ja, 
.reason-section-wrap .title-en {
	text-align: center;
}

.reason-section-wrap .p-large{
	text-align: center;
	font-size: 24px;
}

.card-3 {
  flex: 1;                /* 均等に伸縮 */
	max-width: 32%;    /* 崩れ防止の最低幅 */
  background: #f9f0e4;
  border-radius: 10px;     /* 角丸 */
  padding: 42px 30px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.card-3 h3 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: bold;
    text-align: center;
    min-height: 3.5em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-3 img {
  max-height: 94px;
  margin: 0 auto 15px;
  display: block;
}

.card-3 p {
  font-size: 15px;
  line-height: 1.6;
}

.reason-section-wrap .c-btn-with-arrow {
    margin: 55px auto 0;
}

.reason-card-01, 
.reason-card-02, 
.reason-card-03{
	position: relative;
}

.reason-card-01::before{
    content: "";
    position: absolute;
    top: -30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background-image: url(img/reason-01.png);
    background-position: top;
    background-repeat: no-repeat;
    background-size: contain;
}

.reason-card-02::before{
    content: "";
    position: absolute;
    top: -30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background-image: url(img/reason-02.png);
    background-position: top;
    background-repeat: no-repeat;
    background-size: contain;
}

.reason-card-03::before{
    content: "";
    position: absolute;
    top: -30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background-image: url(img/reason-03.png);
    background-position: top;
    background-repeat: no-repeat;
    background-size: contain;
}



/*-----------------
	SERVICE
-----------------*/
section#service {
    padding: 80px 0;
}
.service-section-wrap .inner{
  flex-wrap: nowrap;
  align-items: center;
  gap: 40px;
  max-width: 1400px; /* 左右余白を広めに管理 */
  margin: 0 auto;
  padding: 0 0 0 40px; /* 左側だけ余白 */
}

.s-item-l {
  flex: 0 0 45%; /* 左側固定幅（約半分弱） */
  min-width: 320px;
}

.s-item-r {
    flex: 1;
    margin-right: calc(50% - 50vw);
    margin-left: 4%;
}

.s-item-r img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 0; 
  box-shadow: none; 
}

img.s-image {
    padding: 30px 0 0;
}
.service-section-wrap .p-medium{
	font-size: 18px;
}





/*-----------------
	NEWS
-----------------*/
section#news {
    padding: 80px 0;
}
.news-section-wrap .flex {
    gap: 60px;
}
.news-item-r {
    flex: 1;
}
.news-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.news-list li {
  border-bottom: 1px solid #ddd;
}

/*
.news-list li a {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 0;
  text-decoration: none;
  color: #333;
  transition: 0.3s;
font-size: 18px;
}
*/

.news-list li {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 0;
  text-decoration: none;
  color: #333;
  transition: 0.3s;
font-size: 18px;
}


.news-list li a:hover {
  color: #f15a24;
}

.news-date {
  min-width: 120px;
}

.news-title {
  flex: 1;
}

.news-section-wrap .c-btn-with-arrow {
    margin: 55px 0 0 auto;
}



/*-----------------
	RECRUIT
-----------------*/
.recruit-section-wrap {
  position: relative;
  padding: 60px;
  max-width: 1200px;
  max-height: 445px;
  text-align: center;
  color: #fff;
border-radius: 30px;
  margin: 0 auto 80px;
	    margin: 80px auto;
  overflow: hidden; /* 枠からはみ出さない */
  z-index: 0;
}

.recruit-section-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("img/recruit-bg.webp");
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  transform: scale(1);
  transition: transform .5s ease; 
  z-index: -1;
}

.recruit-section-wrap:hover::before {
  transform: scale(1.1); 
}


section#recruit p.title-en,
section#recruit h2.title-ja {
	color: #FFF;
}


/*-----------------
	CONTACT
-----------------*/
section#contact {
    padding: 60px 0;
	color: #FFF;
    background: #E1381C;
background: -webkit-linear-gradient(300deg, rgba(225, 56, 28, 1) 17%, rgba(243, 167, 19, 1) 100%);
background: -o-linear-gradient(300deg, rgba(225, 56, 28, 1) 17%, rgba(243, 167, 19, 1) 100%);
background: linear-gradient(30deg, rgba(225, 56, 28, 1) 17%, rgba(243, 167, 19, 1) 100%);
}

section#contact p.title-en,
section#contact h2.title-ja {
	color: #FFF;
}
.contact-section-wrap .flex{
	gap: 80px;
    align-items: center;
}

.contact-section-wrap .news-item-r p.p-large {
    font-weight: normal;
}

a.tel-icon {
    font-size: 48px;
    font-weight: 500;
  font-family: "Oswald", sans-serif;
	position: relative;
	padding-left: 40px;
}
a.tel-icon::before{
   content: "";
    position: absolute;
    top: 21px;
    left: 0;
    width: 32px;
    height: 32px;
    background-image: url("img/tel-icon.png");
    background-position: top;
    background-repeat: no-repeat;
    background-size: contain;
	
}

.contact-section-wrap  .c-btn-with-arrow{
   margin-top: 0;
}



/*-----------------
  FOOTER
-----------------*/
.site-footer {
  background: #fff;
  padding: 60px 0 15px;
}

.site-footer .flex {
  gap: 40px;
}

.footer-info {
  min-width: 250px;
	font-size: 16px;
}

.footer-logo {
  margin-bottom: 15px;
}

.footer-adress{
	padding-bottom: 45px;
}


.footer-nav-wrap {
    flex: 1;
}

nav.footer-nav ul {
    min-width: 200px;
}

ul.flex.marks-wrap {
    padding: 30px 0 0;
}

.footer-nav li {
  margin-bottom: 10px;
}

.footer-nav a {
  text-decoration: none;
  transition: 0.3s;
}

.footer-nav a:hover {
  color: #f15a24;
}

nav.footer-nav.flex.sp-only {
    display: none;
}



.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  text-align: center;
  padding: 20px 0;
  font-size: 12px;
  color: #aaa;
}




/*-----------------
  SP対応
-----------------*/
@media screen and (max-width: 767px) {
	
	.pc-only{
		display: none;
	}	
	.sp-only{
		display: block;
	}
	
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-map {
    order: -1; /* 地図を先頭にしたい場合は調整 */
  }

.pc-only{
	display: none;
}
.sp-only{
	display: block;
}
.flex {
    display: block;
}

.inner {
	max-width: 550px;
	width: 85%;
	padding: 0;
}



.c-btn-with-arrow {
    width: fit-content;
    padding: 1.2rem 60px 1.2rem 30px;
    border-radius: 35px;
    font-weight: normal;
    font-size: 16px;
    margin: 40px auto 0;
}

/* Header */
header {
    height: 60px;
}
img.logo {
    width: 120px;
    margin-top: 17px;
}
.header-wrap {
    padding: 0 30px;
}
	
	
h2.title-ja {
    font-size: 28px;
    padding-bottom: 20px;
}
p.title-en {
    font-size: 18px;
    font-weight: normal;
}
p.p-large {
    font-size: 20px;
}
p.p-medium {
    font-size: 18px;
}
	
	
/* MV */
section.mv-wrap {
    height: 85vh;
}
.main-catch {
    top: 40%;
    left: 5%;
}

.c-heading {
    font-size: 24px;
}
.c-text {
    font-size: 20px;
}
	
	
	




/* ABOUT US*/
.about-section-wrap::before {
    top: -195px;
    height: calc(100% + 260px);
    background-position: right;
}
.about-item-l{
    width: 75%;
    margin: 0 auto;
    margin-bottom: -90px;
} 

.about-item-r{
    width: 100%;
}
.about-item-l img {
     padding: 0; 
}

.c-btn-with-arrow.blue-btn {
    margin: 30px auto 0;
}

/* REASONS*/
section#reason {
    padding: 80px 0 0;
    margin-top: 45px;
}
	
.reason-section-wrap .p-large {
    text-align: left;
    font-size: 18px;
}
.card-3 {
    max-width: 100%;
    margin-bottom: 50px;
    padding: 24px;
}
.card-3 h3 {
    font-size: 21px;
    margin: 10px 0 20px;
    min-height: auto;
}

.reason-card-01::before, 
.reason-card-02::before, 
.reason-card-03::before {
    top: -25px;
    left: 25px;
    width: 45px;
    height: 45px;
}



/* SERVICE*/
section#service {
    padding: 80px 0 0;
}
.service-section-wrap .flex{
	display: flex;
}
.service-section-wrap .inner{
flex-direction: column-reverse;
  gap: 60px;
  padding: 0;
}



/* NEWS*/
section#news {
    padding: 80px 0 0;
}
.news-list li{
	display: block;
	font-size: 16px;
}
.news-date, 
.news-title{
	display: inline-block;
}

/* RECRUIT */	
.recruit-section-wrap {
	padding: 30px 24px;
	margin: 80px 30px;
}
.recruit-section-wrap p.p-medium {
	font-size: 16px;
	text-align: left;
}
	
/* FOOTER*/
	
ul.rule-nav.flex.pc-only {
    display: none;
}
nav.footer-nav.flex.pc-only {
    display: none;
}
nav.footer-nav.flex.sp-only {
    display: block;
}
.footer-logo {
    width: 120px;
    margin-bottom: 10px;
}

.footer-nav li {
    display: inline-block;
    margin: .5rem;
}
ul.flex.marks-wrap {
    display: flex
;
    gap: 10px;
    flex-wrap: nowrap;
    justify-content: flex-end;
}
.marks-wrap li img {
    width: 70px;
}
	
	
	
}

/* Media query for Mobile devices*/
@media only screen and (min-width : 285px) and (max-width : 480px) {

}

/* Media Query for Tablets */
@media only screen and (min-width : 481px) and (max-width : 1024px) {

}

/* Desktops and laptops  */
@media only screen and (min-width:1025px) {

}
