/*
Theme Name:   Sigma Original Theme
Template:     twentytwentytwo
Version:      1.0.0
*/

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP&family=Noto+Serif+JP:wght@500&family=Work+Sans:wght@600&family=Zen+Kaku+Gothic+New:wght@500&display=swap');

/**
 * Base
 * ----------------------------------------------------------------------------
 */
 
/* begin clearfix */

.clearfix:after {
    content: "."; 
    display: block; 
    height: 0; 
    clear: both; 
    visibility: hidden;
}

.clearfix {display: inline-table;}

/* Hides from IE-mac \*/
* html .clearfix {height: 1%;}
.clearfix {display: block;}

/* End hide from IE-mac */

/* end clearfix */

@font-face {
	font-family: 'interstate', 'Noto Sans JP', sans-serif;
}

body {
	background-color: #fff;
	color:#333;
	font-family: 'interstate', 'Noto Sans JP', sans-serif;
	_display: inline;
	_zoom:1;
	margin:0;
	font-size: 1em;
	line-height:1.8em;
	overflow-x: hidden;
}

a {
	color: #009999;
	text-decoration: none;
}

a:active,
a:hover {
	color: #333;
	outline: 0;
}

a:hover {
	text-decoration: none;
}

img {
	border:0;
}

h1,h2,h3,h4,h5,h6,p,ul,ol,li,dl,dd,dt {
	margin: 0px;
	padding: 0px;
	font-weight: normal;
	list-style-type: none;
	line-height:150%;
}

h1:not(.site-title):before,
h2:before {
  height: 0;
  margin: 0;
}

table {
	border-bottom: none;
	border-collapse: collapse;
	border-spacing: 0;
	font-size: 100%;
	line-height:normal;
	margin: 0;
	width: 100%;
}

th,
td {
	font-weight: normal;
	text-align:center;
	padding:0;
}

/**
 * Header
 * ----------------------------------------------------------------------------
 */

#header {
    width: 100%;
    font-family: 'Noto Sans JP', sans-serif;
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.header_content {
	width:95%;
	margin:0 auto;
	clear:both;
	font-family: 'interstate', 'Noto Sans JP', sans-serif;
}

.header_sitename {
	float:left;
	margin:20px 50px 20px 0px;
	font-size: .5em;
	line-height:1.0em;
	color:#009999;
	width:20%;
}

.header_sitename p {
	text-align: left;
}

.header_sitename a {
	color:#009999;
}


.header_navi {
	float:right;
	margin-top: 40px;
	width:70%;
}

.header_navi p,
.header_navi .gtranslate_wrapper {
	float: right;
	margin-left: 20px;
}

/************* Gtranslate *************/

.gtranslate_wrapper .glink {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background-color: #999;
	color: #fff;
	font-size: 12px;
	font-weight: bold;
	text-decoration: none;
	margin-left: 6px;
	margin-bottom: 10px;
}

.gtranslate_wrapper .glink.gt-current-lang {
	background-color: #f3acc1;
	color: #333;
}

.gtranslate_wrapper .glink:hover {
	opacity: 0.8;
}

/************* dropdown menu *************/

.menu {
    position: relative;
    width: 100%;
    margin: 0 auto 10px;
	display:flex;
	justify-content: space-between;
    flex-wrap: nowrap;
}

.menu > li {
    float: left;
	width: 100%;
	margin-top: 10px;
	margin-right: 1em;
	font-size: .9em;
	font-family: 'interstate', sans-serif;
	text-align: center;
	letter-spacing: 0.1em;
	padding: 5px 20px;
	white-space: nowrap;
  	display: inline-block;
}

.menu > li:last-of-type {
	margin-right: 0;
}

.menu > li a {
	display: block;
    color: #111;
}

.menu > li a:hover {
    color: #fff;
}

.menu > li:hover {
    background: #7ac9c8;
    -webkit-transition: all .5s;
    transition: all .5s;
}


/* 下矢印 */
.init-bottom:after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    margin: 0 0 3px 15px;
    border-right: 1px solid #999;
    border-bottom: 1px solid #999;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* floatクリア */
.menu:before,
.menu:after {
    content: " ";
    display: table;
}

.menu:after {
    clear: both;
}

.menu {
    *zoom: 1;
}

/* single */
.menu > li.menu__single {
    position: relative;
}

li.menu__single ul.menu__second-level {
    position: absolute;
    top: 40px;
    width: 100%;
    background:rgba(255,255,255,0.9);
	border:#999 solid 1px;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
	padding: 0;
}

li.menu__single:hover ul.menu__second-level {
    top: 40px;
    visibility: visible;
    opacity: 1;
}


/************* mobile *************/

#nav-drawer {
	position: relative;
}

/*チェックボックス等は非表示に*/
.nav-unshown {
	display:none;
}

/*アイコンのスペース*/
#nav-open {
	display: inline-block;
	width: 30px;
	height: 22px;
	vertical-align: middle;	
}

/*ハンバーガーアイコンをCSSだけで表現*/
#nav-open span, #nav-open span:before, #nav-open span:after {
	position: absolute;
	height: 3px;/*線の太さ*/
	width: 25px;/*長さ*/
	border-radius: 3px;
	background: #333;
	display: block;
	content: '';
	cursor: pointer;
}

#nav-open span:before {
	bottom: -8px;
}
#nav-open span:after {
	bottom: -16px;
}

/*閉じる用の薄黒カバー*/
#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: auto;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;/*最前面に*/
	width: 90%;/*右側に隙間を作る（閉じるカバーを表示）*/
	max-width: 330px;/*最大幅（調整してください）*/
	height: 100%;
	background: #fff;/*背景色*/
	transition: .3s ease-in-out;/*滑らかに表示*/
	-webkit-transform: translateX(-105%);
	transform: translateX(-105%);/*左に隠しておく*/
	font-family: 'interstate', sans-serif;
}

