@charset "utf-8";

/*
Base style
*/
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  /* outline: 1px #000 solid; */
}

@font-face {
  font-family: "CPFont";
  src: url('../fonts/CP-Font.woff2') format('woff2'),
    url('../fonts/CP-Font.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

body {
  font-size: 15px;
  line-height: 1.5;
  font-family: "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  color: #333;
  background: #ff3131;
}

h1 {
  margin: 0;
}

a {
  text-decoration: none;
}

/*
header 
*/
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ff3131;
  padding: 0 0 0 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  color: #fff;
  font-size: 32px;
  font-weight: normal;
  margin: 18px 0 7px;
  font-family: 'CPFont', "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
}

.nav ul {
  display: flex;
  gap: 30px;
  list-style: none;
  background: #fff;
  padding: 12px 20px 12px 30px;
  border-radius: 40px 0 0 40px;
}

.nav-logo {
  display: none;
}

.header-navitem>a {
  color: #ff3131;
  font-family: 'CPFont', "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  text-decoration: none;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger img {
  width: 32px;
}

.close-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  margin-bottom: 20px;
  margin-right: 0;
}

.hamburger,
.close-btn {
  position: fixed;
  top: 18px;
  right: 25px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
}

.close-btn>img {
  width: 30px;
}

.nav-sns {
  display: none;
}

@media screen and (max-width: 860px) {
  .logo {
    font-size: 24px;
  }

  .hamburger {
    display: block;
  }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: #ff3131;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    padding: 5vw 10vw;
  }

  .nav.active {
    transform: translateX(0);
  }

  .nav-logo {
    display: inline-block;
    background: #fff;
    color: #ff3131;
    font-family: 'CPFont', "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
    font-size: 7vw;
    padding: 15px 24px 15px;
    border-radius: 0;
    margin-top: 60px;
  }

  .nav ul {
    flex-direction: column;
    gap: 20px;
    background: none;
    padding: 0;
    border-radius: 0;
    margin-top: 50px;
  }

  .header-navitem>a {
    color: #fcfcfc;
    font-size: 4vw;
  }

  .close-btn {
    display: block;
  }

  .header.menu-open .hamburger {
    display: none;
  }

  .header.menu-open .close-btn {
    display: block;
  }

  .nav-sns {
    display: block;
    margin-top: 40px;
    color: #fff;
    font-family: "Noto Sans JP", sans-serif;
  }

  .sns-icons {
    display: flex;
    gap: 20px;
    align-items: center;
  }

  .sns-icons img {
    width: 40px;
    height: auto;
  }
}

@media screen and (max-width: 450px) {
  .logo {
    margin: 16px 0 9px;
  }

  .header-navitem>a {
    font-size: 6vw;
  }
}

/*
SNS固定
*/
.sns-fixed {
  position: fixed;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  padding: 15px 10px;
  border-radius: 20px;
  text-align: center;
  z-index: 999;
}

.sns-fixed p {
  writing-mode: vertical-rl;
  color: #ff3131;
  font-weight: normal;
  margin-bottom: 0;
  text-orientation: upright;
  font-family: 'CPFont', "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
}

.sns-fixed img {
  width: 24px;
  display: block;
  margin: 5px auto;
}

@media screen and (max-width: 450px) {
  .sns-fixed {
    padding: 15px 5px;
  }

  .sns-fixed p {
    margin-left: 4px;
    margin-bottom: 2px;
  }

  .sns-fixed img {
    width: 30px;
    margin: 0 auto;
  }
}

/*
hero
*/
.hero {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 1.5vw;
  padding: 0;
}

.hero-left img {
  width: auto;
  height: 33vw;

  border-radius: 0 2vw 2vw 0;
}

.hero-center {
  display: flex;
  flex-direction: column;
  gap: 1.5vw;
}

.badge {
  background: #fff;
  color: #ff3131;
  font-size: 2vw;
  padding: 3vw 1vw 1vw 1vw;
  text-align: center;
  border-radius: 2vw;
  height: 10vw;
  font-family: 'CPFont', "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
}

.hero-strong {
  font-weight: normal;
  font-size: 4vw;
}

.hero-right {
  display: flex;
  flex-direction: column;
  gap: 1.5vw;
}

.hero-right img {
  width: 100%;
  height: 15.77vw;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  overflow: hidden;
  display: block;
  border-radius: 2vw 0 0 2vw;
}

