@charset "utf-8";
/* CSS Document */
body {
  margin: 0;
  padding: 0;
	font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 400;
  font-style: normal;
}
img {
  width: 100%;
  vertical-align: middle;
}

.h1video-wrap{
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    margin: -0.5vw 0 0 0;
}

.h1video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;        /* 歪ませずにトリミング */
  object-position: left center; /* 右側を優先してカット */
}

h1 {
background-color: rgba(0, 0, 0, 0.66);
    position: absolute;
    top: 66vw;
    font-size: 3.5vw;
    font-weight: 400;
    color: white;
    width: 90%;
    padding: 2vw 3vw;
    box-sizing: border-box;
}

.top-h2 {
box-shadow: 0.7vw 0.7vw 0.7vw rgba(0, 0, 0, 0.3);
    display: inline-block;
    font-size: 4.5vw;
    font-weight: 400;
    padding: 2vw 4vw;
    position: relative;
    left: -1vw;
    margin: 3vw 0 5vw;
}

section {
	margin: 5vw 0 10vw;
}

.linebtn {
	    margin: 14vw auto;
    width: 90%;
    display: block;
}


@media screen and (min-width: 850px) {

.h1video-wrap {
    position: relative;
    width: 100%;
    min-height: 500px;
    aspect-ratio: inherit;
    overflow: hidden;
    margin: 0 0 0 0;
}
	h1 {
    background-color: rgba(0, 0, 0, 0.66);
    position: absolute;
    top: 400px;
    font-size: 22px;
    font-weight: 400;
    color: white;
    width: 600px;
    padding: 20px 30px;
    box-sizing: border-box;
}
	.top-h2 {
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
    display: block;
    text-align: center;
    width: 300px;
    font-size: 24px;
    font-weight: 400;
    padding: 14px 40px;
    position: relative;
    left: 0;
    margin: 0 auto;
}
}
/*---------------------------------
page-id-1616
---------------------------------*/
.hero-section {
    margin: 0 0 8vw;
}
.sub-h1 {
    background-color: rgba(0, 0, 0, 0.70);
    color: white;
    text-align: center;
    font-size: 7vw;
    padding: 1vw 0 0.5vw;
    line-height: 11vw;
}

/* SEOテキスト */
.cs .intro-section {
padding: 0 8vw;
}
.cs .intro-section h2 {
    font-size: 5.5vw;
    line-height: 9vw;
    margin-bottom: 2vw;
    margin-top: 0;
}
.cs .intro-section p {
    font-size: 4.2vw;
    line-height: 8vw;
}

/* LINEボタンセクション */
.cs .line-section {
    text-align: center;
    margin: 5vw;
}
.cs .line-button {
  width: 90vw;
}

/* ナビボタンセクション */
.cs .nav-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 6vw;
    padding: 5vw;
}
.cs .nav-section .button {
    width: 42vw;
    height: 10vw;
    background: rgba(0,0,0,1.00);
    color: #fff;
    text-decoration: none;
    font-size: 5vw;
    text-align: center;
    padding: 5vw 0 7vw;
    position: relative;
}

.cs .nav-section .button:after {
  content: '';
  width: 8px;
  height: 8px;
  border: 0;
  border-top: solid 1px rgba(255, 255, 255, 1.00);
  border-right: solid 1px rgba(255, 255, 255, 1.00);
  position: absolute;
  right: 50%;
  top: 70%;
  transform: translate(50%, -50%) rotate(135deg);
  transition: .2s;
}

/* 車種・料金セクション */
.cs .price-section {
  padding: 0vw;
	margin: 5vw 0;
}
.cs .section-title {
	width: 90vw;
	margin: 6vw auto 6vw;
    text-align: center;
    font-size: 6vw;
    color: white;
    background-color: rgba(0,0,0,1.00);
    padding: 3vw 0 4vw;
    font-weight: 400;
    letter-spacing: 0.4vw;
}
.cs .car-list {
  display: flex;
  flex-direction: row;
  overflow-x: auto;
  gap: 6vw;
  padding: 0 5vw 8vw 5vw; /* ← 右にも余白を追加 */
  -webkit-overflow-scrolling: touch;
	margin-bottom: 8vw;
}