/*チェックが入ったらもろもろ表示*/
#nav-input:checked ~ #nav-close {
	display: block;/*カバーを表示*/
	opacity: .5;
}

#nav-input:checked ~ #nav-content {
	-webkit-transform: translateX(0%);
	transform: translateX(0%);/*中身を表示（右へスライド）*/
	box-shadow: 6px 0 25px rgba(0,0,0,.15);
}

@media screen and ( max-width:479px )
{
	#header li {
	padding:10px;
	border-bottom: #333 dotted 1px;
	float:none;
	}
	
	.header_sitename {
	float:left;
	margin:15px 0 0 10px;
	width:80%;
	}
	
	.header_navi {
	float:right;
	width:15%;
	margin-top:25px;
	}

	.header_navi p {
	float:none;
	margin:30px 0 0 20px;
	}
}

/**
 * Footer
 * ----------------------------------------------------------------------------
 */

#footer {
	background:#eeeeee;
	margin-top:100px;
	position: relative;
	font-family: 'Noto Sans JP', sans-serif;
}

#footer_inner {
	width:90%;
	margin:auto;
	padding:40px 0 20px;
}

.footer_link {
	width:33%;
	float:left;
	margin-top: 10px;
}

.footer_link a {
	color: #333;
}

.footer_link a:hover {
	color: #666;
}

.footer_link p {
	padding-bottom: 20px;
}

.footer_link ul {
	margin-top:10px;
}

.footer_link li {
	padding-bottom:10px;
	font-size: .6em;
}

.copyright {
	margin: 20px auto;
	padding-bottom: 20px;
	font-size: .6em;
	color: #666;
}

.pagetop {
	position: absolute;
  	bottom:205;
  	right:50;
	z-index: 2;
}

/************* mobile *************/
@media screen and ( max-width:479px )
{
	.footer_link {
	width:100%;
	float: none;
	margin-left: 0;
	}
	
	.pagetop {
  	bottom:335;
	right:30;
	}
}

/**
 * Index
 * ----------------------------------------------------------------------------
 */

/************* Index Title *************/
.title-section {
	position: relative;
	padding: 2rem 1rem 1.5rem;
	text-align: center;
	overflow: hidden;
	margin-top: 50px;
}

/* 背景の英字（装飾用） */
.bg-text {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 72px;
	font-weight: 700;
	letter-spacing: 0.15em;
	color: #000;
	opacity: 0.07;
	user-select: none;
	pointer-events: none;
	text-transform: uppercase;
	font-family: 'interstate', sans-serif;
}

/* 日本語タイトル（ブラウザテキスト） */
.ja-title {
	position: relative;
	font-size: 22px;
	font-weight: 600;
	color: #333;
	margin: 0 0 1.25rem;
	letter-spacing: 0.05em;
	z-index: 1;
	font-family: 'Noto Sans JP', sans-serif;
}

