/*
Theme Name: KOGA_theme
Theme URL: https://yanagawa-kogakougyou.com/.com/
Description: 古賀工業のテーマ
Author: KOGA INDUSTRY.
Version: 1.0.0
*/

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,body {
  height:100%;
}
html {
scroll-behavior: smooth;
}

#smooth {
  scroll-margin-top: 120px;
}

body {
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, "Hiragino Kaku Gothic ProN", "Noto Sans JP", "Yu Gothic", Meiryo, sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.7;
}

a {
  color:inherit;
  text-decoration:none;
}

img {
  max-width:100%;
}

.bg-grid {
  background-color: #282828;
}

.container01 {
  max-width:1320px;
  margin:0 auto;
}

.site-header {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    max-width: 1320px;
    width: 100%;
    border: 1px solid #fff;
    border-radius: 8px;
    z-index: 10;
    background-color: #303030;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 50px;
}

.header-inner a {
    font-size: 20px;
    padding: 10px 0;
}

.nav {
    display: flex;
    gap: 40px;
}

.brand {
    font-size: 24px!important;
    letter-spacing: 0.1em;
}

.carousel {
  width: 100vw;
  overflow: hidden;
  padding: 285px 0 200px;
}
.center-carousel {
display: none;
}

.carousel-track {
  display: flex;
  gap: 30px;
  transition: transform 0.8s ease;
  will-change: transform;
}

.slide {
  flex: 0 0 22vw;
  opacity: 0.17;
  transform: scale(1);
  transition: transform 0.8s ease, opacity 0.8s ease;
}

.slide img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 16px;
}

.slide.is-active {
  opacity: 1;
  transform: scale(1.2);
  z-index: 2;
}

.bland-catch01 {
    position: absolute;
    top: 180px;
    z-index: 2;
    right: 52%;
    transform: translateX(-50%);
}

.bland-catch02 {
    position: absolute;
    top: 180px;
    left: 52%;
    transform: translateX(50%);
    z-index: 2;
}

.cta {
    position: absolute;
    font-size: 14px;
    color: #fff;
    padding: 18px 80px 18px 25px;
    border-radius: 8px;
    top: 740px;
    left: 60%;
    transform: translateX(50%);
    z-index: 2;
    background: linear-gradient(45deg, #e8380f, #a31313);
}

.cta:after {
    content: '';
    width: 18px;
    height: 18px;
    border: 0;
    border-top: solid 1px #fff;
    border-right: solid 1px #fff;
    transform: rotate(45deg);
    position: absolute;
    top: 0;
    right: 24px;
    bottom: 0;
    margin: auto;
}

.cta-main {
  font-size: 28px;
  line-height: 40px;
}

.sec02 {
    padding-bottom: 96px;
}

.service-box {
    display: flex;
    flex-wrap: wrap;
    padding: 0px 60px;
    gap: 30px;
    position: relative;
}

.service-item {
    width: calc(50% - 15px);
    color: #fff;
    display: flex;
    font-size: 42px;
    font-weight: bold;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    height: 360px;
	position: relative;
}

.service-item01 {
	background-image: linear-gradient(rgba(0,0,0,0.3),rgba(0,0,0,0.3)),url("assets/service01.png");
  background-size: cover;
}

.service-item02 {
	background-image: linear-gradient(rgba(0,0,0,0.3),rgba(0,0,0,0.3)),url("assets/service02.png");
  background-size: cover;
}

.service-item03 {
	background-image: linear-gradient(rgba(0,0,0,0.3),rgba(0,0,0,0.3)),url("assets/service03.png");
  background-size: cover;
}

.service-item04 {
	background-image: linear-gradient(rgba(0,0,0,0.3),rgba(0,0,0,0.3)),url("assets/service04.png");
  background-size: cover;
}

.service-text {
    color: #fff;
    background: #282828;
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    padding: 50px 50px 0;
    border-radius: 16px 16px 0 0;
    width: 420px;
	z-index: 3;
}

.service-item03 {
    padding-right: 200px;
}

.service-item04 {
    padding-left: 200px;
}

h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 40px;
}