.cs .car-card {
  flex: 0 0 auto; /* shrinkさせず、必要幅を確保 */
  width: 60vw;
  background: rgba(243,243,243,1.00);
  scroll-snap-align: start;
	box-shadow: 1vw 1vw 1vw rgba(0,0,0,0.3);
}

.cs .car-card:last-child {
  margin-right: 4vw;
}

.cs .car-image {
  width: 80%;
  height: auto;
	margin: 5vw auto 2vw;
}
.cs .car-name {
    font-weight: bold;
    font-size: 4.5vw;
    width: 80%;
	margin: 0vw auto;
}
.cs .car-option {
    font-weight: normal;
    font-size: 3.5vw;
    width: 80%;
	margin: 0vw auto;
}


.cs .car-tags {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 2vw;
  font-size: 3.5vw;
  width: 80%;
	margin: 2vw auto;
}
.cs .car-tags li {
  	background-color: black;
	color: white;
  padding: 1.2vw 3vw;
  border-radius: 1vw;
}
.cs .car-price {
  color: red;
  font-weight: bold;
  font-size: 4.5vw;
  margin: 2vw 0;
	text-align: center;
}
.cs .car-card .button {
  display: inline-block;
  background: rgba(138,138,138,1.00);
  color: #fff;
  width: 100%;
	height: 10vw;
	line-height: 10vw;
  text-decoration: none;
  font-size: 4vw;
	text-align: center;
	position: relative;
}

.cs .car-card .button:after {
  content: '';
  display: inline-block;
  width: 0.6em;
  height: 0.6em;
  background-color: #fff;
  position: absolute;
  right: 14%;
  top: 50%;
  transform: translateY(-50%);
  clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
}

/* ご利用の流れステップ表示 */
.cs .step {
display: grid;
    grid-template-columns: 12vw 1fr;
    align-items: stretch;
    margin: 6vw 5vw 11vw;
    gap: 4vw;
    position: relative;
}

.cs .step-number {
  font-size: 5vw;
  font-weight: bold;
  color: #fff;
  background: rgba(185,185,185,1.00);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1vw;
  flex-shrink: 0;
  box-shadow: 0 0 0 2px #fff inset;
  position: relative;
}
/* ▶▶▶の矢印は4ステップ目では非表示 */
.cs .step:not(:last-child) .step-number::after {
    content: '\25BC\A\25BC\A\25BC';
    font-size: 3vw;
    color: rgba(185,185,185,1.00);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -11vw;
    line-height: 1.2;
    white-space: pre-line;
    text-align: center;
}

.cs.step-contents {
	padding: 1vw 0;
}

.cs .step h3 {
    font-size: 4.5vw;
    margin: 0 0 2vw;
    border-bottom: 0.4vw solid black;
    padding-bottom: 2vw;
}

.cs .step p {
    font-size: 3.7vw;
    margin: 1vw 0 1vw;
    line-height: 1.6;
}

.cs .step a {
  color: #007bff;
  text-decoration: underline;
}



/* よくある質問セクション */
.cs .faq-section {
  padding: 6vw 5vw;
}

.cs .faq-section h2 {
  font-size: 5.5vw;
  background: #000;
  color: #fff;
  text-align: center;
  padding: 3vw 0;
  margin-bottom: 5vw;
}

.cs .faq-section details {
  border: 1px solid #888;
  margin-bottom: 4vw;
  background: rgba(255,255,255,1.00);
}

.cs .faq-section summary {
  font-weight: bold;
  font-size: 4vw;
  padding: 3.5vw 4vw;
  list-style: none;
  position: relative;
  cursor: pointer;
  background: #dcdcdc;
}

.cs .faq-section summary::before {
  content: '\25B6';
  font-size: 3.5vw;
  margin-right: 2vw;
  display: inline-block;
  transform: rotate(0deg);
  transition: transform 0.3s ease;
}

.cs .faq-section details[open] summary::before {
  transform: rotate(90deg);
}

.cs .faq-section p {
  font-size: 3.7vw;
  padding: 3vw 4vw 4vw;
  margin: 0;
  line-height: 1.6;
}



.cs .access-section p {
	margin: 5vw;
}


.entry-header {
	display : none;
}
/*---------------------------------
page-id-1616
---------------------------------*/

