a{
  text-decoration: none;
  transition: all 0.3s;
}

a:hover{
  opacity: .6;
}

#header{
    padding: 0;
    border-bottom: 1px solid #336699;
    background-color: #ffffff;
    color: #767676;
}

#header .header_box{
    width: 100%;
    max-width: 1280px;
    padding: 10px 5px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#header .header_box h1{
    padding: 0;
    margin: 0;
}

#header .header_box .page_title{
}

#header .header_box nav{
}

#header .header_box nav a{
  color: #000000;
}

#header .header_box nav ul{
    font-weight: bold;
}

#header .header_box nav ul li{
}

#container{
    padding: 0;
}

.content-area{
    width: 100%;
    max-width: 1280px;
    margin: auto;
}

#footer{
  color: #ffffff;
  background-color: #222222;
}

#footer a{
  color: #ffffff;
}

#copyright{
  color: #ffffff;
}

/*パンくずリスト*/
.breadcrumb {
  font-size: 0.92rem;
  margin-bottom: 1rem;
}
.breadcrumb a {
  color: #767676;
  text-decoration: none;
}
.breadcrumb a:hover {
}
.breadcrumb span {
  color: #767676;
}



/*-----------------------------------
   TOPページ
-----------------------------------*/
/*メインビジュアル*/
/* #container .mv_content{
    width: 100%;
    height: 78vh;
    padding: 0 10px;
    background-image: url(../images/top/mv_01.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
#container .mv_content .mv{
    max-width: 100%;
    height: auto;
    vertical-align: middle;
} */

#container .mv_content {
  position: relative;
  width: 100%;
  height: 78vh;
  padding: 0 10px;
  background-image: url(../images/top/mv_01.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}
#container .mv_content::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 0;
}
#container .mv {
  width: 100%;
  max-width: 1280px;
  margin: auto;
  display: flex;
}
#container .mv_text {
  position: relative;
  z-index: 1;
  max-width: 100%;
  color: #fff;
}
#container .mv_content .mv_text .sub_copy {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 600;
  width: fit-content;
  color: #fff;
  background: linear-gradient(transparent 60%, #d23c95 60%);
  margin-bottom: 1rem;
}

#container .mv_content .mv_text .main_copy {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.4;
  color: #fff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  margin: 0;
}
#container .mv_content .mv_text .main_copy .highlight {
  font-size: 3.4rem;
  background-color: #0056b3;
  color: #ffffff;
  padding: 0.1em 0.4em;
  margin-top: 16px;
  font-weight: 900;
  display: inline-block;
}
#container .mv_content .mv_block {
  display: block;
}


/*メインコンテンツ*/
#container #content{
    width: 100%;
    padding-right: 0;
    margin: auto;
    float: none;
}
#container #content .content_wrap{
}


/*ソクフオとは？*/
.about_sokfuo {
    max-width: 1280px;
    padding: 60px 0;
    margin: auto;
    background-color: #ffffff;
}
.about_sokfuo .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}
.about_sokfuo h2 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 24px;
}
.about_sokfuo p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
}
.about_sokfuo p em {
  color: #0056b3;
  font-style: normal;
  font-weight: bold;
}


/*選び方*/
.service_choose {
    width: 100%;
    padding: 60px 0;
    margin: auto;
    background-color: #f9f9f9;
}
.service_choose h2 {
    font-size: 2rem;
    text-align: center;
    max-width: 1280px;
    margin: auto;
    margin-bottom: 40px;
    color: #333;
}
.service_choose__container {
    max-width: 1280px;
    padding: 0 20px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.service_choose__box {
  background: #fff;
  padding: 24px;
  border-radius: 8px;
  flex: 1 1 calc(33.333% - 20px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.service_choose__box h3 {
  position: relative;
  font-size: 1.25rem;
  color: #0056b3;
  margin-bottom: 16px;
  padding-left: 48px; /* 項番分のスペース */
}
.service_choose__box h3::before {
  content: attr(data-number);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  background-color: #0056b3;
  color: #fff;
  font-weight: bold;
  border-radius: 50%;
  font-size: 1rem;
}
.service_choose__box p {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
}


/*選ばれる理由*/
.reasons {
  background: #fff;
  padding: 60px 0;
}
.reasons .container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}
.reasons h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 50px;
  color: #333;
}
.reason_item {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 50px;
}
.reason_item.reverse {
  flex-direction: row-reverse;
}
.reason_item .text {
  flex: 1;
}
.reason_item .text h3 {
  font-size: 1.5rem;
  color: #0056b3;
  margin-bottom: 16px;
}
.reason_item .text p {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
}
.reason_item .image {
  flex: 1;
}
.reason_item .image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}


