/*
	Theme Name: HTML5 Blank
	Theme URI: http://html5blank.com
	Description: HTML5 Blank WordPress Theme
	Version: 1.4.3
	Author: Todd Motto (@toddmotto)
	Author URI: http://toddmotto.com
	Tags: Blank, HTML5, CSS3

	License: MIT
	License URI: http://opensource.org/licenses/mit-license.php
*/

/*------------------------------------*\
    MAIN
\*------------------------------------*/

/* global box-sizing */
*,
*:after,
*:before {
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	-webkit-font-smoothing:antialiased;
	font-smoothing:antialiased;
	text-rendering:optimizeLegibility;
}
/* html element 62.5% font-size for REM use */
html {
	font-size:62.5%;
}
body {
	color:#444;
}
/* clear */
.clear:before,
.clear:after {
    content:' ';
    display:table;
}

.clear:after {
    clear:both;
}
.clear {
    *zoom:1;
}
img {
	max-width:100%;
	vertical-align:bottom;
}
a {
	color:#444;
	text-decoration:none;
}
a:hover {
	color:#444;
}
a:focus {
	outline:0;
}
a:hover,
a:active {
	outline:0;
}
input:focus {
	outline:0;
	border:1px solid #04A4CC;
}

p,h1,h2,h3,h4,h5,ul,ol,li,table,th,td,img,a,input,label{
	font-family: 'Noto Sans JP', "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
	font-size:16px;
	font-optical-sizing: auto;
	font-style: normal;
	line-height:1.8;
	font-weight:normal;
	padding:0;
	margin:0;
}
ul li{
	list-style-type:none;
}
a img{
	transition:0.3s;
}
a img:hover{
	opacity:0.8;
}

.grecaptcha-badge { visibility: hidden; }

/*------------------------------------*\
    STRUCTURE
\*------------------------------------*/

/* wrapper */
.wrapper {
	width:100%;
	margin:0 auto;
}
.area{
	background: #fff;
	background: -webkit-linear-gradient(to left, #8f94fb, #4e54c8);
	position:fixed;
	top:0;
	width: 100%;
	height:100vh;
	z-index:-10;
}
.circles{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.circles li{
	position: absolute;
	display: block;
	list-style: none;
	width: 20px;
	height: 20px;
	background: rgba(226, 233, 239, 0.8);
	animation: animate 25s linear infinite;
	bottom: -150px;
}

.circles li:nth-child(1){
    left: 25%;
    width: 80px;
    height: 80px;
    animation-delay: 0s;
}


.circles li:nth-child(2){
    left: 10%;
    width: 20px;
    height: 20px;
    animation-delay: 2s;
    animation-duration: 12s;
}

.circles li:nth-child(3){
    left: 70%;
    width: 20px;
    height: 20px;
    animation-delay: 4s;
}

.circles li:nth-child(4){
    left: 40%;
    width: 60px;
    height: 60px;
    animation-delay: 0s;
    animation-duration: 18s;
}

.circles li:nth-child(5){
    left: 65%;
    width: 20px;
    height: 20px;
    animation-delay: 0s;
}

.circles li:nth-child(6){
    left: 75%;
    width: 110px;
    height: 110px;
    animation-delay: 3s;
}

.circles li:nth-child(7){
    left: 35%;
    width: 150px;
    height: 150px;
    animation-delay: 7s;
}

.circles li:nth-child(8){
    left: 50%;
    width: 25px;
    height: 25px;
    animation-delay: 15s;
    animation-duration: 45s;
}

.circles li:nth-child(9){
    left: 20%;
    width: 15px;
    height: 15px;
    animation-delay: 2s;
    animation-duration: 35s;
}

.circles li:nth-child(10){
    left: 85%;
    width: 150px;
    height: 150px;
    animation-delay: 0s;
    animation-duration: 11s;
}



@keyframes animate {

    0%{
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 0;
    }

    100%{
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
        border-radius: 50%;
    }

}


/* menu */
.menu-btn {
	border-radius:5px 0 0 5px;
    position: fixed;
    top: 90px;
    right: 0;
    display: flex;
    height: 60px;
    width: 60px;
    justify-content: center;
    align-items: center;
    z-index: 90;
    background-color: #3584bb;
	cursor: pointer;
}
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background-color: #ffffff;
    position: absolute;
}
.menu-btn span:before {
    bottom: 8px;
}
.menu-btn span:after {
    top: 8px;
}
#menu-btn-check:checked ~ .menu-btn span {
    background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
}
#menu-btn-check:checked ~ .menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
}
#menu-btn-check:checked ~ .menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
}
#menu-btn-check {
    display: none;
}
.menu-content {
	width: 50%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 100%;/*leftの値を変更してメニューを画面外へ*/
	z-index: 80;
	background-color:rgba(250,250,250,0.95);
	transition: all 0.5s;/*アニメーション設定*/
}
.menu-content ul {
	margin:0 auto;
    padding: 70px 10px 0;
	width:90%;
	max-width:400px;
}
.menu-content ul li {
    border-bottom: solid 1px #444;
    list-style: none;
}
.menu-content ul li a {
    display: block;
    width: 100%;
    font-size: 16px;
    box-sizing: border-box;
    color:#444;
    text-decoration: none;
    padding: 9px 15px 10px 0;
    position: relative;
	transition:0.3s;
	line-height:1.6;
}
.menu-content ul li a::before {
    content: "";
    width: 7px;
    height: 7px;
    border-top: solid 2px #444;
    border-right: solid 2px #444;
    transform: rotate(45deg);
    position: absolute;
    right: 11px;
    top: 34px;
}
.menu-content ul li a:hover{
	color:#3584bb;
}
.menu-content ul li a span{
	color:#3584bb;
	font-size:12px;
}
#menu-btn-check:checked ~ .menu-content {
	left: 50%;/*メニューを画面内へ*/
}

