@charset "UTF-8";
:root {
    /* css変数 */
    /* color */
    --text-color: #0099E2;
    --bg-color: #D8F2FF;
    --line-colorA: #FFEFA7;
    --line-colorB: #F5D1E2;
    --line-colorC: #0099E2;
    --white: #FFF;
}


/*-----------------------------------------------------------------
　　reset
-----------------------------------------------------------------*/

html,
body,
header,
footer,
main,
section,
article,
aside,
menu,
nav,
div,
h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
a,
address,
cite,
code,
q,
em,
figure,
img,
small,
strong,
dialog,
time,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    background: transparent;
}


/*-----------------------------------------------------------------
　　setting-start
-----------------------------------------------------------------*/

html {
    font-size: 62.5%;
    scroll-behavior:smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Noto Sans JP', sans-serif;
    font-weight: normal;
    font-style: normal;
    color: var(--text-color);
    font-size: 1.5rem;
    line-height: 1.7;
    letter-spacing: 0.8px;
    min-width: 900px;
}

* {
    margin: 0;
    padding: 0;
}


/*2001119渡邊:↓よくわからない*/

*,
*::before,
*::after {
    box-sizing: border-box;
    vertical-align: bottom;
}

li {
    list-style: none;
    transition: .3s;
}

a {
    text-decoration: none;
    transition: .3s;
    color: var(--text-color);
}

button {
    transition: .3s;
}

a:hover,
button:hover {
    opacity: .5;
}

button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    appearance: none;
}

h1 {
    font-size: 6rem;
    font-weight: bold;
}

h2 {
    font-size: 3.6rem;
    font-weight: bold;
    line-height: 1.7;
}

h3 {
    font-size: 2.4rem;
    font-weight: bold;
    line-height: 1.7;
}

@media screen and (max-width:768px) {
    body {
        min-width: 320px;
        font-size: 1.5rem;
    }
    h1 {
        font-size: 4rem;
    }
    h2 {
        font-size: 2rem;
    }
    h3 {
        font-size: 1.5rem;
    }
}


/*-----------------------------------------------------------------
　　setting-end
-----------------------------------------------------------------*/


/* header
/* ----------------------- */

header {
    /*width: 100vw;*/
    width: 100%;
    height: 100px;
    position: fixed;
    z-index: 1;
    background-color: var(--white);
    border-bottom: 1px var(--line-colorC) solid;
}

header>.header-wrapper {
    padding-top: 10px;
    display: flex;
    justify-content: space-between;
    max-width: 1000px;
    width: 85%;
    margin: 0 auto;
}

#head_logo{
    display: none;
}


/*2001119渡邊:水平方向の中央揃えがまだ*/

header>.header-wrapper div {
    text-align: center;
}

header>.header-wrapper .hd-icon img {
    height: 40px;
}

header>.header-wrapper .houkaken-logo img {
    height: 80px;
}

.header-wrapper-SP {
    display: none;
}


/* 亀澤追記 */

nav.globalMenuSp {
    display: none;
}

@media screen and (max-width:768px) {
    
    header>.header-wrapper{
        width:100%;
        max-width: 100%;
        display:flex;
        flex-wrap: wrap;
        padding: 0px;
    }
    
    #head_logo{
        display: block;
        text-align: center;
        line-height: 100%;
        margin: 5px 0px;
    }
    
    #head_logo img{
        width: auto;
        height: 40px;
    }
    
    .header-wrapper a{
        width:16%;
       
    }
    
    header>.header-wrapper .hd-icon img {
    height: 20px;
    }

    header>.header-wrapper .houkaken-logo img {
        height: 30px;
    }
    
    .gnavi_logo{
        display:none;
    }
    
    header>.header-wrapper p{
        font-size:2.75vw;
        margin-left:0px;
        text-align:center;
        letter-spacing: 0px;
        line-height: 150%;
    }
    
    
    header {
        width: 100vw;
        /*height: 80px;*/
        height: auto;
    }
    header>.header-wrapper {
        /*display: none;*/
    }
    .header-wrapper-SP {
       display: none;
        width: 100%;
        margin: 0 auto;
        text-align: center;
    }
    header>.header-wrapper-SP .houkaken-logo img {
        margin-top: 15px;
        width: 100px;
    }
    /*ハンバーガーボタン*/
    .hamburger {
        display: block;
        position: fixed;
        z-index: 3;
        right: 13px;
        top: 12px;
        width: 42px;
        height: 42px;
        cursor: pointer;
        text-align: center;
    }
    .hamburger span {
        display: block;
        position: absolute;
        width: 30px;
        height: 2px;
        left: 6px;
        background: var(--text-color);
        -webkit-transition: 0.3s ease-in-out;
        -moz-transition: 0.3s ease-in-out;
        transition: 0.3s ease-in-out;
    }
    .hamburger span:nth-child(1) {
        top: 10px;
    }
    .hamburger span:nth-child(2) {
        top: 20px;
    }
    .hamburger span:nth-child(3) {
        top: 30px;
    }
    /* ナビ開いてる時のボタン */
    .hamburger.active span:nth-child(1) {
        top: 16px;
        left: 6px;
        background: #fff;
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }
    .hamburger.active span:nth-child(2),
    .hamburger.active span:nth-child(3) {
        top: 16px;
        background: #fff;
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        transform: rotate(45deg);
    }
    nav.globalMenuSp {
        position: fixed;
        z-index: 2;
        top: 0;
        left: 0;
        color: #fff;
        background: rgba(0, 153, 226, 0.8);
        text-align: center;
        width: 100%;
        height: 100vh;
        /* opacity: 0; */
        transition: opacity .6s ease, visibility .6s ease;
    }
    nav.globalMenuSp ul {
        margin: 100px auto auto 0;
        padding: 0;
        width: 100%;
    }
    nav.globalMenuSp ul li {
        list-style-type: none;
        padding: 0;
        width: 100%;
        transition: .4s all;
    }
    nav.globalMenuSp ul li:last-child {
        padding-bottom: 0;
    }
    nav.globalMenuSp ul li:hover {
        background: rgba(0, 153, 226, 1);
    }
    nav.globalMenuSp ul li a {
        display: block;
        color: #fff;
        padding: 1em 0;
        text-decoration: none;
    }
    /* このクラスを、jQueryで付与・削除する */
    nav.globalMenuSp.active {
        /* opacity: 100; */
        /* 亀澤追記 */
        display: block;
    }
    /* メニューを開いている時に背面のスクロールをしないようにする */
    .no-scroll {
        overflow: hidden;
    }
}


