@charset "UTF-8";

html {
 font-size: 100%;
}
body {
  margin: 0; 
  padding: 0;
  color: #383e45;
  font-family: "Noto Sans JP", "Arial", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  line-height: 1.7;
}
a {
  text-decoration: none;
}
img {
  max-width: 100%;
}
li {
  list-style: none;
}

.fadein {
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s;
}
/*-------------------------------------------
ヘッダー
-------------------------------------------*/
#header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  /*padding: 16px;*/
  margin-top: 0;
  position: fixed;
  z-index: 10;
  background-color: #fff;
}
/*-------------------------------------------
ボタン
-------------------------------------------*/
button {
    background-color: #ff8c00; /* 背景色 */
    color: #fff; /* 文字色 */
    padding: 5px 32px; /* パディング */
    text-align: center; /* 文字のアライメント */
    text-decoration: none; /* 文字装飾 */
    display: inline-block; /* ボタンの表示方法 */
    position: fixed;
    top: 24px;
    right: 100px;
    font-size: 16px; /* フォントサイズ */
    /* margin-right: 56px; 外側の余白 */
    cursor: pointer; /* カーソル */
    border: none; /* ボーダーなし */
    border-radius: 30px;
}

button:hover {
    background-color: #fff;
    color: #ff8c00;
    border: solid 1px;
}

/*-------------------------------------------
ハンバーガーメニュー
-------------------------------------------*/
#navi {
  display: block;
  position: fixed;
  top: 0;
  left: -300px;
  bottom: 0;
  width: 300px;
  color: #fff;
  padding: 60px 25px;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: all .5s;
  z-index: 20;
  opacity: 0;
}
#navi a {
  color: #333;
}
.open #navi {
  left: 0;
  opacity: 1;
}
#navi ul {
  margin: 0;
  padding: 0;
}
#navi ul.nav-menu {
  margin-bottom: 60px;
  border-top: solid 1px #333;
}
#navi ul.nav-menu li {
  position: relative;
  margin: 0;
  padding: 20px 0;
  border-bottom: solid 1px #333333;
}
#navi ul.nav-sns li {
  padding: 5px 0;
}
.toggle_btn {
  display: block;
  position: fixed;
  top: 25px;
  right: 45px;
  width: 30px;
  height: 30px;
  transition: all .5s;
  cursor: pointer;
  z-index: 20;
}
.toggle_btn span {
  display: block;
  position: absolute;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: #333;
  border-radius: 4px;
  transition: all .5s;
}
.toggle_btn span:nth-child(1) {
  top: 4px;
}
.toggle_btn span:nth-child(2) {
  top: 14px;
}
.toggle_btn span:nth-child(3) {
  bottom: 4px;
}
.open .toggle_btn span {
  background-color: #333;
}
.open .toggle_btn span:nth-child(1) {
  -webkit-transform: translateY(10px) rotate(-315deg);
  transform: translateY(10px) rotate(-315deg);
}
.open .toggle_btn span:nth-child(2) {
  opacity: 0;
}
.open .toggle_btn span:nth-child(3) {
  -webkit-transform: translateY(-10px) rotate(315deg);
  transform: translateY(-10px) rotate(315deg);
}
#mask {
  display: none;
  transition: all .5s;
}
.open #mask {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  opacity: .8;
  z-index: 10;
  cursor: pointer;
}

/*-------------------------------------------
mainとfooterのコンテンツ幅を設定
-------------------------------------------*/
.wrapper {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
  overflow: hidden;
}

.site-title {
  width: 240px;
  line-height: 1px;
  padding: 10px 0;
}
.site-title a {
  display: block;
}

.interview-title {
    font-size: 0.8rem;
    line-height: 1.5;
    font-weght: bold;
    margin-bottom: 16px;
  }
/*-------------------------------------------
Mainvisual
-------------------------------------------*/

#mainvisual img {
  width: 100%;
  /*max-width: 1920px;*/
  /*height: 600px;*/
  margin-top: 72px;
  object-fit: cover;
}