/* header */
.header {
	margin:0 auto;
	padding:20px 0;
	width:95%;
}

.header .logo_area{
	display:flex;
}
.header .logo_area .logo{
	margin-right:40px;
	width:151px;
}
.header .logo_area .tel{
	background-image:url(img/tel_icon.png);
	background-size:30px;
	background-repeat:no-repeat;
	background-position:left center;
	padding-left:40px;
}
.header .logo_area .tel p{
	color:#3b5b78;
	font-size:24px;
}
.header .text_area{
	margin-top:20px;
}
.header .text_area p{
	font-size:13px;
	letter-spacing:0.16em;
}
.header .text_area p span{
	color:#3b5b78;
	font-weight:bold;
}

#side_icon{
	position:fixed;
	top:150px;
	right:0;
}
#side_icon p{
	background-color:#3b5b78;
	border-radius:5px 0 0 5px;
	margin-top:10px;
	text-align:center;
	width:60px;
}
#side_icon p a{
	display:block;
	padding:14px 0 18px 0;
}

/* footer */
.foot_back{
	background-image:url(img/foot_back.png);
	background-repeat:repeat-x;
	background-size:auto 100%;
	background-position:center center;
	height:150px;
	margin-top:100px;
	width:100%;
}
.footer {
	background-color:#e2e9ef;
	padding:0;
}
.footer h2{
	color:#3b5b78;
	font-size:26px;
	font-weight:600;
	letter-spacing:0.1em;
	text-align:center;
}
.footer .access_area{
	background-color:#fff;
	border-radius:20px;
	display:flex;
	margin:40px auto 0 auto;
	width:95%;
	max-width:1600px;
}
.footer .access_area .left{
	margin:0 auto;
	padding:50px 20px 0 20px;
	width:50%;
	max-width:540px;
}
.footer .access_area .left p{
	color:#615a53;
}
.footer .access_area .left .tel_area{
	display:flex;
	margin-top:5px;
	padding-bottom:20px;
}
.footer .access_area .left .tel_area p span{
	background-color:#3b5b78;
	border-radius:30px;
	color:#fff;
	font-size:15px;
	margin-right:10px;
	padding:0 10px;
}
.footer .access_area .left .tel_area p:first-child{
	margin-right:30px;
}
.footer .access_area .left .address_area{
	border-top:1px solid #5e92c2;
	padding-top:20px;
}
.footer .access_area .left .address_area h3{
	background-position:left center;
	background-repeat:no-repeat;
	color:#615a53;
	font-size:18px;
	margin-top:20px;
	padding-left:40px;
}
.footer .access_area .left .address_area h3:first-child{
	margin-top:0;
}
.footer .access_area .left .address_area h3.icon01{
	background-image:url(img/foot_icon01.png);
}
.footer .access_area .left .address_area h3.icon02{
	background-image:url(img/foot_icon02.png);
}
.footer .access_area .left .address_area h3.icon03{
	background-image:url(img/foot_icon03.png);
}
.footer .access_area .left .address_area p{
	font-size:15px;
}
.footer .access_area .right{
	padding:20px 20px 16px 0;
	width:50%;
}
.footer .foot_illust{
	position:relative;
	bottom:40px;
	margin-left:2%;
	margin-bottom:-40px;
}

.footer p.copyright{
	color:#6094c4;
	font-size:15px;
	padding-bottom:20px;
	text-align:center;
}


/*------------------------------------*\
    PAGES
\*------------------------------------*/
#key{
	display:flex;
	width:100%;
}
#key .key_main{
	height:620px;
	margin:0 0 0 auto;
	overflow: hidden;
	width:67%;
	max-width:1280px;
}
#key .key_main img {
	height:620px;
	object-fit: cover;
	width: 100%;
}
#key .key_text{
	text-align:center;
	width:33%;
}
#key .key_text h2{
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	color:#3b5b78;
	font-size:36px;
	font-weight:600;
	letter-spacing:0.3em;
	line-height:1.8;
	margin:30px auto 0 auto;
	text-align:left;
	width:auto;
}
#key .key_text p.open{
	color:#3b5b78;
	font-size:26px;
	margin-top:40px;
}
#key .key_text .line{
	border-top:3px solid #3b5b78;
	margin:5px auto 0 auto;
	width:60px;
}
#key .key_text p.time{
	color:#3b5b78;
	font-size:20px;
	font-weight:bold;
	margin-top:20px;
}
#key .key_text p.text{
	margin-top:20px;
}

