@charset "UTF-8";
html {
  font-size: 62.5%;
}

*,*::before,*::after {
  box-sizing: border-box;
}

:root {
	--noto-font:  "Noto Sans JP", sans-serif;
	--poppins-font:  "Poppins", sans-serif;
}

body {
  margin: 0;
  font-family: var(--noto-font);
  font-size: 1.4rem;
  color: #474747;
}

a:link, a:visited, a:hover, a:active {
  text-decoration: none;
  color: inherit;
}

a{
  display: block;
}

img{
  width: 100%;
  height: 100%;
}

h1, h2, h3, h4{
  font-weight: normal;
  font-size: inherit;
  margin: 0;
}

ol, ul {
  list-style: none;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.mv{
  height: 100vh;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
}

.mv_inner {
  width: 100%;
  height: 100%;
  position: relative;
  padding: 80px 0;
}

.mv_txt_wrap {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 7.55%;
  z-index: 2;
}

.mv_txt_title {
  font-size: 7rem;
  color: #000;
  line-height: 1.3;
  font-family: var(--poppins-font);
  font-weight: 600;
}

.mv_txt_p {
  margin-top: 32px;
  font-size: 1.2rem;
  color: #000;
  font-family: var(--poppins-font);
  line-height: 1.75;
  max-width: 410px;
}

.mv_img_wrap {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 71.875%;
  background-color: #f0f1ef;
  border-radius: 45px 0 0 45px;
  right: 0;
  z-index: 1;
  overflow: hidden;
}

.css_slider-wrapper {
  display: flex;
  overflow: hidden;
}

.mv .css_slider-wrapper {
  padding: 25px 0 12.5px;
}

.mv .css_slider-wrapper.bottom {
  padding: 12.5px 0 25px;
}

.css_slider {
  display: flex;
  column-gap: 25px;
}

.css_slider:not(:first-child){
  margin-left: 25px;
}

.mv .css_slide{
  width: 320px;
  height: 320px;
}

.css_slide img {
  display: block;
  width: 100%;
}

.mv .css_slide img {
  border-radius: 15px;
  box-shadow: 0 0 25px 0 rgba(00, 00, 00, 0.2);
}

.css_slider-wrapper .css_slider,.css_slider-wrapper.top .css_slider {
  animation: scroll-left 40s infinite linear .5s both;
}

@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.css_slider-wrapper.bottom .css_slider {
  animation: scroll-right 40s infinite linear .5s both;
}

@keyframes scroll-right {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}

.scroll{
  position: absolute;
  left: 30px;
  bottom: 30px;
  text-align: center;
}

.scroll p{
  color: #949494;
  text-orientation: sideways;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-size: 1rem;
  font-family: var(--poppins-font);
  font-weight: 400;
  letter-spacing: 0.1em;
}

.bar{
  display: inline-block;
  margin-top: 15px;
  width: 5px;
  height: 100px;
  position: relative;
}

.bar span {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 5px;
}

.bar_move {
  background: #fff;
  transform-origin: top;
  transform: scale(0);
  z-index: 2;
  animation: scrollBar 2s ease-in-out normal forwards infinite;
}

@keyframes scrollBar {
	0% {
		transform: scale(0);
		transform-origin: top;
	}
	50% {
		transform: scale(1);
		transform-origin: top;
	}
	50.1% {
		transform: scale(1);
		transform-origin: bottom;
	}
	100% {
		transform: scale(0);
		transform-origin: bottom;
	}
}

.bar_base {
  background: rgba(00, 00, 00, 0.2);
  z-index: 1;
}

.bg_layer {
  margin-top: 100vh;
  position: relative;
  z-index: 3;
  background-color: #fff;
}

.top_header {
  position: sticky;
  top: 0;
  z-index: 10;
}

header {
  background-color: #fff;
  border-bottom: 1px solid rgba(00, 00, 00, 0.1);
}

.header_inner {
  height: 70px;
  width: 95%;
  max-width: 1800px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  position: relative;
}

.logo {
  font-size: 2rem;
  font-family: var(--poppins-font);
  font-weight: 600;
  line-height: 1.3;
}

.gnav_pc {
  display: block;
}

.gnav_pc ul,.fnav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 100px;
}

.gnav_pc li a,.fnav li a {
  text-align: center;
  position: relative;
}