/* グラデーションボーダー */
.gradient-border01,
.gradient-border02,
.gradient-border03,
.gradient-border04,
.gradient-border05,
.gradient-border06,
.gradient-border07,
.gradient-border08
{
	height: 5px;
	background: linear-gradient(to right, #7ac9c8, #f3acc1);
	border-radius: 2px;
	margin-left:auto;
	margin-right:auto;
}

.gradient-border01 {width: 31%;}
.gradient-border02 {width: 42%;}
.gradient-border03 {width: 50%;}
.gradient-border04 {width: 80%;}
.gradient-border05 {width: 40%;}
.gradient-border06 {width: 37%;}
.gradient-border07 {width: 34%;}
.gradient-border08 {width: 15%;}

/************* ACTION *************/

.person-section {
  display: flex;
  align-items: stretch;
  min-height: 280px;
}
.person-section.reverse {
  flex-direction: row-reverse;
}

.person-photo {
  width: 40%;
  flex-shrink: 0;
  overflow: hidden;
}
.person-photo img {
  width: 80%;
  object-fit: cover;
  display: block;
}

.person-content {
  width: 55%;
  padding: 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
  position: relative;
}

/* reverseクラスあり（写真:右）→ テキストエリアの右端にグリーン */
.person-section.reverse .person-content::after {
  content: '';
  position: absolute;
  left: 0;
  top: 10%;
  height: 80%;
  width: 10px;
  background: #7ac9c8;
}

/* reverseクラスなし（写真:左）→ テキストエリアの左端にピンク */
.person-section:not(.reverse) .person-content::after {
  content: '';
  position: absolute;
  right: 0;
  top: 10%;
  height: 80%;
  width: 10px;
  background: #f3acc1;
}

.person-role {
  color: #666;
  margin: 0 0 2px;
  line-height: 1.6;
}

.person-name {
  font-size: 18px;
  font-weight: bold;
  margin: 0 0 1rem;
}

.person-comment {
  line-height: 1.9em;
  margin: 0 0 1.25rem;
}

.person-btn {
	display: inline-flex;
	align-items: center;
	padding: 8px 30px;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: .3em;
	border: none;
	cursor: pointer;
	text-decoration: none;
	width: fit-content;
	color: #fff;
	border-radius: 3px;
	font-family: 'interstate', sans-serif;
}

.person-section.reverse .person-btn {
  background: #7ac9c8;
}
.person-section:not(.reverse) .person-btn {
  background: #f3acc1;
}

/************* mobile *************/

@media screen and ( max-width:479px )
{
	.title-section {
	margin-top: 40px;
	}

	/* 背景の英字（装飾用） */
	.bg-text {
	font-size: 50px;
	letter-spacing: 0.13em;
	}

	/* 日本語タイトル（ブラウザテキスト） */
	.ja-title {
	font-size: 20px;
	margin: 0 0 1.25rem;
	}

	/* グラデーションボーダー */
	.gradient-border01 {width: 66%;}
	.gradient-border02 {width: 90%;}
	.gradient-border03 {width: 100%;}
	.gradient-border04 {width: 95%;}
	.gradient-border05 {width: 85%;}
	.gradient-border06 {width: 80%;}
	.gradient-border07 {width: 72%;}
	.gradient-border08 {width: 33%;}
	
	/* ===== カードカルーセル ===== */
	.sp-wrap {
	max-width: 380px;
	margin: 0 auto;
	position: relative;
	overflow: hidden;  /* 追加：はみ出た部分を隠す */
	}

	.sp-track {
	display: flex;
	transition: transform 0.35s ease;
	}

	.sp-slide {
	flex: 0 0 100%;
	box-sizing: border-box;
	padding: 0 8px;
	}

	/* カード枠（奇数：グリーン） */
	.sp-card {
	border: 2px solid #7ac9c8;
	border-radius: 12px;
	padding: 1.5rem 1.25rem 1.75rem;
	box-sizing: border-box;
	}

	/* カード枠（偶数：ピンク） */
	.sp-slide:nth-child(even) .sp-card {
	border-color: #f3acc1;
	}

	/* 名前エリアの縦ボーダー */
	.sp-header {
	display: flex;
	align-items: stretch;
	margin-bottom: 1rem;
	}

	.sp-header-bar {
	width: 3px;
	border-radius: 2px;
	background: #7ac9c8;
	flex-shrink: 0;
	margin-right: 12px;
	}

	.sp-slide:nth-child(even) .sp-header-bar {
	background: #f3acc1;
	}

	.sp-role {
	color: #666;
	margin: 0 0 2px;
	line-height: 1.6;
	}

	.sp-name {
	font-size: 18px;
	font-weight: bold;
	margin: 0;
	}

	.sp-photo {
	width: 100%;
	border-radius: 6px;
	overflow: hidden;
	margin-bottom: 1.25rem;
	background: #ccc;
	}

	.sp-photo img {
	width: 100%;
	height: auto;
	display: block;
	}

	.sp-comment {
	font-size: 14px;
	line-height: 1.85;
	margin: 0 0 1.5rem;
	}

	.sp-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 12px;
	font-size: 16px;
	font-weight: 500;
	border-radius: 4px;
	text-decoration: none;
	color: #fff;
	background: #7ac9c8;
	}

	.sp-slide:nth-child(even) .sp-btn {
	background: #f3acc1;
	}

	.sp-arrow {
	position: absolute;
	top: 38%;
	right: 4px;
	transform: translateY(-50%);
	width: 32px;
	height: 32px;
	border: none;
	border-radius: 50%;
	background: #888;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 2;
	font-size: 14px;
	}

	.sp-arrow.prev {
	right: auto;
	left: 4px;
	display: none;
	}

	.sp-dots {
	display: flex;
	justify-content: center;
	gap: 6px;
	margin-top: 12px;
	}

	.sp-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #ddd;
	transition: background 0.2s;
	}

	.sp-dot.active {
	background: #999;
	}
}