#contents01{
	display:flex;
	justify-content:space-between;
	margin:100px auto 0 auto;
	width:95%;
	max-width:1100px;
}
#contents01 .news_area{
	width:calc(100% - 490px);
}
#contents01 .news_area h2{
	color:#3b5b78;
	font-size:26px;
	font-weight:600;
	letter-spacing:0.1em;
}
#contents01 .news_area .news_contents{
	margin-top:35px;
}
#contents01 .news_area .news_contents .post{
	border-bottom:1px solid #ccc;
}
#contents01 .news_area .news_contents .post:first-child{
	border-top:1px solid #ccc;
}
#contents01 .news_area .news_contents .post a{
	display:flex;
	padding:20px 0;
	transition:0.3s;
}
#contents01 .news_area .news_contents .post a:hover{
	background-color:#eee;
}
#contents01 .news_area .news_contents .post a .post_left{
	width:120px;
}
#contents01 .news_area .news_contents .post a .post_left img{
	border-radius:50px;
}
#contents01 .news_area .news_contents .post a .post_right{
	margin-left:40px;
	width:calc(100% - 40px);
}
#contents01 .news_area .news_contents .post a .post_right p.time{
	color:#444;
	font-size:14px;
	font-weight:600;
	margin-top:5px;
	text-decoration:underline;
}
#contents01 .news_area .news_contents .post a .post_right h3{
	color:#3b5b78;
	font-weight:600;
	margin-top:5px;
}
#contents01 .news_area p.button{
	margin:40px auto 0 auto;
	text-align:center;
	width:260px;
}
#contents01 .news_area p.button a{
	background-color:#3b5b78;
	border-radius:5px;
	color:#fff;
	display:block;
	padding:10px;
	transition:0.3s;
}
#contents01 .news_area p.button a:hover{
	background-color:#68849e;
}
#contents01 .x_area .timeline_area{
	background-image:url(img/x_icon.png);
	background-position:center 15px;
	background-repeat:no-repeat;
	border:1px solid #ccc;
	border-radius:5px 5px 0 0;
	padding:70px 10px 10px 10px;
}
#contents01 .x_area p{
	text-align:center;
	width:100%;
}
#contents01 .x_area p a{
	background-color:#000;
	border-radius:0 0 10px 10px;
	color:#fff;
	display:block;
	padding:15px 0;
	transition:0.3s;
}
#contents01 .x_area p a:hover{
	background-color:#444;
}
#contents02{
	background-image:url(img/illust01.png);
	background-position:calc(50% + 580px) bottom;
	background-repeat:no-repeat;
	padding:100px 0 170px 0;
}
#contents02 .inst_area{
	margin:0 auto;
	width:95%;
	max-width:1100px;
}
#contents02 .inst_area h2{
	color:#3b5b78;
	font-size:26px;
	font-weight:600;
	letter-spacing:0.1em;
}
#contents02 .inst_area .inst_block{
	margin-top:10px;
	width:100%;
}
#contents03{
	margin:-80px auto 0 auto;
	width:95%;
	max-width:1100px;
}
#contents03 .h2_area{
	display:flex;
	align-items:center;
	justify-content:start;
	width:100%;
}
#contents03 .h2_area h2{
	color:#3b5b78;
	font-size:26px;
	font-weight:600;
	letter-spacing:0.1em;
	width:110px;
}
#contents03 .h2_area p{
	color:#3b5b78;
	font-size:18px;
	font-weight:600;
	letter-spacing:0.1em;
}
#contents03 .text_area p{
	margin-top:20px;
}
#contents03 .text_area p:first-child{
	margin-top:40px;
}
#contents03 .fruit_area{
	display:flex;
	justify-content:space-between;
	margin-top:30px;
}
#contents03 .fruit_area .fruit_block{
	border-radius:10px;
	width:32%;
}
#contents03 .fruit_area .fruit_block:first-child{
	background-image:url(img/top_fruit01.png) , url(img/top_fruit_back.png);
	background-size:cover , 100% auto;
	background-repeat:no-repeat , no-repeat;
	background-position:center center , center bottom;
	transition:0.3s;
}
#contents03 .fruit_area .fruit_block:nth-child(2){
	background-image:url(img/top_fruit02.png) , url(img/top_fruit_back.png);
	background-size:cover , 100% auto;
	background-repeat:no-repeat , no-repeat;
	background-position:center center , center bottom;
	transition:0.3s;
}
#contents03 .fruit_area .fruit_block:nth-child(3){
	background-image:url(img/top_fruit03.png) , url(img/top_fruit_back.png);
	background-size:cover , 100% auto;
	background-repeat:no-repeat , no-repeat;
	background-position:center center , center bottom;
	transition:0.3s;
}
#contents03 .fruit_area .fruit_block:hover{
	transform: scale(1.02);
}
#contents03 .fruit_area .fruit_block a{
	display:block;
	padding:220px 0 20px 0;
	text-align:center;
}
#contents03 .fruit_area .fruit_block a p:first-child{
	color:#3b5b78;
	font-size:15px;
	font-weight:bold;
}
#contents03 .fruit_area .fruit_block a p:nth-child(2){
	color:#3b5b78;
	font-size:18px;
}


/*------------------------------------*\
    IMAGES
\*------------------------------------*/
#sub_head{
	background-color:#e2e9ef;
	display: table;
	height:220px;
	width:100%;
}
#sub_head .sub_main_in{
	display: table-cell;
	height: 220px;
	text-align: center;
	vertical-align: middle;
	width: 100%;
}
body.page-id-6 #sub_head .sub_main_in{
	background-image:url(img/sub_title01.png);
	background-position:center 70px;
	background-repeat:no-repeat;
}
body.page-id-30 #sub_head .sub_main_in{
	background-image:url(img/sub_title02.png);
	background-position:center 70px;
	background-repeat:no-repeat;
}
body.page-id-107 #sub_head .sub_main_in{
	background-image:url(img/sub_title03.png);
	background-position:center 70px;
	background-repeat:no-repeat;
}
body.page-id-120 #sub_head .sub_main_in{
	background-image:url(img/sub_title04.png);
	background-position:center 70px;
	background-repeat:no-repeat;
}
#sub_head.single .sub_main_in{
	background-image:url(img/sub_title04.png);
	background-position:center 70px;
	background-repeat:no-repeat;
}
body.page-id-123 #sub_head .sub_main_in{
	background-image:url(img/sub_title05.png);
	background-position:center 70px;
	background-repeat:no-repeat;
}
#sub_head h2{
	color:#3584bb;
	font-size:32px;
	font-weight:600;
	text-shadow: 0 0 15px #fff;
	letter-spacing:0.15em;
}
#sub_head .head_line{
	border-top:3px solid #2e4b65;
	margin:20px auto 0 auto;
	width:120px;
}