@media screen and (max-width: 450px) {
  .hero {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .hero-left {
    width: 90%;
    margin: auto;
    aspect-ratio: 16 / 9;
    /* ← 好きな比率に変更OK */
    overflow: hidden;
  }

  .hero-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 3vw;
  }

  .hero-center {
    grid-template-columns: repeat(3, 1fr);
    gap: 3vw;
    padding: 0 5vw;
  }

  .badge {
    height: 17vw;
    padding: 2.3vw 1.3vw 3.3vw;
    font-size: 12px;
    border-radius: 3vw;
  }

  .hero-strong {
    font-size: 9vw;
    display: block;
  }

  .hero-right {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3vw;
    width: 90%;
    margin: auto;
  }

  .hero-right img {
    width: 100%;
    height: 30vw;
    aspect-ratio: 1 / 1;
    /* 正方形にしたい場合 */
    object-fit: cover;
    object-position: center;
    overflow: hidden;
    display: block;
    border-radius: 3vw;
  }
}

/*
キャッチコピー
*/
.catch {
  background: #ff3131;
  padding: 2vw 1vw;
  text-align: center;
}

.catch h2 {
  color: #fff;
  font-size: 4vw;
  font-weight: normal;
  font-family: 'CPFont', "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
}

.catch br {
  display: none;
}

@media screen and (max-width: 860px) {
  .catch h2 {
    font-size: 3.5vw;
  }
}

@media screen and (max-width: 450px) {
  .catch {
    margin-top: 5vw;
  }

  .catch h2 {
    font-size: 9vw;
  }

  .catch br {
    display: block;
  }
}

/*
greeting-section
*/
.greeting-section {
  display: flex;
  background-color: #ff3131;
  padding: 40px 71px 0 0;
  gap: 20px;
  margin: auto;
  max-width: 1700px;
}

.greeting-left {
  width: 40%;
  position: relative;
  max-width: 400px;
}

.greeting-box {
  background-color: #fcfcfc;
  width: 170px;
  border-radius: 0 20px 20px 0;
}

.greeting-box h2 {
  font-size: 40px;
  color: #ff3131;
  font-weight: normal;
  padding: 10px 10px 7px 16px;
  font-family: 'CPFont', "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
}

.greeting-left {
  width: 100vw;
}

.greeting-left img {
  width: 100%;
  height: auto;
  border-radius: 0 20px 20px 0;
  margin-top: 40px;
}

.charm-text {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  color: #ff3131;
  font-size: 14px;
  font-weight: bold;
}

.signature {
  margin-top: 20px;
  font-weight: bold;
}

.signature span {
  display: block;
  color: #fcfcfc;
  text-align: center;
  font-weight: normal;
  font-family: 'CPFont', "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
}

.signature1 {
  font-size: clamp(12px, 1vw, 18px);
}

.signature2 {
  font-size: clamp(18px, 1.5vw, 25px);
}

.greeting-right {
  margin-top: 108px;
}

.greeting-right h2 {
  font-size: 24px;
  margin-bottom: 20px;
  background-color: #fff;
  color: #ff3131;
  display: inline-block;
  padding: 5px 15px;
  border-radius: 15px;
}

.greeting-right p {
  line-height: 1.8;
  margin-bottom: 10px;
  color: #fcfcfc;
  font-weight: 600;
  font-size: 16px;
}

@media screen and (max-width: 1000px) {
  .greeting-section {
    display: block;
    padding: 0;
    margin-top: 7vw;
  }

  .greeting-box {
    width: 20vw;
    margin-bottom: 7vw;
    min-width: 110px;
  }

  .greeting-left {
    max-width: 1000px;
  }

  .greeting-box h2 {
    font-size: 4.5vw;
  }

  .greeting-left img {
    margin: auto;
    width: 45vw;
    min-width: 300px;
    border-radius: 20px;
    display: block;
  }

  .greeting-right {
    width: 80vw;
    margin: 5vw auto 5vw auto;
  }
}

@media screen and (max-width: 450px) {
  .greeting-section {
    display: block;
    padding: 0;
    margin-top: 7vw;
  }

  .greeting-box {
    width: 30vw;
  }

  .greeting-box h2 {
    font-size: 7vw;
  }

  .greeting-left img {
    width: 100vw;
    border-radius: 0;
  }

  .signature span {
    width: 100vw;
  }

  .greeting-right {
    margin-top: 5vw;
  }

  .greeting-right p {
    width: 73vw;
    display: block;
    margin: auto;
  }
}

/*
profile-section
*/
.profile-section {
  padding: 4vw;
}

.profile-inner {
  max-width: 1700px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 30px;
}

.card {
  background-color: #fff;
  border-radius: 2vw;
  padding: 2vw 2vw 5vw 2vw;
  position: relative;
}

.card-title {
  color: #ff3131;
  font-size: clamp(14px, 3vw, 50px);
  margin-bottom: 3vw;
  font-weight: normal;
  font-family: 'CPFont', "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
}

.intro-list {
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 1.8vw, 24px);
}