/************* EVIDENCE *************/
.container_evidence ul {
	margin: 20px auto;
	clear: both;
	display: flex;
	flex-wrap: nowrap;
	padding: 0;
	list-style: none;
}
.container_evidence ul li {
	width: 100%;
	margin-right: 2.6em;
}
.container_evidence ul li:last-of-type {
	margin-right: 0;
}
.container_evidence h3 {
	background: #7ac9c8;
	color: #fff;
	font-size: 1.2em;
	font-family: 'Noto Sans JP', sans-serif;
	padding: 10px 20px;
	text-align: center;
	margin: 0;
}
.container_evidence h4 {
	background: linear-gradient(to right, #7ac9c8, #f3acc1);
	color: #fff;
	font-size: 1.2em;
	font-family: 'Noto Sans JP', sans-serif;
	padding: 10px 20px;
	text-align: center;
	margin: 0;
}
.container_evidence p {
	margin: 0;
}
.container_evidence img {
	border: #7ac9c8 solid 3px;
	width: 100%;
	height: auto;
	display: block;
	box-sizing: border-box;
}

/************* mobile *************/

@media screen and ( max-width:479px )
{
	.container_evidence ul {
		flex-wrap: wrap;
		width: 80%;
	}

	.container_evidence ul li {
		width: 100%;
		margin: 0 auto;
		margin-bottom: 1.5em;
	}

	.container_evidence ul li:last-of-type {
		margin-bottom: 0;
	}
	
	.container_evidence h3 {
	font-size: 1.0em;
	}
}

/************* MOMENT *************/

.circle-grid-section {
    max-width: 1120px;
    margin: 0 auto;
    padding: 40px 20px;
    box-sizing: border-box;
    overflow-x: hidden; /* 念のための横はみ出し防止 */
}

.circle-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 24px;
    row-gap: 48px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.circle-grid li {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 円の外枠（サイズと正方形維持を担当） */
.circle-item {
    position: relative;
    width: 100%;
    max-width: 230px;
}

/* padding-top:100% で「幅 = 高さ」を強制する（aspect-ratio不要） */
.circle-item::before {
    content: "";
    display: block;
    padding-top: 100%;
}

/* グラデーションボーダー部分 */
.circle-item__border {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    border-radius: 50%;
    padding: 4px;
    background: linear-gradient(135deg, #7ac9c8 0%, #f3acc1 100%);
    box-sizing: border-box;
}

.circle-item__inner {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    background: #fff;
}

.circle-item__inner img {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    /* 画像が読み込めなかった場合にaltテキストが表示されるのを防ぐ */
    color: transparent;
    font-size: 0;
    text-indent: -9999px;
}

/* 写真の上に薄い白レイヤーをのせて文字を読みやすくする */
.circle-item__inner::after {
    content: "";
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background: rgba(255, 255, 255, 0.4);
    z-index: 1;
}

.circle-item__text {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 14px;
    line-height: 1.4;
    color: #1a1a1a;
}

.circle-item__text .kw,
.circle-item__text .sub,
.circle-item__text .line2 {
    /* 白いアウトライン（文字を読みやすくする） */
    -webkit-text-stroke: 1px #fff;
    paint-order: stroke fill;
    text-shadow:
        -1px -1px 0 #fff,
         1px -1px 0 #fff,
        -1px  1px 0 #fff,
         1px  1px 0 #fff,
         0   -1px 0 #fff,
         0    1px 0 #fff,
        -1px  0   0 #fff,
         1px  0   0 #fff;
}

.circle-item__text .kw {
    font-size: 22px;
    font-weight: 700;
}

.circle-item__text .sub {
    font-size: 14px;
    font-weight: 500;
}

.circle-item__text .line2 {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-top: 2px;
}

/************* mobile *************/

@media screen and ( max-width:479px )
{
	.circle-grid-section {
        padding: 24px 12px;
    }

    .circle-grid {
        grid-template-columns: repeat(3, 1fr);
        column-gap: 12px;
        row-gap: 24px;
    }

    .circle-item {
        max-width: 110px;
    }

    .circle-item__text {
        padding: 0 8px;
    }

    .circle-item__text .kw {
        font-size: 15px;
    }

    .circle-item__text .sub,
    .circle-item__text .line2 {
        font-size: 10px;
    }

    .circle-item__text .line2 {
        margin-top: 1px;
    }
}

/************* LINE UP *************/
.lineup_section {
    background: linear-gradient(to right, #7ac9c8, #f3acc1);
    border-radius: 30px;
    padding: 50px;
    max-width: 1200px;
    margin: 50px auto 0;
    box-sizing: border-box;
}

.lineup_header {
    text-align: center;
    color: #fff;
    margin-bottom: 40px;
}

.lineup_card {
    background: #fff;
    border-radius: 24px;
    padding: 44px 32px 40px;
}

.lineup_intro {
    text-align: center;
    font-size: 18px;
    line-height: 1.8;
    margin: 0 0 40px;
}

/* ===== 商品グリッド（2列×2段） ===== */
.lineup_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 40px;
    list-style: none;
    margin: 0 0 40px;
    padding: 0;
}

.lineup_item {
    display: flex;
    gap: 16px;
}

.lineup_item img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}

.lineup_item_info {
    flex: 1;
    min-width: 0;
}

.lineup_item_name {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 2px;
}

.lineup_item_spec {
    font-size: 14px;
    margin: 0 0 6px;
}

.lineup_item_desc {
    font-size: 13px;
    color: #555;
    line-height: 1.6;
    margin: 0 0 6px;
}

.lineup_item_price {
    font-size: 14px;
    margin: 0 0 2px;
}

.lineup_item_material {
    font-size: 12px;
    color: #555;
    margin: 0 0 12px;
}

.lineup_btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 4px;
    background: #7ac9c8;
}

.lineup_btn.is-pink {
    background: #f3acc1;
}

.lineup_btn:hover {
    opacity: 0.85;
}

/* ===== 特徴ボックス（3つ） ===== */
.lineup_features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 36px;
}

.lineup_feature_box {
    border: 1.5px solid #7ac9c8;
    border-radius: 16px;
    padding: 22px 12px;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.6;
}

.lineup_feature_box .sub {
    display: block;
    font-size: 10px;
    font-weight: 400;
    color: #777;
    margin-top: 8px;
    line-height: 1.4;
}

/* ===== CTAボタン ===== */
.lineup_cta {
    text-align: center;
}

.lineup_cta a {
    display: inline-block;
    background: linear-gradient(to right, #7ac9c8, #f3acc1);
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    padding: 16px 80px;
    border-radius: 999px;
}

.lineup_cta a:hover {
    opacity: 0.85;
}

/************* mobile *************/

@media screen and ( max-width:479px )
{
    .lineup_section {
        border-radius: 20px;
        padding: 32px 15px 15px;
    }

    .lineup_card {
        border-radius: 18px;
        padding: 28px 18px 28px;
    }

    .lineup_intro {
        font-size: 13px;
        margin-bottom: 24px;
    }

    .lineup_grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 28px;
    }

    .lineup_item img {
        width: 120px;
        height: 120px;
    }

    .lineup_features {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 28px;
    }

    .lineup_feature_box {
        padding: 16px 12px;
        font-size: 14px;
    }

    .lineup_cta a {
        width: 100%;
        box-sizing: border-box;
        padding: 14px 0;
        font-size: 14px;
    }
}

/************* FAQ *************/

.faq_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 24px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.faq_item {
    --faq-color: #7ac9c8; /* デフォルト＝グリーン（下のnth-childで上書きされる） */
    border: 2px solid var(--faq-color);
    border-radius: 16px;
    box-sizing: border-box;
    overflow: hidden;
}

.faq_question {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    cursor: pointer;
    list-style: none;
}

/* Chrome/Safariのデフォルト三角マークを非表示 */
.faq_question::-webkit-details-marker {
    display: none;
}

.faq_q_mark {
    font-size: 20px;
    font-weight: 900;
    color: #111;
    flex-shrink: 0;
}

.faq_q_text {
    flex: 1;
    font-size: 15px;
    color: #333;
    line-height: 1.6;
}

/* ＋ / − アイコン */
.faq_icon {
    position: relative;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--faq-color);
}