#sub_area{
	padding:80px 0 0 0;
}
#sub_contents{
	margin:0 auto;
	width:95%;
	max-width:1100px;
}
#sub_contents h2{
	border-bottom:5px solid #e2e9ef;
	color:#3b5b78;
	display:block;
	font-size:24px;
	font-weight:bold;
	line-height:1.4;
	letter-spacing:0.15em;
	margin:80px auto 0 auto;
	text-align:center;
	width:180px;
}
#sub_contents h2.h2_long{
	width:260px;
}
#sub_contents h2.h2_longest{
	width:400px;
}
#sub_contents h2:first-child{
	margin:0 auto;
}
#sub_contents h3{
	color:#3b5b78;
	font-size:20px;
	font-weight:bold;
	margin-top:60px;
}
#sub_contents h2 + h3{
	margin-top:20px;
}
#sub_contents h3 + h4{
	margin-top:20px;
}
#sub_contents p{
	margin-top:20px;
}
#sub_contents figure{
	margin-top:20px;
}
#sub_contents iframe{
	margin-top:20px;
}
#sub_contents p a{
	color:#dc7108;
	text-decoration:underline;
}
#sub_contents ul{
	margin-top:10px;
}
#sub_contents ul li{
	background-image:url(img/arrow.png);
	background-position:left 8px;
	background-repeat:no-repeat;
	margin-top:5px;
	padding-left:20px;
}

#sub_contents .plan_area{
	background-color:#e2e9ef;
	border-radius:20px;
	padding:80px;
}
#sub_contents .plan_area .plan_area_top h3{
	margin-top:0;
}
#sub_contents .plan_area h3{
	background-image:url(img/fruit_icon01.png);
	background-position:left center;
	background-repeat:no-repeat;
	border-bottom:2px dotted #3b5b78;
	font-size:18px;
	padding:0 0 6px 40px;
}
#sub_contents .plan_area h3.h3_apple{
	background-image:url(img/fruit_icon02.png);
}
#sub_contents .plan_area table th,#sub_contents .plan_area table td{
	text-align:center;
}
#sub_contents .rule_title{
	background-color:#e2e9ef;
	background-image:url(img/rule_title.png);
	background-position:center 25px;
	background-repeat:no-repeat;
	margin-top:80px;
	padding:50px 0 40px ;
}
#sub_contents .rule_title h2{
	display:block;
	font-size:24px;
	line-height:1.4;
	letter-spacing:0.15em;
	margin-top:0;
	text-align:center;
	width:100%;
}
#sub_contents .rule_title .line{
	border-top:3px solid #3b5b78;
	margin:20px auto 0 auto;
	width:80px;
}
#sub_contents ul.rule_list li{
	background-image:url(img/check_icon.png);
	background-position:left 26px;
	background-repeat:no-repeat;
	border-bottom:1px solid #ccc;
	padding:20px 0 20px 30px;
}

#sub_contents .variety_area{
	display:flex;
	flex-wrap:wrap;
}
#sub_contents .variety_area .post{
	margin-top:40px;
	margin-right:3.5%;
	width:31%;
}
#sub_contents .variety_area .post:nth-child(3n){
	margin-right:0;
}
#sub_contents .variety_area .post .post_left img{
	object-fit: cover;
	border-radius: 30% 30% 30% 30% / 20% 20% 20% 20%;
}
#sub_contents .variety_area .post .post_right p{
	text-align:center;
}
#sub_contents .variety_area .post .post_right p.title{
	font-weight:bold;
	margin-top:15px;
}
#sub_contents .variety_area .post .post_right p.time{
	font-size:15px;
	margin-top:5px;
}
#sub_contents p.variety_text{
	margin-top:60px;
}

#sub_contents p.shipping_text{
	font-size:20px;
	line-height:2.2;
	margin-top:40px;
	text-align:center;
}
#sub_contents .shipping_table01 table tr td{
	border:1px solid #ccc;
	text-align:center;
}
#sub_contents .shipping_table01 table tr:first-child td{
	background-color:#e2e9ef;
	font-weight:bold;
	padding:10px 0;
}
#sub_contents .shipping_table01 table tr td:nth-child(4){
	width:160px;
}
#sub_contents .shipping_table02 table tr td{
	border:1px solid #ccc;
	text-align:center;
}
#sub_contents .shipping_table02 table tr:first-child td{
	background-color:#e2e9ef;
	font-weight:bold;
	padding:10px 0;
}
#sub_contents .shipping_table03 table tr td{
	border:1px solid #ccc;
	text-align:center;
}
#sub_contents p.fax_link{
	margin:40px auto 0 auto;
	text-align:center;
	width:280px;
}
#sub_contents p.fax_link a{
	background-color:#3b5b78;
	border-radius:60px;
	color:#fff;
	display:block;
	padding:10px;
	text-decoration:none;
}
#sub_contents .change_title{
	background-color:#e2e9ef;
	background-image:url(img/change_title.png);
	background-position:center 25px;
	background-repeat:no-repeat;
	margin-top:80px;
	padding:50px 0 40px ;
}
#sub_contents .change_title h2{
	display:block;
	font-size:24px;
	line-height:1.4;
	letter-spacing:0.15em;
	margin-top:0;
	text-align:center;
	width:100%;
}
#sub_contents .change_title .line{
	border-top:3px solid #3b5b78;
	margin:20px auto 0 auto;
	width:80px;
}