/* ----------------------- */


/* main-setting
/* ----------------------- */

main {
    /*width: 100vw;*/
    width: 100%;
    padding-top: 100px;
    /*padding-bottom: 200px;*/
	padding-bottom: 100px;
}

@media screen and (max-width:768px) {
    main {
        padding-top: 80px;
        padding-bottom: 0px;
    }
}


/* ----------------------- */


/* span-setting
/* ----------------------- */

.yellow-marker {
    background: linear-gradient(transparent 60%, #FFEFA7 60%);
}

.pink-marker {
    background: linear-gradient(transparent 60%, #F5D1E2 60%);
}


/* ----------------------- */


/* article-setting
/* ----------------------- */

article {
    text-align: center;
    padding-top: 50px;
    padding-bottom: 50px;
}

article h2 {
    padding-top: 30px;
    padding-bottom: 30px;
}

article h3 {
    padding-top: 10px;
    padding-bottom: 10px;
}

article p {
    padding-top: 10px;
    padding-bottom: 10px;
}


/* ----------------------- */


/* section-setting
/* ----------------------- */

section {
    padding-top: 20px;
    padding-bottom: 20px;
}


/* ----------------------- */


/* （企画）ハートオパールの旅
/* ----------------------- */

.kikaku {
    /*background-color: var(--bg-color);*/
}

.kikaku-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    border: 3px solid #0099E2;
    border-radius: 20px;
	padding: 45px 65px;
}

.kikaku-ttl {
    transform: rotate(-7deg);
    position: relative;
    right: 200px;
    width: 100%;
}

.kikaku-ttl h3 {
    width: 240px;
    position: relative;
    left: 600px;
    background-color: var(--white);
}

.map img {
    width: 700px;
}

.HO {
    width: 100px;
    position: relative;
    left: 400px;
    bottom: 50px;
}

.kikaku-hakase-SP {
    display: none;
}

.kikaku-about {
}

.kikaku-about-ttl {
    text-align: left;
}
.kikaku-about-ttl > dl{
    display: flex;
	align-items: center;
	gap: 0 23px;
}
.kikaku-about-ttl dl dt{
	border-bottom: 1px solid var(--text-color);
}
.kikaku-about-ttl dl dt h3{
    width: 137px;
    background-color: var(--white);
    padding: 0;
	font-size: 2.5rem;
}
.kikaku-about-ttl dl dd{
	font-size: 3.0rem;
	font-weight: bold;
}

.kikaku-about-content {
    max-width: 1500px;
    width: 100%;
    margin: 54px auto 0;
    display: flex;
}

.kikaku-about-content p {
	font-size: 16px;
	line-height: 1.625;
	letter-spacing: 0.05em;
    text-align: left;
    background-color: var(--white);
    height: 100%;
    padding: 0 0px 30px 0;
}

.kikaku-about-content>p:nth-child(3) {
    display: none;
}

.kikaku-about-content img {
    height: 315px;
    margin-right: 80px;
	margin-left: 60px;
}

.kikaku-hakase-wabted{
	margin: 55px auto 0;
	padding: 40px 0 30px;
	background-color: #D8F2FF;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	position: relative;
}
.kikaku-hakase-wabted::before{
	content: '';
	display: block;
	background: url("images/wanted.png") no-repeat;
	background-size: contain;
	width: 184px;
	height: 245px;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	left: 105px;
}

.kikaku-hakase-wabted > h3{
	position: absolute;
	top: 20px;
	right: 230px;
	width: 185px;
	height: 56px;
	background-color: #0099E2;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	color: #fff;
	font-size: 1.9rem;
	letter-spacing: 0.05em;
}
.kikaku-hakase-wabted > dl{
	width: 92.9%;
    margin: 0 auto;
    border: 1px solid #0099E2;
    border-radius: 20px;
	padding: 65px;
	background-color: #fff;
}
.kikaku-hakase-wabted > dl dt{
	width: 420px;
    margin: 0 0 0 auto;
	font-size: 1.8rem;
	color: #000;
	font-weight: bold;
	text-align: left;
}

.hukidasi {
    width: 70%;
    /* position: relative; */
    left: 300px;
    top: 0px;
    margin-bottom: -50px;
    margin-top: 10px;
}

.twsample{
    width: 300px;
    text-align: center!important;
}

.mail{
    width: 200px;
    text-align: center!important;
}

.kikaku-rule {
    background-color: var(--white);
    width: 100%;
    margin: 0 auto;
    padding-right: 30px;
    padding-left: 20px;
}

.kikaku-rule-flex {
    display: flex;
    justify-content: space-between;
}

.kikaku-rule-content img {
    width: 100%;
    max-width: 300px;
}

.kikaku-rule-content p {
    margin-left: 30px;
}

.kikaku-thanks>.thanks-txt-flex{
    display: flex;
    flex-wrap: wrap;
   
}

.thanks-txt {
    background-color: var(--white);
    padding: 30px;
    /*width: 100%;*/
    /*margin: 20px;*/
    width:50%;
    border:20px solid #D8F2FF;
}

@media screen and (max-width:768px) {
    .thanks-txt {
        width:100%;
        border:0px solid #D8F2FF;
    }
}

.left{
    text-align: left;
}

.twitter-a {
    /*width: 200px;*/
    text-align: center;
    margin: auto;
}

@media screen and (max-width:768px) {
    .kikaku-wrapper {
        max-width: 90vw;
        margin: 0 auto;
		padding: 20px 5px;
    }
    .kikaku-ttl {
        position: static;
    }
    .kikaku-ttl h1 {
        font-size: 3.0rem;
    }
    .kikaku-ttl h3 {
        position: static;
        width: 150px;
        padding-left: 5px;
        margin-left: 30px;
    }
    .map img {
        width: 80%;
    }
    .HO {
        display: none;
    }
    .kikaku-hakase {
        display: none;
    }
    .kikaku-hakase-SP {
        display: block;
        width: 100px;
        position: relative;
        float: right;
        margin-right: 20px;
        ;
    }
	.kikaku-about-content {
		width: 85%;
		max-width: 90vw;
		margin: 25px auto 0;
	}	
    .kikaku-about-ttl {
        margin-left: 20px;
    }
	.kikaku-about-ttl > dl {
		flex-direction: column;
		align-items: baseline;
	}	
	.kikaku-about-ttl dl dt h3{
		font-size: 2rem;
	}
	.kikaku-about-ttl dl dd{
		font-size: 2rem;
	    padding-left: 10px;	
	}
    .kikaku-about-content p {
        display: none;
    }
    .kikaku-about-content>p:nth-child(3) {
        display: block;
		font-size: 15px;
    }
    .kikaku-rule>h2,
    p {
        text-align: left;
    }
	.kikaku-hakase-wabted{
		width: 75vw;
		margin: 225px auto 0;
	}
	.kikaku-hakase-wabted > h3{
		position: inherit;
        top: auto;
        right: auto;
		margin: 10px auto;
		text-align: center;
	}
	.kikaku-hakase-wabted::before{
		position: inherit;
		left: auto;
	}
	.kikaku-hakase-wabted > dl{
		padding: 15px;
	}	
	.kikaku-hakase-wabted > dl dt{
		width: auto;
		font-size: 1.5rem;
		letter-spacing: 0.1em;
	}	
	
    .hukidasi {
        width: 90%;
        position: relative;
        left: 60px;
        top: 1px;
        margin-bottom: -60px;
        margin-left: -50px;
    }
    .kikaku-rule-flex {
        display: block;
    }
    .kikaku-rule-content p {
        margin-left: 30px;
        text-align: center;
    }
    .kikaku-thanks h2,
    h3,
    p {
        text-align: left;
        margin-left: 0px;
    }
    .kikaku-thanks>.thanks-txt-flex{
        display: block;
    }
    .thanks-txt {
        margin: 0px;
        margin-bottom: 20px;
    }
}


/* ----------------------- */


/* 宝可研って？(article)
/* ----------------------- */

.about {
    position: relative;
    text-align: center;
}

.about-png {
    width: 1000px;
    margin: 0 auto;
}

.about-png-SP {
    display: none;
}

.modalArea {
    display: none;
}

button {
    display: none;
}

@media screen and (max-width:768px) {
    .about-png {
        display: none;
    }
    .about-png-SP {
        display: block;
        /*width: 414px;*/
        width: 100vw;
        height: auto;
        margin: 0 auto;
    }
    .modalArea.open {
        display: block;
    }
    button {
        display: block;
    }
    /* モーダルCSSここから */
    .modalArea {
        /* visibility: hidden; */
        /* displayではなくvisibility */
        /* opacity: 0; */
        position: fixed;
        z-index: 10;
        /* サイトによってここの数値は調整 */
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        transition: .4s;
        color: var(--text-color);
        padding: 0;
    }
    .modalContents {
        text-align: left;
    }
    .modalBg {
        width: 100%;
        height: 100%;
        background-color: rgba(30, 30, 30, 0.5);
    }
    .modalWrapper {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 80%;
        max-width: 800px;
        padding: 10px 30px;
        height: 50%;
        background-color: rgba(255, 255, 255, 0.9);
        overflow: auto;
    }
    .closeModal {
        position: absolute;
        top: 0.5rem;
        right: 1rem;
        cursor: pointer;
    }
    .is-show {
        /* モーダル表示用クラス */
        visibility: visible;
        opacity: 1;
    }
    /* モーダルCSSここまで */
    /* 以下ボタンスタイル */
    #openModal {
        background-color: var(--line-colorA);
        /*padding: 12px 45px;*/
        padding: 12px 0px;
        
        display: block;
        text-align: center;
        border-radius: 55px;
        border-style: none;
        color: var(--text-color);
        /*position: relative;*/
        top:145vw;
        left: 50%;
        
        position: absolute;
        /*bottom: 1055px;*/
        /*bottom: 955px;*/
        /*margin: 0 auto;*/
        margin-top: 0px;
        margin-bottom: 0px;
        width: 180px;
        margin-left: -90px;
    }
    /*-----メッセージ全文のモーダル↑----- */
}


