@charset "UTF-8";

:root{
  --accent:#ff6a00;
  --nav-link-x:16px;
  --mega-pad-y:24px;
  --mega-gap-x:40px;
  --mega-gap-y:24px;

  /* Burger */
  --burger-width:30px;
  --burger-height:22px;
  --burger-thick:2px;
  --burger-gap:9px;
  --burger-color:#111;
  --burger-color-active:var(--accent);


  --ff-jp-sans: "Noto Sans JP",
                "Hiragino Sans",
                "Hiragino Kaku Gothic ProN",
                "ヒラギノ角ゴ ProN W3",
                "Yu Gothic", "游ゴシック Medium","游ゴシック体",
                "Meiryo", "メイリオ",
                "Noto Sans", "Segoe UI", Arial, sans-serif;
}

/* Common */
body { font-family: var(--ff-jp-sans); color: #646464; font-weight: 400;}

a,
a:visited {text-decoration: none; color: #646464;}

br.sp { display:inline; }
br.pc { display: none; }

@media (min-width: 981px) {
  br.sp { display: none; }
  .pc-gap-next {
    display: inline !important;
    margin-left: 0.5em; /* 半角相当。0.45〜0.6emで微調整 */
  }
  br.pc { display: inline; }
}

.txt-left {text-align: left!important;}

@media (max-width:980px){
	.spw { padding: 0 10px; }
}


/* ===== Header Bar ===== */
header#masthead {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

img.custom-logo {width: 120px;}

.gh-bar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px clamp(16px,4vw,28px);
  background:#fff;
  position:relative;
  z-index: 100;
}

.gh-logo {flex-shrink: 0;}
.gh-logo img{display:block;height:auto;max-height:48px;}

/* ===== Desktop Navigation ===== */
.gh-nav--desktop{display:none;}

@media (min-width:981px){
  .gh-nav--desktop{display:block;width:70%;flex-shrink:0;}
  .gh-nav--desktop .gh-menu{
    list-style:none;
    margin:0;
    padding:0;
    display:flex;
    gap:0;
    justify-content:flex-end;
  }
  .gh-nav--desktop .gh-menu>li{
    margin:0;
    position:relative;
    flex:1;
    min-width:120px;
  }
  .gh-nav--desktop .gh-menu>li>a{
    display:block;
    padding:24px var(--nav-link-x);
    font-weight:700;
    letter-spacing:.02em;
    color:#111;
    text-decoration:none;
    white-space:nowrap;
  }
  .gh-nav--desktop .gh-menu>li:hover>a{color:var(--accent);position:relative;}
  .gh-nav--desktop .gh-menu>li:hover>a::after{
    content:"";
    position:absolute;
    left:10px;
    right:10px;
    bottom:10px;
    height:3px;
    background:var(--accent);
    border-radius:2px;
  }

  #menu-item-366 {
	display: none;
  }

}

.head_mypage {
    display: none;
}
@media screen and (min-width: 981px) {
    .head_mypage {
        display: inline-block;
        position: absolute;
        right: -1%;
        width: 65px;
        top: 17%;
    }    
}


/* ===== Hamburger Menu ===== */
.gh-burger{
  width:var(--burger-width);
  height:var(--burger-height);
  position:relative;
  background:transparent;
  border:0;
  color:var(--burger-color);
  cursor:pointer;
  display:inline-block;
}

.gh-burger span,.gh-burger span:before,.gh-burger span:after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  height:var(--burger-thick);
  background:currentColor;
  transition:transform .2s,top .2s,background .2s;
}

.gh-burger span{top:50%;transform:translateY(-50%);}
.gh-burger span:before{top:calc(-1 * var(--burger-gap));}
.gh-burger span:after{top:var(--burger-gap);}
.gh-burger.is-open{color:var(--burger-color-active);z-index: 10000;}
.gh-burger.is-open span{background:transparent;}
.gh-burger.is-open span:before{top:0;transform:rotate(45deg);}
.gh-burger.is-open span:after{top:0;transform:rotate(-45deg);}

