@charset "UTF-8";

/*
font-family: "Darumadrop One", sans-serif; 
font-family: "Zen Maru Gothic", sans-serif;
 */

/* ========================================
 
 共通設定

 ========================================= */
html {
  font-size: 62.5%;
  scroll-padding-top: 9rem;
}
body {
  font-family: "Zen Maru Gothic", sans-serif;
  color: #3f3f3f;
  background-color: #fff7d8;
  font-size: 1.6rem;
  line-height: 1;
  /* 余計は余白を入れないための設定 */
  letter-spacing: 0.05em;
  /* サイト全体の文字間隔を文字に対して5%空ける設定 */
}
a {
  text-decoration: none;
  color: #000;
}
img {
  max-width: 100%;
  vertical-align: bottom;
  height: auto;
}

/* max-width:768px */
@media(max-width:768px) {
  body {
    font-size: 1.4rem;
  }
}
/* /max-width:768px */


/* ========================================

共通スタイル

========================================= */
.inner_1000 {
  max-width: 1000px;
  margin: 0 auto;
}
section {
  padding-bottom: 8rem;
}
.section_title {
  font-family: "Darumadrop One", sans-serif;
  font-size: 7rem;
  color: #000;
  text-align: center;
  margin: 7rem 0;
}
.section_title span {
  display: block;
  font-size: 2rem;
}
.section_title span::before {
  content: "";
  display: block;
  width: 150px;
  border-bottom: 2px solid #008C79;
  margin: 1rem auto;
}
.section_sub_title {
  font-family: "Darumadrop One", sans-serif;
  text-align: center;
  font-size: 4rem;
  color: #000;
  margin-top: 8rem;
  margin-bottom: 3rem;
}
li {
  list-style: none;
}
.button_more {
  text-align: center;
  margin-top: 10rem;
}
.button_more a,
.works_contents_button a {
  font-family: "Darumadrop One", sans-serif;
  font-size: 1.8rem;
  display: inline;
  background-color: #E65B34;
  color: #000;
  border-radius: 8px;
  padding: 0.4rem 2rem 0.8rem;
}
.button_more a:hover,
.works_contents_button a:hover {
  background-color: #E65B34;
  opacity: 0.8;
  color: #3f3f3f;
}
h5 {
  padding: 1rem 0 1rem;
  font-size: 1.6rem;
  border-bottom: 1px solid #008C79;
  text-align: center;
}
/* フェードイン */
.fade-in{
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  transition: opacity 1s, visibility 1s, transform 1s;
}
/* フェードイン時に入るクラス */
.is-fadein {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* ページトップボタン */
.pagetop{ 
  display: block;
  padding: 30px 20px;
  background: #008C79;
  font-size: 25px;
  position: fixed;
  bottom: 44px;
  right: 0px;
  text-decoration: none;
  color: #fff;
  font-family: "Darumadrop One", sans-serif;
  border-radius: 15px 0 0 15px;
  text-align: center;
  writing-mode: vertical-rl;
  display: none;
}


/* max-width:768px */
@media(max-width:768px) {
  .inner_1000 {
  margin: 0 4%;
  }
  .flex_B{
    flex-direction: column;
    justify-content: flex-start;
  }
  section {
    padding-bottom: 10rem;
  }
  .section_title {
    font-size: 5rem;
    margin: 8rem 0;
  }
  .section_title span {
    font-size: 1.7rem;
  }
  .section_title span::before {
    width: 100px;
  }
  .section_sub_title {
    font-size: 2.5rem;
    color: #000;
    margin-top: 8rem;
    margin-bottom: 3rem;
  }
  .button_more a,
  .works_contents_button a {
    font-size: 1.2rem;
    display: inline;
    border-radius: 8px;
    padding: 1.2rem 2rem;
  }
  h5 {
  padding: 1rem 0;
  font-size: 1.6rem;
  text-align: center;
}
}


/* ===========================================

header

============================================= */
.flex_B {
  display: flex;
  justify-content: space-between;
}
header {
  background-color: #000;
  font-family: "Darumadrop One", sans-serif;
  position: sticky;
  top: 0;
  z-index: 999;
}
header h2 img{
  height: 74px;
  padding-top: 1rem;
}
header nav {
  display: flex;
}
header nav li {
  vertical-align: bottom;
}
header nav a {
  display: block;
  color: #fff;
  text-decoration: none;
  transition: .3s ease-in-out;
  padding: 3.5rem 3rem 3.5rem;
  font-size: 2rem;
}
header nav a:hover {
  opacity: .8;
  background-color: #3f3f3f;
}
header h2 a{
  font-size: 7.4rem;
  font-family: "Darumadrop One", sans-serif;
  color: #fff;
}

/* max-width:768px */
@media(max-width:768px) {
  header h2 a{
  font-size: 4rem;
  }
  header h2 img{
  height: 40px;
  /* padding-top: 1rem; */
}
  .drawer{
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    padding: 0.1rem 0 0.9rem;
  }

  /* ハンバーガーボタン */
  .nav-toggle{
    position: fixed;
    display: block;
    width: 42px;
    height: 42px;
    right: 15px;
    top: 4px;
    cursor: pointer;
  }
  .nav-toggle span{
    display: block;
    width: 100%;
    border-bottom: 3px solid #fff;
    position: absolute;
    transition: .35s ease-in-out;
  }
  .nav-toggle span:nth-child(1){
    top: 5px;
  }
  .nav-toggle span:nth-child(2){
    top: 18px;
  }
  .nav-toggle span:nth-child(3){
    top: 32px;
  }
  .nav-toggle.active span:nth-child(1){
    top: 18px;
    transform: rotate(-45deg);
  }
  .nav-toggle.active span:nth-child(2),
  .nav-toggle.active span:nth-child(3){
    top: 18px;
    transform: rotate(45deg);
  }

  /* ハンバーガーナビゲーション */
  nav{
    background: #3f3f3f;
    transition: .5s ease-in-out;
    transform: translateX(-105%);
    z-index: 3;
    position: fixed;
    width: 100%;
    top: 50px;
    left: 0;
  }
  nav ul{
    gap: 0;
    width: 100%;
  }
  nav ul li{
    text-align: center;
    border-bottom: 1px dotted #ccc;
  }
  nav ul li:last-child{
    border-bottom: none;
  }
  nav ul li a{
    display: block;
    color: #fff;
    text-decoration: none;
  }
  
  /* .nav-toggleをクリックして.openが付与された時 */
  nav.open{
  transform: translateX(0);
  }
}
/* /max-width:768px */


/* ===============================

mv

================================ */
.mv {
  position: relative;
}

.mv img {
  height: calc(100vh - 90px);
  width: 100%;
}
h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  font-size: 7rem;
  color: transparent;
  -webkit-text-stroke: 2px #fff;
  text-shadow: 7px 5px #000;
  font-family: "Darumadrop One", sans-serif;
}
h1 span {
  font-size: 9rem;
  display: block;
  white-space: nowrap;
}
.pc_hidden{
  display: none;
}