/*-----------------
global-nav
-----------------*/
#nav-drawer {
  position: relative;
}
.nav-unshown {
  display:none;
}
#nav-open {
    display: block;
    width: 60px;
    font-size: 10px;
    text-decoration: none;
    color: rgba(45,45,45,1.00);
    text-align: center;
    letter-spacing: -1px;
    padding-top: 4px;
    line-height: 21px;
}
#nav-close {
  display: none;
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0;
  transition: .3s ease-in-out;
}
#nav-content {
    overflow-x: hidden;
  position: fixed;
  top: -0;
  left: 100%;
  z-index: 9999;
  width: 80%;
  height: 100%;
  background: #000;
  transition: .4s ease-in-out;
/*  -webkit-transform: translateX(120%);
  transform: translateX(120%);*/
    font-family: Arial, Helvetica, sans-serif;
}
#nav-input:checked ~ #nav-close {
  display: block;
  opacity: .7;
}

#nav-input:checked ~ #nav-content {
  left: 20%;
  box-shadow: -1vw 0px 1vw rgba(0,0,0,0.55)
}


#nav-content ul {
list-style: none;
    width: 100%;
    margin: 5vw auto 12vw;
    padding: 0;
}

#nav-content li {
    line-height: 10vw;
    text-align: center;
}

#nav-content li a {
    display: inline-flex;
    align-items: center;
    gap: 5vw;
    font-size: 5vw;
    font-weight: 600;
    text-decoration: none;
	color: white;
}
.navi-title2 {
    text-align: center;
    font-size: 10vw;
    font-weight: 600;
    letter-spacing: 1vw;
    line-height: 14vw;
    margin: 13vw 0 6vw;
    box-shadow: none;
    display: block;
    padding: 0;
    position: inherit;
    color: white;
}
.navi-right2 {
content: '';
    width: 2vw;
    height: 2vw;
    border: 0;
    border-top: solid 0.6vw #FFFFFF;
    border-right: solid 0.6vw #FFFFFF;
    position: relative;
    right: 0%;
    transform: rotate(45deg);
    transition: .2s;
}
.sns-icon {
    width: 100%;
	text-align: center;
}

.sns-icon ul {
    display: flex;
    list-style: none;
    width: 100%;
    margin: 20px auto !important;
    padding: 0;
    justify-content: center;
}

/*-----------------
global-nav
-----------------*/

/*-----------------
top-nav
-----------------*/
.navi-title {
	text-align: center;
    font-size: 13vw;
    font-weight: 700;
	letter-spacing: 1vw;
    line-height: 14vw;
    margin: 2vw 0 10vw;
	box-shadow: none;
    display: block;
    padding: 0;
    position: inherit;
    left: 0;
}

.top-navi nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}

.top-navi nav ul li {
  margin: 5vw 0;
}

.top-navi nav a {
  display: inline-flex;
  align-items: center;
  gap: 5vw; /* 文字とアイコンの間隔 */
  font-size: 6vw;
  font-weight: 700;
  text-decoration: none;
  color: #000;
}

.top-navi nav a .fa-arrow-up-right-from-square {
  font-size: 5vw;
}

.top-navi nav a:hover {
  color: #555;
}
.navi-right {
content: '';
    width: 2vw;
    height: 2vw;
    border: 0;
    border-top: solid 0.6vw #000000;
    border-right: solid 0.6vw #000000;
    position: relative;
    right: 0%;
    transform: rotate(45deg);
    transition: .2s;
}
/*-----------------
top-nav
-----------------*/
/*-----------------
voice
-----------------*/
.voice-article {
  position: relative; 
	margin: 6vw auto 12vw;
	width: 86%;
}
.voice-image {
	display: block;
}
.blackcover {
    background-color: rgba(0, 0, 0, 0.69);
    padding: 4vw 8vw;
    color: white;
    position: absolute;
    top: 9%;
    left: 8%;
    width: 84%;
    height: 84%;
    box-sizing: border-box;
}
.voice-h3 {
	border-bottom: 0.2vw solid white;
    text-align: center;
    padding-bottom: 3vw;
    font-size: 6vw;
    line-height: 6vw;
    margin: 3vw auto;
}
.voice p {
	    font-size: 3.6vw;
    margin: 2vw 0;
    line-height: 5.8vw;
    font-weight: 400;
	}