/* ----------------------- */


/* twitter(article)
/* ----------------------- */

.twitter-content {
    width: 265px;
    height: 470px;
    margin: 0 auto;
    background-image: url(images/tw-widget.png);
    background-repeat: no-repeat;
    background-size: 100%;
}

.tw-img {
    display: flex;
    max-width: 320px;
    margin: 0 auto;
    z-index: 5;
    position: relative;
    top: 300px;
    margin-bottom: -170px;
}

.tw-img>.img1 {
    height: 170px;
    margin-left: 70px;
}

.tw-img>.img2 {
    height: 120px;
    position: relative;
    top: 50px;
}

.twitter-widget-link {
    position: relative;
    top: 50px;
    left:23px;
}

@media screen and (max-width:768px) {
    #twitter_container {
        position: relative;
    }
    .tw-img {
        position: absolute;
        top: auto;
        bottom: 0px;
        left: 50%;
        height: 85px;
        margin-left: -132.5px;
        margin-bottom: 0px;
        width: 265px;
    }
    .tw-img>.img1 {
        margin-left: 0px;
        height: 85px;
        position:absolute;
        right:0px;
        bottom: 0px;
    }

    .tw-img>.img2 {
        position:absolute;
        left:0px;
        bottom: 0px;
        height: 60px;
        top: auto;
    }
}