/* max-width:768px */
@media(max-width:768px) {
  .mv img {
    height: calc(100dvh - 50px)
  }
h1 {
  top: 50%;
  left: 45%;
  translate: -50% -45%;
  font-size: 7rem;
  font-size: 2rem;
  -webkit-text-stroke: 0.8px #fff;
  text-shadow: 7px 3px #000;;
}
h1 span {
  font-size: 4rem;
}
  .pc_hidden{
    display: block;
  }
}


/* ===============================

about

================================= */
.about_contents {
  gap: 5%;
}
.about .about_image {
  width: 45%;
}
.about .about_text {
  padding-top: 2rem;
  width: 50%;
  line-height: 3.5;
}
.about .about_introduction{
  width: 80%;
  align-items: center;
  margin: 2.5rem auto 0;
  line-height: 3;
}
.about .about_introduction span{ 
  background-image: repeating-linear-gradient(
    -45deg,
    #008C79,
    #008C79 2px,
    white 2px,
    white 4px
  );
  font-weight: bold;
  background-repeat: repeat-x;
  background-position: left bottom; /* 下側に配置 */
  background-size: 12px 6px;         /* 横幅8pxごとに繰り返し、高さ7px */
  padding-bottom: 7px;              /* 下線の太さ分を確保 */
}
.career_list li {
  line-height: 3.8;
  text-align: left;
  display: inline-block;
  position: relative;
  text-shadow: 0 0 2px white;
  font-size: 1.8rem;
  padding-bottom: 1rem;
}
.career_list li::before {
  content: "";
  position: absolute;
  background: #9de5ff;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  top: 50%;
  left: -1.5rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: -1;
}
.career_list p {
  line-height: 1.5;
  text-align: right;
  font-size: 1.5rem;
  padding-bottom: 1rem;
  position: relative;
  text-shadow: 0 0 2px white;
}
.career_list p::after {
  content: "";
  position: absolute;
  background: #FCBB76;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  top: 50%;
  right: -1.5rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-60%);
  z-index: -1;
}
.career_list .sp_hidden{
  display: block;
}
p.like_detail{
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.2rem;
}
.like_items {
  display: flex;
  flex-wrap: wrap;
  gap: 5%;
}
.like_items li{
  width: calc((100% - 10%) / 3);
  padding-top: 3rem;
}
.like_text {
  overflow: hidden;
  position: relative;
}
.caption p {
  text-align: center;
  color: #fff;
  font-family: "Zen Maru Gothic", sans-serif;
  margin-top: 8rem;
  line-height: 1.5;
}
.caption_hover {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.4);
  /* マスクは半透明 */
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.like_text:hover .caption_hover {
  opacity: 1;
}

