@charset "UTF-8";

/* PCファーストで記述。LPのSP版CSSからpaddingやmarginを相対的な単位で記述する素晴らしさに気づいている */

/* リセットCSSで変わっていない部分をリセット。およびフォントなどを変更 */

ul,
ol {
  list-style: none;
}

/* aセレクタをリセット */
a {
  color: inherit;
  text-decoration: none;
}

/* ========================
全体
======================== */

html {
  scroll-behavior: smooth;
}

body {
  /* フォントファミリー */
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-style: normal;
  font-weight: 400;

  font-size: 16px;
  color: #000;
  line-height: 1.5;
  background-color: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h2-with,
.cred-main,
.aboutus-cardtitle,
.aboutus-cardtitle-with,
.service-card p,
/* 就活LPのフォント */
.main-phrase,
.message,
.desc-container dl dt {
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-style: normal;
  font-weight: 700;
}

img {
  max-width: 100%;
}

/* ========================
ヘッダー
======================== */

.header {
  color: #fff;
  background-color: #ff9100;
}

.header-inner {
  max-width: 1200px;
  height: 80px;
  margin: 0 auto;
  padding: 0 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-logo {
  display: block;
  font-size: 1.5rem;
}

.site-menu ul {
  display: flex;
}
.site-menu ul li {  
  padding: 1rem 40px;  
  font-size: 1rem;
}
.site-menu ul li:hover {
  color: #ff9100;
  background-color: #fff;
  transition-duration: 0.3s;
}

.icon-list ul {
  display: flex;
}

.icon-list ul li {
  margin: 0 30px;
  font-size: 1.5rem;
}
.icon-list a {
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
}
.icon-list a:hover {
  background-color: rgba(255, 255, 255, 0.5);
}

.toggle-menu-button {
  display: none;
  width: 44px;
  height: 34px;
  background-image: url(./img/icon-menu.png);
  background-size: 50%;
  background-position: center;
  background-repeat: no-repeat;
}

/* ========================
メイン
======================== */

/*---- トップページ ----*/

/*-- ファーストビュー --*/
.first-view {
  height: calc(100vh - 80px);
  background-image: url(./img/sotto-top-firstview.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  display: flex;
  align-items: center;
}
.first-view-text {
  font-size: 2.5rem;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 40px;
  padding-bottom: 250px;
}

/*-- 「ABOUT US」コンテンツ --*/
.aboutus {
  padding: 60px 0 60px;
  background-color: #fff;
}
.aboutus-inner {
  width: 1100px;
  max-width: 90%;
  margin: 0 auto;
}
.card-list {
  display: flex;
  gap: 50px;
  justify-content: center;
  padding: 50px 0;
  text-align: center;
}
.card-list a {
  display: block;
  transition-duration: 0.3s; 
}
.card-list a:hover {
  transform: scale(0.95);
  opacity: 0.5;
  transition-duration: 0.3s;
}
.aboutus-card {
  width: 400px;
  padding: 30px 30px 20px 30px;
  border: solid 0.5px #000;
  box-shadow: 0 0 2rem rgba(0, 0, 0, 0.3);
}
.aboutus-cardtitle {
  font-size: 2rem;
  margin-top: 30px;
}
.aboutus-cardtitle-with {
  font-size: 1.5rem;
  margin-top: 10px;
}


/*-- 「SERVICE」コンテンツ --*/
.service {
  padding: 60px 0 120px;
  background-color: #f5f5f5;
}
.service-inner {
  width: 1100px;
  max-width: 90%;
  margin: 0 auto;
}
.service-list {
  display: flex;
  gap: 50px;
  justify-content: center;
  padding: 50px 0;
  text-align: center;
}
.service-card {
  width: 312px;
  padding: 30px;
  background-color: #fff;
  border: solid 1px #000;
  border-radius: 30px;
}
.service-card p {
  font-size: 1.5rem;
  margin-top: 20px;
}

/*---- 「ABOUT US」ページ ----*/

/*-- 「GREETING」コンテンツ --*/
.greeting {
  padding: 60px 0 60px;
  background-color: #fff;
}

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

/* 共通h2見出し */
.heading {
  text-align: center;
}
.heading h2 {
  color: #ff9100;
  font-size: 3rem;
}
.h2-with {
  /* フォント指定に関しては「全体」で指定 */
  font-size: 2rem;
  margin-top: 30px;
}

.core-area {
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.profile-img {
  display: block;
  width: 350px;
  height: 415px;
  margin-right: 50px;
}
.core-area-text h3 {
  font-size: 2rem;
  text-align: center;
}
.core-area-textmain {
  margin-top: 50px;
}
.core-area-textmain p {
  margin-top: 1rem;
}
.rep {
  text-align: right;
  font-size: 1.2rem;
  font-weight: 700;
}
.rep-name {
  font-size: 1.5rem;
}

.career {
  padding: 60px 0;
}
.career h3 {
  margin-bottom: 5px;
}

/*-- 「CRED」コンテンツ --*/
.cred {  
  padding: 180px 0 120px;
  background-color: #F5F5F5;
  -webkit-clip-path: polygon(0 90px, 100% 0, 100% 100%, 0 100%);
  clip-path: polygon(0 90px, 100% 0, 100% 100%, 0 100%);
}
.cred-inner {
  width: 1100px;
  max-width: 90%;
  margin: 0 auto;
}
.cred-main-wrapper {
  margin-top: 60px;
}
.cred-main {
  max-width: 90%;
  margin: 0 auto;
  padding: 50px;
  text-align: center;
  font-size: 5vw;
  font-style: italic;
}
.yellow-line {
  background-image: linear-gradient(transparent 70%, #ff6 30%);
  padding-bottom: 0.2rem;
}

/*-- 「MISSION」コンテンツ --*/
.mission-wrapper {
  background-color: #F5F5F5;
}
.mission {  
  padding: 180px 0 120px;
  background-color: #000;
  -webkit-clip-path: polygon(0 90px, 100% 0, 100% 100%, 0 100%);
  clip-path: polygon(0 90px, 100% 0, 100% 100%, 0 100%);
}
.mission-inner {
  width: 1100px;
  max-width: 90%;
  margin: 0 auto;
}
.mission .h2-with {
  color: #fff;
}
.mission-sub {
  display: flex;
  flex-wrap: wrap;
  row-gap: 50px;
  column-gap: 50px;
  margin-top: 120px;
}
.mission-text-area {
  width: calc((100% - 50px) / 2);
}
.mission-title-area {
  display: flex;
  position: relative;
}
.mission-title-area h3 {
  font-size: 4rem;
  color: #ff9100;
}
.mission-title-area p {
  position: absolute;
  right: 0;
  bottom: 10px;
  color: #fff;
  font-size: 2rem;
}
.mission-text {
  margin-top: 2em;
  color: #fff;
  font-size: 1.2rem;
  line-height: 2;
}

/* ========================
フッター
======================== */

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

.footer {
  color: #fff;
  background-color: #ff9100;
  padding: 30px 0;
  display: flex;
  flex-direction: column;
}

.footer-logo {
  display: block;
  font-size: 1.5rem;
}

.address {
  margin-top: 20px;
  font-size: 1rem;
}

.footer .icon-list-wrapper {
  margin-top: 20px;
}

.copyright {
  margin-top: 20px;
}


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

  /* ========================
  全体
  ======================== */

  /* SP版では強制改行を無効化 */
  br {
    display: none;
  }

    /* ========================
  ヘッダー
  ======================== */

  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  }

  .header-inner{
    height: 50px;
    position: relative;
    padding: 0 20px;
    justify-content: space-between;
  }

  .header-logo {
    font-size: 1rem;
  }

  .site-menu-wrapper {
    padding: 30px 0 50px;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #8eba70;
    display: none;
  }
  
  .site-menu-wrapper.is-show {
    display: block;
  }
  

  .site-menu {
    color: #fff;
  }

  .site-menu ul {
    display: block;
    text-align: center;
  }

  .site-menu ul li {
    font-size: 1.5rem;
    padding: 1rem 0;
    margin: 0 2rem;
  }
  .site-menu ul li:hover {
    color: #8eba70;
    background-color: #fff;
    transition-duration: 0.3s;
  }

  .icon-list-wrapper {
    display: flex;
    align-items: center;
  }

  .icon-list ul li {
    margin: 0 10px;
    font-size: 1rem;
  }
  .icon-list a {
    width: 2rem;
    height: 2rem;
  }

  .toggle-menu-button {
    display: block;
  }

  /* ========================
  メイン
  ======================== */

  .main {
    padding-top: 50px;
  }

  /*---- トップページ ----*/

  /*-- ファーストビュー --*/
  .first-view {
    height: calc(100vh - 50px);
    background-image: url(./img/sotto-top-firstview-sp.jpeg);
  }
  .first-view-text {
    font-size: 1.5rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 40px;
    padding-bottom: 250px;
  }
  br {
    display: block;
  }

  /*-- 「ABOUT US」コンテンツ --*/
  .aboutus {
    padding: 30px 0;
  }
  .card-list {
    display: block;
    padding: 30px 0 0;
  }
  .aboutus-card {
    max-width: 100%;
    margin: 0 auto;
  }
  .aboutus-card:not(.aboutus-card-first) {
    margin-top: 50px;
  }

  /*-- 「SERVICE」コンテンツ --*/
  .service {
    padding: 30px 0;
  }
  .service-list {
    display: block;
    padding: 30px 0 0;
  }
  .service-card {
    max-width: 100%;
    margin: 0 auto;
  }
  .service-card:not(.service-card-first) {
    margin-top: 40px;
  }

  
  /*---- 「ABOUT US」ページ ----*/
  
  /*-- 「GREETING」コンテンツ --*/

  .greeting {
    padding: 30px 0;
  }

  .heading h2 {
    font-size: 2rem;
  }
  .h2-with {
    font-size: 1.5rem;
    margin-top: 5px;
  }

  .core-area {
    display: block;
    margin-top: 30px;
  }
  .profile-img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    object-position: 100% 20%;
    margin: 0 auto;
  }
  .core-area-text h3 {
    font-size: 1.3rem;
    margin-top: 30px;
  }
  .core-area-textmain {
    margin-top: 0;
  }
  .career {
    padding: 30px 0;
  }

  /*-- 「CRED」コンテンツ --*/
  .cred {
    padding: 100px 0 30px;
  }
  .cred-main-wrapper {
    margin-top: 30px;
  }
  .cred-main {
    max-width: 95%;
    padding: 20px;
  }
  .cred-sub {
    margin-top: 60px;
  }
  .cred-text-area:not(.cred-text-area-first) {
    margin-top: 40px;  
  }
  .cred-text-area h3 {
    margin-bottom: 15px;
    font-size: 1rem;
  }
  .cred-text {
    font-size: 1rem;
  }

  /*-- 「MISSION」コンテンツ --*/
  .mission {  
    padding: 100px 0 30px;
  }
  .mission-inner {
    width: auto;
    max-width: 95%;
    margin: 0 auto;
  }
  .mission-sub {
    display: block;
    margin-top: 0;
  }
  .mission-text-area {
    width: auto;
    margin-top: 50px;
  }
  .mission-title-area {
    display: flex;
    position: relative;
  }
  .mission-title-area h3 {
    font-size: 3rem;
    color: #ff9100;
  }
  .mission-title-area p {
    position: absolute;
    right: 0;
    bottom: 10px;
    color: #fff;
    font-size: 2rem;
  }
  .mission-text {
    margin-top: 1em;
    color: #fff;
    font-size: 1.2rem;
    line-height: 2;
  }
  

  /* ========================
  フッター
  ======================== */  

  .footer-logo {    
    font-size: 1.5rem;
  }

  .address {
    font-size: 1rem;
    margin-top: 20px;
  }

  .footer .icon-list-wrapper {
    margin-top: 20px;
  }

  .footer .icon-list ul li {
    font-size: 1rem;
  }

  .copyright {
    margin-top: 10px;
  }

}