.faq_icon::before,
.faq_icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    background: currentColor;
    transform: translate(-50%, -50%);
    transition: transform 0.25s ease;
}

.faq_icon::before {
    width: 18px;
    height: 2px;
}

.faq_icon::after {
    width: 2px;
    height: 18px;
}

/* 開いた時は縦線を倒して「−」にする */
.faq_item[open] .faq_icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

.faq_answer {
    padding: 0 24px 24px 58px; /* 左の「Q」の位置に揃えるインデント */
    font-size: 14px;
    line-height: 1.8;
    color: #555;
    overflow: hidden; /* アニメーション中にはみ出さないように */
}

/* ===== PC版（2列）：2件（1行）ごとにグリーン/ピンクを交互に ===== */
.faq_grid li:nth-child(4n+3) .faq_item,
.faq_grid li:nth-child(4n+4) .faq_item {
    --faq-color: #f3acc1;
}

/************* mobile *************/

@media screen and ( max-width:479px )
{
    .faq_grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* PC用の4件区切りをリセットし、1件ごとの交互配色に切り替え */
    .faq_grid li:nth-child(4n+3) .faq_item,
    .faq_grid li:nth-child(4n+4) .faq_item {
        --faq-color: #7ac9c8;
    }

    .faq_grid li:nth-child(even) .faq_item {
        --faq-color: #f3acc1;
    }

    .faq_question {
        padding: 16px 18px;
        gap: 12px;
    }

    .faq_q_text {
        font-size: 14px;
    }

    .faq_answer {
        padding: 0 18px 18px 48px;
        font-size: 13px;
    }
}

/**
 * Post
 * ----------------------------------------------------------------------------
 */

/* ===== 投稿ループ：共通CSS ===== */
.post_container ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px 24px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.post_container li {
    list-style: none;
}

/* 日付 */
.post_date {
    display: block;
    font-size: 13px;
    color: #888;
    margin-bottom: 8px;
}

/* サムネイル（縦横比を一定に保つ：padding-topハック） */
.post_thumb {
    display: block;
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 4px;
    background: #eee;
}

.post_thumb::before {
    content: "";
    display: block;
    padding-top: 66%; /* サムネイルの縦横比（必要に応じて調整） */
}

.post_thumb img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* カテゴリバッジ */
.post_cat {
    margin: 14px 0 8px;
}

.cat_badge {
    display: inline-block;
    border: 1px solid #7ac9c8; /* デフォルト＝グリーン（未設定の新カテゴリもこの色になる） */
    color: #7ac9c8;
    border-radius: 999px;
    font-size: 12px;
    line-height: 1;
    padding: 7px 16px;
    text-decoration: none;
    background: #fff;
}

.cat_badge:hover {
    opacity: 0.75;
}

/* ピンク表示にしたいカテゴリのスラッグをここに追加 */
.cat-beauty,
.cat-medical {
    border-color: #f3acc1;
    color: #f3acc1;
}

.cat-beauty:visited,
.cat-medical:visited {
    border-color: #f3acc1;
    color: #f3acc1;
}

/* グリーン表示のvisited */
.cat-oxygen:visited,
.cat-sports:visited,
.cat-study:visited {
    border-color: #7ac9c8;
    color: #7ac9c8;
}

/* タイトル */
.post_title {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

.post_title a {
    color: #333;
    text-decoration: none;
}

.post_title a:hover {
    text-decoration: underline;
}

/************* mobile *************/

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

	.post_container ul {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 12px;
    }

    .post_date {
        font-size: 11px;
        margin-bottom: 6px;
    }

    .post_cat {
        margin: 10px 0 6px;
    }

    .cat_badge {
        font-size: 10px;
        padding: 5px 10px;
    }

    .post_title {
        font-size: 12px;
        line-height: 1.5;
    }
}

/**
 * Single
 * ----------------------------------------------------------------------------
 */

/* ===== 記事ヘッダー（タイトル・カテゴリ・日付） ===== */
.article_header_top,
.article_header_top2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 12px;
    column-gap: 20px;
    padding-bottom: 10px;
    margin: 50px auto 30px;
	width: 90%;
}

.article_header_top {
	border-bottom: #7ac9c8 solid 3px;
}

.article_header_top2 {
	border-bottom: #f3acc1 solid 3px;
}

.article_title,
.article_title2 {
    display: flex;
    align-items: center;
    gap: 0;
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.4;
	font-family: 'Noto Sans JP', sans-serif;
}

.article_title .title_dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #7ac9c8;
    flex-shrink: 0;
	margin-right: 12px;
}

.article_title2 .title_dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #f3acc1;
    flex-shrink: 0;
	margin-right: 12px;
}

.article_meta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.article_date {
    font-size: 13px;
    color: #666;
    white-space: nowrap;
}

/* ===== 投稿本文内 ===== */

.single_box01 {
    width: 90%;
    margin: 0 auto;
}

.single_box01 p {
    line-height: 1.9;
}

.single_box01 h2 {
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: 700;
    margin: 56px 0 24px;
    padding: 6px 0 16px 16px;
    border-left: 6px solid #7ac9c8;
    border-bottom: 1px solid #7ac9c8;
    line-height: 1.5;
	font-family: 'Noto Sans JP', sans-serif;
}

.single_box01 h3 {
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: 700;
    margin: 56px 0 24px;
    padding: 6px 0 10px 16px;
    border-bottom: 2px solid #7ac9c8;
    line-height: 1.5;
	font-family: 'Noto Sans JP', sans-serif;
}

/* ピンクカテゴリ（beauty / medical）のh2・h3 */
.single_box01.is-pink h2 {
    border-left-color: #f3acc1;
    border-bottom-color: #f3acc1;
}

.single_box01.is-pink h3 {
    border-bottom-color: #f3acc1;
}