/* ===== Desktop Mega Menu (右寄せ対応) ===== */
@media (min-width:981px){
  .gh-mega{
    position:fixed;
    left:0;
    right:0;
    top:var(--mega-top,0);
    background:#fff;
    border-top:2px solid #e6e6e6;
    box-shadow:0 12px 32px rgba(0,0,0,.12);
    opacity:0;
    visibility:hidden;
    transform:translateY(8px);
    transition:opacity .24s ease, visibility .24s ease, transform .24s ease;
    z-index:15;
  }
  
  .gh-mega.is-open{
    opacity:0.9;
    visibility:visible;
    transform:translateY(0);
  }
  
  .gh-mega__inner{
    padding-block:var(--mega-pad-y);
    padding-inline:clamp(16px,4vw,28px);
    max-width:1200px;
    margin:0 auto;
    width:100%;
    display:flex;
    justify-content:flex-end;
    align-items:flex-start;
  }
  
  .gh-mega__content{
    width:70%;
  }
  
  .gh-mega__grid{
    display:flex;
    gap:0;
    width:100%;
  }
  
  .gh-mega__grid > div {
    flex:1;
    min-width:0;
    min-width:120px;
  }
  
  .gh-mega h4{
    margin:0 0 12px;
    font-weight:700;
    color:#111;
    font-size:13px;
    text-transform:uppercase;
    letter-spacing:0.02em;
    position:relative;
    padding:0 var(--nav-link-x) 8px var(--nav-link-x);
  }
  
  
  .gh-mega a{
    display:block;
    padding:8px var(--nav-link-x) 8px var(--nav-link-x);
    color:#333;
    text-decoration:none;
    font-size:13px;
    line-height:1.5;
    transition:all 0.2s ease;
    position:relative;
  }
  
  .gh-mega a:hover{
    color:var(--accent);
    text-decoration:none;
    transform:translateX(4px);
  }
  
  .gh-mega a:hover::after{
    content:"";
    position:absolute;
    left:var(--nav-link-x);
    bottom:4px;
    width:calc(100% - calc(var(--nav-link-x) * 2));
    height:1px;
    background:var(--accent);
  }
}

/* ===== Mobile Full-Screen Overlay ===== */
@media (max-width:980px){
  .gh-mobile{
    position:fixed;
    inset:0;
    width:100vw;
    height:100vh;
    background:rgba(255,255,255,.98);
    display:none;
    z-index: 99;
    padding:24px clamp(16px,4vw,28px);
    box-sizing:border-box;
    overflow:auto;
  }
  
  .gh-mobile.is-open{
    display:flex;
    align-items:center;
    justify-content:center;
  }
  
  .gh-mobile__menu{
    list-style:none;
    margin:0;
    padding:0;
  }
  
  .gh-mobile__menu>li{
    margin:10px 0;
  }
  
  .gh-mobile__menu a{
    display:block;
    padding:12px 8px;
    font-size:20px;
    line-height:1.5;
    color:#111;
    text-decoration:none;
    text-align:center;
  }
  
  .gh-bar{
    padding-right:max(16px,env(safe-area-inset-right));
  }
}

html.menu-open, body.menu-open{overflow:hidden;}

/* ===== Responsive Controls ===== */
@media (min-width: 981px) {
  .gh-burger {display: none !important;}
  .gh-nav--desktop {display: block;}
  .gh-mega {display: block;}
  .gh-mobile {display: none !important;}
}

@media (max-width: 980px) {
  .gh-nav--desktop {display: none !important;}
  .gh-mega {display: none !important;}
  .gh-burger {display: block;}
}

/* ===== Logo Responsive ===== */
@media (max-width: 768px) {
  .custom-logo {
    max-width: 200px;
    height: auto;
  }
}

@media (max-width: 480px) {
  .custom-logo {
    max-width: 150px;
    height: auto;
  }
  
  .gh-bar {
    padding: 10px 15px;
  }
}