/* ----------------------- */


/* footer
/* ----------------------- */

footer {
    width: 100%;
    background-color: var(--bg-color);
    padding: 35px;
    height: 200px;
    border-top: 1px var(--line-colorC) solid;
}

footer .houkaken-logo img {
    height: 80px;
}

footer p {
    text-align: right;
}

@media screen and (max-width:768px) {
    footer {
        padding: 35px;
        height: 120px;
    }
    footer .houkaken-logo img {
        height: 50px;
    }
}


/* 201207追記（coming-soon.html)
/* ----------------------- */

.coming-soon {
    height: 100vh;
}

.dreamin_neko {
    width: 300px;
    margin: 20% 0;
    max-width: 70%;
}

/**********************************/
/*SNS埋め込みコンテナ*/

#sns_container{
    width: 1000px;
    margin: 0px auto;
    display: flex;
}

#sns_container h2{
    font-size: 3.6rem;
}

#instagram_container{
    width: 500px;
}

#instagram_container iframe{
    width: 100%;
    border: none;
}


#twitter_container{
     width: 500px;
}

@media screen and (max-width:768px) {
    #sns_container{
        width: 100vw;
        margin: 0px auto;
        display:block;
    }

    #sns_container h2{
        font-size: 3.6rem;
    }

    #instagram_container{
        width:100%;
    }

    #instagram_container iframe{
        width:100%;
        border: none;
    }
    #twitter_container{
        width:100%;
    }
}


/****************************************************/
/*TOPページ　商品開発室*/

@media screen and (min-width:769px) {


    .shopping_container{
        width: 1000px;
        margin: -90px auto 60px auto;
        border: 3px solid #0099E2;
        border-radius: 20px;
        background-image: url("images/top_shopping_img.png");
        background-repeat: no-repeat;
        background-position: right 50px top 20px;
        background-size: 120px auto;
    }

    .shopping_container h2{
        padding-bottom: 20px;
    }

    /**/

    .shopping_new_item{
        overflow: hidden;
        margin: 40px 0px 20px 0px;
    }

    .shopping_new_item ul{
        display: flex;
    }

    .shopping_new_item ul li{
        list-style-type: none;
        width: 25%;
    }

    .shopping_new_item ul li .thumbnail_box{
        width: 220px;
        margin: 0px auto;
    }

    .shopping_new_item ul li .thumtitle{
         line-height: 125% !important;
    }

    .shopping_new_item ul li .thumtitle a{
        color: #ff4e81;
        font-weight: bold;
        font-size: 13px;

    }

    .shopping_new_item ul li .price{
        color: #009fea;
        font-weight: bold;
    }

    .shopping_new_item ul li .price em{
        font-weight: normal;
        font-style:normal;
    }

    /**/

    .shopping_link_block{
        margin-bottom: 3em;
    }

    .shopping_link_block a{
        display: inline-block;
        padding: 1em 4em;
        background-color: #0099E2;
        color: #fff;
        font-size: 2rem;
        border-radius: 10px;
    }

}