/* 最初のH2の上の余白を少し詰める場合は下記を調整 */
.single_box01 h2:first-child {
    margin-top: 0;
}

.single_box01 img {
    display: block;
    width: 60%;
    height: auto;
    margin: 24px auto;
}

/************* mobile *************/

@media screen and ( max-width:479px )
{
    .article_header_top,
	.article_header_top2 {
        flex-direction: column;
        align-items: flex-start;
		padding-bottom: 10px;
		width: 100%;
    }

    .article_title,
	.article_title2 {
        font-size: 18px;
    }
	
	.single_box01 {
    width: 100%;
	}
	
	.single_box01 h2 {
        font-size: 17px;
        padding: 4px 0 12px 12px;
        margin: 40px 0 20px;
    }
	
	.single_box01 img {
    width: 90%;
    height: auto;
	}
}

/**
 * Single Post
 * ----------------------------------------------------------------------------
 */

.single_post {
    font-size: 15px;
    line-height: 1.9;
    color: #333;
}

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

/* ===== 第1階層（1. 2. ...） ===== */
.single_post ol.lv1 > li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
}

.single_post ol.lv1 > li:last-child {
    margin-bottom: 0;
}

.single_post ol.lv1 > li > .num {
    width: 28px;
    flex-shrink: 0;
}

.single_post ol.lv1 > li > .txt {
    flex: 1;
    min-width: 0;
}

.single_post ol.lv1 > li > .txt > p {
    margin: 0 0 16px;
}

.single_post ol.lv1 > li > .txt > p:last-child {
    margin-bottom: 0;
}

/* ===== 第2階層（(1) (2) ...） ===== */
.single_post ol.lv2 {
    margin-top: 12px;
}

.single_post ol.lv2 > li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
}

.single_post ol.lv2 > li:last-child {
    margin-bottom: 0;
}

.single_post ol.lv2 > li > .num {
    width: 40px;
    flex-shrink: 0;
}

.single_post ol.lv2 > li > .txt {
    flex: 1;
    min-width: 0;
}

.single_post ol.lv2 > li > .txt > p {
    margin: 0 0 8px;
}

.single_post ol.lv2 > li > .txt > p:last-child {
    margin-bottom: 0;
}

/* ===== 第3階層（・ 箇条書き） ===== */
.single_post ul.lv3 {
    margin-top: 8px;
}

.single_post ul.lv3 > li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 6px;
}

.single_post ul.lv3 > li:last-child {
    margin-bottom: 0;
}

.single_post ul.lv3 > li > .num {
    width: 20px;
    flex-shrink: 0;
}

.single_post ul.lv3 > li > .txt {
    flex: 1;
    min-width: 0;
}

/* 番号リストの前にある通常の説明文 */
.single_post > p.lead {
    margin: 0 0 20px;
}

@media (max-width: 600px) {
    .single_post {
        font-size: 14px;
    }

    .single_post ol.lv1 > li > .num {
        width: 22px;
    }

    .single_post ol.lv2 > li > .num {
        width: 34px;
    }
}

/**
 * Content
 * ----------------------------------------------------------------------------
 */

/************* content *************/
.content_main {
	width:90%;
	margin:0 auto;
	clear:both;
	font-family: 'Noto Sans JP', sans-serif;
}


/************* mobile *************/

@media screen and ( max-width:479px )
{
	.content_main {
	width:95%;
	}
}

/**
 * Category Header
 * ----------------------------------------------------------------------------
 */

.cate_header01,
.cate_header02 {
	position: relative;
}

.cate_header01 h1 {
	position: absolute;
	top: 110;
	left: 70;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 1.7em;
	font-weight: 600;
}

.cate_header01 h2 {
	position: absolute;
	top: 80;
	left: 70;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 1.1em;
	font-weight: 400;
}

.cate_header02 h1 {
	position: absolute;
	top: 110;
	left: 70;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 1.7em;
	font-weight: 600;
	color: #fff;
	text-shadow:1px 1px 3px #000;
}

.cate_header02 h2 {
	position: absolute;
	top: 80;
	left: 70;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 1.1em;
	font-weight: 400;
	color: #fff;
	text-shadow:1px 1px 3px #000;
}

/************* mobile *************/

@media screen and ( max-width:479px )
{
	.cate_header01 h1,
	.cate_header02 h1 {
	top: 50;
	left: 20;
	font-size: .8em;
	}

	.cate_header01 h2,
	.cate_header02 h2 {
	top: 30;
	left: 20;
	font-size: .6em;
	}
}

/**
 * Privacy Policy
 * ----------------------------------------------------------------------------
 */

.policy_list {
    font-size: 15px;
    line-height: 1.9;
    color: #333;
}

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

/* ===== 第1階層（1. 2. ...） ===== */
.policy_list ol.lv1 > li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 24px;
}

.policy_list ol.lv1 > li:last-child {
    margin-bottom: 0;
}

.policy_list ol.lv1 > li > .num {
    width: 28px;
    flex-shrink: 0;
}

.policy_list ol.lv1 > li > .txt {
    flex: 1;
    min-width: 0;
}

.policy_list ol.lv1 > li > .txt > p {
    margin: 0 0 16px;
}

.policy_list ol.lv1 > li > .txt > p:last-child {
    margin-bottom: 0;
}

/* ===== 第2階層（(1) (2) ...） ===== */
.policy_list ol.lv2 {
    margin-top: 12px;
}

.policy_list ol.lv2 > li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 14px;
}

.policy_list ol.lv2 > li:last-child {
    margin-bottom: 0;
}

.policy_list ol.lv2 > li > .num {
    width: 40px;
    flex-shrink: 0;
}

.policy_list ol.lv2 > li > .txt {
    flex: 1;
    min-width: 0;
}