/* ===== Footer ===== */
.site-footer{
  color: #FFF;
  background: #353a76;
  border-top:1px solid #eee;
  margin-top:48px;
}

.footer-inner{
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 0 10px;
}

.footer_logo {
    width: 120px;
}

.footer_sns ul {
    margin: 0;
    list-style: none;
    display: flex;
	padding: 0;
	gap: 20px;
}

.footer_sns li {
	width: 40px;
}

.footer-menu{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  flex-wrap:wrap;
  gap:12px 16px;
}

.footer-menu a{
  color:#fff;
  text-decoration:none;
}

.footer-menu a:hover{
  text-decoration:underline;
}

.footer_sns {
    margin-top: 20px;
}

nav.footer-nav {
    margin-top: 25px;
}

.site-info {
    margin-top: 35px;
}

.site-info small{
  color:#FFF;
}

/* ===== Top Page Styles ===== */
.fv img.alignnone.size-full.wp-image-77 {
  width: 100%;
}

.wrap {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.top_concept,
.top_products {
  margin-top: 150px;
}

.top_concept h2,
.top_products h2 {
  text-align: center;
  font-weight: 400;
  font-size: 2rem;
  letter-spacing: .4rem;
}

.top_more {
    margin-top: 35px;
    text-align: right;
}

.top_concept_flex {
    text-align: center;
}

.top_concept_flex_txt {
    margin-top: 50px;
}

.top_concept_flex_txt h3 {
    font-size: 1.6rem;
    margin-bottom: 45px;
}

p.top_concept_h3_bottom {
    font-size: 1.5rem;
    letter-spacing: .1rem;
}

.top_products_flex {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.top_product {
  width: 48%;
}

.concept_catch {margin: 100px auto 150px; font-size: 3.4rem; font-weight: 600; text-align:center; color: #353a76;}

p.top_product_title {
    margin-top: 5px;
    font-size: 0.8rem;
    padding: 0 10px;
}

@media (min-width: 981px) {
  .top_concept_flex {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
  }

  .top_concept_flex_img {
    width: 45%;
  }

  .top_concept_flex_txt {
    width: 55%;
    text-align: center;
  }

  .top_product {
    width: 24%;
  }
}

.top_instagram {margin: 150px auto;}

img.insta_thunb {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 1px #ccc solid;
}

.top_instagram_head {
    text-align: center;
}

p.top_instagram_head_name {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: .1rem;
    margin-bottom: 0;
}

p.top_instagram_head_id {
    margin-top: 5px;
}

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

.top_instagram_photo {
    width: calc( 50% - 3px);
}

@media (min-width:981px) {
    .top_instagram_photo {
        width: calc( 25% - 3px);
    }
}

/* ===== Concept Page Styles ===== */
.concept_flex {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 60px;
}

.concept_flex_img {
    width: 100%;
    order: 2;
}

.concept_flex_txt {
    width: 100%;
    text-align: center;
    order: 1;
}

.concept_flex_txt h3 {
    font-size: 1.1rem;
    color: #353a76;
}

.concept_flex_txt h3 span {
    font-size: 2rem;
    display: block;
}

p.concept_txt_lh {
	line-height: 1.8rem;
	letter-spacing: .1rem;
}

@media (min-width: 768px) {
    .concept_flex {
        margin-top: 100px;
        gap: 40px;
    }
    
    .concept_flex_txt h3 {
        font-size: 1.2rem;
    }
    
    .concept_flex_txt h3 span {
        font-size: 2.2rem;
    }
}

@media (min-width: 981px) {
    .concept_flex {
        flex-direction: row;
        justify-content: space-between;
        margin-top: 150px;
        gap: 0;
    }
    
    .concept_flex_img {
        width: 45%;
        order: 0;
    }
    
    .concept_flex_txt {
        width: 54%;
        order: 0;
    }
    
    .concept_flex_txt h3 {
        font-size: 1.3rem;
    }
    
    .concept_flex_txt h3 span {
        font-size: 2.4rem;
    }
	.concept_8reset {
		text-align: left;
	}
}

@media (max-width: 980px) {
	.concept_flex_txt {
		padding: 0 10px;
	}	
}

/************************/
.read-more--svg { display:inline-flex; align-items:center; gap:.4em; color:inherit; text-decoration:none; }
.arrow { display:inline-block;overflow:visible; }
.arrow__g {
  transform-origin: left center;
  transition: transform .28s ease, color .28s ease;
}
.read-more--svg:hover .arrow__g {
  color: orange;                     /* strokeがオレンジに */
  transform: translateX(6px) scaleX(1.5);
}

.concept_top {
    padding: 0 10px;
}

.concept_top h1 {
    margin-top: 50px;
    text-align: center;
}

.concepts {
    margin-top: 100px;
}

.concept_img {
    width: 80%;
    margin: 0 auto;
}

.concept_txt {
    text-align: center;
}

p.concept_title {
    font-size: 1.4rem;
}

.concepts_flex {
    margin-bottom: 120px;
}

@media (min-width: 981px) {

.concepts_flex {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.concept_img {
    width: 35%;
}

.concept_txt {
    width: 60%;
}



}


.concept_product_01,
.concept_product_02,
.concept_product_03 {
    padding: 0 10px;
}

.brand_concept_flex {
    text-align: center;
}
.brand_concept_flex img{
    margin-bottom: 25px;
}

#concept_products h2 {
    text-align: center;
    font-size: 2.4rem;
    margin: 120px auto 80px;
}

#concept_products h2 span {
	border-bottom: 3px #646464 solid;
}

.concept_product_02_catch {
    font-size: 1.2rem;
    text-align: center;
    color: #FFF;
    font-weight: 400;
}

.concept_product_02_catch span{
    background: #353a76;
    padding: 10px 15px;
}

#concept_products h3 {
    text-align: center;
    font-size: 1.8rem;
}

#concept_products h3 span {
    display:block;
    font-size: 3.8rem;
    letter-spacing:.8rem
}

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

