 @charset "UTF-8";

 /* CSS Document */
 html {
   font-size: 62.5%;
   /* 16px * 62.5% = 10px */
   width: 100%;
   scroll-behavior: smooth;
 }

 :root {
   --orange: #C14948;
   --gold: #DCAC60;
   --text-color: #BDBBBA;
   --en: "Shippori Mincho", serif;
   --deco-en: "Montserrat Subrayada", serif;
   --def: "Noto Serif JP", serif;
   --eb: "EB Garamond", serif;
   ;
 }

 body {
   color: var(--text-color);
   background-color: #131313;
   font-family: var(--def);
   font-style: normal;
   font-size: clamp(1.4rem, 3.3vw, 1.8rem);
   letter-spacing: 0.1rem;
   line-height: 1.8;
   text-align: center;
 }

 h2,
 h3,
 h4 {
   font-weight: 400;
   letter-spacing: 0;
 }

 a {
   color: var(--text-color);
 }

 a:hover {
   opacity: 0.8;
 }

 a.clarity:hover {
   opacity: 1;
 }

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

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

 .pc_none {
   display: block;
 }

 .sp_none {
   display: none;
 }

 .is-hide {
   opacity: 0;
   visibility: hidden;
   transition: opacity 0.3s ease, visibility 0.3s ease;
 }

 .left {
   text-align: justify;
 }

 .bold {
   font-weight: 700;
 }

 .gold {
   color: var(--gold);
 }

 .fadeInUpTrigger,
 .fadeInLeftTrigger,
 .fadeInRightTrigger {
   opacity: 0;
 }

 .flex {
   display: flex;
   flex-direction: column;
   gap: 40px;
 }

 .flex.row {
   display: flex;
   flex-direction: row;
   gap: 20px;
 }

 /* header */
 header {
   width: 100%;
   height: 70px;
   position: fixed;
   z-index: 100;
   transition: 0.5s all;
 }

 header.fixed {
   background-color: #1E1A15;
 }

 .header_inner {
   width: 100%;
   height: 100%;
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 4px 4px 4px 2vw;
 }

 header .logo {
   width: 80px;
 }

 /* ham_menu */
 .ham_btn {
   position: relative;
   cursor: pointer;
   width: 60px;
   height: 60px;
   z-index: 999;
   margin: 0;
 }

 .ham_btn span {
   display: inline-block;
   transition: all .4s;
   position: absolute;
   right: 10px;
   height: 2px;
   background: #ffffff;
 }

 .ham_btn span:nth-of-type(1) {
   top: 23px;
   width: 40px;
 }

 .ham_btn span:nth-of-type(2) {
   top: 30px;
   width: 35px;
 }

 .ham_btn span:nth-of-type(3) {
   top: 37px;
   width: 30px;
 }

 .ham_btn.active span:nth-of-type(1) {
   top: 19px;
   left: 10px;
   transform: translateY(6px) rotate(-45deg);
   width: 40px;
 }

 .ham_btn.active span:nth-of-type(2) {
   opacity: 0;
 }

 .ham_btn.active span:nth-of-type(3) {
   top: 31px;
   left: 10px;
   transform: translateY(-6px) rotate(45deg);
   width: 40px;
 }

 .nav_wrap {
   padding: 60px 0;
   overflow-y: auto;
   overflow-x: hidden;
   background: #1E1A15;
   position: fixed;
   top: 0;
   right: 0;
   z-index: 900;
   height: 100%;
   visibility: hidden;
   opacity: 0;
   width: 100%;
   transition: opacity .6s ease, visibility .6s ease;
   line-height: 1.45;
 }

 .nav_wrap ul {
   width: 90%;
   margin: 0 auto;
   display: flex;
   flex-direction: column;
   justify-content: space-between;
   margin-bottom: 40px;
 }

 .nav_wrap li {
   list-style: none;
   text-align: left;
   line-height: 1.2;
 }

 nav li a {
   text-decoration: none;
   padding: 20px 10px;
   display: flex;
   flex-direction: column;
   align-items: center;
   color: #ffffff;
   font-size: 1.8rem;
 }

 nav li a span {
   font-family: var(--en);
   color: var(--orange);
   font-size: 1.5rem;
 }

 .nav_wrap.show {
   visibility: visible;
   opacity: 1;
 }

 .nav_wrap nav .sp_nav {
   display: flex;
   flex-direction: column;
   justify-content: space-between;
 }

 /* MV */
 .MV {
   position: relative;
   aspect-ratio: 430/930;
   max-height: 90vh;
   width: 100%;
   overflow: hidden;
 }

 .MV .MV_slide .slide {
   width: 100%;
   aspect-ratio: 430/930;
   max-height: 90vh;
   background-image: url(../img/sp_mv01.webp);
   background-size: cover;
   background-position: center;
 }

 .mv_text {
   position: absolute;
   width: 90%;
   max-width: 1000px;
   left: 50%;
   top: 50%;
   transform: translate(-50%, -50%);
   z-index: 10;
   display: flex;
   flex-direction: column;
   gap: 3vh;
   word-break: keep-all;
   font-size: clamp(1.6rem, 4vw, 2.2rem);
   font-family: var(--en);
 }

 .mv_text h2 {
   width: 90%;
   max-width: 594px;
   margin: 0 auto;
 }

 /* 共通 */
 section {
   position: relative;
   padding: min(12vw, 100px) 0 min(14vw, 120px);
 }

 .inner {
   width: 90%;
   display: flex;
   flex-direction: column;
   gap: min(8vw, 80px);
   margin: 0 auto;
 }

 .section_ttl-wrap {
   display: flex;
   flex-direction: column;
   align-items: center;
   line-height: 1.5;
 }

 .section_ttl-wrap .section_ttl {
   font-size: clamp(2.4rem, 7vw, 4rem);
   color: var(--gold);
   font-family: var(--en);
   position: relative;
 }

 .section_ttl-wrap .section_ttl::before,
 .section_ttl-wrap .section_ttl::after {
   content: "";
   width: min(20vw, 120px);
   aspect-ratio: 120/25;
   background-image: url(../img/ttl_deco.webp);
   background-size: contain;
   background-repeat: no-repeat;
   background-position: center bottom;
   position: absolute;
   top: 50%;
   left: 108%;
   transform: translateY(-50%);
 }

 .section_ttl-wrap .section_ttl::after {
   top: 50%;
   left: auto;
   right: 108%;
   transform: translateY(-50%) scaleX(-1);
 }

 .section_ttl-wrap span {
   font-size: clamp(1.4rem, 4.4vw, 2rem);
 }

 .concept .inner {
   gap: min(8vw, 40px);
 }

 .concept p {
   font-size: clamp(1.4rem, 4.4vw, 2rem);
   word-break: keep-all;
 }

 #top_concept ul {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 0;
   padding: min(8vw, 120px) 0;
 }

 #top_concept ul li {
   overflow: hidden;
 }

 #top_concept ul li a {
   width: 100%;
   aspect-ratio: 480/362;
   background-image: url(../img/concept_img01.webp);
   background-size: cover;
   background-position: center;
   display: inline-block;
   position: relative;
   display: flex;
   align-items: center;
   justify-content: center;
 }

 #top_concept ul li:nth-child(2) a {
   background-image: url(../img/concept_img02.webp);
 }

 #top_concept ul li:nth-child(3) a {
   background-image: url(../img/concept_img03.webp);
 }

 #top_concept ul li:nth-child(4) a {
   background-image: url(../img/concept_img04.webp);
 }

 #top_concept ul li a:hover {
   opacity: 1;
   transform: scale(1.05);
 }

 #top_concept ul li a::before {
   content: "";
   width: 96%;
   height: 96%;
   border: 1px solid var(--gold);
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
 }

 #top_concept ul li a h3 {
   font-family: var(--eb);
   color: var(--gold);
   font-size: clamp(1.4rem, 4em, 3.3rem);
   display: flex;
   flex-direction: column;
   line-height: 1.2;
 }

 #top_concept ul li a h3 span {
   font-family: var(--def);
   color: #FEFEFE;
   font-size: clamp(1.2rem, 2em, 1.5rem);
 }

 #top_works {
   background-color: #2C2622;
   border-top: 1px solid #75000C;
   border-bottom: 1px solid #75000C;
 }

 #top_works .inner {
   width: 100%;
   gap: min(10vw, 80px);
 }

 .works_slide .slide {
   margin-right: 3vw;
   width: 70vw;
 }

 .more a {
   display: block;
   width: 80%;
   max-width: 320px;
   aspect-ratio: 320/77;
   display: flex;
   align-items: center;
   justify-content: center;
   margin: 0 auto;
   border: 1px solid var(--text-color);
   position: relative;
 }

 .more a:after {
   content: "";
   width: 14px;
   aspect-ratio: 1;
   border-right: 1px solid var(--text-color);
   border-bottom: 1px solid var(--text-color);
   position: absolute;
   top: 50%;
   left: 88%;
   transform: translateY(-50%) rotate(-45deg);
   transition: 0.7s;
 }

 .more a p {
   line-height: 1;
   text-align: center;
   font-size: 2rem
 }

 .more a:hover {
   opacity: 1;
   background-color: var(--text-color);
   color: #333333;
 }

 .more a:hover:after {
   border-right: 1px solid #333333;
   border-bottom: 1px solid #333333;
 }

 .company {
   background-color: #1E1A15;
 }

 .company .inner {
   width: 100%;
 }

 .company .content {
   display: flex;
   flex-direction: column;
   gap: min(5vw, 40px);
 }

 .company dl {
   width: 90%;
   max-width: 460px;
   margin: 0 auto;
   text-align: left;
   font-size: clamp(1.6rem, 5vw, 2.2rem);
   line-height: 2;
 }

 .description-item {
   display: flex;
   flex-direction: column;
   width: 100%;
   padding: 8px 0 4px;
   border-bottom: 1px solid var(--text-color);
 }

 .description-item:last-of-type {
   border-bottom: none;
 }

 .company .map {
   width: 100%;
   height: 355px;
 }

 .company .more a {
   margin: 0 auto;
 }

 .contact {
   background-color: #1E1A15;
   padding-bottom: 200px;
 }