#sub_contents .news_contents{
	margin-top:35px;
}
#sub_contents .news_contents .post{
	border-bottom:1px solid #ccc;
}
#sub_contents .news_contents .post:first-child{
	border-top:1px solid #ccc;
}
#sub_contents .news_contents .post a{
	display:flex;
	padding:20px 0;
	transition:0.3s;
}
#sub_contents .news_contents .post a:hover{
	background-color:#eee;
}
#sub_contents .news_contents .post a .post_left{
	width:240px;
}
#sub_contents .news_contents .post a .post_left img{
	border-radius:100px;
}
#sub_contents .news_contents .post a .post_right{
	margin-left:40px;
	width:calc(100% - 40px);
}
#sub_contents .news_contents .post a .post_right p.time{
	color:#444;
	font-size:14px;
	margin-top:5px;
	text-decoration:underline;
}
#sub_contents .news_contents .post a .post_right h3{
	color:#3b5b78;
	font-size:18px;
	font-weight:bold;
	margin-top:5px;
}
#sub_contents.news_area h2{
	text-align:left;
	width:100%;
}
#sub_contents.news_area h2 + p{
	margin-top:40px;
}

#sub_contents p.contact_text{
	margin-top:40px;
}
#sub_contents h2.contact_title{
	width:280px;
}
#sub_contents table.contact_table{
	margin-top:20px;
	width:100%;
}
#sub_contents table.contact_table tr td{
	background-color:#fff;
	border:1px solid #ccc;
	padding:15px;
	width:65%;
}
#sub_contents table.contact_table tr td:first-child{
	background-color:#f6f6f6;
	width:35%;
}
#sub_contents table.contact_table tr td p{
	margin-top:0;
}
#sub_contents table.contact_table tr td:first-child p span{
	color:#d80000;
}
#sub_contents table.contact_table tr td input{
	border:1px solid #aaa;
	border-radius:3px;
	padding:5px;
}
#sub_contents table.contact_table tr td.shot input{
	width:50px;
}
#sub_contents table.contact_table tr td textarea{
	border:1px solid #aaa;
	border-radius:3px;
	height:150px;
	padding:5px;
}
#sub_contents table.contact_table tr td span.wpcf7-list-item{
	margin:0;
	width:100%;
}
#sub_contents .submit{
	margin:40px auto 0 auto;
	width:240px;
}
#sub_contents .submit input{
	background-color:#3d342d;
	border:none;
	color:#fff;
	font-size:16px;
	font-weight:bold;
	padding:16px;
	width:240px;
	transition:0.3s;
}
#sub_contents .submit input:hover{
	background-color:#706256;
}


/*------------------------------------*\
	TYPOGRAPHY
\*------------------------------------*/

@font-face {
	font-family:'Font-Name';
	src:url('fonts/font-name.eot');
	src:url('fonts/font-name.eot?#iefix') format('embedded-opentype'),
		url('fonts/font-name.woff') format('woff'),
		url('fonts/font-name.ttf') format('truetype'),
		url('fonts/font-name.svg#font-name') format('svg');
    font-weight:normal;
    font-style:normal;
}




/*------------------------------------*\
    RESPONSIVE
\*------------------------------------*/