.gnav_pc li a::after,.fnav li a::after {
  position: absolute;
  left: 0;
  content: '';
  width: 100%;
  height: 2px;
  background: #000;
  bottom: -5px;               /*アンダーラインがaタグの下端から現れる*/
  transform: scale(0, 1);     /*アンダーラインの縮尺比率。ホバー前はx方向に0*/
  transform-origin: left top; /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の左端*/
  transition: transform 0.3s; /*変形の時間*/
}
  
.gnav_pc li a:hover::after,.fnav li a:hover::after {
transform: scale(1, 1);     /*ホバー後、x軸方向に1（相対値）伸長*/
}

.gnav_text {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
}

.gnav_label {
  margin-top: 8px;
  display: block;
  font-size: 1.4rem;
  font-family: var(--poppins-font);
  font-weight: 600;
  line-height: 1;
}

a.button_link,.button_link {
  background: #2e2e2e;
  border: 2px solid transparent;
  border-radius: 35px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
  line-height: 1;
  transition: .3s;
  width: 245px;
  padding: 20px;
  font-size: 1.6rem;
}

.nav_login_btn {
  display: block;
}

.nav_login_btn a {
  width: 185px;
  padding: 15px;
  font-size: 1.2rem;
}
 
a.button_link:hover,.button_link:hover {
  background: #fff;
  border: 2px solid #474747;
  color: #474747;
}

.toggle_wrap {
  display: none;
}

.gnav_sp {
  display: none;
}

.anchor {
  padding-top: 70px;
  margin-top: -70px;
}

.works_section {
  margin-top: 150px;
}

.inner {
  max-width: 1450px;
  padding: 0 25px;
  margin: 0 auto;
}

.heading_h2 {
  display: flex;
  align-items: baseline;
  column-gap: 30px;
  padding-bottom: 60px;
  border-bottom: 3px solid rgba(00, 00, 00, 0.1);
  margin-bottom: 80px;
}

.heading_h2 span {
  display: block;
  font-size: 7.2rem;
  font-family: var(--poppins-font);
  font-weight: 600;
  color: #000;
  line-height: 1;
}

.heading_h2 h2 {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
}

.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
}

.fade-in-up.show {
  animation: fadeInUp 1s linear 1 normal forwards;
}