/**/

#contact_container{
	margin-top: 3rem;
	overflow:hidden;
}

.link_btn_contact{
}

.link_btn_contact a{
	display: block;
	background-color: #0099E2;
	color: #fff;
	text-decoration: none;
	width: 500px;
	margin: 0px auto;
	border-radius: 10px;
}

.link_btn_contact a dl{
	display: table;
	margin: 0px auto;
	font-size: 2.5rem;
	padding: 1rem 0px;
}

.link_btn_contact a dl dt{
	display: table-cell;
	vertical-align: middle;
	padding: 0px 2rem;
}

.link_btn_contact a dl dd{
	display: table-cell;
	vertical-align: middle;
}


/*メールアイコン*/
.gg-mail,
.gg-mail::after {
    display: block;
    box-sizing: border-box;
    height: 14px;
    border: 2px solid
	
}

.gg-mail {
    overflow: hidden;
    transform: scale(var(--ggs,10));
    position: relative;
    width: 18px;
    border-radius: 2px
}

.gg-mail {
	--ggs: 1.5;
}

.gg-mail::after {
    content: "";
    position: absolute;
    border-radius: 3px;
    width: 14px;
    transform: rotate(-45deg);
    bottom: 3px;
    left: 0
}


@media screen and (max-width:768px) {
    .shopping_container{
        margin: -5rem auto 2rem auto;
        width: 90vw;
        border: 3px solid #0099E2;
        border-radius: 20px;
        background-image: url("images/top_shopping_img.png");
        background-repeat: no-repeat;
        background-position: right 5vw top 3vw;
        background-size: 13vw auto;
    }

    .shopping_container h2{
        padding-bottom: 1.2rem;
    }
    
    .shopping_txt{
        font-size: 1.2rem;
        text-align: center;
    }

    /**/

    .shopping_new_item{
        width: 85vw;
        margin-left: auto;
        margin-right: auto;
    }

    .shopping_new_item ul{
        display: flex;
        flex-wrap: wrap;
        width: 100%;
    }

    .shopping_new_item ul li{
        list-style-type: none;
        width: 50%;
    }

    .shopping_new_item ul li .thumbnail_box{
        margin: 0px auto;
        width: 96%;
    }

    .shopping_new_item ul li .thumtitle{
         line-height: 125% !important;
    }

    .shopping_new_item ul li .thumtitle a{
        color: #ff4e81;
        font-weight: bold;
        font-size: 1.25rem;
    }
    
    .shopping_new_item ul li .thumimg img{
        width: 100%;
        height: auto;
    }

    .shopping_new_item ul li .price{
        color: #009fea;
        font-weight: bold;
    }

    .shopping_new_item ul li .price em{
        font-weight: normal;
        font-style:normal;
        font-size: 1.25rem;
    }

    /**/

    .shopping_link_block{
        margin-bottom: 3rem;
    }

    .shopping_link_block a{
        display: inline-block;
        padding: 1em 4em;
        background-color: #0099E2;
        color: #fff;
        font-size: 1.3rem;
        border-radius: 10px;
    }
	
	/**/
	
	
	.link_btn_contact a{
		display: block;
		background-color: #0099E2;
		color: #fff;
		text-decoration: none;
		width: 80vw;
		margin: 0px auto;
		border-radius: 10px;
	}

	.link_btn_contact a dl{
		display: table;
		margin: 0px auto;
		font-size: 1.5rem;
		padding: 1rem 0px;
	}

	.link_btn_contact a dl dt{
		display: table-cell;
		vertical-align: middle;
		padding: 0px 2rem;
	}

	.link_btn_contact a dl dd{
		display: table-cell;
		vertical-align: middle;
	}
}


/****************************************************/
/*TOPページ　宝可研ブログ*/

@media screen and (min-width:769px) {


    .blog_container{
        width: 1000px;
        margin: -90px auto 60px auto;
        border: 3px solid #0099E2;
        border-radius: 20px;
        background-image: url("images/top_blog_img.png");
        background-repeat: no-repeat;
        background-position: right 50px top 20px;
        background-size: 120px auto;
    }

    .blog_container h2{
        padding-bottom: 20px;
    }

    /**/

    .blog_new_item{
        overflow: hidden;
        margin: 20px 0px 20px 0px;
    }

    .blog_new_item ul{
        width: 800px;
        overflow:hidden;
        margin-left: auto;
        margin-right: auto;
    }

    .blog_new_item ul li{
        list-style-type: none;
        margin-bottom: 1.5em;
        background-color: #D8F2FF;
        border-radius: 10px;
    }
    
    .blog_new_item ul li dl{
        text-align: left;
        padding: 1em 2em;
    }
    
    .blog_new_item ul li dl dt{
    }
    
    .blog_new_item ul li dl dt .new_item{
        font-weight: bold;
        color: #FF0004;
        padding-left: 0.5em;
    }
    
    .blog_new_item ul li dl dd{
        font-size: 1.75rem;
        line-height: 150%;
    }


    /**/

    .blog_link_block{
        margin-bottom: 3em;
    }

    .blog_link_block a{
        display: inline-block;
        padding: 1em 4em;
        background-color: #0099E2;
        color: #fff;
        font-size: 2rem;
        border-radius: 10px;
    }

}