.intro-item {
  display: grid;
  grid-template-columns: clamp(80px, 16vw, 250px) 1fr;
  align-items: center;
  gap: clamp(8px, 2vw, 24px);
  z-index: 2;
}

.intro-item dt {
  background: #ff3131;
  width: clamp(80px, 16vw, 240px);
  color: #fff;
  padding: 10px 0;
  border-radius: 999px;
  text-align: center;
  font-size: clamp(14px, 2vw, 30px);
  font-weight: 600;
  font-family: "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
}

.intro-item dd {
  margin: 0;
  color: #ff3131;
  font-weight: bold;
  font-size: clamp(11px, 3vw, 26px);
}

.profile-image {
  position: absolute;
  bottom: 0;
  right: 2vw;
  width: clamp(80px, 14vw, 240px);
  max-width: 40%;
  border-radius: clamp(10px, 3vw, 30px);
  z-index: 1;
}

.career-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 2vw, 24px);
  font-size: clamp(10px, 1.5vw, 22px);
}

.career-list li {
  display: grid;
  grid-template-columns: clamp(80px, 7vw, 140px) 1fr;
  gap: clamp(8px, 2vw, 24px);
}

.career-list .date {
  color: #ff3131;
  font-weight: 700;
  white-space: nowrap;
}

.career-list .text {
  color: #ff3131;
  font-weight: 600;
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  .profile-inner {
    display: block;
    max-width: 600px;
    width: 90%;
  }

  .profile-image {
    position: absolute;
    width: 30%;
  }

  .intro-item {
    grid-template-columns: clamp(80px, 24vw, 250px) 1fr;
    gap: clamp(6px, 1vw, 15px);
  }

  .intro-item dt {
    font-size: clamp(10px, 2.5vw, 26px);
    width: clamp(80px, 21vw, 240px)
  }

  .intro-item dd {
    font-size: clamp(10px, 3.1vw, 26px);
  }

  .card {
    margin-bottom: 10vw;
    padding: 5vw 2vw;
  }

  .card-title {
    font-size: 5vw;
  }

  .date {
    font-size: 2vw;
  }

  .text {
    font-size: 2vw;
  }

  .career-list li {
    grid-template-columns: clamp(80px, 20vw, 140px) 1fr;
  }

  .career-list .date {
    font-size: 3vw;
  }

  .career-list .text {
    font-size: 3vw;
  }
}

@media screen and (max-width: 500px) {
  .intro-card {
    height: 500px;
  }
}

@media screen and (max-width: 450px) {
  .profile-section {
    padding: 15vw 4vw 16vw;
  }

  .profile-image {
    width: 40%;
  }

  .career-list .date {
    font-size: 3.5vw;
  }

  .career-list .text {
    font-size: 3.5vw;
  }
}

/*
news
*/
.news {
  margin: 0 auto;
  padding: 80px 30px 40px;
  background-color: #fff;
}

.news-title {
  text-align: center;
  font-size: 36px;
  font-weight: normal;
  margin-bottom: 10px;
  font-family: 'CPFont', "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
}

.news-list {
  width: 90%;
  max-width: 1700px;
  margin: auto auto 40px auto;
}

.news-item {
  padding: 30px 0 10px;;
  border-bottom: 2px solid #bfbfbf;
}

.news-date {
  display: block;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.news-heading {
  color: #ff2a2a;
  font-size: 22px;
  font-weight: normal;
  margin-bottom: 12px;
  font-family: 'CPFont', "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
}

.news-text {
  font-size: 16px;
  line-height: 1.8;
  color: #000;
}

.news-more {
  text-align: right;
}

.news-more a {
  font-size: 22px;
  font-weight: normal;
  color: #000;
  text-decoration: none;
  font-family: 'CPFont', "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
}

.news-more a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 450px) {
  .news {
    padding: 10vw 3vw;
  }

  .news-list {
    margin: auto;
    width: 77%;
  }

  .news-item {
    padding: 2vw 0;
  }

  .news-date {
    font-size: 4vw;
  }

  .news-heading {
    font-size: 5vw;
    margin-bottom: 2vw;
  }

  .news-text {
    font-size: 3vw;
  }
}

/*
contact-link
*/

.contact-cta {
  background-color: #ff2a2a;
  padding: 80px 20px;
}

.cta-inner {
  max-width: 1100px;
  margin: 0 auto;
  width: 85%;
}

.cta-box {
  background-color: #fff;
  border-radius: 40px;
  padding: 60px 20px;
  text-align: center;
  position: relative;
}

.cta-box::before {
  content: "";
  position: absolute;
  inset: 26px;
  border: 6px dashed #ff2a2a;
  border-radius: 30px;
  pointer-events: none;
}

.cta-signboard {
  max-width: 320px;
  width: 100%;
  margin-bottom: 30px;
}