/*サービス一覧*/
.service_list{
  background: #fff;
  padding: 60px 0;
}
.service_list .service_list_wrap{
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}
.service_list .service_list_wrap h2{
  text-align: center;
  font-size: 2rem;
  margin-bottom: 50px;
  color: #333;
}
.service_list .products.custom-products-loop {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service_list .products.custom-products-loop .product {
  background: #f9f9f9;
  border: 1px solid #f9f9f9;
  text-align: center;
}
.service_list .products.custom-products-loop .product a{
  text-decoration: none;
}
.service_list .products.custom-products-loop .product img {
  width: 100%;
  height: auto;
  display: block;
}
.service_list .products.custom-products-loop .woocommerce-loop-product__title {
  font-size: 1.1rem;
  padding: 0 16px;
  margin: 8px 0;
  color: #333;
}
.service_list .products.custom-products-loop .price {
  display: block;
  font-size: 1rem;
  color: #0056b3;
  margin-bottom: 12px;
}
.service_list .products.custom-products-loop .button {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  display: inline-block;
  padding: 8px 16px;
  margin: 0 0 16px;
  background-color: #0056b3;
  color: #fff !important;
  text-decoration: none;
  border-radius: 4px;
}


/*サービス一覧*/
.voice{
  
}
.voice .voice_wrap{
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}
.voice .voice_wrap h2{
  text-align: center;
  font-size: 2rem;
  margin-bottom: 50px;
  color: #333;
}



/*-----------------------------------
   固定ページ
-----------------------------------*/
.page_content .type-page{
  padding: 0 0 64px;
}
.page_content .type-page .breadcrumb{
  margin-top: 16px;
  margin-bottom: 48px;
}




/*-----------------------------------
   商品アーカイブ
-----------------------------------*/
.woocommerce .products ul, .woocommerce ul.products{
  margin-bottom: 0;
}
#primary .site-main{
  padding: 48px 0;
}
#primary .site-main .products .product {
  background: #f9f9f9;
  border: 1px solid #f9f9f9;
  text-align: center;
}
#primary .site-main .products .product a{
  color: #000000;
  text-decoration: none;
}
#primary .site-main .products .product img {
  width: 100%;
  height: auto;
  display: block;
}
#primary .site-main .products .product .price {
  display: block;
  font-size: 1rem;
  color: #0056b3;
  margin-bottom: 12px;
}
#primary .site-main .products .product .button {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  display: inline-block;
  padding: 8px 16px;
  margin: 0 0 16px;
  background-color: #0056b3;
  color: #fff !important;
  text-decoration: none;
  border-radius: 4px;
}
#primary .site-main .products .product .woocommerce-loop-product__title {
  padding: 0 16px;
}




/*-----------------------------------
   商品ページ
-----------------------------------*/
.variations_form .variations th{
  display: block;
  text-align: left;
}
.variations_form .variations td{
  display: block;
}
.woocommerce div.product form.cart .variations select{
  min-width: 100%;
  padding: 10px;
  margin-right: 10px;
}
.woocommerce div.product form.cart .woocommerce-variation-price{
  margin-bottom: 20px;
}
/*購入するボタン*/
.single_add_to_cart_button.button.alt{
  font-family: 'Noto Sans JP', sans-serif;
  display: block;
  width: 100%;
  padding: 16px 0 !important;
  background-color: #0056b3 !important;
  color: #fff !important;
  border-color: #0056b3 !important;
}
.single_add_to_cart_button.button.alt:hover {
  background-color: #004494 !important; /* 少し濃い青に */
  border-color: #004494 !important;
}
/*説明文*/
.woocommerce-tabs dl{
  margin-top: 32px;
}
.woocommerce-tabs dl:first-child{
  margin-top: 0p;
}
.woocommerce-tabs dl dt{
}
.woocommerce-tabs dl dt::before {
  content: "Q. ";
  font-weight: bold;
  color: #333;
}
.woocommerce-tabs dl dd{
  margin-left: 0;
}
.woocommerce-tabs dl dd::before {
  content: "A. ";
  font-weight: bold;
  color: #555;
}


/* カスタムURLフィールドを横並びに */
.custom-url-field-wrapper {
  margin-bottom: 1rem;
}

#custom_url_field{
  display: block;
}

/* ラベル調整 */
.custom-url-field-wrapper label {
  flex: 0 0 160px; /* 固定幅（必要に応じて調整） */
  font-weight: 700;
  margin: 0;
}

.custom-url-field-wrapper .woocommerce-input-wrapper {
  width: 100%;
}

/* 入力フィールド調整 */
.custom-url-field-wrapper input[type="url"] {
  flex: 1; /* 残り幅すべて */
  padding: 0.5rem;
  font-size: 1rem;
  border: 1px solid #ddd;
  border-radius: 0!important;
}



/*-----------------------------------
   チェックアウトページ
-----------------------------------*/
#wrapper .page.type-page{
  margin: 100%;
  max-width: 1280px;
  margin: auto;
}
#wrapper .page.type-page .wc-block-components-order-summary-item__total-price{
display: none;
}




/*-----------------------------------
   モバイル
-----------------------------------*/
@media (max-width: 768px) {

/*-----------------------------------
   TOPページ
-----------------------------------*/
#container .mv_content {
  background-image: url(../images/top/mv_01_sp.png);
}
#container .mv_text {
  padding-left: 5%;
}
#container .mv_content .mv_text .sub_copy {
  font-size: 1.4rem;
}
#container .mv_content .mv_text .main_copy {
  font-size: 2rem;
}
#container .mv_content .mv_text .main_copy .highlight {
  font-size: 3.4rem;
  background-color: #ffffff;
  color: #0056b3;
  text-shadow: none;
}




/*選び方*/
.service_choose__box {
  flex: 1 1 100%;
  margin-bottom: 20px;
}


/*選ばれる理由*/
.reason_item {
  flex-direction: column;
}
.reason_item.reverse {
  flex-direction: column;
}
.reason_item .image,
.reason_item .text {
  width: 100%;
}


/* サービス一覧 */
.service_list .products.custom-products-loop {
  grid-template-columns: repeat(2, 1fr);
}



/*-----------------------------------
  商品ページ
-----------------------------------*/
.custom-url-field-wrapper {
  flex-direction: column;
  align-items: stretch;
}
.custom-url-field-wrapper label {
  margin-bottom: 0.5rem;
}

}