@media screen and (max-width:768px) {
    .blog_container{
        margin: -5rem auto 2rem auto;
        width: 90vw;
        border: 3px solid #0099E2;
        border-radius: 20px;
        background-image: url("images/top_blog_img.png");
        background-repeat: no-repeat;
        background-position: right 5vw top 3vw;
        background-size: 13vw auto;
    }

    .blog_container h2{
        padding-bottom: 1.2rem;
    }
    
    .blog_txt{
        font-size: 1.2rem;
        text-align: center;
    }

    /**/

    .blog_new_item{
        overflow: hidden;
        margin: 20px 0px 20px 0px;
    }

    .blog_new_item ul{
        overflow:hidden;
        margin-left: 1em;
        margin-right: 1em;
    }

    .blog_new_item ul li{
        list-style-type: none;
        margin-bottom: 1.5em;
        background-color: #D8F2FF;
        border-radius: 10px;
    }
    
    .blog_new_item ul li dl{
        text-align: left;
        padding: 1em 2em;
    }
    
    .blog_new_item ul li dl dt{
    }
    
    .blog_new_item ul li dl dt .new_item{
        font-weight: bold;
        color: #FF0004;
        padding-left: 0.5em;
    }
    
    .blog_new_item ul li dl dd{
        font-size: 1.75rem;
        line-height: 150%;
    }

    /**/

    .blog_link_block{
        margin-bottom: 3rem;
    }

    .blog_link_block a{
        display: inline-block;
        padding: 1em 4em;
        background-color: #0099E2;
        color: #fff;
        font-size: 1.3rem;
        border-radius: 10px;
    }
	
}


/*2024-8-13　TOP追加*/

.kikaku-about-ttl dl dd.dd-flex{
	display: flex;
	align-items: center;
}

.kikaku-about-ttl dl dd span.bold{
	display: inline-block;
	width: 70px;
	line-height: 33px;
	border-radius: 5px;
	background: #E81C24;
	font-size: 20px;
	color: #fff;
	text-align: center;
	margin-left: 20px;
	
}

.kikaku-about-content02{
	display: flex;
	justify-content: space-between;
	width: 100%;
	margin: 45px auto 0;
	padding-bottom: 60px;
	border-bottom: 1px solid #0199E2;
}


.kikaku-about-content02 .img_area{
	width: 31.7919%;/*275*/
}

.kikaku-about-content02 .img_area img{
	width: 100%;
	height: auto;
}

.kikaku-about-content02 .kikaku-txtarea{
	width: 62.3121%;/*539*/
}

.kikaku-about-content02 .kikaku-txtarea p{
	font-size: 16px;
	line-height: 1.625;
	letter-spacing: 0.05em;
	text-align: justify;
	text-align: left;
}

.kikaku-about-content02 .kikaku-txtarea .kikaku-btn{
	width: 350px;
	margin: 45px auto 0;
}

.kikaku-about-content02 .kikaku-txtarea .kikaku-btn a{
	display: block;
	width: 100%;
	line-height: 75px;
	border-radius: 10px;
	background: #0199E2;
	font-size: 20px;
	color: #fff;
	text-align: center;
}

@media screen and (max-width:768px) {
	
	.kikaku-about-ttl dl{
		position: relative;
	}
	
	.kikaku-about-ttl dl dd.dd-flex{
		display: inline;
	}

	.kikaku-about-ttl dl dd span.bold{
		display: block;
		width: 56px;
		line-height: 26px;
		border-radius: 3px;
		font-size: 15px;
		position: absolute;
		top: 5px;
		left: 40%;
	}
	.kikaku-about-content02{
		flex-wrap: wrap;
		width: 85%;
		margin: 25px auto 0;
		padding-bottom: 45px;
	}
	
	.kikaku-about-content02 .img_area{
		order: 2;
		width: 50%;
		margin: 40px auto 0;
	}
	
	.kikaku-about-content02 .kikaku-txtarea{
		width: 100%;
	}
	
	.kikaku-about-content02 .kikaku-txtarea p{
		font-size: 15px;
	}
	
	.kikaku-about-content02 .kikaku-txtarea .kikaku-btn{
		width: 90%;
		margin: 20px auto 0;
	}
	
	.kikaku-about-content02 .kikaku-txtarea .kikaku-btn a{
		line-height: 50px;
		font-size: 15px;
	}
}

/****************************************************/
/*リサイクルースページ*/

article.recycle{
	font-family: "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
	text-align: left;
}

article.recycle .pc_hide{
	display: none;
}
article.recycle .sp_hide{
	display: block;
}