.key_ingredient_img {
    width: 32%;
}

.key_ingredient_txt {
    width: 65%;
    font-weight: 400
}

.key_ingredient_txt span {
    display: block;
    font-weight: 200;
    margin-top: 10px;
}

.key_ingredient_graph {
    margin: 100px auto 0;
    text-align: center;
    width: 80%;
    max-width: 800px;
}

.concept_product_02 p {
    margin-bottom: 50px;
}

section.concept_product_03 {
    margin-top: 150px;
}

.concept_product_03 .concept_flex {
    margin-top: 80px;
	display: unset;
}

.concept_product_03 .concept_flex_img {
	width: 70%;
	text-align: center;
	margin: 0 auto;
}

.concept_product_03 .concept_flex_txt {
	width: 100%;
}

.concept_product_03 .concept_flex_txt p {
    text-align: left;
    line-height: 2.2rem
}

@media (min-width: 981px) {
    .key_ingredients {
        display:flex;
        justify-content: space-evenly;
        flex-wrap: wrap;
    }
    .key_ingredient {
        width: 50%;
    }

.concept_product_03 .concept_flex {
    display: flex;
    justify-content: space-between;
    margin-top: 150px;
}

.concept_product_03 .concept_flex_img {
    width: 40%;
}

.concept_product_03 .concept_flex_txt {
    width: 58%;
    text-align: center;
}
}



@media (min-width: 981px) {
.concept_product_01,
.concept_product_02,
.concept_product_03 {
    margin-top: 150px;
}

p.concept_lead {
    text-align: center;
    font-size: 1.4rem;
}

.brand_concept_flex {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
}


#concept_products h3 {
    text-align: center;
    font-size: 1.8rem;
    line-height: 1.1;
}

#concept_products h3 span {
    display:block;
    font-size: 3.8rem;
    letter-spacing:.8rem
}