@media(max-width:768px){
 .about .about_image{
  width: 100%;
  display: block;
  margin: 0 auto;
 }
 .about .about_text{
  width: 100%;
  line-height: 2.5;
  padding: 1rem 0;
 }
 .career_list{
  padding: 0 4%;
 }
 .career_list li {
  line-height: 1.8;
  font-size: 1.4rem;
}
.career_list li::before {
  width: 2rem;
  height: 2rem;
  top: 23%;
  left: 0.3rem;
}
.career_list .more_small{
  font-size: 1.35rem;
}
.career_list p {
  line-height: 1.3;
  text-align: left;
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
}
.career_list p::after {
  display: none;
}
.career_list p:last-child{
  margin-bottom: 0;
}
.like_detail,.career_list .sp_hidden{
  display: none;
}
.like_items {
  flex-direction: column;
  justify-content: flex-start;
  gap: 5%;
}
.like_items li {
  width:100%;
  padding-top: 3rem;
}
.caption_hover {
  width: 100%;
  height: 100%;
  position: static;
  background-color: initial;
  /* マスクは半透明 */
  -webkit-transition: none;
  transition:none;
  opacity: 1;
}
.caption p {
  text-align: center;
  color: #333;
  margin-top: 1rem;
}
.like_text:hover .caption_hover {
  opacity: initial;
}
}
/* /max-width:768px */

/* =================================

works

===================================*/
.works_contents_button {
  display: flex;
  justify-content: center;
}
.works_contents_button li {
  margin-right: 2rem;
}
.works_contents_button li:last-child {
  margin-right: 0;
}
p.works_detail{
  text-align: center;
  margin-top: -4rem;
  margin-bottom: 5rem;
  font-size: 1.2rem;
}
ul.works_contents{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr;
  gap: 5%;
}
.works_contents .works_items img{
  display: block;
  margin: 0 auto;
}
.works_contents .works_items h5{
  font-weight: normal;
}
.works_contents .works_items p{
  text-align: left;
  padding: 1rem 0 0.5rem;
  font-size: 1.4rem;
}
.works_contents .works_items .url{
  text-align: center;
}
.works_contents .works_items .url a{
  display: block;
  padding: .8rem 0 ;
  font-family: "Darumadrop One", sans-serif; 
  position: relative;
  display: inline-block;
  padding-left: 22px;
  line-height: 1.6;
}
.works_contents .works_items .url a:before {
  content: '';
  width: 16px;
  height: 16px;
  background: #333;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}
.works_contents .works_items .url a:after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 0 4px 6px;
  border-color: transparent transparent transparent #fff;
  position: absolute;
  top: 0;
  left: 6px;
  bottom: 0;
  margin: auto;
}
.works_contents .works_items .url .password{
  padding-top: 0;
  font-size: 1.2rem;
  text-align: center;
}

.skill_icon{
  display: flex;
  flex-wrap: wrap;
  gap: 5%;
}
.skill_icon li{
  width: calc((100% - 10%) / 3);
}
.skill_icon li:nth-child(n+4){
  padding-top: 4rem;
}
.skill .skill_icon li img {
  width: 10rem;
  height: 10rem;
  display: block;
  margin: 0 auto;
}
.skill_detail p {
  font-size: 1.3rem;
  padding-top: 0.5rem;
  line-height: 1.5rem;
}


/* max-width:768px */
@media(max-width:768px) {
.works_contents_button li {
  margin: 0 0;
}
.works_contents_button {
  display: flex;
  justify-content: space-between;
}
.works_contents .works_items {
  flex-direction: column;
  justify-content: flex-start;
  gap: 5%;
  padding-bottom: 3rem;
  width: 100%;
}
.works_contents .works_items:last-child{
  padding-bottom: 0;
}
.works_contents .works_items img{
  display: block;
  margin: 0 auto;
}
ul.works_contents{
  display: block;
}
.works_contents .works_items .url .password{
  text-align: center;
}
.skill_icon {
  flex-direction: column;
  justify-content: flex-start;
  gap: 5%;
}
.skill_icon li {
  width:100%;
  padding-top: 3rem;
}
.skill ul li{
  text-align: center;
  margin-bottom: 2rem;
}
.skill_detail {
  width: 100%;
  text-align: left;
}
.skill_detail p {
  font-size: 1.4rem;
  padding: 1rem 0;
  line-height: 1.5rem;
}

}
/* /max-width:768px */


/* =============================

footer

============================== */
footer {
  background-color: #000;
  color: #fff;
  padding: 2.5rem 0;
}

footer .inner_1000 {
  display: block;
  text-align: center;
}

footer p {
  font-size: 1.4rem;
}

.contact_icon ul {
  display: flex;
  justify-content: center;
  margin: 2rem 0;
  gap: 3rem;
}

.contact_icon li {
  width: 3rem;
  height: 3rem;
}

.contact_icon ul a {
  display: block;
}


@media(max-width:768px){
  footer p {
  font-size: 1.2rem;
}
}
/* /max-width:768px */