article.recycle h2.hd01{
	width: fit-content;
	font-size: 3.6rem;
	letter-spacing: 0.05em;
	line-height: 175%;
	background: linear-gradient(transparent 60%, #FFEFA7 60%);
	padding: 0;
}

/*ブロック01*/
article.recycle section.a01{
	width: 1000px;
	margin: 0 auto;
}
article.recycle section.a01 .flex{
	margin: 70px auto 0;
	display: flex;
	justify-content: space-between;
}
article.recycle section.a01 .flex .txts{
	width: 54%;
}
article.recycle section.a01 .flex .txts p{
	font-weight: 500;
}
article.recycle section.a01 .flex .txts > p:first-of-type{
	margin-top: 45px;
}
article.recycle section.a01 .flex .txts > p:not(:first-of-type){
	margin-top: 1em;
}
article.recycle section.a01 .flex .image{
	width: 38%;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

/*ブロック02*/
article.recycle section.a02{
	width: 1000px;
	margin: 165px auto 0;
}
article.recycle section.a02 .inner > .txt{
	margin: 45px auto 0;
}
article.recycle section.a02 .inner > .flex{
	margin: 45px auto 0;
	display: flex;
	justify-content: space-between;
}
article.recycle section.a02 .inner > .price{
	width: 600px;
	margin: 50px auto 0;
}
article.recycle section.a02 .inner > .price > dl{
	width: 100%;
	height: 140px;
	display: flex;
	flex-direction: column;
    justify-content: center;
	align-items: center;
	gap: 0 25px;
	font-weight: 700;
	letter-spacing: 0.05em;
	background-color: #FFEFA7;
	-webkit-border-radius: 70px;
	-moz-border-radius: 70px;
	border-radius: 70px;
}
article.recycle section.a02 .inner > .price > dl dt{
	color: #0099E2;
	font-size: 2.2rem;
}
article.recycle section.a02 .inner > .price > dl dd{
	color: #EB71AC;
	font-size: 4.0rem;
}
article.recycle section.a02 .inner > .price > p{
	font-size: 2.2rem;
	font-weight: 700;
	text-align: center;
}

/*ブロック03*/
article.recycle section.a03{
	width: 1000px;
	margin: 175px auto 0;
}
article.recycle section.a03 > .flex{
	margin: 50px auto 0;
	/*display: flex;*/
	justify-content: space-between;
}
article.recycle section.a03 > .flex .image{
	width: 42%;
}
article.recycle section.a03 > .flex .txts{
	width: 46%;
    margin-left: auto;
    margin-right: auto;
}
article.recycle section.a03 > .flex .txts .price{
	width: fit-content;
	margin-top: 30px;
	font-size: 3.5rem;
	font-weight: 700;
	display: flex;
	align-items: center;
	border-bottom: 2px solid #0099E2;
}
article.recycle section.a03 > .flex .txts .price span{
	font-size: 2.5rem;
}
article.recycle section.a03 > .flex .txts > dl{
	margin-top: 80px;
	display: flex;
	flex-direction: column;
	gap: 30px 0;
}
article.recycle section.a03 > .flex .txts > dl dt{
	width: 100%;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
}
article.recycle section.a03 > .flex .txts > dl dt a{
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	font-size: 2.0rem;
	color: #fff;
	position: relative;
}
article.recycle section.a03 > .flex .txts > dl dt.blue{
	height: 75px;
	background-color: #0199E2;
}
article.recycle section.a03 > .flex .txts > dl dt.blue a{
	justify-content: center;
}
article.recycle section.a03 > .flex .txts > dl dt.green{
	height: 130px;
	background-color: #06B555;
}
article.recycle section.a03 > .flex .txts > dl dt.green a{
	padding-left: 30px;
}
article.recycle section.a03 > .flex .txts > dl dt.green a::before{
	content: '';
	display: block;
	background: url("images/recycle07.jpg") no-repeat;
	width: 90px;
	height: 90px;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	right: 30px;
}


@media screen and (max-width:768px) {
	
article.recycle .pc_hide{
	display: block;
}
article.recycle .sp_hide{
	display: none;
}
	
article.recycle h2.hd01{
	font-size: 2.1rem;
	display: inline;
	padding: 0;
}	
	
article.recycle img{
	width: 100%;
	height: auto;
}	
article.recycle section.a01, article.recycle section.a02, article.recycle section.a03{
	width: 86.11%;
}
	
/*ブロック01*/
article.recycle section.a02{
	margin: 0 auto 0;
}
article.recycle section.a01 .flex{
	margin: 50px auto 0;
	display: block;
}
article.recycle section.a01 .flex .txts{
	width: 100%;
}
article.recycle section.a01 .flex .txts > p:first-of-type{
	margin-top: 20px;
}
article.recycle section.a01 .flex .txts > p:not(:first-of-type){
	margin-top: 0.5em;
}
article.recycle section.a01 .flex .image{
	width: 54.03%;
	margin: 15px auto 0;
	display: block;
}	
	
/*ブロック02*/
article.recycle section.a02{
	margin: 50px auto 0;
}
article.recycle section.a02 .inner > .txt{
	margin: 25px auto 0;
}
article.recycle section.a02 .inner > .flex{
	margin: 25px auto 0;
	display: flex;
	justify-content: space-between;
}
article.recycle section.a02 .inner > .flex img{
	width: calc( 33.3% - 8px );
}
	
article.recycle section.a02 .inner > .price{
	width: 100%;
	margin: 35px auto 0;
}
article.recycle section.a02 .inner > .price > dl{
	width: 100%;
	height: 85px;
	display: flex;
	flex-direction: column;
    justify-content: center;
	align-items: center;
	gap: 0;
	font-weight: 700;
	letter-spacing: 0.05em;
	background-color: #FFEFA7;
	-webkit-border-radius: 43px;
	-moz-border-radius: 43px;
	border-radius: 43px;
}
article.recycle section.a02 .inner > .price > dl dt{
	color: #0099E2;
	font-size: 1.5rem;
}
article.recycle section.a02 .inner > .price > dl dd{
	color: #EB71AC;
	font-size: 2.8rem;
}
article.recycle section.a02 .inner > .price > p{
	font-size: 1.4rem;
}
	
/*ブロック03*/
article.recycle section.a03{
	margin: 50px auto 0;
}
article.recycle section.a03 > .flex{
	margin: 20px auto 0;
	display: block;
}
article.recycle section.a03 > .flex .image{
	width: 67.74%;
	margin: 0 auto;
}
article.recycle section.a03 > .flex .txts{
	width: 100%;
}
article.recycle section.a03 > .flex .txts .price{
	width: fit-content;
	margin: 25px auto 0;
	font-size: 2.4rem;
	font-weight: 700;
	display: flex;
	align-items: center;
	border-bottom: 1px solid #0099E2;
}
article.recycle section.a03 > .flex .txts .price span{
	font-size: 1.7rem;
}
article.recycle section.a03 > .flex .txts > dl{
	margin-top: 30px;
	display: flex;
	flex-direction: column;
	gap: 20px 0;
}
article.recycle section.a03 > .flex .txts > dl dt{
	width: 100%;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}
article.recycle section.a03 > .flex .txts > dl dt a{
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	font-size: 1.4rem;
	color: #fff;
	position: relative;
}
article.recycle section.a03 > .flex .txts > dl dt.blue{
	height: 50px;
	background-color: #0199E2;
}
article.recycle section.a03 > .flex .txts > dl dt.blue a{
	justify-content: center;
}
article.recycle section.a03 > .flex .txts > dl dt.green{
	height: 90px;
	background-color: #06B555;
}
article.recycle section.a03 > .flex .txts > dl dt.green a{
	padding-left: 15px;
}
article.recycle section.a03 > .flex .txts > dl dt.green a::before{
	content: '';
	display: block;
	background: url("images/recycle07.jpg") no-repeat;
	background-size: contain;
	width: 60px;
	height: 60px;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	right: 15px;
}

	
	
	
	
	
	
}/*ここまで*/



/*  */

#recycle_item{
    overflow: hidden;
    margin: 60px auto;
}

#recycle_item ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
}