@keyframes fadeInUp {
	0% {
		opacity: 0;
		transform: translateY(30px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

.works_top_p {
  letter-spacing: 0.1em;
  line-height: 2;
}

.top_login_wrap {
  background-color: #f0f1ef;
  border-radius: 25px;
  margin-top: 75px;
  padding-top: 46px;
  position: relative;
  overflow: hidden;
}

.top_login_wrap p {
  text-align: center;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.1em;
}

.top_login_wrap .css_slider-wrapper {
  margin-top: 30px;
}

.top_login_wrap .css_slide {
  width: 230px;
  height: 265px;
}

.top_login_wrap .button_link {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 40px;
}

.top_independent-work_wrap {
  margin-top: 100px;
}

.top_independent-work_title {
  align-items: center; /* 横線を上下中央 */
  display: flex; /* 文字と横線を横並び */
  justify-content: center; /* 文字を中央寄せ */
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.top_independent-work_title::before,
.top_independent-work_title::after {
  background-color: rgba(00, 00, 00, 0.1); /* 横線の色 */
  content: "";
  height: 3px; /* 横線の高さ */
  width: 40px; /* 横線の長さ */
}

.top_independent-work_title::before {
  margin-right: 25px; /* 文字との余白 */
}

.top_independent-work_title::after {
  margin-left: 25px; /* 文字との余白 */
}

.works_contents {
  max-width: 1080px;
  margin: 60px auto 0;
  display: grid;
  grid-template-columns: 40% 40%;
  justify-content: space-between;
  row-gap: 100px;
}

.works_contents li {
  transition: .5s;
  cursor: pointer;
}

.works_contents li .works_img {
	overflow: hidden;
  border-radius: 25px;
  box-shadow: 0 0 25px 0 rgba(00, 00, 00, 0.2);
}

.works_contents li img {
	transition: .5s;
  vertical-align: bottom;
}

.works_contents li:hover img {
	transform: scale(1.1);
}

.works_txt {
  margin-top: 40px;
  text-align: center;
}

.works_txt span {
  font-family: var(--poppins-font);
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 1;
}

.works_txt h3 {
  line-height: 1;
  padding-top: 34px;
  position: relative;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.works_txt h3::before {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 15px;
  background-color: rgba(00, 00, 00, 0.1); /* 横線の色 */
  content: "";
  height: 3px; /* 横線の高さ */
  width: 45px; /* 横線の長さ */
}

/*モーダル*/
/* .wrapper.open {
	overflow: auto;
	scrollbar-gutter: stable;
} */

.modal_overlay {
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .4);
	position: fixed;
	z-index: 100;
	top: 0;
	visibility: hidden;
	opacity: 0;
	transition: .3s;
	overflow: hidden;
	text-align: center;
}

/* .modal-container::before {
	content: "";
	display: inline-block;
	vertical-align: middle;
	height: 100%;
} */

.modal_overlay.open {
	/* transform: scale(1); */
	opacity: 1;
	visibility: visible;
}

.modal-body {
	width: 86%;
	max-width: 900px;
	max-height: 80vh;
	min-height: 200px;
	justify-content: center;
	align-items: center;
	z-index: 110;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	visibility: hidden;
	opacity: 0;
	transition: .3s;
	transform: scale(0);
	transform-origin: center;
}

/* .modal-body_9,
.modal-body_10 {
	height: fit-content;
} */

.modal-body.open {
	transform: scale(1);
	opacity: 1;
	visibility: visible;
}

body:has(.modal-body.open) {
  overflow: hidden;
}

.modal_content {
	background: #fff;
	padding: 36px 26px 26px;
	border-radius: 20px;
	overflow-y: scroll;
	-ms-overflow-style: none;
	scrollbar-width: none;
	height: 100%;
	overscroll-behavior-y: none;
}

.modal_wrapper::-webkit-scrollbar {
	display: none;
}

.close_icon {
	position: absolute;
	width: 30px;
	height: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	top: 12px;
	right: 12px;
	z-index: 1;
	cursor: pointer;
	font-size: 1.6rem;
  transition: .3s;
  color: #949494;
}

.modal_inner {
  display: flex;
  justify-content: space-between;
}

.modal_img {
  width: 55%;
}

.modal_img img {
  vertical-align: bottom;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, .2);
}

.modal_img_txt {
  margin: 40px 0 15px;
  font-size: 1.8rem;
  text-align: center;
}

.modal_txt_part {
  position: sticky;
  top: 0;
  width: 40%;
  height: 70vh
}

.modal_head {
  text-align: center;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(00, 00, 00, 0.1);
}

.modal_head span {
  font-family: var(--poppins-font);
  font-weight: 600;
  font-size: 1.2rem;
  line-height: 1;
}

.modal_head h3 {
  font-size: 1.8rem;
  padding-top: 20px;
  position: relative;
}

.modal_head h3::before {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 10px;
  background-color: rgba(00, 00, 00, 0.1); /* 横線の色 */
  content: "";
  height: 3px; /* 横線の高さ */
  width: 30px; /* 横線の長さ */
}

.modal_inner .scroll{
  bottom: 0;
  right: auto;
  left: -8%;
}

.modal_inner .bar{
  margin-top: 8px;
  height: 70px;
}

.modal_txt{
  margin-top: 20px;
  text-align: justify;
}

.modal_txt h4 {
  font-weight: 500;
}

.modal_txt p {
  margin-top: 5px;
  font-size: 1.2rem;
  line-height: 1.75;
}

.modal_txt h4:not(:first-child){
  margin-top: 15px;
}

.modal_content .button_link {
  cursor: pointer;
  margin: 60px auto 0;
  display: block;
  font-family: var(--poppins-font);
  font-weight: 600;
}

.normal_section {
  margin-top: 200px;
}

.skill_content_wrap {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 45% 45%;
  justify-content: space-between;
}

.skill_content_img {
  width: 60%;
  margin: 0 auto;
  padding-top: 60%;
  background-color: #f0f1ef;
  border-radius: 50%;
  box-shadow: 0 0 25px 0 rgba(00, 00, 00, 0.2);
  position: relative;
}

.skill_content_img img {
  position: absolute;
  width: 56%;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}

.skill_content_txt {
  margin-top: 35px;
}

.skill_content_head span {
  font-size: 4rem;
  line-height: 1;
  display: block;
  text-align: center;
  font-family: var(--poppins-font);
  font-weight: 600;
  color: #000;
}

.skill_content_head h3 {
  font-size: 1.6rem;
  margin-top: 15px;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.1em;
}


#readMoreBlock {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  gap: 35px;
}

.readMoreInner {
  width: 100%;
  margin: 30px auto 0;
}

.readMoreContainer {
  position: relative;
  height: auto;
  max-height: 150px;
  overflow: hidden;
  transition: max-height 0.6s;
}

.readMoreContainer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  transition: 1s;
  background: linear-gradient(to bottom, transparent 40%, #ffffff 100%);
  pointer-events: none;
}

.readMoreContainer.show:after {
  z-index: -1;
  opacity: 0;
}

.readMoreBtn {
  display: block;
  margin: 0 auto;
  padding: 8px 40px;
  border: 0;
  color: #fff;
  background-color: #2e2e2e;
  border-radius: 35px;
  cursor: pointer;
}

.skill_content_txt p {
  line-height: 2;
  letter-spacing: 0.1em;
  text-align: justify;
  max-width: 380px;
  margin: 0 auto;
  padding-bottom: 15px;
}

.about_top_wrap {
  padding: 40px 20px 55px;
  border-radius: 25px;
  background-color: #f0f1ef;
  max-width: 750px;
  margin: 0 auto;
}

.about_top_img {
  width: 110px;
  height: 110px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 0 10px 0 rgba(00, 00, 00, 0.15);
  position: relative;
}

.about_top_img img {
  position: absolute;
  width: 63px;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}

.about_top_txt {
  margin-top: 30px;
  line-height: 3;
  letter-spacing: 0.1em;
  text-align: center;
}

.about_top_txt span {
  font-weight: 700;
}

.about_content_wrap {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 360px auto;
  column-gap: 9%;
  align-items: center;
  justify-content: center;
}

.about_content_wrap.good-at {
  margin-top: 90px;
}

.about_content_wrap.important {
  margin-top: 70px;
  grid-template-columns: auto 360px ;
}

.about_content_head {
  width: 360px;
  height: 360px;
  border-radius: 50%;
  position: relative;
  box-shadow: 0 0 25px 0 rgba(00, 00, 00, 0.2);
}

.about_content_wrap.good-at .about_content_head {
  background-color: #2e2e2e;
}

.about_content_wrap.important .about_content_head {
  background-color: #474747;
  order: 2;
}

.about_content_head span {
  font-size: 2.6rem;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  display: block;
  width: 100%;
  text-align: center;
}

.about_content_p {
  line-height: 2;
  letter-spacing: 0.1em;
  max-width: 500px;
}

footer {
  margin-top: 130px;
  padding: 70px 25px 40px;
  background-color: #1d1d1d;
  color: #fff;
  text-align: center;
}

.footer_logo {
  font-size: 5rem;
  line-height: 1.3;
  font-family: var(--poppins-font);
  font-weight: 600;
}

.fnav {
  margin-top: 60px;
}

.fnav li a::after {
  background: #fff;
}

.copy-right {
  margin-top: 35px;
  font-size: 1rem;
  color: #727272;
  font-family: var(--poppins-font);
}

.about_profile_wrap {
  max-width: 650px;
  margin: 100px auto 0;
  padding: 30px 0;
  border-top: 1px solid rgba(00, 00, 00, 0.1);
  border-bottom: 1px solid rgba(00, 00, 00, 0.1);
}

.about_profile_head {
  font-size: 3rem;
  text-align: center;
  font-family: var(--poppins-font);
  font-weight: 600;
}

.about_profile_inner {
  margin-top: 20px;
  display: flex;
  column-gap: 20px;
  justify-content: center;
}

.about_profile_img {
  width: 80px;
  height: 80px;
}

.about_profile_img img {
  border-radius: 50%;
}

.about_profile_name {
  font-weight: 700;
}

.about_profile_p {
  margin-top: 15px;
  font-size: 1.2rem;
  line-height: 1.75;
  letter-spacing: 0.1em;
}

.pc_br {
  display: block;
}

/* ログインページ */

.sub_header {
  position: fixed;
  top: 0;
  z-index: 10;
  width: 100%;
}

.login_section {
  margin-top: 220px;
}

.login_inner {
  max-width: 570px;
  margin: 0 auto;
}

fieldset{
  border: none;
  padding: 0;
  margin: 0;
}

.login_inner table{
  width: 100%;
}

.login_inner tr{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.login_inner th,.login_inner td{
  font-weight: 400;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  padding-top: 0;
}

.login_inner th{
  margin-bottom: 14px;
}

.login_inner td{
  width: 100%;
  margin-bottom: 40px;
}

.login_inner input{
  border-radius: 4px;
  padding: 16px 30px;
  font-weight: 400;
  font-size: 1.7rem;
  letter-spacing: 0.1em;
  font-family: var(--noto-font);
  width: 100%;
  background-color: #f4f4f4;
}

.login_inner input:-internal-autofill-selected {
  font-size: 1.6rem !important;
  letter-spacing: 0.1em !important;
}

.login_btn,a.login_btn {
  background: #2e2e2e !important;
  border: 2px solid transparent;
  border-radius: 35px !important;
  color: #fff;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  text-align: center;
  line-height: 1;
  transition: .3s;
  width: 245px !important;
  margin: 0 auto;
  display: block;
  padding: 20px !important;
  font-size: 1.6rem !important;
  cursor: pointer;
}

.login_btn:hover,a.login_btn:hover {
  background: #fff !important;
  border: 2px solid #474747 !important;
  color: #474747 !important;
}

.login_error-message{
  color: #dc2b4a;
  margin-bottom: 20px;
  text-align: center;
}

/* ログアウトページ */

.logout_txt {
  text-align: center;
  margin-bottom: 30px;
}

/* ログイン制作実績ページ */

.login_works_section {
  margin-top: 220px;
}

.login_works_txt_part {
  text-align: center;
  letter-spacing: 0.1em;
}

.login_works_list:not(:first-child) {
  margin-top: 150px;
}

.login_works_list:first-child {
  margin-top: 100px;
}

.login_works_list .works_contents {
  max-width: 100%;
  grid-template-columns: 30% 30% 30%;
}

.login_works_list .works_contents.flex_4 {
  grid-template-columns: 22% 22% 22% 22%;
  margin-top: 100px;
}


.modal_inner.multiple{
  flex-direction: column;
  row-gap: 0;
}

.modal_img.login_modal_img{
  width: 50%;
  margin: 0 auto;
}

.modal_txt_part.not_sticky{
  position: relative;
}

.links_icon {
  display: flex;
  column-gap: 10px;
  align-items: center;
  justify-content: center;
}

.links_icon::after {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  background-image: url(img/links_icon.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

/* ログイン制作実績「詳細」ページ */

.pnkz {
  margin-top: 120px;
}

.pnkz ol li {
  display: inline-block;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
}

.pnkz ol li:not(:last-child):after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 10px;
  background: url(img/pnkz_arrow.svg) no-repeat center / contain;
  margin: 0 14px;
}

.pnkz ol li a {
  display: inline-block;
}

.works_detail_section {
  margin-top: 115px;
}

.works_detail_section .heading_h2 {
  padding-bottom: 40px;
  margin-bottom: 65px;
}

.works_detail_section .heading_h2 h2 {
  font-size: 5.2rem;
}

.detail_p {
  line-height: 2;
  letter-spacing: 0.1em;
}

.works_detail_top_img {
  margin-top: 100px;
  width: 100%;
}

.works_detail_top_img img {
  border-radius: 25px;
  box-shadow: 0 0 25px 0 rgba(00, 00, 00, 0.2);
}

.over-view_wrap {
  margin: 100px auto 0;
  max-width: 1080px;
}

.over-view_top_wrap {
  display: grid;
  grid-template-columns: 330px auto;
  column-gap: 5%;
}

.over-view_head span {
  font-size: 5.2rem;
  line-height: 1;
  color: #000;
  font-family: var(--poppins-font);
  font-weight: 600;
}

.over-view_head h3 {
  margin-top: 10px;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
}

.over-view_content {
  padding: 40px 50px;
  border-radius: 15px;
  background-color: #f0f1ef;
}

.over-view_content dl {
  display: grid;
  grid-template-columns: 175px auto;
  letter-spacing: 0.1em;
}

.over-view_content dl:not(:first-child) {
  margin-top: 20px;
}

.over-view_content dl dt {
  font-weight: 700;
}

.over-view_inline {
  display: inline-block;
}

.works_list_wrap {
  margin-top: 100px;
}

.works_list_wrap dl:not(:first-child) {
  margin-top: 80px;
}

.works_list_wrap dl {
  display: grid;
  grid-template-columns: 28% 70%;
  column-gap: 2%;
  letter-spacing: 0.1em;
}

.works_list_wrap dl dt {
  font-size: 1.6rem;
  font-weight: 700;
}

.works_list_wrap dl dd {
  line-height: 2;
}

.works_list_wrap dl dd ul {
  list-style: disc;
  margin-left: 1.4rem;
}

.proposal_img {
  width: 100%;
  margin-top: 100px;
}

.proposal_img img {
  border-radius: 25px;
}

.detail_img_section.silk{
  margin-top: 100px;
  background-color: #f0f1ef;
  padding: 70px;
  border-radius: 25px;
  box-shadow: 0 0 25px 0 rgba(00, 00, 00, 0.2);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: calc(64% - 30px) calc(36% - 30px);
  gap: 60px;
}

.detail_img_section.joutou{
  margin-top: 100px;
  background-color: #f0f1ef;
  padding: 70px;
  border-radius: 25px;
  box-shadow: 0 0 25px 0 rgba(00, 00, 00, 0.2);
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: calc(25% - 30px) calc(75% - 30px);
  gap: 60px;
}

.detail_img_section.eishin{
  margin-top: 100px;
  background-color: #f0f1ef;
  padding: 70px;
  border-radius: 25px;
  box-shadow: 0 0 25px 0 rgba(00, 00, 00, 0.2);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.detail_img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border: none;
  vertical-align: bottom;
}

.detail_img_section.silk .detail_img.img01{
  grid-column: 1 / 3;
  grid-row: 1 / 3;
}

.detail_img_section.silk .detail_img.img04{
  grid-column: 3 / 5;
  grid-row: 2 / 2;
}

.works_detail_other {
  margin-top: 100px;
}

.other_content_wrap {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-bottom: 30px;
  border-bottom: 3px solid rgba(00, 00, 00, 0.1);
  padding-right: 3.6%;
}

.other_head {
  display: flex;
  align-items: baseline;
  column-gap: 35px;
}

.other_head span {
  font-size: 5.2rem;
  line-height: 1;
  color: #000;
  font-family: var(--poppins-font);
  font-weight: 600;
}

.other_head h3 {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
}

.other_img {
  max-width: 320px;
  overflow: hidden;
  border-radius: 25px;
  box-shadow: 0 0 10px 0 rgba(00, 00, 00, 0.15);
  transition: .5s;
}

.other_img img {
  vertical-align: bottom;
  transition: .5s;
}

.other_img:hover img {
	transform: scale(1.1);
}

.works_detail_other .button_link {
  margin: 60px auto 0;
}

.pnkz.bottom {
  margin-top: 100px;
}

.works_detail_footer {
  margin-top: 55px;
}

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

  .header_inner {
    height: 65px;
  }

  .logo {
    font-size: 1.8rem;
  }

  .gnav_pc {
    display: none;
  }

  .nav_login_btn {
    display: none;
  }

  .toggle_wrap {
    display: block;
    position: fixed;
    width: 40px;
    height: 40px;
    top: 12.5px;
    right: 2.5%;
    z-index: 40;
  }

  .toggle {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .toggle span {
    width: 30px;
    border-bottom: 2px solid #2e2e2e;
    position: absolute;
    left: 5px;
    transition: 0.5s;
    z-index: 40;
  }

  .toggle span:first-child {
    top: 10px;
  }

  .toggle span:nth-child(2) {
    top: 20px;
  }

  .toggle span:nth-child(3) {
    top: 30px;
  }

  .toggle.active span:first-child {
    top: 13px;
    transform: rotate(45deg);
  }
  
  .toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .toggle.active span:nth-child(3) {
    top: 13px;
    transform: rotate(-45deg);
  }

  .gnav_sp {
    display: block;
    position: fixed;
    width: 100%;
    right: -100%;
    top: 0;
    height: 100%;
    overflow-y: scroll;
    background: rgba(255, 255, 255, 0.95);
    z-index: 30;
    transition: 0.3s;
  }

  .gnav_sp_inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
  }

  .gnav_sp ul li {
    margin-bottom: 50px;
    text-align: center;
  }

  .gnav_sp .nav_login_btn {
    display: block;
  }

  .gnav_sp.active {
    transform: translateX(-100%);
  }

  .anchor {
    padding-top: 65px;
    margin-top: -65px;
  }

  .about_content_wrap {
    grid-template-columns: 280px auto;
  }

  .about_content_wrap.important {
    grid-template-columns: auto 280px;
  }

  .about_content_head {
    width: 280px;
    height: 280px;
  }

  .about_content_head span {
    font-size: 2rem;
  }

  /* ログイン制作実績「詳細」ページ */

  .over-view_top_wrap {
    grid-template-columns: 1fr;
    row-gap: 50px;
}

}

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

  .mv_txt_title {
    font-size: 4rem;
  }

  .mv_txt_p {
    margin-top: 16px;
    font-size: 1rem;
    line-height: 1.5;
    width: 75%;
    text-align: justify;
  }

  .mv_img_wrap {
    border-radius: 25px 0 0 25px;
  }

  .css_slider {
    column-gap: 12.5px;
  }

  .css_slider:not(:first-child) {
    margin-left: 12.5px;
  }

  .mv .css_slide {
    width: 160px;
    height: 160px;
  }

  .mv .css_slider-wrapper {
    padding: 12.5px 0 6.25px;
  }

  .mv .css_slider-wrapper.bottom {
    padding: 6.25px 0 12.5px;
  }

  .scroll {
    left: 10px;
    bottom: 10px;
  }

  .bar {
    height: 80px;
  }

  .works_section {
    margin-top: 75px;
  }

  .heading_h2 {
    flex-direction: column;
    row-gap: 10px;
    padding-bottom: 30px;
    margin-bottom: 40px;
  }

  .heading_h2 span {
    font-size: 5rem;
  }

  .heading_h2 h2 {
    font-size: 1.6rem;
  }

  .top_login_wrap {
    margin-top: 40px;
    padding-top: 30px;
    border-radius: 15px;
  }

  .top_login_wrap p {
    padding: 0 20px;
    text-align: left;
  }

  .pc_br {
    display: none;
  }

  .top_login_wrap .css_slider-wrapper {
    margin-top: 15px;
  }

  .top_login_wrap .css_slide {
    width: 115px;
    height: 132.5px;
  }

  .top_login_wrap .button_link {
    bottom: 20px;
  }

  a.button_link, .button_link {
    font-size: 1.4rem;
  }

  .top_independent-work_wrap {
    margin-top: 50px;
  }

  .top_independent-work_title {
    font-size: 1.8rem;
  }

  .works_contents {
    margin: 40px auto 0;
    grid-template-columns: 1fr;
    row-gap: 60px;
  }

  .works_txt {
    margin-top: 25px;
  }

  .works_txt span {
    font-size: 1.2rem;
  }

  .works_txt h3 {
    padding-top: 20px;
    font-size: 1.6rem;
  }

  .works_txt h3::before {
    top: 8px;
    width: 30px;
  }

  .modal_inner {
    flex-direction: column-reverse;
    row-gap: 30px;
  }

  .modal_img {
    width: 100%;
  }

  .modal_txt_part {
    position: static;
    width: 100%;
    height: auto;
  }

  .modal_inner .scroll {
    left: 5px;
  }

  .modal_content .button_link {
    margin: 40px auto 0;
  }

  .normal_section {
    margin-top: 100px;
  }

  .skill_content_wrap {
    grid-template-columns: 1fr;
    row-gap: 60px;
  }

  .skill_content_txt {
    margin-top: 20px;
  }

  .skill_content_head span {
    font-size: 3rem;
  }

  .skill_content_head h3 {
    font-size: 1.4rem;
    margin-top: 10px;
  }

  .skill_content_txt p {
    margin-top: 20px;
  }

  .about_top_wrap {
    padding: 30px 20px 35px;
    border-radius: 15px;
  }

  .about_top_img {
    width: 75px;
    height: 75px;
  }

  .about_top_img img {
    width: 45px;
  }

  .about_top_txt {
    text-align: left;
    margin-top: 20px;
    line-height: 2.5;
  }

  .about_content_wrap,.about_content_wrap.important {
    grid-template-columns: 1fr;
    row-gap: 30px;
  }

  .about_content_wrap.good-at {
    margin-top: 60px;
  }

  .about_content_wrap.important {
    margin-top: 50px;
  }

  .about_content_head {
    width: 240px;
    height: 240px;
    margin: 0 auto;
  }

  .about_content_wrap.important .about_content_p {
    order: 2;
  }

  .about_profile_wrap {
    margin: 60px auto 0;
    column-gap: 5%;
  }

  .about_profile_img {
    width: 20%;
    height: fit-content;
  }

  .about_profile_txt {
    width: 75%;
  }

  footer {
    margin-top: 70px;
  }

  .footer_logo {
    font-size: 3rem;
  }

  .gnav_pc ul, .fnav ul {
    column-gap: 20%;
  }

  /* ログインページ */

  .login_section {
    margin-top: 130px;
  }

  .login_inner td{
    margin-bottom: 24px;
  }

  .login_inner input {
    padding: 16px;
  }

  /* ログイン制作実績ページ */

  .login_works_section {
    margin-top: 130px;
  }

  .login_works_list:first-child {
    margin-top: 50px;
  }

  .login_works_list .works_contents {
    grid-template-columns: 1fr;
  }

  .login_works_list .works_contents.flex_4 {
    grid-template-columns: 45% 45%;
    margin-top: 60px;
  }

  .modal_img.login_modal_img {
    width: 100%;
  }

  .login_works_list:not(:first-child) {
    margin-top: 75px;
  }

  /* ログイン制作実績「詳細」ページ */

  .pnkz {
    margin-top: 90px;
  }

  .works_detail_section {
    margin-top: 75px;
  }

  .works_detail_section .heading_h2 h2 {
    font-size: 3.2rem;
  }

  .works_detail_section .heading_h2 {
    padding-bottom: 20px;
    margin-bottom: 35px;
  }

  .works_detail_top_img {
    margin-top: 50px;
  }

  .works_detail_top_img img {
    border-radius: 10px;
  }

  .over-view_wrap {
    margin: 50px auto 0;
  }

  .over-view_top_wrap {
    row-gap: 30px;
  }

  .over-view_head span {
    font-size: 3.2rem;
  }

  .over-view_head h3 {
    font-size: 1.6rem;
  }

  .over-view_content {
    padding: 30px 25px;
  }

  .over-view_content dl {
    grid-template-columns: 1fr;
    row-gap: 10px;
  }

  .works_list_wrap {
    margin-top: 50px;
  }

  .works_list_wrap dl {
    grid-template-columns: 1fr;
    row-gap: 20px;
  }

  .works_list_wrap dl:not(:first-child) {
    margin-top: 60px;
  }

  .proposal_img {
    margin-top: 50px;
  }

  .proposal_img img {
    border-radius: 10px;
  }

  .detail_img_section.silk {
    margin-top: 60px;
    padding: 36px 26px;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 30px;
  }

  .detail_img_section.silk .detail_img.img01 {
    grid-column: 1 / 3;
    grid-row: auto;
  }

  .detail_img_section.silk .detail_img.img04 {
    grid-column: 3 / 1;
    grid-row: auto;
  }

  .detail_img_section.joutou {
    margin-top: 60px;
    padding: 36px 26px;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 30px;
  }

  .detail_img_section.eishin {
    margin-top: 60px;
    padding: 36px 26px;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .works_detail_other {
    margin-top: 50px;
  }

  .other_content_wrap {
    flex-direction: column;
    row-gap: 30px;
  }

  .other_head {
    flex-direction: column;
    row-gap: 10px;
  }

  .other_head span {
    font-size: 3.2rem;
  }

  .other_head h3 {
    font-size: 1.4rem;
  }

  .other_img {
    max-width: auto;
    width: 70%;
    margin: 0 auto;
    border-radius: 15px;
  }

  .works_detail_other .button_link {
    margin: 40px auto 0;
  }

  .pnkz.bottom {
    margin-top: 50px;
  }

  .works_detail_footer {
    margin-top: 25px;
  }

}