@media only screen and (max-width:960px) {
	.menu-btn {
		border-radius:5px 0 0 5px;
	    position: fixed;
	    top: 20px;
	    right: 0;
	}

	#side_icon{
		position:fixed;
		top:80px;
		right:0;
		z-index:10;
	}
	
	.sp_none{
		display:none;
	}

	#key{
		display:flex;
		flex-wrap:wrap;
		width:100%;
	}

	#key .key_main{
		height:500px;
		margin:0 0 0 auto;
		overflow: hidden;
		width:100%;
	}

	#key .key_main img {
		height:500px;
		object-fit: cover;
		width: 100%;
	}

	#key .key_text{
		text-align:center;
		width:100%;
	}

	#key .key_text h2{
		-ms-writing-mode: tb-rl;
		writing-mode: horizontal-tb;
		color:#3b5b78;
		font-size:26px;
		font-weight:300;
		letter-spacing:0.3em;
		line-height:1.8;
		margin:20px auto 0 auto;
		text-align:center;
		width:auto;
	}

	#key .key_text p.open{
		color:#3b5b78;
		font-size:20px;
		margin-top:40px;
	}

	#key .key_text .line{
		border-top:3px solid #3b5b78;
		margin:5px auto 0 auto;
		width:60px;
	}

	#key .key_text p.time{
		color:#3b5b78;
		font-size:18px;
		font-weight:bold;
		margin-top:20px;
	}

	#key .key_text p.text{
		margin-top:20px;
	}

	.footer .access_area .left{
		margin:0 auto;
		padding:20px 20px 0 20px;
		width:50%;
		max-width:540px;
	}

	#sub_contents .plan_area{
		background-color:#e2e9ef;
		border-radius:20px;
		padding:40px;
	}

	#sub_contents .plan_area h3{
		background-image:url(img/fruit_icon01.png);
		background-position:left center;
		background-repeat:no-repeat;
		border-bottom:2px dotted #3b5b78;
		font-size:16px;
		margin-top:40px;
		padding:0 0 6px 40px;
	}

	#sub_contents .plan_area .plan_area_top h3{
		margin-top:0;
	}

	#sub_contents .shipping_table01 table tr td{
		border:1px solid #ccc;
		font-size:15px;
		padding:10px 0;
		text-align:center;
	}
}
@media only screen and (max-width:782px) {
	/* menu */
	.menu-btn {
		border-radius:5px 0 0 5px;
	    position: fixed;
	    top: 20px;
	    right: 0;
	    display: flex;
	    height: 60px;
	    width: 60px;
	    justify-content: center;
	    align-items: center;
	    z-index: 90;
	    background-color: #3584bb;
		cursor: pointer;
	}

	.menu-content {
		width: 100%;
	}

	#menu-btn-check:checked ~ .menu-content {
		left: 0%;/*メニューを画面内へ*/
	}

	/* header */
	.header {
		margin:0 auto;
		padding:20px 0;
		width:90%;
		max-width:460px;
	}

	.header .logo_area{
		display:block;
	}

	.header .logo_area .logo{
		margin-right:20px;
		width:120px;
	}

	.header .logo_area .tel{
		background-image:url(img/tel_icon.png);
		background-size:18px;
		background-repeat:no-repeat;
		background-position:left center;
		padding-left:26px;
	}

	.header .logo_area .tel p{
		color:#3b5b78;
		font-size:18px;
	}

	.header .text_area{
		display:none;
		margin-top:20px;
	}

	#side_icon{
		background-color:#3b5b78;
		position:fixed;
		top:calc(100% - 60px);
		left:0;
		display:flex;
		z-index:2;
		width:100%;
	}

	#side_icon p{
		background-color:#3b5b78;
		border-right:1px solid #ccc;
		border-radius:0;
		margin-top:0;
		text-align:center;
		width:60px;
		height:60px;
	}

	/* footer */
	.foot_back{
		background-image:url(img/foot_back.png);
		background-repeat:repeat-x;
		background-size:auto 80px;
		background-position:center center;
		height:80px;
		margin-top:60px;
		width:100%;
	}

	.footer {
		background-color:#e2e9ef;
		margin-bottom:0;
		padding:0;
	}

	.footer h2{
		color:#3b5b78;
		font-size:22px;
		letter-spacing:0.1em;
		text-align:center;
	}

	.footer .access_area{
		background-color:#fff;
		border-radius:20px;
		display:flex;
		flex-wrap:wrap;
		margin:40px auto 0 auto;
		width:90%;
		max-width:460px;
	}

	.footer .access_area .left{
		margin:0 auto;
		padding:20px;
		width:100%;
		max-width:460px;
	}

	.footer .access_area .left .tel_area{
		display:block;
		margin-top:5px;
		padding-bottom:20px;
	}

	.footer .access_area .left .tel_area p:first-child{
		margin-right:0;
	}

	.footer .access_area .left .address_area{
		border-top:1px solid #5e92c2;
		padding-top:20px;
	}

	.footer .access_area .right{
		padding:0 20px 20px 20px;
		width:100%;
	}

	.footer .foot_illust{
		position:relative;
		bottom:40px;
		margin-left:2%;
		margin-bottom:-40px;
		width:160px;
	}

	.footer p.copyright{
		color:#6094c4;
		font-size:15px;
		padding-bottom:20px;
		text-align:center;
		margin-bottom:60px;
	}


	/*------------------------------------*\
	    PAGES
	\*------------------------------------*/
	#key{
		display:flex;
		flex-wrap:wrap;
		width:100%;
	}

	#key .key_main{
		height:250px;
		margin:0 0 0 auto;
		overflow: hidden;
		width:100%;
	}

	#key .key_main img {
		height:250px;
		object-fit: cover;
		width: 100%;
	}

	#key .key_text{
		text-align:center;
		width:100%;
	}

	#key .key_text h2{
		-ms-writing-mode: tb-rl;
		writing-mode: horizontal-tb;
		color:#3b5b78;
		font-size:22px;
		font-weight:300;
		letter-spacing:0.3em;
		line-height:1.8;
		margin:20px auto 0 auto;
		text-align:center;
		width:auto;
	}

	#key .key_text p.open{
		color:#3b5b78;
		font-size:20px;
		margin-top:40px;
	}

	#key .key_text .line{
		border-top:3px solid #3b5b78;
		margin:5px auto 0 auto;
		width:60px;
	}

	#key .key_text p.time{
		color:#3b5b78;
		font-size:18px;
		font-weight:bold;
		margin-top:20px;
	}

	#key .key_text p.text{
		margin-top:20px;
	}

	#contents01{
		display:flex;
		flex-wrap:wrap;
		justify-content:space-between;
		margin:60px auto 0 auto;
		width:90%;
		max-width:460px;
	}

	#contents01 .news_area{
		width:100%;
	}

	#contents01 .news_area h2{
		color:#3b5b78;
		font-size:20px;
		letter-spacing:0.1em;
	}

	#contents01 .news_area .news_contents{
		margin-top:20px;
	}

	#contents01 .news_area .news_contents .post a{
		display:flex;
		padding:20px 0;
		transition:0.3s;
	}

	#contents01 .news_area .news_contents .post a .post_left{
		width:80px;
	}

	#contents01 .news_area .news_contents .post a .post_left img{
		border-radius:50px;
	}

	#contents01 .news_area .news_contents .post a .post_right{
		margin-left:20px;
		width:calc(100% - 20px);
	}

	#contents01 .news_area .news_contents .post a .post_right p.time{
		color:#444;
		font-size:14px;
		margin-top:0;
		text-decoration:underline;
	}

	#contents01 .news_area .news_contents .post a .post_right h3{
		color:#3b5b78;
		margin-top:5px;
	}

	#contents01 .news_area p.button{
		margin:30px auto 0 auto;
		text-align:center;
		width:260px;
	}

	#contents01 .news_area p.button a{
		background-color:#3b5b78;
		border-radius:5px;
		color:#fff;
		display:block;
		padding:10px;
		transition:0.3s;
	}

	#contents01 .x_area{
		width:100%;
		max-width:460px;
	}

	#contents01 .x_area .timeline_area{
		background-image:url(img/x_icon.png);
		background-position:center 15px;
		background-repeat:no-repeat;
		background-size:30px 30px;
		border:1px solid #ccc;
		border-radius:5px 5px 0 0;
		margin-top:40px;
		padding:60px 10px 10px 10px;
	}

	.twitter-timeline{
		width:100% !important;
	}

	#contents01 .x_area p{
		text-align:center;
		width:100%;
	}

	#contents01 .x_area p a{
		background-color:#000;
		border-radius:0 0 10px 10px;
		color:#fff;
		display:block;
		padding:15px 0;
		transition:0.3s;
	}

	.twitter-timeline{
		width:100%;
	}

	#contents02{
		background-image:url(img/illust01.png);
		background-position:100% bottom;
		background-repeat:no-repeat;
		background-size:120px auto;
		padding:60px 0 100px 0;
	}

	#contents02 .inst_area{
		margin:0 auto;
		width:90%;
		max-width:460px;
	}

	#contents02 .inst_area h2{
		color:#3b5b78;
		font-size:20px;
		letter-spacing:0.1em;
	}

	#contents02 .inst_area .inst_block{
		margin-top:10px;
		width:100%;
	}

	#contents03{
		margin:0 auto;
		width:90%;
		max-width:460px;
	}

	#contents03 .h2_area{
		display:flex;
		align-items:center;
		justify-content:start;
		width:100%;
	}

	#contents03 .h2_area h2{
		color:#3b5b78;
		font-size:20px;
		letter-spacing:0.1em;
		width:80px;
	}

	#contents03 .h2_area h2 p{
		color:#3b5b78;
		font-size:16px;
		letter-spacing:0.1em;
	}

	#contents03 .text_area p{
		margin-top:20px;
	}

	#contents03 .text_area p:first-child{
		margin-top:30px;
	}

	#contents03 .fruit_area{
		display:block;
		justify-content:space-between;
		margin-top:20px;
	}

	#contents03 .fruit_area .fruit_block{
		border-radius:10px;
		margin-top:10px;
		width:100%;
	}


	/*------------------------------------*\
	    IMAGES
	\*------------------------------------*/
	#sub_head{
		background-color:#e2e9ef;
		display: table;
		height:200px;
		width:100%;
	}

	#sub_head .sub_main_in{
		display: table-cell;
		height: 200px;
		text-align: center;
		vertical-align: middle;
		width: 100%;
	}

	#sub_head h2{
		color:#3584bb;
		font-size:26px;
		text-shadow: 0 0 15px #fff;
		letter-spacing:0.15em;
	}

	#sub_area{
		padding:60px 0 0 0;
	}

	#sub_contents{
		margin:0 auto;
		width:90%;
		max-width:460px;
	}

	#sub_contents h2{
		border-bottom:5px solid #e2e9ef;
		color:#3b5b78;
		display:block;
		font-size:22px;
		line-height:1.4;
		letter-spacing:0.15em;
		margin:80px auto 0 auto;
		text-align:center;
		width:180px;
	}

	#sub_contents h2.h2_longest{
		width:200px;
	}

	#sub_contents h3{
		color:#3b5b78;
		font-size:20px;
		font-weight:bold;
		margin-top:60px;
	}

	#sub_contents h2 + h3{
		margin-top:20px;
	}

	#sub_contents h3 + h4{
		margin-top:20px;
	}

	#sub_contents p{
		margin-top:20px;
	}

	#sub_contents figure{
		margin-top:20px;
	}

	#sub_contents iframe{
		margin-top:20px;
	}

	#sub_contents p a{
		color:#dc7108;
		text-decoration:underline;
	}

	#sub_contents ul{
		margin-top:10px;
	}

	#sub_contents ul li{
		background-image:url(img/arrow.png);
		background-position:left 8px;
		background-repeat:no-repeat;
		margin-top:5px;
		padding-left:20px;
	}

	:where(.wp-block-columns.is-layout-flex) {
	    gap: 0;
	}
	:where(.wp-block-columns) {
	    margin-bottom: 0;
	}

	#sub_contents .plan_area{
		background-color:#e2e9ef;
		border-radius:10px;
		margin-top:20px;
		padding:20px;
	}

	#sub_contents .plan_area .plan_area_top h3{
		margin-top:0;
	}

	#sub_contents .plan_area h3{
		background-image:url(img/fruit_icon01.png);
		background-position:left center;
		background-repeat:no-repeat;
		border-bottom:2px dotted #3b5b78;
		background-size:24px auto;
		font-size:16px;
		padding:0 0 6px 30px;
	}

	#sub_contents .plan_area h3.h3_apple{
		background-image:url(img/fruit_icon02.png);
	}

	#sub_contents .plan_area .plan_area_top h3.margin-40{
		margin-top:40px;
	}

	#sub_contents .schedule_img{
		position: relative;
		overflow: auto;
	}

	#sub_contents .schedule_img figure{
		width: 800px;
	}

	#sub_contents .rule_title{
		background-color:#e2e9ef;
		background-image:url(img/rule_title.png);
		background-position:center 25px;
		background-repeat:no-repeat;
		margin-top:60px;
		padding:50px 0 40px ;
	}

	#sub_contents .rule_title h2{
		display:block;
		font-size:20px;
		line-height:1.4;
		letter-spacing:0.1em;
		margin-top:0;
		text-align:center;
		width:100%;
	}

	#sub_contents .rule_title .line{
		border-top:3px solid #3b5b78;
		margin:20px auto 0 auto;
		width:80px;
	}

	#sub_contents ul.rule_list li{
		background-image:url(img/check_icon.png);
		background-position:left 24px;
		background-repeat:no-repeat;
		border-bottom:1px solid #ccc;
		padding:15px 0 15px 30px;
	}

	#sub_contents .variety_area{
		display:flex;
		flex-wrap:wrap;
		justify-content:space-between;
	}

	#sub_contents .variety_area .post{
		margin-top:40px;
		margin-right:0;
		text-align:center;
		width:calc(50% - 10px);
	}

	#sub_contents .variety_area .post .post_left img{
		object-fit: cover;
		border-radius: 30% 30% 30% 30% / 20% 20% 20% 20%;
	}

	#sub_contents .variety_area .post .post_right p{
		text-align:center;
	}

	#sub_contents .variety_area .post .post_right p.title{
		font-weight:bold;
		margin-top:10px;
	}

	#sub_contents .variety_area .post .post_right p.time{
		font-size:15px;
		margin-top:0;
	}

	#sub_contents p.variety_text{
		margin-top:60px;
	}

	#sub_contents p.shipping_text{
		font-size:16px;
		line-height:1.8;
		margin-top:40px;
		text-align:left;
	}

	#sub_contents .shipping_table01{
		position: relative;
		overflow: auto;
	}

	#sub_contents .shipping_table01 table{
		width:800px;
	}

	#sub_contents .shipping_table01 table tr td{
		border:1px solid #ccc;
		font-size:15px;
		padding:10px 0;
		text-align:center;
	}

	#sub_contents .change_title{
		background-color:#e2e9ef;
		background-image:url(img/change_title.png);
		background-position:center 25px;
		background-repeat:no-repeat;
		margin-top:60px;
		padding:50px 0 40px ;
	}

	#sub_contents .change_title h2{
		display:block;
		font-size:20px;
		line-height:1.4;
		letter-spacing:0.15em;
		margin-top:0;
		text-align:center;
		width:100%;
	}

	#sub_contents .change_title .line{
		border-top:3px solid #3b5b78;
		margin:20px auto 0 auto;
		width:80px;
	}

	#sub_contents .news_contents{
		margin-top:30px;
	}

	#sub_contents .news_contents .post a{
		display:flex;
		padding:20px 0;
		transition:0.3s;
	}

	#sub_contents .news_contents .post a .post_left{
		width:120px;
	}

	#sub_contents .news_contents .post a .post_left img{
		border-radius:100px;
	}

	#sub_contents .news_contents .post a .post_right{
		margin-left:20px;
		width:calc(100% - 20px);
	}

	#sub_contents .news_contents .post a .post_right p.time{
		color:#444;
		font-size:14px;
		margin-top:5px;
		text-decoration:underline;
	}

	#sub_contents .news_contents .post a .post_right h3{
		color:#3b5b78;
		font-size:16px;
		font-weight:bold;
		margin-top:5px;
	}

	#sub_contents.news_area h2{
		text-align:left;
		width:100%;
	}

	#sub_contents.news_area h2 + p{
		margin-top:40px;
	}

	#sub_contents p.contact_text{
		margin-top:40px;
	}

	#sub_contents h2.contact_title{
		width:280px;
	}

	#sub_contents table.contact_table{
		border-bottom:1px solid #ccc;
		margin-top:20px;
		width:100%;
	}

	#sub_contents table.contact_table tr td{
		background-color:#fff;
		border:1px solid #ccc;
		border-bottom:none;
		display:block;
		padding:15px;
		width:100%;
	}

	#sub_contents table.contact_table tr td:first-child{
		background-color:#f6f6f6;
		width:100%;
	}

	#sub_contents table.contact_table tr td p{
		margin-top:0;
	}

	#sub_contents table.contact_table tr td:first-child p span{
		color:#d80000;
	}

	#sub_contents table.contact_table tr td input{
		border:1px solid #aaa;
		border-radius:3px;
		padding:5px;
		width:100%;
	}

	#sub_contents table.contact_table tr td.shot input{
		width:50px;
	}

	#sub_contents table.contact_table tr td textarea{
		border:1px solid #aaa;
		border-radius:3px;
		height:150px;
		padding:5px;
		width:100%;
	}
}