.concept_product_02_catch {
    font-size: 1.6rem;
}

}


/* ===== NEWS Page Styles ===== */
.post_content {
	padding: 0 10px	
}

ul.news-list {
    margin: 100px 0 0;
    padding: 0;
    list-style: none;
}

li.news-item {
    margin: 25px 0;
	padding-bottom: 10px;
	border-bottom: 1px #ccc solid;
}

time.news-date {
    margin-right: 2rem;
}

a.news-link {
    color: #666;
    text-decoration: none;
}

a.news-link:hover {
    color: #999;
}

.news_pagination {
    width: 100%;
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
}

@media (max-width: 980px) {
	span.news-title {
		display: block;
		font-size: 1.2rem;
		padding-top: 12px;
	}
}

@media (min-width: 981px) {
	.post_content {
		padding: 0;
	}
}


/* === COMPANY === */
.about_company {
    margin-top: 120px;
}

.about_company h1,
.about_company h2,
.about_company h3 {
    text-align: center;
}

.about_company h1{
    letter-spacing: .5rem;
    margin-top: 100px;
}

.about_company h2{
    margin-top: 100px;
    letter-spacing: .15rem;
    font-size: 1.2rem;
}

.about_company dl {
    margin-top:100px;
}

.company_flex {
    display: flex;
    border-bottom: 1px #c9c9c9 solid
}

.company_flex dt {
    width: 20%;
    background: #f3f3f3;
    padding: 20px 0 20px 20px;
}

.company_flex dd {
    width: 80%;
    padding: 20px 0;
    margin: 0 0 0 10px;
}

dl {
    border-top: 1px #333 solid;
}

/* === STORES === */
.stores {
    margin-top: 120px;
}

.stores h1,
.stores h2 {
    text-align: center;
}

.stores h1{
    letter-spacing: .5rem;
    margin-top: 100px;
}

.stores h2{
    margin-top: 100px;
    letter-spacing: .15rem;
    font-size: 1.2rem;
}

.stores_title {
    width: 320px;
    margin: 0 auto;
}

.online_store_list {}

.online_store_list {
    margin-top: 100px;
}

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

ul.onlinestores li {
    min-height:100px;
    margin-bottom: 50px
}

ul.onlinestores li span {
    display:block;
    padding-top: 10px;
    width: 15em;
    margin: 0 auto;
}

ul.onlinestores li img {
    width: 100%;
    max-width: 180px;
}


/* ===== Pager（丸 pill 型） ===== */
:root{
  --pager-accent: #555;   /* アクティブ塗り・枠の基調グレー */
  --pager-text:   #222;   /* 数字・矢印の文字色 */
  --pager-border: #d8d8d8;/* pillの枠線 */
  --pager-bg-hover: #efefef; /* ホバー時の薄グレー背景 */
}

@media (prefers-color-scheme: dark){
  :root{
    --pager-accent: #444;
    --pager-text:   #e6e6e6;
    --pager-border: #333;
    --pager-bg-hover: #222;
  }
}
.c-pager { margin: clamp(16px, 3vw, 28px) auto; }
.c-pager_list{
  display:flex; flex-wrap:wrap; gap:8px;
  justify-content:center; align-items:center;
  list-style:none; padding:0; margin:0;
}
.c-pager_item .page-numbers{
  display:inline-flex; align-items:center; justify-content:center;
  min-width: 40px; height: 40px; padding: 0 12px;
  border:1px solid var(--pager-border);
  border-radius: 9999px;
  font-size: 14px; line-height: 1; color: var(--pager-text);
  text-decoration: none; transition: all .2s ease;
}
.c-pager_item a.page-numbers:hover{
  background: var(--pager-bg-hover);
  border-color: var(--pager-accent);
}
.c-pager_item a.page-numbers:focus{
  outline: 3px solid color-mix(in oklab, var(--pager-accent), white 70%);
  outline-offset: 2px;
}
.c-pager_item.is-active .page-numbers{
  background: var(--pager-accent);
  border-color: var(--pager-accent);
  color: #fff; font-weight: 600; cursor: default;
}
.c-pager_item.is-dots .page-numbers{
  border: none; padding: 0 6px; min-width: auto; height:auto; color: #999;
}
.c-pager_item.is-prev .page-numbers,
.c-pager_item.is-next .page-numbers{ gap: 6px; }