.voice-meta {
	font-size: 3.8vw !important;
    font-weight: 600!important;
}

/*-----------------
voice
-----------------*/
/*-----------------
footer
-----------------*/
.footer1 {
  width: 100%;
  overflow: hidden;
  background-image: url("https://bucci.club/images/footer-back.webp");
  background-size: cover;
	background-position-x: -100%;
  font-weight: 600;
  margin-top: 50px;
  color: white;
  padding: 12vw;
  box-sizing: border-box;
}
.footer1 input, textarea {
  border-style: solid;
  border-width: 1px;
  border-color: #F0F0F0;
  background-color: rgba(0,0,0,0.54);
  line-height: 5vw;
  font-size: 3vw;
  text-align: left;
  color: #F0F0F0;
  position: relative;
  padding: 2vw 4vw;
  display: block;
  margin: 3vw 0;
  width: 90%;
}
.footer1 textarea {
  height: 20vw;
}
.footer1 label {
  padding: 0;
  color: white;
  text-align: left;
  font-size: 3.5vw;
  letter-spacing: 0.4vw;
  align-content: center;
  display: block;
  margin-top: 2vw;
}
.footer1 button {
  border-style: solid;
  border-width: 1px;
  border-color: #F0F0F0;
  line-height: 6vw;
  font-size: 4vw;
  color: #F0F0F0;
  background-color: rgba(255, 255, 255, 0.20);
  position: relative;
  padding: 3vw 4vw;
  display: block;
  margin: 6vw 0 0 auto;
  width: 50%;
  letter-spacing: 1vw;
  text-align: center;
}
.footer-1 {
font-size: 5vw;
    text-align: center;
    color: rgba(255, 255, 255, 1.00);
    letter-spacing: 2vw;
    font-weight: 500;
    margin: 0vw 0 10vw;
}
.footer-1::after {
  content: "";
  display: block;
  width: 20%;
  margin: 5vw auto;
  height: 1px;
  background-color: rgba(255, 255, 255, 1.00);
}
.footer1 i {
  font-size: 6vw;
}
.footer-ul {
  list-style: none;
  margin: 10vw 0;
  padding: 0;
}
.footer-li {
margin: 4vw 0;
    display: flex;
    align-items: anchor-center;
}
.footer1 p {
    padding-left: 4vw;
    font-size: 4vw;
    font-weight: 500;
    margin: 1vw 0;
}
.footer1 a {
    color: white;
}
.footer2 {
  background-color: rgba(0, 0, 0, 1.00);
  width: 100%;
  margin: 0;
  padding: 5vw 0;
}
.footer2 p {
  color: white;
  font-size: 3vw;
  text-align: center;
}
	@media screen and (min-width: 850px) {
		.footer2 {
  background-color: rgba(0, 0, 0, 1.00);
  width: 100%;
  margin: 0;
  padding: 30px 0;
}
    .footer2 p {
        color: white;
        font-size: 14px;
        text-align: center;
    }
		.footer-1 {
        font-size: 24px;
        text-align: center;
        color: rgba(255, 255, 255, 1.00);
        letter-spacing: 2px;
        font-weight: 300;
        margin: 00px 0 30px;
    }
		    .footer-1::after {
        content: "";
        display: block;
        width: 100px;
        margin: 20px auto;
        height: 1px;
        background-color: rgba(255, 255, 255, 1.00);
    }
.footer-ul {
    list-style: none;
    margin: 60px 0;
    padding: 0;
    width: 400px;
}
    .footer1 p {
        padding-left: 14px;
        font-size: 16px;
        font-weight: 300;
        letter-spacing: 1px;
    }

		.footer-li {
    margin: 30px 0;
    display: flex;
}
		.footer1 i {
    font-size: 30px;
}
		.footer1 label {
    padding: 0;
    color: white;
    text-align: left;
    font-size: 16px;
    letter-spacing: 2px;
    align-content: center;
    display: block;
    margin-top: 10px;
}
    .footer1 input, textarea {
        border-style: solid;
        border-width: 1px;
        border-color: #F0F0F0;
        background-color: transparent;
        line-height: 16px;
        font-size: 16px;
        text-align: left;
        color: #F0F0F0;
        font-family: ヒラギノ角ゴ Pro W3, Hiragino Kaku Gothic Pro, メイリオ, Meiryo, ＭＳ Ｐゴシック, MS PGothic, sans-serif;
        position: relative;
        padding: 10px 16px;
        display: block;
        margin: 10px 0 26px;
        width: 300px;
    }
		.footer1 textarea {
    height: 100px;
}
    .footer1 button {
        border-style: solid;
        border-width: 1px;
        border-color: #F0F0F0;
        line-height: 18px;
        font-size: 18px;
        color: #F0F0F0;
        background-color: rgba(255, 255, 255, 0.20);
        font-family: ヒラギノ角ゴ Pro W3, Hiragino Kaku Gothic Pro, メイリオ, Meiryo, ＭＳ Ｐゴシック, MS PGothic, sans-serif;
        position: relative;
        padding: 10px;
        display: block;
        margin: 30px 0 0 auto;
        width: 120px;
        letter-spacing: 6px;
        text-align: center;
    }
		.footer-box {
	width: 800px;
			display: flex;
			justify-content: space-between;
			margin: 0 auto;
		}
		.footer1 {
    width: 100%;
    overflow: hidden;
    background-image: url(https://bucci.club/images/footer-back.webp);
    background-size: cover;
    font-weight: 600;
    margin-top: 100px;
    color: white;
    padding: 80px 0;
    box-sizing: border-box;
}
}
/*-----------------
footer
-----------------*/
/*-----------------
reCAPTCHA
-----------------*/
.g-recaptcha {
  transform: scale(0.95);
  -webkit-transform: scale(0.95);
  transform-origin: 0 0;
  -webkit-transform-origin: 0 0;
}
@media (min-width: 850px) {
  .g-recaptcha {
    transform: scale(1.0);
    -webkit-transform: scale(1.0);
    transform-origin: 0 0;
    -webkit-transform-origin: 0 0;
  }
}
/*-----------------
reCAPTCHA
-----------------*/

/*-----------------
work
-----------------*/
.work-box {
    width: 100%;
    display: flex;
    margin: 6vw auto 10vw;
    align-items: center;
}
.work-1 {
width: 40vw;
    flex-shrink: 0;
    position: relative;
    left: -4vw;
    border-radius: 50%;
    box-shadow: 0 0 0 1vw #fff, 1vw 1vw 2vw rgba(0,0,0,0.49);
    overflow: hidden;
	z-index: 2;
}
.work-2 {
    width: 60vw;
    flex-shrink: 0;
    position: relative;
    left: -8vw;
	z-index: 1;
}
.work-2-1 {
    font-size: 4.5vw;
    color: rgba(0, 0, 0, 1.00);
    margin: 0vw 0vw 0 8vw;
    font-weight: 600;
    text-align: center;
}
.work-2-2 {
        font-size: 3.5vw;
    color: rgba(0, 0, 0, 1.00);
    line-height: 6vw;
    margin: 0vw 0vw 2vw 8vw;
    position: relative;
    left: 1vw;
}
.work-2-hr {
	width: 100%;
    height: 0.4vw;
    background-color: black;
    margin: 2vw 0;
}
/*-----------------
work
-----------------*/
/*-----------------
strengths
-----------------*/
.strengths-box {
	    height: 64vw;
    position: relative;
    width: 100vw;
	margin: 2vw 0;
	    overflow-x: clip;
}
.strengths-dia1 {
	  width: 39vw;
  height: 39vw;
  background: rgba(176,176,176,1.00);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  color: #333;
	position: absolute;
	    top: 23vw;
    left: -25vw;
}
.strengths-dia2 {
    width: 39vw;
    height: 39vw;
    background: #eee;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #333;
    position: absolute;
    top: 46vw;
    left: -3vw;
}
.strengths-dia3 {
	  width: 39vw;
  height: 39vw;
  background: rgba(0,0,0,1.00);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  display: flex;
  justify-content: center;
  align-items: center;
  color: rgba(255,255,255,1.00);
	position: absolute;
	left: -3vw;
	padding: 8.5vw 8vw 8vw 8vw;
    box-sizing: border-box;
    text-align: center;
    font-size: 4.0vw;
    font-weight: 600;
    line-height: 6vw;
}
.strengths-dia4 {
	  width: 39vw;
  height: 39vw;
  background: rgba(0,0,0,1.00);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  display: flex;
  justify-content: center;
  align-items: center;
  color: rgba(255,255,255,1.00);
	position: absolute;
	left: 19vw;
    top: 23vw;
	padding: 8.5vw 8vw 8vw 8vw;
    box-sizing: border-box;
    text-align: center;
    font-size: 4.0vw;
    font-weight: 600;
    line-height: 6vw;
}
.strengths-dia5 {
	  width: 39vw;
  height: 39vw;
  background: rgba(0,0,0,1.00);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  display: flex;
  justify-content: center;
  align-items: center;
  color: rgba(255,255,255,1.00);
	position: absolute;
	left: 41vw;
	padding: 8.5vw 8vw 8vw 8vw;
    box-sizing: border-box;
    text-align: center;
    font-size: 4.0vw;
    font-weight: 600;
    line-height: 6vw;
}
.strengths-dia6 {
width: 39vw;
    height: 39vw;
    background: rgba(0, 0, 0, 1.00);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgba(255, 255, 255, 1.00);
    position: absolute;
    left: 63vw;
    top: 23vw;
	padding: 8.5vw 8vw 8vw 8vw;
    box-sizing: border-box;
    text-align: center;
    font-size: 4.0vw;
    font-weight: 600;
    line-height: 6vw;
}
.strengths-dia7 {
	  width: 39vw;
  height: 39vw;
  background: rgba(238,238,238,1.00);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  color: #333;
	position: absolute;
	left: 63vw;
    top: -23vw;
}
.strengths-dia8 {
	  width: 39vw;
  height: 39vw;
  background: rgba(176,176,176,1.00);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  color: #333;
	position: absolute;
	left: 85vw;
}
.strengths-p {
    text-align: left;
    font-size: 3.6vw;
    font-weight: 400;
    line-height: 7vw;
    margin: 5vw auto;
    width: 85%;
    position: relative;
}
/*-----------------
strengths
-----------------*/

/*-----------------
philosophy
-----------------*/
.philosophy-1 {
	text-align: center;
    font-size: 13vw;
    font-weight: 700;
    line-height: 14vw;
    margin: 2vw 0 6vw;
}
.philosophy-2 {
    text-align: center;
    background-color: black;
    font-size: 5vw;
    font-weight: 600;
    line-height: 6vw;
    margin: 8vw auto 3vw;
    padding: 2vw 0;
    width: 85%;
    color: white;
}
.philosophy-3 {
	text-align: left;
    font-size: 4vw;
    font-weight: 400;
    line-height: 7vw;
    margin: 2vw auto;
	width: 85%;
}

@media screen and (min-width: 850px) {
.philosophy-1 {
    text-align: center;
    font-size: 80px;
    font-weight: 700;
    line-height: 80px;
    margin: 40px 0 60px;
}
}
/*-----------------
philosophy
-----------------*/

/*-----------------
header
-----------------*/
header {
  background-color: black;
  width: 100%;
  padding: 5px 2% 5px 3%;
  box-sizing: border-box;
  height: 58px;
  margin: 0 auto;
  position: fixed;
  top: 0;
  display: flex;
  justify-content: space-between;
  box-shadow: 1px 1px 7px rgba(0, 0, 0, 0.3);
  z-index: 999999999;
}
.nav0 {
  width: 84%;
  aspect-ratio: 852 / 118;
	position: relative;
	top: 2vw;
    }
.fa-line {
  font-size: 9vw;
  color: white;
	position: relative;
	top: 1.8vw;
}
.fa-bars {
	color: white;
	font-size: 8vw;
	position: relative;
	top: 1.2vw;
}

.header-clear {
	height: 15vw;
}

@media screen and (min-width: 850px) {

header {
    background-color: black;
    width: 100%;
    padding: 10px 2% 10px 3%;
    box-sizing: border-box;
    height: 80px;
    margin: 0 auto;
    position: fixed;
    top: 0;
    display: flex;
    justify-content: space-between;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
    z-index: 999999999;
}
	.nav0 {
    width: 50%;
    aspect-ratio: 852 / 118;
    position: relative;
    top: 0vw;
}
	.head2, .head3 {
		display: none;
	}
	.header-clear {
    height: 80px;
}
}
/*-----------------
header
-----------------*/