/*------------------------------------*\
    MISC
\*------------------------------------*/

::selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}
::-webkit-selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}
::-moz-selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}

/*------------------------------------*\
    WORDPRESS CORE
\*------------------------------------*/

.alignnone {
	margin:5px 20px 20px 0;
}
.aligncenter,
div.aligncenter {
	display:block;
	margin:5px auto 5px auto;
}
.alignright {
	float:right;
	margin:5px 0 20px 20px;
}
.alignleft {
	float:left;
	margin:5px 20px 20px 0;
}
a img.alignright {
	float:right;
	margin:5px 0 20px 20px;
}
a img.alignnone {
	margin:5px 20px 20px 0;
}
a img.alignleft {
	float:left;
	margin:5px 20px 20px 0;
}
a img.aligncenter {
	display:block;
	margin-left:auto;
	margin-right:auto;
}
.wp-caption {
	background:#FFF;
	border:1px solid #F0F0F0;
	max-width:96%;
	padding:5px 3px 10px;
	text-align:center;
}
.wp-caption.alignnone {
	margin:5px 20px 20px 0;
}
.wp-caption.alignleft {
	margin:5px 20px 20px 0;
}
.wp-caption.alignright {
	margin:5px 0 20px 20px;
}
.wp-caption img {
	border:0 none;
	height:auto;
	margin:0;
	max-width:98.5%;
	padding:0;
	width:auto;
}
.wp-caption .wp-caption-text,
.gallery-caption {
	font-size:11px;
	line-height:17px;
	margin:0;
	padding:0 4px 5px;
}
.sticky {

}
.bypostauthor {

}

/*------------------------------------*\
    PRINT
\*------------------------------------*/

@media print {
	* {
		background:transparent !important;
		color:#000 !important;
		box-shadow:none !important;
		text-shadow:none !important;
	}
	a,
	a:visited {
		text-decoration:underline;
	}
	a[href]:after {
		content:" (" attr(href) ")";
	}
	abbr[title]:after {
		content:" (" attr(title) ")";
	}
	.ir a:after,
	a[href^="javascript:"]:after,
	a[href^="#"]:after {
		content:"";
	}
	pre,blockquote {
		border:1px solid #999;
		page-break-inside:avoid;
	}
	thead {
		display:table-header-group;
	}
	tr,img {
		page-break-inside:avoid;
	}
	img {
		max-width:100% !important;
	}
	@page {
		margin:0.5cm;
	}
	p,
	h2,
	h3 {
		orphans:3;
		widows:3;
	}
	h2,
	h3 {
		page-break-after:avoid;
	}
}
