/* 

*/
html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,sub,sup,var,b,i,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,figcaption,figure,footer,header,hgroup,menu,nav,section,summary,time,mark,audio,video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
	    box-sizing: border-box;
	word-break: break-all;
}
body {
  line-height: 1;
  background:#fcfcfc

}
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section {
  display: block;
}
nav ul {
  list-style: none;
}
blockquote,q {
  quotes: none;
}
blockquote:before,blockquote:after,q:before,q:after {
  content: '';
  content: none;
}
a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
    color: #1b5e20; 
    text-decoration: none;
    font-weight: bold;
}
/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}
/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}
del {
  text-decoration: line-through;
}
abbr[title],dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}
input,select {
  vertical-align: middle;
}

img{object-fit: contain;max-width:100%;}


body {
 font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: 400;
  font-style: normal;
}


header{width:100%;position:fixed;height:150px;border-bottom:3px solid #008000;background:#fff;z-index:999}
header .head_wrap{width:100%;max-width:1260px;margin:0 auto;display:flex;padding:4px 0;justify-content:space-between;}
.head_wrap .logo{max-width:300px;padding:6px;max-height:150px;line-height:1.6}
.head_wrap .logo h1{font-size:auto;text-align:center;}
.head_wrap .logo img{max-height:100%;}
.head_wrap .menu{width:calc(100% - 300px);display:flex;justify-content:flex-end;height:150px}
.head_wrap ul{display:flex;flex-wrap:nowrap;margin-right:16px;line-height:60px; list-style:none;align-items: end;padding-bottom:20px;}
.head_wrap ul li{padding:0 .5em;line-height:1.4;font-size: min(1.3vw, 18px);}
.head_wrap ul li a{color:inherit;}
.head_wrap .contact{width:130px;font-size:80%;}
.head_wrap .team_contact{background:#4dc2f4;padding:3px 4px}
.head_wrap .com_contact{background:#0000f4;color:#fff;padding:3px 4px}

footer{background: #008000;padding:30px 0;color:#fff;}
footer .copy{text-align:center;}
.footer_profile{width:1260px;max-width:99%;margin:0 auto 50px;line-height:2;text-align:center}
footer h3{font-size:18px;padding-bottom:6px;}
.footer_profile table{line-height:1.6;width:250px;text-align:left;margin:0 auto;}
.footer_profile th{font-weight:normal;padding:0 0em 0 0}

.sp{display:none;}

@media (max-width: 767px) {
	.sp{display:block}
	.spbr{width:100%;height:0px;display:block;}
	.pc{display:none !important;}
	header{height:80px}
	header .head_wrap{padding:0 4px}
	.head_wrap .menu{height:80px;}
	.head_wrap .logo{height:60px;padding:0;}
	.head_wrap .menu{margin-left:auto;}
	.head_wrap .logo img{height:45px}
	.head_wrap .logo h1{text-align:left;}
	
	.head_wrap ul.nav_list{flex-wrap:wrap;padding-top:80px;}
	.head_wrap ul.nav_list li{width:100%;border-bottom:1px dotted #008000;height:3em;line-height:3em;font-size:120%;}
	.head_wrap ul.nav_list li a{width:100%;display:block;}
	.team_contact{margin-top:3em;line-height:3}
	.com_contact{line-height:3;}
	.drawer_hidden {
  display: none ;
}

/* ハンバーガーアイコンの設置スペース */
.drawer_open {
  display: flex;
  height: 60px;
  width: 60px;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 100;/* 重なり順を一番上にする */
  cursor: pointer;
}

/* ハンバーガーメニューのアイコン */
.drawer_open span,
.drawer_open span:before,
.drawer_open span:after {
  content: '';
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background: #333;
  transition: 0.5s;
  position: absolute;
}

/* 三本線の一番上の棒の位置調整 */
.drawer_open span:before {
  bottom: 8px;
}

/* 三本線の一番下の棒の位置調整 */
.drawer_open span:after {
  top: 8px;
}

/* アイコンがクリックされたら真ん中の線を透明にする */
#drawer_input:checked ~ .drawer_open span {
  background: rgba(255, 255, 255, 0);
}

/* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
#drawer_input:checked ~ .drawer_open span::before {
  bottom: 0;
  transform: rotate(45deg);
}

#drawer_input:checked ~ .drawer_open span::after {
  top: 0;
  transform: rotate(-45deg);
}
  
/* メニューのデザイン*/
.nav_content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 100%; /* メニューを画面の外に飛ばす */
  z-index: 99;
  background: #fff;
  transition: .5s;
}

/* メニュー黒ポチを消す */
.nav_list {
  list-style: none;
}

/* アイコンがクリックされたらメニューを表示 */
#drawer_input:checked ~ .nav_content {
  left: 0;/* メニューを画面に入れる */
}
}


.tab-wrap {
  display: flex;
  flex-wrap: wrap;
  margin:20px 0;
}
.tab-wrap:after {
  content: '';
  width: 100%;
  height: 3px;
  background: #325A8C;
  display: block;
  order: -1;
}
.tab-label {
  color: White;
  background: LightGray;
  font-weight: bold;
  white-space: nowrap;
  text-align: center;
  padding: 10px .5em;
  order: -1;
  position: relative;
  z-index: 1;
  cursor: pointer;
  border-radius: 5px 5px 0 0;
  flex: 1;
}
.tab-label:not(:last-of-type) {
  margin-right: 5px;
}
.tab-content {
  width: 100%;
  height: 0;
  overflow: hidden;
  opacity: 0;
}
.tab-switch:checked+.tab-label {
  background: #325A8C;
}
.tab-switch:checked+.tab-label+.tab-content {
  height: auto;
  overflow: auto;
  padding: 15px 15px 100px;
  opacity: 1;
  transition: .5s opacity;
}
.tab-switch {
  display: none;
}

.tab-switch:checked+.tab-label {
    background: #325A8C;
    margin-top: -0.5rem;
    transition: margin .3s;
    align-items: center;
    display: flex;
    justify-content: center;
}
.tab-label{
    border-radius: 0;
    position: relative;
}


#bodymaker{width:100%;padding-top:160px;}
#bodymaker h1{font-size:min(4.5vw,36px);text-align:center;max-width:1000px;margin:12px auto;line-height:1.4}
#bodymaker h1 span{font-size:80%;display:inline-block;width:100%;}
.top_content{width:100%;}
.container{max-width:1000px;margin:0 auto;width:100%;padding:1% 1% 4%;position:relative;}
.top_content p{line-height:1.6;font-size:min(3vw,18px);margin-bottom:40px;}
.top_content .photo{position:absolute;right:0;bottom:20px;max-width:300px;display:flex;flex-direction:column;text-align:center;}
.top_content .photo img{width:70%;margin:0 auto 12px;}
.top_content .photo p{font-size:min(2vw,16px);}
.top_content .photo span{font-size:80%}
.ft_img{display:flex;flex-wrap:nowrap;width:100%;height:200px;background:#ccc;}

.ft_img .img{width:calc(100% / 3);height:200px;overflow:hidden;}
.ft_img .img img{width:100%;}
.subpage{padding-top: calc(100px + 4%);}
#introduction{width:100%;padding-top:4%}
.headline{font-size:min(4vw,24px);margin-bottom:24px;line-height:1.4}
.list_box{margin:0 0 24px;}
.list_box .flex{display:flex;flex-wrap:nowrap;justify-content:space-around;}
.list_box .name{padding:0 0 8px;font-size:min(4vw,20px);margin-bottom:8px;}
.list_box .img{width:30%;}
.list_box .img_box{width:30%;}
.list_box .img img{max-width:100%;width:100%}
.list_box .img_box img{max-width:100%;}
.list_box .profile{width:70%}
.list_box .profile table{width:98%;margin-left:2%}
.list_box .profile th{width:3.5em;padding:.5em}
.list_box .profile td{padding:.5em;}
.list_box .textarea{width:70%;padding-left:2%;display:flex;flex-direction:column;line-height:1.4}


#introduction.subpage{padding-top:150px;}
.supporter{border-top:0px solid #4dc2f4;margin-top:36px}
.supporter h3{font-size:24px;border-bottom:0px solid #4dc2f4;margin:36px auto 0px;width:90%;padding-bottom:12px;}

.supporter table{border-top:1px solid #111;border-left:1px solid #111;margin:0 5% 24px;}
.supporter th{padding:.5em 1em;background:#eee;border-right:1px solid #111;border-bottom:1px solid #111;min-width:7em;}
.supporter td{padding:.5em 1em;background:#fff;border-right:1px solid #111;border-bottom:1px solid #111;}

@media (max-width: 767px) {
	#bodymaker h1{font-size:max(5.2vw,21px);}
	#bodymaker h1 span{font-size:56%;}
	.top_content .photo{position:relative;margin:0 auto;}
	.top_content p{font-size:min(4vw,18px)}
	.ft_img{height:80px;overflow:hidden;}
	.tab-label:not(:last-of-type){margin-right:0;}
	.list_box .flex{flex-direction:column;}
	.list_box .img{width:100%;}
	
	.list_box .profile{width:100%}
	.list_box .profile table{width:100%;margin-left:0;}
	.list_box .profile th {
    width: 3em;
    padding: .5em 0;
		text-align: left;}
	.list_box .img_box{width:100%;margin:0 auto;}
	.list_box .name{font-size:5.2vw;}
	.list_box .textarea{width:100%;padding: 2% 0;}
	.tab-label{height:3em;margin-bottom:12px;}
	.tab-wrap{flex-direction:column;}
}


*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.btn,
a.btn,
button.btn {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
}
.list_box .textarea .btn,.sleep_column .list_box .btn {
  color: #fff;
  margin:1em 0 0;
}

.list_box .textarea .btn:hover,.sleep_column .list_box .btn:hover {
  color: #eee;
}
.list_box .textarea .btn a{padding: .5rem 1.5rem .5rem 1.5rem;color:#fff;background-color: #325A8C;;display:inline-block;margin:0 0 0 auto;}
.sleep_column .list_box .btn a{padding: .5rem 1.5rem .5rem 1.5rem;color:#fff;background-color: #325A8C;;display:inline-block;margin:0 0 0 auto;font-size:1rem;}
.list_box .textarea .btn {
  font-size: 1rem;
  position: relative;
  padding:0;
	text-align:right;
	width:100%;
	    margin-top: auto;
}

a.btn-c i.fa {
  margin-right: 1rem;
}

a.btn-c:before {
  font-family: 'Font Awesome 5 Free';
  font-size: 1.6rem;
  line-height: 1;
  position: absolute;
  top: calc(50% - .8rem);
  right: 1rem;
  margin: 0;
  padding: 0;
  content: '\f054';
}

.img_box{width:100%;max-width:300px;max-height:180px;overflow:hidden;display:flex;align-items:center;}
.img_box img{max-width:100%;height:auto}
#introduction.subpage{padding-top:calc(100px + 4%)}

.pr{padding:8px 0;border:1px dotted #aaa;border-radius:10px;background:#fff;margin:1em 0;}
.pr h4{border-bottom:1px solid #ccc;font-size:120%;width:80%;margin:0 auto;}
.product-name{font-weight:bold;font-size:110%}
.pr .product-img{height:200px;text-align:center;width:80%;margin:0 auto;padding-top:8px}
.pr .product-img img{max-height:100%;}
.pr .product-text{width:80%;margin:1em auto}
.pr .product-text .btn{margin-top:1em;}
.sleeplist .textarea{font-size:100%;}
.sleeplist .sleep_column{display:flex;flex-wrap:wrap;justify-content:space-around;}
.sleep_column .list_box{width:31%;border-radius:5px; border:1px solid #aaa;overflow:hidden;margin-bottom:12px}
.sleep_column .list_box .flex{flex-direction:column;height:100%;}
.sleep_column .list_box .flex .img_box{width:100%;text-align:center;}
.sleep_column .list_box .flex .img_box img{height:180px;width:auto;max-width:100%;max-height:100%;    margin: 0 auto;}
.sleep_column .list_box .flex .textarea{width:100%;1em 0.5em 0;}
@media (max-width: 767px) {
.pr .product-img{height:auto;}
	.sleep_column .list_box{width:100%;}
	.pr h4{text-align:center;}
	.sleep_column .list_box .flex .textarea {
    width: 100%;
    padding: 2% 5%;
}
	.sleep_column .list_box .flex .img_box{width:100%;max-width:100%}
	.sleep_column .list_box .flex .img_box img{width:100%;height:auto;max-width:100%;max-height: 300px;}
	.sleep_column .list_box .btn{margin-top:0;}
}

.article-ad {
  max-width: 800px;
  margin: 0 auto;
  background-color: #ffffff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  font-family: "Arial", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  line-height: 1.8;
  color: #333;
}

/* タイトル部分 */
.article-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #444;
  text-align: center;
}

/* 概要テキスト */
.article-intro {
  font-size: 16px;
  margin-bottom: 30px;
  text-align: justify;
}

/* セクション全体 */
.article-section {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 30px;
  align-items: center;
  gap: 20px;
}

/* セクション内の画像 */
.article-image {
  flex: 1 1 40%;
  max-width: 300px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

/* セクション内のテキスト */
.article-text {
  flex: 1 1 55%;
}

/* セクションタイトル */
.article-section-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #555;
}

/* 段落 */
.article-text p {
  font-size: 16px;
  margin-bottom: 15px;
  text-align: justify;
}

/* メディアクエリ: スマホ用レスポンシブ対応 */
@media (max-width: 768px) {
  .article-section {
    flex-direction: column;
    text-align: center;
  }

  .article-image {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .article-text {
    flex: 1 1 100%;
  }
	 .article-title {
	    width: 95%;
    margin: 0 auto 20px;
		 text-align: left;}
	
	.article-section-title{text-align:left;}
	
	#bodymaker{padding-top:100px;}
}

#form{display:block;height:0;}
.form_area{background: #efefef; 
	padding:5% 0;margin:8% 0% 0;}
.form_area h2{font-size:24px;padding:0 1em 1em}
.form_area h3{margin-bottom:3%;color:#fff;border-bottom:1px solid #fff;padding-top:0;}
.form_area .form{width:90%;max-width:1000px;margin:0 auto;padding:5% 0;background:#fff;}
.form_area .form table{width:85%;max-width:780px;margin:0 auto;}
.form_area .form th{width:10em;padding:.5em 0;text-align:left;border-bottom:1px solid #aaa;vertical-align: top;}
.form_area .form td{padding:.5em 1em;text-align:left;border-bottom:1px solid #aaa;}
.form input,.form textarea {border: 1px solid #aaa;
    line-height: 2;width:100%;}
.form .checkbox input{width:auto;}
.form select{color:#848484;}
.form .file input[type="file"]{border:0px;}
.form .submit{width:250px;margin:0 auto;text-align:center;display:block;padding-top:5%;}
.form input[type="submit"] {background:#00EF7F;border:0px;}

@media screen and (max-width:768px) { 
	.form input,.form textarea {border: 1px solid #aaa;
    line-height: 2;width:90%;}
.form_area .form th{width:100%;padding:.5em 0;text-align:left;border-bottom:1px solid #aaa;vertical-align: top;display:inline-block;}
.form_area .form td{padding:.5em 0em 1.5em;text-align:left;border-bottom:1px solid #aaa;width:100%;display:inline-block;}
}

.entry-btn{background:#f00;border-radius:5px;padding:.5em;height:3em;margin-top: auto;
    margin-bottom: 1.3em;
    margin-right: 1em;}
.entry-btn a{width:100%;color:#fff;}

@media screen and (max-width:768px) {.entry-btn{margin:0 auto;text-align:center;line-height:2em;width:95%} }


.regist{width:100%;line-height:1.4}
.regist h3{font-size:24px;padding:0 0 .5em;}
.regist p{padding-bottom:1em;}
.regist table{width:100%}
.regist table th{text-align:left;padding:.5em;width:9em;}
.regist .submit{cursor:pointer}
.regist input[type="submit"]{cursor:pointer;margin:1em auto;height:3em;width:300px;color:#fff;border: 2px solid #b84c00;;border-radius:5px;background:#f00;text-align:center;}

@media screen and (max-width:768px) {.regist table{width:98%;margin:0 auto 10px;}.regist table th{display:block;width;100%;}.regist table td{display:block;width;100%;}.regist table td input{width:100%;}.regist .submit{text-align:center;width:98%;margin:0 auto;}}

.offical{padding:.5em 0;}

.foot_link{padding:2em;text-align:center;list-style:none;display:flex;justify-content: center;}
.foot_link li{margin:0 1em;}
.foot_link li a{color:#fff;font-size:12px;}