@media (max-width: 480px){
  .c-pager_item:not(.is-prev):not(.is-next) .page-numbers{
    min-width: 36px; height: 36px; padding: 0 10px;
  }
}
.sr-only{
  position:absolute!important;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0;
}


/* === FAQ === */
.dopamy-faq-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.dopamy-faq-container * {
    box-sizing: border-box;
}

.dopamy-faq-title {
    font-size: 2em;
    text-align: center;
    margin: 50px auto 40px;
}

.dopamy-faq-title span {
	display:block;
	font-size: .8em;
}

.dopamy-category-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 30px 0;
    justify-content: center;
    border-bottom: 2px solid #e0e0e0;
    margin-bottom: 40px;
}

.dopamy-category-btn {
    padding: 12px 24px;
    background: white;
    border: 2px solid #353A76;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1em;
    font-weight: 500;
    color: #353A76;
}

.dopamy-category-btn:hover {
    background: #353A76;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(53, 58, 118, 0.3);
}

.dopamy-category-btn.active {
    background: #353A76;
    color: white;
}

.dopamy-category-section {
    display: none;
    animation: dopamyFadeIn 0.5s ease;
}

.dopamy-category-section.active {
    display: block;
}

@keyframes dopamyFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dopamy-section-title {
    font-size: 2em;
    color: #353A76;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid #353A76;
}

.dopamy-faq-item {
    margin-bottom: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.dopamy-faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.dopamy-faq-question {
    background: #f8f9fa;
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    transition: background 0.3s ease;
}

.dopamy-faq-question:hover {
    background: #e9ecef;
}

.dopamy-faq-question::before {
    content: "Q.";
    color: #353A76;
    font-weight: bold;
    margin-right: 10px;
    font-size: 1.2em;
}

.dopamy-faq-question::after {
    content: "▼";
    color: #353A76;
    font-size: 0.8em;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    margin-left: 10px;
}

.dopamy-faq-item.open .dopamy-faq-question::after {
    transform: rotate(180deg);
}

.dopamy-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
    background: white;
    opacity: 0;
}

.dopamy-faq-item.open .dopamy-faq-answer {
    max-height: 2000px;
    opacity: 1;
}

.dopamy-faq-answer-inner {
    padding: 20px;
}

.dopamy-faq-answer-content {
    white-space: pre-wrap;
    line-height: 1.8;
}

.dopamy-faq-answer-content::before {
    content: "A.";
    color: #FF5F00;
    font-weight: bold;
    margin-right: 10px;
    font-size: 1.1em;
}

@media (max-width: 768px) {
    .dopamy-faq-title {
        font-size: 1.8em;
    }

    .dopamy-category-nav {
        padding: 20px 0;
    }

    .dopamy-category-btn {
        font-size: 0.9em;
        padding: 10px 18px;
    }

    .dopamy-section-title {
        font-size: 1.5em;
    }
}


/* ==== Contact === */
/* biz contact */
.biz-contact_head {
	margin-top: 50px;
	text-align: center;
}

.biz-contact_head h2 {
	font-size: 2em;
	letter-spacing: .1rem;
	margin-bottom: 50px;
}

.biz-contact_head h2 span {
	display: block;
	font-size: .8em;
}

.contact_head h2 {
    text-align: center;
    font-size: 2em;
    margin-top: 50px;
}

.contact_head h2 span {
    display: block;
    font-size: .8em;
}

.contact_main {
    margin-top: 120px;
    text-align: center;
}