.service-text h2:before {
    content: "SERVICE";
    display: block;
    font-family: "futura";
    font-weight: lighter;
    letter-spacing: 0.15em;
    font-size: 20px;
    line-height: 1.8;
    background: linear-gradient(45deg, #e8380f, #a31313);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-next {
    border: 1px solid #fff;
    padding: 12px;
    border-radius: 8px;
    max-width: 240px;
    width: 100%;
    display: inline-block;
    text-align: center;
    position: relative;
}

.btn-next:after {
    content: '';
    width: 10px;
    height: 10px;
    border: 0;
    border-top: solid 1px #fff;
    border-right: solid 1px #fff;
    transform: rotate(45deg);
    position: absolute;
    top: 0;
    right: 20px;
    bottom: 0;
    margin: auto;
}

.service-text p {
    margin-bottom: 35px;
}

.centering {
  text-align: center;
}

.bg-white {
    background: #fff;
}

.bg-white h2 {
    text-align: left;
    margin: 0;
}

.btn-next02 {
    border: none;
    color: #fff;
    background: #282828;
}

.works-text {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.works-text h2:before {
  content: "WORKS";
    display: block;
    font-family: "futura";
    font-weight: lighter;
    letter-spacing: 0.15em;
    font-size: 20px;
    line-height: 1.8;
    background: linear-gradient(45deg, #e8380f, #a31313);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sns-text h2 {
    margin-bottom: 40px;
}

.sns-text h2:before {
  content: "INSTAGRAM";
    display: block;
    font-family: "futura";
    font-weight: lighter;
    letter-spacing: 0.15em;
    font-size: 20px;
    line-height: 1.8;
    background: linear-gradient(45deg, #e8380f, #a31313);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sec03 .container01, .sec04 .container01 {
    padding: 96px 0;
}

.sec03 .container01 {
    border-bottom: 1px solid #eee;
}

.post-list02 {
    display: flex;
    gap: 30px;
}

article.post-item02 {
    width: 25%;
}

article.post-item02 .post-title {
    margin: 10px 0 5px;
}

.sec03 .works-text {
    margin-bottom: 40px;
}

.footer {
    border-top: 1px solid #fff;
    padding-top: 80px;
}

.footer-top {
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-nav {
    display: flex;
    gap: 40px;
    font-size: 18px;
    margin-bottom: 30px;
}

.information {
    display: flex;
    gap: 120px;
}

.contact {
    display: flex;
	flex-direction: column;
    gap: 30px;
}

.logos {
    font-size: 32px;
    font-weight: bold;
}

.info-r {
    text-align: center;
    width: 100px;
}

.info-l {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.copyright {
    text-align: center;
    color: #afafaf;
    font-size: 13px;
    border-top: 1px solid #fff;
    margin-top: 40px;
    padding: 15px 0;
}
/* ===== 共通 ===== */
.sp-menu {
  position: fixed;
  inset: 0;
  background: #282828;
  transform: translateX(100%);
  transition: transform 0.4s ease;
  z-index: 1000;
}

.sp-menu.is-open {
  transform: translateX(0);
}

.sp-menu__list {
  list-style: none;
  padding: 80px 24px;
}

.sp-menu__list li {
  margin-bottom: 24px;
}

.sp-menu__list a {
  font-size: 18px;
  text-decoration: none;
  color: #fff;
}

/* ===== ハンバーガーボタン ===== */
.sp-menu-button {
  display: none;
  position: fixed;
  width: 32px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
top: 26px;
	right: 24px;
}

.sp-menu-button span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: #fff;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.sp-menu-button span:nth-child(1) { top: 0; }
.sp-menu-button span:nth-child(2) { top: 10px; }
.sp-menu-button span:nth-child(3) { top: 20px; }

/* 開いた状態（×になる） */
.sp-menu-button.is-open span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}
.sp-menu-button.is-open span:nth-child(2) {
  opacity: 0;
}
.sp-menu-button.is-open span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

/* ===== スマホのみ表示 ===== */
@media (max-width: 767px) {
  .sp-menu-button {
    display: block;
  }
}


@media screen and (max-width: 480px){
    p {
        font-size: 14px;
    }
    h2 {
        font-size: 32px;
    }
    .site-header {
        top: 0;
        border: initial;
        border-bottom: 1px solid #fff;
        border-radius: 0;
    }
    .header-inner {
        padding: 10px 24px;
    }
    .brand {
        font-size: 20px !important;
    }
    .nav {
        display: none;
    }
    .cta {
        position: fixed;
        font-size: 12px;
        padding: 16px 20px;
        width: calc(100% - 24px);
        top: initial;
        bottom: 12px;
        left: 50%;
        transform: translateX(-50%);
    }
    .cta-main {
        font-size: 24px;
        line-height: 32px;
    }

    .service-box {
        padding: 0;
        gap: 0;
    }

    .service-text {
        left: initial;
        position: initial;
        transform: initial;
        width: 100%;
        padding: 0 24px;
        margin-bottom: 40px;
    }

    .service-text h2:before {
        font-size: 18px;
    }

    .btn-next {
        border: 1px solid #fff;
        padding: 12px;
        border-radius: 8px;
        max-width: 280px;
        width: 100%;
        display: inline-block;
        text-align: center;
        position: relative;
    }

.service-item {
    width: 100%;
    height: 160px;
    border-radius: 0;
    padding: 0;
}

.service-item p {
    font-size: 20px;
}

.sec02 {
    padding-bottom: 0px;
}

.sec03 .container01, .sec04 .container01 {
    padding: 64px 0;
}

.works-text {
    flex-wrap: wrap;
    justify-content: center;
}

.bg-white h2 {
    margin-bottom: 40px;
    text-align: center;
}

.works-text h2:before, .sns-text h2:before {
    font-size: 18px;
}

.sns-text {
    text-align: center;
}
	
.post-list02 {
    flex-direction: column;
    padding: 0 24px;
}
	
article.post-item02 {
    width: 100%;
}
	
article.post-item02 .post-title {
    text-align: left;
}

.footer {
    padding: 64px 24px 0;
}

.footer-top {
    flex-direction: column-reverse;
}

    .information {
        gap: 30px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .contact {
        flex-wrap: wrap;
        gap: 0;
        justify-content: center;
    }

.logos {
    font-size: 20px;
    text-align: center;
}
    .info-l {
        flex-wrap: wrap;
        gap: 24px;
        justify-content: center;
    }
.detail {
    text-align: center;
}
.footer-nav {
    gap: 24px;
    font-size: 14px;
    font-weight: bold;
    margin: 30px 0;
	flex-wrap: wrap;
    justify-content: center;
}

.center-carousel {
display: block;
  width: 100vw;
  overflow: hidden;
}

.center-carousel__track {
  display: flex;
  gap: 16px;
  transition: transform 0.8s ease;
  will-change: transform;
}

.center-carousel__slide {
  flex: 0 0 80vw;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.17;
  transform: scale(1);
  transition: transform 0.8s ease, opacity 0.8s ease;
}

.center-carousel__slide img {
  width: 100%;
  height: auto;
  display: block;
}

/* 中央スライド */
.center-carousel__slide.is-center {
  opacity: 1;
  transform: scale(1.2);
  z-index: 2;
}

.slide img {
    height: 360px;
}

.slide {
    flex: 0 0 60vw;
}

.bland-catch01 {
        position: absolute;
        top: 108px;
        z-index: 2;
        right: 0;
        transform: initial;
        width: 54%;
        background: #282828;
        padding: 15px 24px 20px 20px;
        border-radius: 20px 0 0 20px;
}
	
.bland-catch02 {
        position: absolute;
        top: 568px;
        left: 0;
        transform: initial;
        z-index: 2;
        width: 54%;
        background-color: #282828;
        padding: 20px 20px 15px 24px;
        border-radius: 0 20px 20px 0;
    }
.slide {
    flex: 0 0 60vw;
}
	
.carousel {
    padding: 208px 0 200px;
}
	.instagram-gallery-list[data-feed_layout=gallery] {
		justify-content: center!important;
	}
	.instagram-gallery-list[data-feed_layout=gallery] .instagram-gallery-item {
		width: 48%!important;
	}

}

/* 下層ページ用 */
.container02 {
    max-width:1040px;
    margin: 0 auto;
}

.page-visual {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.page-top-img {
    width: 50%;
}

.page-top-text {
    color: #fff;
    width: calc(50% - 100px);
}

.page-top {
    padding: 184px 0 96px;
}

h1 {
    font-size: 42px;
    text-align: left;
    padding-bottom: 40px;
    margin-bottom: 20px;
    border-bottom: 1px solid #fff;
}

h1:before {
    content: "COMPANY";
    display: block;
    font-family: "futura";
    font-weight: lighter;
    letter-spacing: 0.15em;
    font-size: 20px;
    line-height: 1.8;
    background: linear-gradient(45deg, #e8380f, #a31313);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.head02:before {
    content: "SERVICE";
}

.head03:before {
    content: "WORKS";
}

.head04:before {
    content: "RECRUIT";
}

.head05:before {
    content: "COMPANY";
}

.section {
    color: #fff;
    padding-bottom: 84px;
}

h3 {
    font-size: 24px;
    background: linear-gradient(45deg, #e8380f, #a31313);
    padding: 6px 20px;
    margin-bottom: 40px;
}

.table-item {
    display: flex;
    border-bottom: 1px solid #fff;
    padding: 15px;
}

.table {
    border-top: 1px solid #fff;
}

.table-head {
    font-weight: bold;
    width: 200px;
}

.page-box-image {
    background: url(assets/message.png);
    background-size: cover;
    width: 50%;
    margin: -40px 0 60px 0;
}

.page-box-image01 {
    background: url("http://yanagawa-kogakougyou.com/wp-content/uploads/2025/12/pixta_50650477_M.jpg");
	background-size: cover;
}
.page-box-image02 {
    background: url("http://yanagawa-kogakougyou.com/wp-content/uploads/2025/12/pixta_90382540_M.jpg");
	background-size: cover;
}
.page-box-image03 {
    background: url("http://yanagawa-kogakougyou.com/wp-content/uploads/2025/12/ecc5ac4c1669e64a682279bc665962dd.jpg");
	background-size: cover;
}
.page-box-image04 {
    background: url("http://yanagawa-kogakougyou.com/wp-content/uploads/2025/12/pixta_87557563_M.jpg");
	background-size: cover;
}
.page-box-image05 {
    background: url("http://yanagawa-kogakougyou.com/wp-content/uploads/2025/12/service01-1.png");
	background-size: cover;
}
.page-box-image06 {
    background: url("http://yanagawa-kogakougyou.com/wp-content/uploads/2025/12/S__159711251_0.jpg");
	background-size: cover;
}
.page-box-image07 {
    background: url("http://yanagawa-kogakougyou.com/wp-content/uploads/2025/12/22094590_m.jpg");
	background-size: cover;
}
.page-box-image08 {
    background: url("http://yanagawa-kogakougyou.com/wp-content/uploads/2025/12/S__159883287.jpg");
	background-size: cover;
}

.page-box {
    display: flex;
    background: #303030;
    margin-top: 80px;
}

.page-box-reverse {
    flex-direction: row-reverse;
}

.page-box-text {
    width: 50%;
    padding: 50px 60px;
    position: relative;
}

.srevice-title {
    font-size: 32px;
    font-weight: bold;
    margin: 10px 0 20px;
}

.service-num.num01 {
    position: absolute;
    top: -50px;
    font-family: "futura";
    font-weight: 100;
    letter-spacing: 0.1em;
    font-size: 18px;
    background: linear-gradient(45deg, #e8380f, #a31313);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.big-num {
    font-size: 68px;
}
.service-kind {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-contents {
    color: #282828;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    padding-top: 84px;
}

.service-option {
    width: calc(50% - 25px);
}

.service-option .page-box-text {
    padding: 0;
    width: 100%;
}

.service-option .page-box-image {
    height: 280px;
    width: 100%;
    margin: 0 0 20px;
}

.recruit-box {
    display: flex;
    gap: 60px;
    padding: 60px;
    background: #303030;
    margin-bottom: 60px;
}

.worklife-img {
    width: 220px;
}

.exam {
    width: calc(100% - 280px);
}

.page-box03 {
    color: #282828;
    background: #fff;
    box-shadow: 0px 5px 15px #eee;
    margin-top: 0px;
}

.recruit-focus {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

.recruit-white {
	padding-top: 120px;
}

.post-thumb {
  aspect-ratio: 16 / 9;   /* ← 好きな比率に */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  border-radius: 8px;
}

.post-list {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

article.post-item {
    width: calc(33.3% - 20px);
}

.post-title {
    font-size: 18px;
    text-align: left;
    margin: 10px 0 10px;
}

.post-category {
    display: inline-block;
    border: 1px solid #e8380f;
    font-size: 12px;
    padding: 1px 20px;
    border-radius: 20px;
	background: linear-gradient(45deg, #e8380f, #a31313);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.post-carousel {
  overflow: hidden;
  width: 100%;
}

/* track */
.post-carousel__track {
  display: flex;
  gap: 30px;
  transition: transform 0.6s ease;
}

/* slide */
.post-carousel__slide {
  flex-shrink: 0;
}

/* thumb */
.post-carousel__thumb {
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
}

/* PC */
@media (min-width: 768px) {
  .post-carousel__slide {
    width: 20%;
  }
  .post-carousel {
    padding: 0 10%;
  }
}

/* SP */
@media (max-width: 767px) {
  .post-carousel__slide {
    width: 33.333%;
  }
  .post-carousel {
    padding: 0 12%;
  }
}


@media screen and (max-width:480px) {
	#smooth {
  scroll-margin-top: 140px;
}
    .page-top {
        background: linear-gradient(to bottom, transparent 0%, transparent 0%, #282828 100%), url(assets/page01-sp.png);
        background-repeat: no-repeat;
        background-position: center top;
        background-size: cover;
        padding: 120px 0 64px;
    }
    .page-top-img {
        display: none;
    }

    .page-top-text {
        width: 100%;
    }

    h1 {
        font-size: 32px;
    }

    h1:before {
        font-size: 18px;
    }

    .container02 {
        padding: 0 24px;
    }

    h3 {
        font-size: 18px;
        padding: 4px 15px;
        margin-bottom: 30px;
    }

    .table-item {
        flex-direction: column;
    }

    .table-head {
        margin-bottom: 4px;
    }

    .section {
        padding-bottom: 64px;
    }

    .page-box {
        margin: 0;
        flex-direction: column;
    }

    .page-box-image {
        height: 200px;
        width: calc(100% - 48px);
        margin: 24px;
        /* padding: 20px; */
    }

    .page-box-text {
        width: 100%;
        padding: 0 24px 24px;
    }

    .service-contents {
        color: #282828;
        display: flex;
        flex-wrap: wrap;
        gap: 50px;
    }

    .service-option {
        width: 100%;
    }

    .service-option .page-box-text {
        padding: 0;
        width: 100%;
    }

    .service-option .page-box-image {
        height: 280px;
        width: 100%;
        margin: 0 0 20px;
    }

    .service-num.num01 {
        left: 0px;
        top: -240px;
        display: flex;
        flex-direction: column;
    }

    .big-num {
        margin-top: -30px;
    }

    .srevice-title {
        font-size: 28px;
        text-align: center;
        margin-bottom: 15px;
    }
	.recruit-box {
    padding: 24px;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 20px;
}

.worklife-img {
    display: flex;
    width: 100%;
}

img {}

.worklife-img img {
    width: 33.3%;
}

.exam {
    width: 100%;
}
	.recruit-white {
    padding-top: 64px;
}
.recruit-focus {
    font-size: 18px;
}
	
.post-list {
    flex-direction: column;
    gap: 30px;
}

article.post-item {
    width: 100%;
}
    
}

.rec03-comment {
	margin-top: 40px;
}

.container_01 {
    position: absolute;
    top: 645px;
    right: 76%;
    transform: translateX(-50%);
    z-index: 8;
    margin: 0;
    padding: 0;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.container_01 a:hover {
  opacity: 0.7;
}

.scroll-down_01 {
  position: relative;
  width: 200px;
  height: 200px;
  color: #fff;
  font-family: serif;
  text-decoration: none;
}

.circle-text_01 {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: rotate 20s linear infinite;
}

.circle-text_01 span {
  position: absolute;
  left: 50%;
  font-size: 16px;
  transform-origin: 0 100px;
}

.arrow_01 {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 50px;
  transform: translate(-50%, -50%);
  animation: scroll_01 3s infinite;
}

.arrow_01::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  height: 100%;
  width: 1px;
  background-color: #fff;
  transform: translateX(-50%);
}
.arrow_01::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 12px;
  height: 12px;
  border-bottom: 1px solid #fff;
  transform: translateX(-50%) rotate(-45deg);
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes scroll_01 {
  0% {
    transform: translate(-50%, -50%) translateY(-10px);
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) translateY(10px);
    opacity: 0;
  }
}

@media screen and (max-width:480px) {
	.scroll-down_01 {
  position: relative;
  width: 112px;
  height: 112px;
  color: #fff;
  font-family: serif;
  text-decoration: none;
}
	.circle-text_01 span {
  transform-origin: 0 56px;
		font-size: 9px;
}
.container_01 {
        top: 475px;
        right: 5px;
        transform: initial;
    }
	.arrow_01::after {
    width: 7px;
    height: 7px;
}
	.arrow_01 {
    width: 28px;
    height: 28px;
}
.rec03-comment {
	margin-top: 30px;
}
#contactMail {
    margin-top: 20px;
}
}

.service-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: #E40A19;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 1;
	border-radius: 16px;
}

.service-item:hover::before {
    transform: scaleX(1);
}

.service-item p {
    position: relative;
    z-index: 2;
}

.head-sns img {
    width: 24px;
}

a.head-sns {
    display: flex;
	gap: 8px;
    align-items: center;
}

#contactMail {
    padding: 12px 40px;
    display: inline-block;
    background-color: #9b9b9b;
    color: #ffff;
}