@charset "UTF-8";
/* CSS Document */
.header{
  background-color: #D5D0CC;
  padding: 25px 140px 65px;
}
.header-top{
  display: flex;
  
}
.header-top p{
  font-size: 25px;
  font-family: "Times New Roman", Times, "serif";
  margin-top:31px;
}
.header-logo h3 {
  font-size: 2.5rem;
  color: #FFFFFF;
}
.header-logo{
  font-size: 25px;
}
.header-logo img{
  max-width:100%;
  max-height: 100%;
}
.header-logo-pc{
  list-style: none;
  font-size:28px;
  font-family: "Times New Roman", Times, "serif";
}
.header-logo-pc{
  display: flex;
  gap:20px;
  margin:0 0 0 auto;
  text-align: right;
}
.header-top a{
  color: #333;
  text-decoration: none;
}
.drawer_open{
    display: none;
  }
.nav_content{
  text-align: right;
}
.nav{
  display: none;
}
@media(max-width:960px){
  .header{
    padding: 20px 40px 30px;
  }
  .header-logo-pc{
    display: none;
  }
  .header-logo h3 {
    font-size: 25px;
  }
  .nav{
    display: block;
    margin: 0 0 0 auto;
  }
  /* チェックボックスを非表示にする */
.drawer_hidden {
  display: none;
}

/* ハンバーガーアイコンの設置スペース */
.drawer_open {
  display: flex;
  height: 60px;
  width: 60px;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 100;/* 重なり順を一番上にする */
  cursor: pointer;
  
}

/* ハンバーガーメニューのアイコン */
.drawer_open span,
.drawer_open span:before,
.drawer_open span:after {
  content: '';
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background: #333;
  transition: 0.5s;
  position: absolute;
}

/* 三本線の一番上の棒の位置調整 */
.drawer_open span:before {
  bottom: 8px;
}

/* 三本線の一番下の棒の位置調整 */
.drawer_open span:after {
  top: 8px;
}

/* アイコンがクリックされたら真ん中の線を透明にする */
#drawer_input:checked ~ .drawer_open span {
  background: rgba(255, 255, 255, 0);
}

/* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
#drawer_input:checked ~ .drawer_open span::before {
  bottom: 0;
  transform: rotate(45deg);
}

#drawer_input:checked ~ .drawer_open span::after {
  top: 0;
  transform: rotate(-45deg);
}
  
/* メニューのデザイン*/
.nav_content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 100%; /* メニューを画面の外に飛ばす */
  z-index: 99;
  background: #E8DED4;
  transition: .5s;
  padding: 20px 40px;
}

/* メニュー黒ポチを消す */
.nav_list {
  list-style: none;
  text-align: left;
  font-family: "Times New Roman", Times, "serif";
  font-size: 25px;
  line-height: 50px;
}

/* アイコンがクリックされたらメニューを表示 */
#drawer_input:checked ~ .nav_content {
  left: 0;/* メニューを画面に入れる */
}
}
.main{
  background-color: #E8DED4;
}
.section-top{
  padding: 78px 57px;
}
.section-top h1{
  font-family: "Times New Roman", Times, "serif";
  font-size:48px;
  text-align: center;
  color: #6c6059;
}
.about-contents{
  display: flex;
  gap:172px;
  justify-content: center;
}
.about-contents img{
  max-width: 35%;
  max-height: 35%;
  border-radius: 20px;
  margin-top: 55px;
}
.about-detail{
  display:inline;
}
.about-detail h3{
  margin-top:55px;
  margin-bottom: 20px;
  font-size: 20px;
  font-family: "Zen Maru Gothic", serif;
}
.about-detail p{
  font-family: "Zen Maru Gothic", serif;
  line-height: normal;
  margin-bottom: 10px;
}
.about-detail p::first-line {
  padding-top: 103px;
}
@media(max-width:960px){
  .section-top h1{
    font-size: 30px;
  }
  .about-contents{
    display: inline;
  }
}
.section-career{
  padding: 0 10% 107px;
  box-sizing: content-box;
}
.section-career h1{
  font-family: "Times New Roman", Times, "serif";
  font-size:48px;
  text-align: center;
  color: #6c6059;
}
.timeline{
 max-width:765px;
 margin: auto;
}
.timeline li{
  margin: 0;
  overflow: hidden;
  position: relative;
  list-style: none;
}
.timeline-date{
  width:110px;
  float: left;
  padding: 30px 0px;
  font-family: "Times New Roman", Times, "serif";
}
.timeline-contents{
  width:80%;
  float: left;
  border-left: solid 3px #D89756;
  padding: 30px 0 30px 40px;
}
.timeline-contents::before{
  content:"";
  width:12px;
  height: 12px;
  background:#FFFFFF;
  left:106px;
  top:32px;
  position: absolute;
  border-radius: 100%;
}
.timeline-contents h3 {
margin-bottom: 10px;
}
.timeline-contents p {
  font-size: 14px;
}
@media(max-width:960px){
  .section-career h1{
    font-size: 30px;
  }
  .timeline-date{
    width: auto;
    padding: 30px 0 5px 0;
    color: #CAAE86;
    font-weight: 600;
  }
  .timeline-contents{
    width:100%;
    border-left: none;
    padding: 0;
  }
  .timeline-contents::before{
    display: none;
  }
}
.section-strength{
  padding: 0 140px 107px;
  box-sizing: content-box;
}
.section-strength h1{
  font-family: "Times New Roman", Times, "serif";
  font-size:48px;
  text-align: center;
  padding-bottom: 65px;
  color: #6c6059;
}
.strength{
  max-width: 1000px;
  margin: auto;
  list-style-type: decimal;
}

.strength-li{
  overflow: hidden;
  position: relative;
	margin: 0;
}
.strength-title{
  width:110px;
  float: left;
  padding: 0 0 30px;
  font-family: "Zen Maru Gothic", serif;
}
.strength-paragraph{
  width:80%;
  float: left;
  padding: 0 0 60px 40px;
}
.section-strength a{
  text-decoration: none;
  font-family: "Times New Roman", Times, "serif";
  font-size: 30px;
  color: #D89756;
  border-bottom: #D89756 solid 3px;
}
.back-botton{
  text-align: right;
}
@media(max-width:960px){
  .section-strength{
    padding: 0 40px 80px;
  }
  .section-strength h1{
    font-size: 30px;
  }
  .strength-title{
    width: auto;
  }
  .strength-paragraph{
    width: 100%;
    padding: 0 0 30px;
  }
  .section-strength a{
    font-size: 20px;
  }
}