.contact_main a {
    display: inline-block;
    padding: 15px 20px;
    width: 300px;
    margin: 20px auto;
    cursor: pointer;
    color: #FFF;
}

.contact_faq,
.contact_customer,
.contact_business {
    margin-bottom: 100px;
}

.contact_faq a {
    background: #FF5F00;
    border: 1px #FF5F00 solid;
}

.contact_faq a:hover {
    background: #FFF;
    color: #FF5F00;
}

.contact_customer a,
.contact_business a {
    background: #353A76;
    border: 1px #353A76 solid;
}

.contact_customer a:hover,
.contact_business a:hover {
    background: #FFF;
    color: #353A76;
}

.contact_faq {
    background: #f4f4f4;
    padding: 25px 0;
}

.contact_customer h3,
.contact_business h3{
    text-align: left;
    border-bottom: 3px #999 solid;
    padding-bottom: 5px
}

@media (max-width:980px) {
    .contact_customer,
    .contact_business{
        padding: 0 10px;
    }
}


/* Contact Form Styling */
.contact-form-wrapper {
  max-width: 740px;
  margin: 0 auto;
  padding: 60px 20px;
  font-family: 'Suisse Works', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #333;
  background-color: transparent;
}

.contact-form-header h2 {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.3px;
  margin-bottom: 50px;
  color: #333;
}

.contact-form-body {
  width: 100%;
}

.form-row {
  margin-bottom: 40px;
}

.form-row.two-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  width: 100%;
}

.form-group label {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.2px;
  margin-bottom: 16px;
  color: #707070;
  display: block;
}

.form-control {
  width: 100% !important;
  padding: 18px 16px !important;
  border: 1px solid #d0d0d0 !important;
  border-radius: 0 !important;
  background: #ffffff !important;
  font-size: 13px !important;
  font-family: inherit;
  color: #333 !important;
  transition: border-color 0.2s ease;
  outline: none;
  box-sizing: border-box !important;
}

.form-control:focus {
  border-color: #999 !important;
}

/* Select dropdown styling */
select.form-control {
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  background-color: #ffffff !important;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23333' stroke-width='1'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 16px center !important;
  background-size: 10px 6px !important;
  padding-right: 40px !important;
  cursor: pointer;
}

/* セレクトボックスの疑似要素をリセット */
select.form-control::-ms-expand {
  display: none;
}ursor: pointer;
}

/* Textarea styling */
textarea.form-control {
  min-height: 320px !important;
  resize: vertical;
  line-height: 1.6 !important;
  font-family: inherit;
  padding: 18px 16px !important;
}

/* Submit button */
.form-submit {
  margin-top: 40px;
}

.submit-button {
  background-color: #333333 !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 15px 48px !important;
  font-size: 11px !important;
  font-weight: 500;
  letter-spacing: 1.2px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
  width: auto;
  min-width: 140px;
  text-transform: none;
  line-height: 1.4 !important;
}

.submit-button:hover {
  background-color: #000000 !important;
  color: #ffffff !important;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.submit-button:active {
  transform: translateY(0);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.submit-button:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(51, 51, 51, 0.2);
}

/* Contact Form 7 specific overrides */
.contact-form-wrapper p {
  margin: 0;
  padding: 0;
}

.contact-form-wrapper br {
  display: none;
}

.wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

.wpcf7-not-valid-tip {
  font-size: 11px;
  color: #d32f2f;
  margin-top: 6px;
}

.wpcf7-response-output {
  margin: 20px 0 0;
  padding: 12px 16px;
  border: none;
  font-size: 12px;
}

.wpcf7-validation-errors {
  background-color: #fff3cd;
  color: #856404;
  border-left: 3px solid #ffc107;
}

.wpcf7-mail-sent-ok {
  background-color: #d4edda;
  color: #155724;
  border-left: 3px solid #28a745;
}

/* Responsive design */
@media (max-width: 768px) {
  .form-row.two-columns {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-form-wrapper {
    padding: 40px 15px;
  }
}