/*-------------------------------------------
content
-------------------------------------------*/
.content {
  align-items: center;
  margin-bottom: 60px;
}
.content-title {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin-top: 16px;
}
.section-title {
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  margin: 32px;
}
.subject-title {
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
  margin: 16px;
  border-bottom: 1px solid #333;
}
.content img {
 margin:16px 0;
}
.content .text {
  margin-top: 16px;
  font-size: 1.2rem;
  line-height:1.5;
}
.content span {
     display: inline-block;
	font-size: 0.9rem;
	margin: 32px;
	text-align:left;
}
.content .btn {
  display: block;
  width: 50%;
  padding:8px;
  margin:0 auto;
  color: #fff;
  background-color: #ff8c00;
  border-radius: 30px;
}
.content .btn:hover {
    background-color: #fff;
    color: #ff8c00;
    border: solid 1px;
}
.content .video {
   margin:16px 0;
}
.content .detail dl{
  display: flex;
  flex-wrap :wrap;  
  text-align: left;
  padding: 20px;
  line-height: 2;
}
.content .detail dt{
  width : 25%;
  font-weight: bold;
  font-size: 0.9rem;
}
.content .detail dd{
  width : 75%;
}

#contentvisual-top img {
  width: 100%;
    margin-top: 72px;
}

#contentvisual {
  width: 100%;
  max-width: 1920px;
  object-fit: cover;
}

#content .small {
  font-size: 0.8rem;
}

/*-------------------------------------------
interview
-------------------------------------------*/
 #interview ul {
    display: flex;
    justify-content: space-between;
    padding-top: 32px;
  }
  #interview  li {
    width: 25%;
    margin-bottom: 32px;
  }
#interview li img {
	/*margin:16px;*/
	border-radius: 50%;
}

/*-------------------------------------------
contact
-------------------------------------------*/
#cta {
 background-color: #f0f0f0;
 text-align: center;
}

.cta-item {
  display:flex;
  max-width: 960px;
  margin:0 auto;
  padding: 8px;
}

.cta-item .contact {
  width: 49%;
  padding: 32px;
}

.cta-item .entry {
  width: 49%;
  padding: 32px;
}

.cta-item .btn {
  display: block;
  margin:8px 16px;
  padding:16px 8px;
  color: #fff;
  background-color: #ff8c00;
  text-align: center;
  border: solid 1px;
  border-radius: 30px;
}

.cta-item .btn:hover {
    background-color: #fff;
    color: #ff8c00;
    border: solid 1px;
}

/*-------------------------------------------
footer
-------------------------------------------*/
#footer {
 text-align: center;
}
/*-------------------------------------------
page_top
-------------------------------------------*/
#page_top {
  position: fixed;
  right: 30px;
  bottom: 15px;
}


/*-------------------------------------------
info
-------------------------------------------*/
#info .item {
	display: flex;
	text-align: center;
	justify-content: center:
	flex-wrap: wrap;
}

#info .item li {
	width: 32%;
	background-color: #f5f5f5;
	padding:0 2%;
	margin: 0 2% 2% 0;
}
#info .item li:nth-child(3n) {
	margin-right: 0;
}
#info .work-btn {
	display: inline-block;
	border: solid 1px #333;
	background-color: #fff;
	margin:24px 0 48px;
	padding:8px 32px;
	font-size:0.75rem;
	font-weight: bold;
}

#info .work-btn:hover {
	background-color: #f5f5f5;
	color: #333;
	border: solid 1px;
	cursor: pointer;
}

/*-------------------------------------------
SP
-------------------------------------------*/
@media screen and (max-width: 600px) {
  #header {
    padding: 10px 8px;
  }
  #header img {
	width: 80%;
	padding: 8px 8px 0;
}
  .toggle_btn {
    right: 20px;
  }
button {  
    font-size: 16px; /* フォントサイズ */
    padding: 5px 10px;
    margin-right: 8px; /* 外側の余白 */
    border-radius: 20px;
    right: 8px;  
}

.content {
  flex-direction: column;
}
.content p {
  text-align: left;
  margin:0 4%;
}
.content .btn {
  width: 72%;
}

#interview ul {
  flex-direction: column;
  align-items: center;
}
#interview li {
  width: 90%;
  margin-bottom: 32px;
  }

#interview li p {
 text-align: center;
}
.content .video iframe {
  width: 90%;
  height: auto;
  aspect-ratio: 16/9;
  margin: 8px 0;
  align-items: center;
}
.cta-item {
  flex-direction: column;
  align-items: center;
}
.cta-item .contact {
  width: 80%;
}

.cta-item .entry {
  width: 80%;
}
/*-------------------------------------------
info
-------------------------------------------*/
#info .item {
	flex-direction: column;
}

#info .item li {
	width: 100%;
}

}