.policy_list ol.lv2 > li > .txt > p {
    margin: 0 0 8px;
}

.policy_list ol.lv2 > li > .txt > p:last-child {
    margin-bottom: 0;
}

/* ===== 第3階層（・ 箇条書き） ===== */
.policy_list ul.lv3 {
    margin-top: 8px;
}

.policy_list ul.lv3 > li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 6px;
}

.policy_list ul.lv3 > li:last-child {
    margin-bottom: 0;
}

.policy_list ul.lv3 > li > .num {
    width: 20px;
    flex-shrink: 0;
}

.policy_list ul.lv3 > li > .txt {
    flex: 1;
    min-width: 0;
}

/* 番号リストの前にある通常の説明文 */
.policy_list > p.lead {
    margin: 0 0 20px;
}

@media (max-width: 600px) {
    .policy_list {
        font-size: 14px;
    }

    .policy_list ol.lv1 > li > .num {
        width: 22px;
    }

    .policy_list ol.lv2 > li > .num {
        width: 34px;
    }
}

/**
 * Common Style
 * ----------------------------------------------------------------------------
 */

/************* title *************/

.title01 {
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 500;
	color: #7ac9c8;
	border-left: #7ac9c8 solid 7px;
	padding: 5px 10px 10px 20px;
	margin: 30px auto 10px;
}

/************* mobile *************/

@media screen and ( max-width:479px )
{
	.title01 {
	font-size: 1.0em;
	margin-top: 50px;
	}
}

/************* float *************/
.float_l01 {
	float: left;
	width: 45%;
  }

.float_r01 {
	float: right;
	width: 45%;
  }

.float_l02 {
	float: left;
	width: 35%;
  }

.float_r02 {
	float: right;
	width: 60%;
  }

.float_l03 {
	float: left;
	width: 60%;
  }

.float_r03 {
	float: right;
	width: 35%;
  }

.float_l04 {
	float: left;
	width: 10%;
  }

.float_r04 {
	float: right;
	width: 85%;
  }

/************* float mobile *************/

@media screen and ( max-width:479px )
{
	.float_l01,
	.float_r01,
	.float_l02,
	.float_r02,
	.float_l03,
	.float_r03,
	.float_l04,
	.float_r04 {
	float: none;
	width: 100%;
  	}
}

/************* button *************/
.radius_btn01,
.radius_btn02 {
    border-radius: 30px;
	padding: 5px 40px;
	font-size: .8em;
	font-family: 'interstate', sans-serif;
	color: #333;
  }

a.radius_btn01:visited,
a.radius_btn02:visited {
	color: #333;
}

.radius_btn01 {
	background:#7ac9c8;
  }

.radius_btn02 {
	background:#f3acc1;
  }

.radius_btn03 {
	display: inline-flex;
	align-items: center;
	padding: 8px 30px;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: .3em;
	border: none;
	cursor: pointer;
	text-decoration: none;
	width: fit-content;
	color: #fff;
	border-radius: 3px;
	background:#7ac9c8;
	font-family: 'interstate', sans-serif;
}

/************* button mobile *************/

@media screen and ( max-width:479px )
{
	.radius_btn01,
	.radius_btn02 {
	padding: 10px 40px;
  }
}

/************* table *************/
table.table01 {
	background: #f6f8f6;
	font-family: 'Noto Sans JP', sans-serif;
	padding: 20px;
	margin-top: 5px;
	font-size: .9em;
}

table.table01 td {
	border-bottom:#666 solid 1px;
	padding:10px 10px 10px 30px;
	text-align:left;
}

table.table01 th {
	padding:10px;
	border-bottom:#fff solid 1px;
	background: #7ac9c8;
	color: #fff;
	text-align: left;
	padding:10px 10px 10px 30px;
}

table.table02 {
	font-family: 'Noto Sans JP', sans-serif;
	padding: 20px;
	margin-top: 10px;
	border-top: #666 solid 1px;
}

table.table02 td {
	border-bottom:#666 solid 1px;
	border-right:#666 solid 1px;
	border-left:#666 solid 1px;
	border-top: none;
	padding:10px;
	text-align:left;
}

table.table02 th {
	background: #eeeeee;
	padding:10px;
	border:#fff solid 1px;
	font-weight: 500;
	padding:10px;
}

/************* mobile *************/

@media screen and ( max-width:479px )
{
	table.table01 {
	margin: 5px auto 0;
	}
	
	table.table01 td {
	padding-left:10px;
	}

	table.table01 th {
	padding-left:10px;
	
	}
	
	table.table02 {
	margin-left: auto;
	margin-right: auto;
	font-size:.7em;
	}

}

/************* margin padding *************/
.margin10 {
	margin:10px;
}

.margin_top10 {
	margin-top:10px;
}

.margin_top15 {
	margin-top:15px;
}

.margin_top20 {
	margin-top:20px;
}

.margin_top30 {
	margin-top:30px;
}

.margin_top50 {
	margin-top:50px;
}

.margin_bottom10 {
	margin-bottom:10px;
}

.margin_right30 {
	margin-right:30px;
}

.margin_left30 {
	margin-left:30px;
}

.margin_right40 {
	margin-right:40px;
}

.margin_left40 {
	margin-left:40px;
}

.margin_right50 {
	margin-right:50px;
}

.margin_left50 {
	margin-left:50px;
}

.margin_auto {
	margin-left: auto;
	margin-right: auto;
}

.padding01 {
	padding:0 70px 40px;
}

/************* mobile *************/

@media screen and ( max-width:479px )
{
	.spmargin_top30 {
	margin-top:30px;
	}
	
	.spmargin_top_minus10 {
	margin-top:-10px;
	}
	
	.spmargin_top_minus50 {
	margin-top:-50px;
	}

	.padding01 {
	padding:20px;
	}
}