.cta-text {
  font-size: 36px;
  font-weight: normal;
  margin-bottom: 10px;
  color: #000;
  font-family: 'CPFont', "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
}

.cta-text span {
  color: #ff2a2a;
}

.cta-button {
  display: inline-block;
  background-color: #f2f2f2;
  color: #000;
  font-size: 20px;
  font-weight: 600;
  padding: 14px 40px;
  border-radius: 999px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #e5e5e5;
}

@media screen and (max-width: 710px) {
  .cta-box {
    height: 50vw;
    width: auto;
  }

  .cta-text {
    font-size: 5vw;
    margin-bottom: 0;
  }

  .cta-signboard {
    width: 50%;
    margin-bottom: 3%;
  }

  .cta-box::before {
    inset: 15px;
  }

  .cta-box {
    padding: 8vw 2vw;
  }
}

@media screen and (max-width: 450px) {
  .contact-cta {
    padding: 18vw 2vw 5vw;
  }

  .cta-inner {
    width: 95%;
  }

  .cta-signboard {
    width: 46%;
  }

  .cta-button {
    padding: 1.5vw 6vw;
    font-size: 4vw;
  }

  .cta-box::before {
    border-radius: 5vw;
  }

  .cta-box {
    border-radius: 5vw;
  }

  .cta-box::before {
    border: 4px dashed #ff2a2a;
    inset: 3vw;
  }
}


/*
company
*/
.company {
  background-color: #ff2d2d;
  padding: 80px 20px;
}

.company-inner {
  max-width: 1100px;
  width: 90%;
  margin: auto;
}

.company-title {
  text-align: center;
  color: #fff;
  font-size: 50px;
  font-weight: normal;
  margin-bottom: 40px;
  font-family: 'CPFont', "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
}

.company-box {
  background-color: #fff;
  border-radius: 40px;
  padding: 40px 60px;
  max-width: 1100px;
}

.company-list {
  margin: 0;
}

.company-row {
  display: grid;
  grid-template-columns: 280px 1fr;
  align-items: center;
  padding: 10px 5px 5px 5px;
  border-bottom: 1px dashed #999;
}

.company-row dt {
  color: #ff2d2d;
  font-weight: normal;
  font-size: 30px;
  font-family: 'CPFont', "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
}

.company-row dd {
  margin: 0;
  color: #ff2d2d;
  font-size: 30px;
  font-weight: normal;
  font-family: 'CPFont', "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
}

@media screen and (max-width: 860px) {
  .company-title {
    font-size: 8vw;
    margin-bottom: 3vw;
  }

  .company-box {
    border-radius: 15px;
    padding: 4vw;
  }

  .company-inner {
    width: 100%;
  }

  .company-row {
    grid-template-columns: 27vw 1fr;
  }

  .company-row dt {
    font-size: 3vw;
  }

  .company dd {
    font-size: 3vw;
  }
}

@media screen and (max-width: 520px) {
  .company-row dt {
    font-size: 2.7vw;
  }
  .company-row dd {
    font-size: 2.7vw;
  }
}

@media screen and (max-width: 450px) {
  .company {
    padding: 12vw 4vw;
  }
}


/*
map
*/
.map {
  width: 100%;
  height: 40vw;
  max-height: 600px;
}

@media screen and (max-width: 768px) {
  .map {
    height: 300px;
  }
}

@media screen and (max-width: 250px) {
  .map {
    height: 250px;
  }
}


/*
footer
*/
.site-footer {
  background-color: #fff;
  padding: 40px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
}

.footer-left {
  text-align: center;
}

.footer-logo {
  width: 350px;
  margin-bottom: 20px;
}

.footer-copy {
  font-size: 20px;
  color: #000;
}

.footer-nav {
  border-top: 3px dashed #ff2a2a;
  border-bottom: 3px dashed #ff2a2a;
  width: 35vw;
  max-width: 500px;
}

.footer-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-nav li {
  margin: 12px 0;
}

.footer-nav a {
  font-size: 20px;
  font-weight: 700;
  color: #000;
  text-decoration: none;
  position: relative;
}

.footer-nav a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 860px) {
  .site-footer {
    background-color: #fff;
    padding: 20px;
  }

  .footer-logo {
    width: 40vw;
    min-width: 150px;
  }

  .footer-nav li {
    margin: 1vw 0;
  }

  .footer-nav a {
    font-size: clamp(12px, 3vw, 20px);
  }
}

@media screen and (max-width: 450px) {
  .site-footer {
    padding: 3vw;
  }

  .footer-nav li {
    margin: 0.5vw 0;
  }

  .footer-logo {
    margin-bottom: 1vw;
  }

  .footer-copy {
    font-size: 3vw;
  }
}