#recycle_item ul li{
    list-style-type: none;
    /*width: 25%;*/
    width: 33.3%;
    margin-bottom: 40px;
}

#recycle_item ul li .item_box{
    width: 230px;
    margin: 0px auto;
    border: 1px solid #0099E2;
    box-sizing: border-box;
    border-radius: 10px;
}

#recycle_item ul li .item_thumb{
    text-align: center;
    padding: 30px 0px 15px 0px;
}

#recycle_item ul li .item_title{
    display: block;
    text-indent: 0px;
}

#recycle_item ul li .item_title a{
    font-weight: bold;
    font-size: 1.1em;
    color: #ff4e81;
    padding-left: 0.5em;
    padding-right: 0.5em;
    text-align: center;
    display: block;
    line-height: 150%;
}

#recycle_item ul li .item_price{
    font-size: 1.5em;
    text-align: center;
    font-weight: bold;
    color:red;
    font-style: normal;
    margin-bottom: 15px;
}

#recycle_item ul li .item_price em{
    font-style: normal;
}


@media screen and (max-width:768px) {
    
    #recycle_item{
    overflow: hidden;
    margin: 60px auto 30px auto;
}
    #recycle_item ul{
    display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        align-items: flex-start;
    }

    #recycle_item ul li{
        list-style-type: none;
        width: 50%;
        margin-bottom: 20px;
    }
    
    #recycle_item ul li .item_box{
    width:90%;
    margin: 0px auto;
    border: 1px solid #0099E2;
    box-sizing: border-box;
    border-radius: 10px;
}
    
    #recycle_item ul li .item_thumb{
    text-align: center;
    padding: 0px 0px 10px 0px;
    border-radius: 10px 10px 0px 0px;
   overflow: hidden;
}
    
    #recycle_item ul li .item_title a{
    font-weight: bold;
    font-size: 1em;
    color: #ff4e81;
    padding-left: 0.5em;
    padding-right: 0.5em;
    text-align: center;
    display: block;
    line-height: 150%;
}

#recycle_item ul li .item_price{
    font-size: 1.2em;
    text-align: center;
    font-weight: bold;
    color:red;
    font-style: normal;
    margin-bottom:0.5em;
}

#recycle_item ul li .item_price em{
    font-style: normal;
}
    
}

/*  */