.car_banner{
	margin: 0 auto;
	display: block;
}
　　
.tel_btn{
	width: 100%;
	max-width: 540px;
	margin: min(3vw,20px) auto 0;
}


 footer .inner {
   display: none;
 }

 #go_top {
   position: fixed;
   bottom: 10px;
   right: 10px;
   width: 40px;
   z-index: 50;
   box-shadow: 0 0 4px rgba(255, 255, 255, 0.1);
 }

 .cr {
   padding: min(3vw, 20px) 0;
   color: #ffffff;
   font-size: 1.6rem;
   background-color: #131313;
 }

 /* pcスタイル */
 @media screen and (min-width: 960px) {
   .sp_none {
     display: block;
   }

   .pc_none {
     display: none;
   }

   header {
     height: 120px;
     line-height: 1.2;
     padding: 0 2vw;
     background-color: #1E1A15;
     top: 0;
   }

   header.fixed {
     background-color: #1E1A15;
   }

   .header_inner {
     width: 100%;
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 4px;
     padding-left: 0;
   }

   header .logo {
     width: calc(100% - 400px);
     max-width: 150px;
   }

   .pc_nav {
     width: 100%;
     display: flex;
     flex-direction: row;
     align-items: flex-end;
     justify-content: space-between;
     max-width: 860px;
   }

   .pc_nav a {
     display: flex;
     flex-direction: column;
     font-size: 1.8rem;
   }

   .pc_nav a span {
     color: var(--orange);
     font-size: 1.5rem;
   }

   .MV {
     margin-top: 120px;
     aspect-ratio: 1920/750;
   }

   .MV .MV_slide .slide {
     aspect-ratio: 1920/750;
     background-image: url(../img/mv01.webp);
   }

   .mv_text {
     gap: 20px;
   }

   #top_concept ul {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(440px, 1fr));
     gap: 0;
     padding-bottom: 0;
   }

   @media screen and (min-width: 1350px) {
     #top_concept ul {
       grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     }
   }

   #top_works .inner {
     max-width: none;
   }

   .works_slide .slide {
     width: 20vw;
     max-width: 300px;
     margin-right: 20px;
   }

   .inner {
     max-width: 1080px;
   }

   .company .inner {
     width: 90%;
   }

   .company .content {
     flex-direction: row;
     align-items: center;
   }

   .company .content_textWrap {
     width: 55%;
   }

   .company dl {
     width: 100%;
     max-width: 540px;
     margin: 0;
   }

   .description-item {
     flex-direction: row;
     width: 100%;
     padding: 8px 0 4px;
     border-bottom: 1px solid var(--text-color);
   }

   .description-item:last-of-type {
     border-bottom: 1px solid var(--text-color);
   }

   .description-item dt {
     width: 120px;
   }

   .description-item dd {
     width: calc(100% - 120px);
   }

   .company .map {
     width: 45%;
   }

   footer .inner {
     width: 90%;
     padding: 40px 20px 20px 160px;
     max-width: 1800px;
     display: flex;
     flex-direction: row;
     gap: 5vw;
     justify-content: center;
     position: relative;
   }

   footer .logo {
     margin: 0;
     width: 140px;
     position: absolute;
     left: 0;
     z-index: 2;
   }

   .cr {
     position: relative;
   }

   #go_top {
     position: fixed;
     bottom: 40px;
     right: 40px;
     width: 60px;
     z-index: 50;
   }
 }

 .h2_ttl {
   background: url(../img/u_h2_bg.webp) center / cover;
   padding: max(10vw, 80px) 0 max(8vw, 60px);
   text-align: center;
 }

 .h2_ttl h2 {
   width: 50%;
   max-width: 640px;
   margin: 0 auto;
 }

 #company_greeting .content {
   background-color: #2C2622;
   margin-top: min(5vw, 60px);
   padding: min(5vw, 60px) 0;
   border-top: 1px solid var(--orange);
   border-bottom: 1px solid var(--orange);
   display: flex;
   flex-direction: column;
 }

 #company_greeting .content p {
   text-align: justify;
   width: 90%;
   margin: 0 auto;
   line-height: 2;
 }

 #company_greeting .content p.right {
   font-size: clamp(1.4rem, 4vw, 2.0rem);
   text-align: right;
 }

 #company_staff ul {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
   gap: min(5vw, 60px) min(2em, 20px);
 }

 #company_staff ul li {
   text-align: justify;
 }

 #company_staff ul li h4 {
   font-size: clamp(1.6rem, 1.1em, 2.2rem);
 }

 #company_philosophy {
   overflow: hidden;
 }

 #company_philosophy ul {
   display: flex;
   flex-direction: column;
   gap: min(8vw, 40px);
 }

 #company_philosophy ul li {
   text-align: justify;
   font-size: clamp(1.6rem, 1.1em, 2.2rem);
 }

 #company_philosophy ul li h4 {
   color: var(--gold);
   font-size: clamp(1.8rem, 6vw, 3rem);
 }

 /* pcスタイル */
 @media screen and (min-width: 960px) {
   .h2_ttl {
     margin-top: 120px;
   }

   #company_greeting .content p {
     max-width: 1280px;
   }

   #company_staff .inner {
     max-width: none;
   }
	 .tel_btn{
	width: 100%;
	max-width: 540px;
	margin: min(3vw,20px) auto 0;
}
 }

 #service_01 .inner {
   width: 100%;
 }

 #service_01 ul {
   display: flex;
   flex-direction: column;
   gap: min(10vw, 60px);
 }

 #service_01 ul li {
   position: relative;
 }

 #service_01 ul li .content_textWrap {
   display: flex;
   flex-direction: column;
   gap: min(2vw, 40px);
   font-family: "Noto Sans JP", serif;
   font-weight: 600;
   width: 90%;
   margin: 0 auto;
   position: relative;
   z-index: 2;
   margin-top: -80px;
   padding: calc(80px + min(5vw, 40px)) 0 min(10vw, 150px);
   color: #ffffff;
 }

 #service_01 ul li .content_textWrap h4 {
   font-size: clamp(2rem, 4vw, 4.5rem);
   font-weight: 600;
 }

 #service_01 ul li .bg {
   position: absolute;
   width: 100%;
   height: 100%;
   background-image: url(../img/service_img01.webp);
   background-size: cover;
   background-position: center;
   top: 0;
   left: 0;
   z-index: 1;
 }

 #service_01 ul li .bg .deco {
   color: #A77D3B;
   line-height: 0.7;
   font-family: var(--deco-en);
   font-size: min(8vw, 120px);
   font-weight: 300;
   position: absolute;
   left: 0;
   bottom: 0;
 }

 #service_01 ul li:nth-child(2) .bg {
   background-image: url(../img/service_img02.webp);
 }

 #service_01 ul li:nth-child(3) .bg {
   background-image: url(../img/service_img03.webp);
 }

 #service_01 ul li:nth-child(4) .bg {
   background-image: url(../img/service_img04.webp);
 }

 #service_01 ul li:nth-child(even) .bg .deco {
   left: auto;
   right: 0;
 }

 table th {
   background-color: #A29F9F;
   color: #ffffff;
   font-size: clamp(1.8rem, 3.7vw, 3rem);
   line-height: 2;
   width: 100%;
 }

 table tr {
   display: flex;
   flex-wrap: wrap;
 }

 table tr td {
   width: 60%;
   background-color: #FBFBFB;
   color: #000000;
   padding: 8px;
   text-align: left;
 }

 table tr td:nth-child(even) {
   width: 40%;
   background-color: #F5F5F5;
   text-align: right;
 }

 #service_fee table tfoot td {
   background: none;
   width: 100%;
   color: #ffffff;
 }

 #service_model {
   padding-bottom: 200px;
 }

 #service_model .section_ttl-wrap .section_ttl {
   font-size: clamp(2rem, 6.6vw, 4rem);
 }

 #service_model ul {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
   gap: 40px 10px;
   font-size: clamp(1.8rem, 1em, 2.5rem);
   font-family: "Noto Sans JP", serif;
   font-weight: 600;
 }

 /* pcスタイル */
 @media screen and (min-width: 960px) {
   #service_01 .inner {
     max-width: none;
   }

   #service_01 ul li .content_textWrap {
     width: 80%;
     max-width: 900px;
     margin-top: -150px;
     padding: calc(150px + min(5vw, 40px)) 0 min(10vw, 150px);
   }

   #service_01 ul li .bg {
     width: 90%;
     max-width: 1740px;
   }

   #service_01 ul li:nth-child(even) .bg {
     left: auto;
     right: 0;
   }

   #service_fee .inner {
     max-width: 1480px;
   }

   table tr td {
     width: 30%;
     line-height: 3;
   }

   table tr td:nth-child(even) {
     width: 20%;
   }

   #service_model .inner {
     max-width: 1400px;
   }

   #service_model ul {
     grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
     gap: 40px 10px;
     font-size: 2.5rem;
     line-height: 3;
   }
}
   /* pcスタイル */
   @media screen and (min-width: 1400px) {
     table tr td {
                   width: calc((100% / 2));
            margin: 0 auto;
            text-align: center;
     }

     table tr td:nth-child(even) {
              width: 50%;
		             text-align: center;
     }
   }
 

 #works_01 .content {
   width: 100%;
   margin: 0 auto;
   text-align: left;
 }

 #works_01 .content h4 {
   font-size: clamp(1.8rem, 3.7vw, 3rem);
   text-align: left;
   line-height: 2.5;
   display: inline-block;
   width: 50%;
   max-width: 450px;
   border-bottom: 1px solid var(--orange);
   margin: 0 auto min(5vw, 40px) 0;
 }

 #works_01 .content_itemWrap {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
   gap: min(2vw, 20px);
 }

 #works_wrapper #top_recruit {
   display: none;
 }

 @media screen and (min-width: 600px) {
   #works_01 .content_itemWrap {
     grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
   }
 }

 @media screen and (min-width: 960px) {
   #works_01 .inner {
     max-width: 1600px;
   }

   #works_01 .content_itemWrap {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
     gap: min(5vw, 60px)
   }
 }

 /* モーダル */
 .modal {
   display: none;
   position: fixed;
   z-index: 9999;
   left: 0;
   top: 0;
   width: 100%;
   height: 100%;
   overflow: auto;
   background-color: rgba(0, 0, 0, 0.7);
 }

 .modal-content {
   position: relative;
   margin: 15% auto;
   width: 80%;
   background-color: #fefefe;
   padding: 10px;
 }

 .modal-close {
   position: absolute;
   bottom: 100%;
   right: 0px;
   font-size: 20px;
   cursor: pointer;
   font-weight: 900;
   color: #ffffff;
   line-height: 1;
 }

 @media screen and (min-width: 960px) {
   .modal-content {
     padding: 20px;
   }

   .modal-close {
     position: absolute;
     bottom: 100%;
     right: 0px;
     font-size: 40px;
     cursor: pointer;
     font-weight: 900;
     color: #ffffff;
   }
 }

 #concept_faq {
   padding-bottom: 200px;
 }

 #concept_faq .inner {
   max-width: 1320px;
 }

 #concept_faq ul {
   display: flex;
   flex-direction: column;
   gap: min(14vw, 150px);
   text-align: justify;
   font-size: clamp(1.4rem, 4vw, 2.4rem);
 }

 #concept_faq ul p {
   position: relative;
   padding-left: min(5vw, 60px);
   width: 95%;
 }

 #concept_faq ul .question {
   padding-bottom: min(3vw, 14px);
   border-bottom: 1px solid #ffffff;
 }

 #concept_faq ul .question p::before {
   content: "Q";
   font-size: clamp(1.6rem, 4.4vw, 3.2rem);
   color: var(--gold);
   font-family: var(--en);
   padding-right: 0.5em;
   position: absolute;
   left: 0;
   line-height: 1.4;
 }

 #concept_faq ul .answer {
   padding-top: min(3vw, 14px);
 }

 #concept_faq ul .answer p::before {
   content: "A";
   font-size: clamp(1.6rem, 4.4vw, 3.2rem);
   color: var(--orange);
   font-family: var(--en);
   padding-right: 0.5em;
   position: absolute;
   left: 0;
   line-height: 1.4;
 }

 .form_bg {
   width: 96%;
   max-width: 1500px;
   background-color: #ffffff;
   margin: min(8vw, 80px) auto;
   padding: min(4vw, 80px) 0;
   color: #000000;
 }

 form {
   width: 90%;
   margin: min(4vw, 80px) auto;
   max-width: 1040px;
   text-align: left;
   line-height: 3;
   font-family: "Noto Sans JP", serif;
 }

 .form_item {
   padding: min(2vw, 30px) 0;
   border-bottom: 1px dashed #BCBCBC;
 }

 .form_item:nth-of-type(5) {
   border-bottom: none;
 }

 .form_item--ttl {
   line-height: 3;
   font-weight: 500;
 }

 .form_item--ttl .must {
   font-family: "Noto Sans JP", serif;
   background-color: #A77D3B;
   color: #ffffff;
   font-size: 1.4rem;
   padding: 1% 5%;
   margin-right: 5%;
   border-radius: calc(infinity * 1px);
 }

 .form_item--ttl .optional {
   font-family: "Noto Sans JP", serif;
   background-color: #DCAC60;
   padding: 1% 5%;
   margin-right: 5%;
   border-radius: calc(infinity * 1px);
 }

 .form_item--input {
   padding: 0;
   margin-bottom: 1%;
 }

 .form_item--input span {
   color: #BCBCBC;
   line-height: 1;
   display: block;
   padding: 8px 0;
 }

 label {
   display: inline-block;
 }

 input[type="text"],
 input[type="tel"],
 input[type="email"],
 select,
 textarea {
   display: block;
   height: 48px;
   width: 100%;
   font-size: 2.0rem;
   padding: 6px;
   background-color: #f4f3f3;
   border: 1px solid #C6C6C6;
 }

 input[id="postal_code"],
 select {
   max-width: 272px;
 }

 input[type="tel"] {
   max-width: 400px;
 }

 textarea {
   height: 252px;
   resize: vertical;
   background-color: #f4f3f3;
 }

 .form_submit button {
   width: 100%;
   max-width: 345px;
   background-color: var(--blue);
   padding: 14px;
   margin: 40px auto 0;
   position: relative;
   display: flex;
   justify-content: center;
   align-items: center;
   border: none;
 }

 .form_submit button:hover {
   opacity: 0.5;
 }

 .form_submit button p {
   font-size: 2.2rem;
   color: #ffffff;
   text-align: left;
   font-weight: 400;
   letter-spacing: 0.1rem;
 }

 .privacy_policy {
   background-color: #ffffff;
   width: 96%;
   max-width: 1500px;
   color: #000000;
   margin: 0 auto;
   height: 340px;
   overflow-y: scroll;
 }

 .privacy_policy .inner {
   gap: min(5vw, 20px);
   margin: min(5vw, 40px) auto;
   max-width: none;
 }

 .privacy_policy .inner h3 {
   font-size: clamp(1.8rem, 4.4vw, 3.2rem);
   text-align: center;
 }

 /* pcスタイル */
 @media screen and (min-width: 960px) {
   .form_bg {
     padding: min(4vw, 80px) 0 min(4vw, 60px);
   }

   form {
     max-width: 1100px;
     margin: 0 auto;
   }

   .form_item {
     display: flex;
     justify-content: center;
     align-items: center;
     max-width: 1100px;
     margin: 0 auto;
   }

   .form_item--ttl {
     padding: 30px 10px;
     width: 40%;
     margin: 0;
     height: 80px;
     line-height: 1;
   }

   .form_item--input {
     width: calc(100% - 300px);
     margin: 0;
     padding: 20px 60px 20px 30px;
     line-height: 1;
     height: 80px;
   }

   .form_item--input label {
     line-height: 1;
   }

   .form_item:nth-of-type(5) .form_item--ttl {
     border-bottom: none;
     margin: 0 0 auto;
   }

   .form_item:nth-of-type(5) .form_item--input {
     height: 300px;
   }
 }
	
 