/************* fonts *************/

.font_red {
	color:#c00;
}

.font_gray {
	color:#666;
}

.font_green {
	color:#7ac9c8;
}

.font_pink {
	color:#f3acc1;
}

.font_white {
	color:#fff;
}

.bold {
	font-weight:bold;
}

.x_large {
	font-size:1.6em;
}

.large {
	font-size:1.2em;
}

.large2 {
	font-size:1em;
}

.midium {
	font-size:.8em;
}

.small {
	font-size:.6em;
}

.font_normal {
	font-family: 'Noto Sans JP', sans-serif;
}

.font_en {
	font-family: 'interstate', sans-serif;
}

.letter_spacing01 {
	letter-spacing: .3em;
}

.marker-bold {
  background: linear-gradient(transparent 50%, #ffff7f 50%);
}

/************* mobile *************/

@media screen and ( max-width:479px )
{
	.sp_font {
	font-size: .9em;
	}
	
	.large2 {
	font-size: .9em;
	}
}

/************* box *************/

.box_green01 {
	border: #7ac9c8 solid 2px;
	border-radius: 30px;
	padding: 30px;
}

.box_green01 p {
	line-height: 1.9em;
}

.box_green02 {
	background: #7ac9c8;
	border-radius: 4px;
	padding: 15px 30px;
	color: #fff;
	font-weight: 700;
}

.box_pink01 {
	border: #f3acc1 solid 2px;
	border-radius: 30px;
	padding: 30px;
	position: relative;
	overflow: hidden;
	min-height: 420px;
	display: flex;
	align-items: center;
}

/* 背景画像 */
.box_pink01::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: url('images/difference_bg.jpg');
	background-size: cover;
	background-position: center;
	z-index: 0;
}

.box_pink01 .box_pink01-text {
	position: relative;
	z-index: 2;
	max-width: 45%;
	line-height: 1.9;
}

.box_pink02 {
	background: #f3acc1;
	border-radius: 4px;
	padding: 15px 30px;
	font-weight: 700;
}

.box01 {
	width: 80%;
	margin-left: auto;
	margin-right: auto;
}

.box02 {
	width: 100%;
	background:#f6f8f6;
	padding: 5px 20px;
	border-bottom: #666 solid 1px;
}

/************* mobile *************/

@media screen and ( max-width:479px )
{
	.box_pink01 {
		min-height: auto;
		padding: 20px;
		display: block;
		background-color: #e1e3e2;
	}

	/* 背景画像を下半分にだけ配置 */
	.box_pink01::before {
		top: auto;
		bottom: 0;
		height: 50%;
		background-position: center;
	}

	/* テキストは通常表示（重ならず上に配置） */
	.box_pink01 .box_pink01-text {
		position: relative;
		z-index: 2;
		max-width: 100%;
		margin-bottom: 50%;
	}
	
	.box01 {
	width: 100%;
	margin: 0 auto;
	}

	.sp_box01 {
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	}
}

/************* border *************/
.border_top_bottom01 {
	padding: 5px 0;
	border-top: #666 dotted 1px;
	border-bottom: #666 dotted 1px;
}

.category_bottom01 {
	height: 4px;
	background: linear-gradient(to right, #7ac9c8, #f3acc1);
	border-radius: 1px;
	width: 100px;
}

.category_bottom02 {
	height: 4px;
	background: linear-gradient(to right, #7ac9c8, #f3acc1);
	border-radius: 1px;
	width: 150px;
}

/************* breadcrumbs *************/
.breadcrumbs{
	margin:5px auto;
	font-size:.8em;
	float: left;
}

.breadcrumbs_home{
	float: left;
	margin:0;
	margin: 13px 10px 0 0;
}

/************* form *************/
span.wpcf7-list-item { display: block; }

.wpcf7-textarea { width:100%; }

input.waku1 {
	width:70%;
	padding:5px;
	border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
	border: #666 solid 1px;
}

textarea.waku1 {
	width:90%;
	padding:5px;
	border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
	border: #666 solid 1px;
}

.wpcf7 input[type="submit"] {
	border-radius: 30px;
	padding: 10px 70px;
	font-size: 1.0em;
	background:#7ac9c8;
	border: #7ac9c8 solid 1px;
	color: #fff;
	font-family: 'Noto Sans JP', sans-serif;
	margin: 20px auto;
}

.wpcf7 input[type="submit"]:hover {
	background:#9adbda;
}

.wpcf7 input:hover {
	background:#fffef1;
}

.wpcf7 textarea:hover {
	background:#fffef1;
}

.wpcf7 form .wpcf7-response-output {
    margin: 2em 0.5em 1em;
    padding: 0.2em 1em;
    border: 2px solid #7ac9c8;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: .8em;
	text-align: center;
}
  
.wpcf7 form.sent .wpcf7-response-output {
    border-color: #7ac9c8;
	color: #7ac9c8;
}
  
.wpcf7 form.spam .wpcf7-response-output {
    border-color: #7ac9c8;
}
  
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
    border-color: #cc0000;
	color: #cc0000;
}

/************* mobile *************/

@media screen and ( max-width:479px )
{
	input.waku1 {
	width:100%;
	}

	textarea.waku1 {
	width:100%;
	}
}

/**
 * Display
 * ----------------------------------------------------------------------------
 */
.pc {
    display: inline;
}

.sma {
    display: none;
}

/************* mobile *************/

@media screen and ( max-width:479px )
{
	.pc {
    display: none;
	}
	.sma {
    display: inline;
	}
}

/************* etc *************/
.clear {
	clear:both;
	height: 1px;
}

.grecaptcha-badge {
	visibility: hidden;
}

