@charset "UTF-8";

/* 共通 */
body{
	box-sizing: border-box;
	font-family:  "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", YuGothic, "游ゴシック体", sans-serif;
	font-size: 16px;
	line-height: 1.7;
    width: 100%;
	margin: 0 auto;
	overflow-wrap : break-word;
	word-wrap : break-word;
	word-break : break-all;
    color: #333;
}
#overlay-input{
    display: none;
}
body.scroll {
    width: 100%;
    overflow: scroll;
    position: relative;
}
.full_page {
    width: 100%;
    min-width: 1280px;
    overflow: scroll;
}
.body_fixed {
    height: 100vh;
    overflow-y: hidden !important;
}
*{
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
    box-sizing: border-box;
    min-width: 0;
    min-height: 0;
}
a{
	color: #333;
	list-style: none;
	text-decoration: none;
	display: block;
}
img {
    width: 100%;
    height: auto;
    line-height: 0;
}
p{
    line-height: 2em;
}

main{
    padding-top: 80px;
    max-width: 3000px;
    width: 100%;
    margin: 0 auto;
}

/*          header          */

.header{
    width: 100%;
    height: 80px;
    background-color: rgba(255,255,255,0.8);
    position: fixed;
    z-index: 20;
}

.inner{
     align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1340px;
  padding: 10px 0;
}

.inner > a > img{
    height: 50px;
    width: auto;
    margin: 7px 0 auto 20px;
}

.inner ul  {
  display: flex;
}

.inner li  {
    padding: 5px 40px;
}

.inner li a  {
  display: block;
  font-size: 15px;
  font-weight: bold;
  text-decoration: none;
  position: relative;
}

.inner li a::after {
position: absolute;
left: 0;
content: '';
width: 100%;
height: 2px;
background: #00AEEB;
bottom: 10px; /*アンダーラインが現れ始める位置（aタグの下辺からの高さ）*/
opacity: 0;
visibility: hidden;
transition: 0.3s;
}

.inner a:hover::after {
visibility: visible;
bottom: -7px; /*アニメーションが止まる位置*/
opacity: 1;
}

@media (min-width: 701px) {
    .sp{
        display: none;
    }
}

/* @media (max-width: 700px) {
    .tab{
        display: none;
    }
} */

@media (min-width: 1101px) {
    .tab{
        display: none;
    }
}

@media (max-width: 1100px) {
  .pc {
        display: none;
      }

    .header{
    width: 100%;
    height: 70px;
    background-color: rgba(255,255,255,1);
    position: fixed;
    z-index: 20;
}
    main{
        padding-top: 70px;
    }

    .inner > a > img{
        margin: 0 0 auto 20px;
    }

    .inner li a::after{
        display: none;
    }
}

@media (max-width: 990px) {
    .inner{
  padding: 0;
        align-items: baseline;
}

    .inner > img{
    width: 77px;
        margin-top: auto;
}

}

@media (max-width: 990px){
    .inner > a > img{
        margin: 7px 0 auto 20px;
    }
}

#overlay-button {
  position: absolute;
  right: 9px;
  top: 7px;
  padding: 26px 11px;
  z-index: 5;
  cursor: pointer;
  user-select: none;
}
#overlay-button span {
  height: 4px;
  width: 35px;
  border-radius: 2px;
  background-color: #00AEEB;
  position: relative;
  display: block;
  transition: all .2s ease-in-out;
}
#overlay-button span:before {
  top: -10px;
  visibility: visible;
}
#overlay-button span:after {
  top: 10px;
}
#overlay-button span:before, #overlay-button span:after {
  height: 4px;
  width: 35px;
  border-radius: 2px;
  background-color: #00AEEB;
  position: absolute;
  content: "";
  transition: all .2s ease-in-out;
}


/*input[type=checkbox] {
  display: none;

}
*/
input[type=checkbox]:checked ~ #overlay {
  visibility: visible;
}

input[type=checkbox]:checked ~ #overlay-button:hover span, input[type=checkbox]:checked ~ #overlay-button span {
  background: transparent;


}
input[type=checkbox]:checked ~ #overlay-button span:before {
  transform: rotate(45deg) translate(7px, 7px);

}
input[type=checkbox]:checked ~ #overlay-button span:after {
  transform: rotate(-45deg) translate(7px, -7px);


}

#overlay {
  height: auto;
  width: 100%;
  background: #00AEEB;
  z-index: 1;
  visibility: hidden;
  position: fixed;
    left: 0;
    top: 70px;
}
#overlay.active {

}
#overlay ul {
    display: block;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  height: auto;
  padding: 20px 0;
  list-style-type: none;
}
#overlay ul li {
  padding: 22px 0;
}
#overlay ul li a {
  color: #fff;
  text-decoration: none;
    font-size: 16px;
}


/*          footer          */

.footer{
    background-color: #EDEDED;
    padding-top: 24px;
}

.footer_menu{
    width: 1100px;
    margin: 0 auto;
}


.footer_menu ul{
    display: flex;
    justify-content: flex-end;
    margin-bottom: 60px;
}

.footer_menu li{
    margin-left: 60px;
    font-size: 15px;
}

.footer_info{
    width: 1100px;
    margin: 0 auto;
    display: flex;
}

.footer_info img{
    width: 200px;
    height: 88px;
}

.info_text{
    font-size: 14px;
    margin-left: 25px;
}

.telnum{
    display: flex;
    margin-bottom: 40px;
}

.telnum img{
    width: 20px;
    height: 20px;
    margin-left: 25px;
    margin-top: 10px;
}

.telnum p{
    color: #00AEEB;
    font-size: 24px;
    font-weight: bold;
    line-height: 1em;
    margin-top: 6px;
}

.tel_reception{
    color: #00AEEB;
    font-size: 15px;
    font-weight: bold;
}

.copy{
    background-color: #333333;
    height: 36px;
}

.copy p{
    color:#fff;
    text-align: center;
    line-height: 36px;
    font-size: 14px;
}

@media (max-width: 990px) {


}

@media (max-width: 700px){
    .footer{
        margin-top: 0;
    }

    .footer_info{
        display: block;
        width: 80%;
        margin: 0 auto;
        text-align: center;
    }

    .footer_info img{
        width: 120px;
        height: 53px;
        text-align: center;
    }

    .info_text{
        font-size: 12px;
        margin-left: 0;
    }

    .telnum{
        width: 230px;
        margin: 0 auto 40px;
    }

    .telnum img{
        width: 25px;
        height: 25px;
        margin-left: 15px;
        margin-top: 5px;
    }

    .telnum p{
        font-size: 20px;
        margin-top: 6px;
        text-align: center;
        color: #00AEEB;
    }

    .tel_reception{
        font-size: 14px;
    }

    .copy{
        height: 20px;
    }

    .copy p{
        line-height: 20px;
        font-size: 10px;
    }

}

.btn{
  width: 356px;
  height: 66px;
  margin: 20px auto;
  line-height: 2.1;
  text-decoration:none;
  font-weight:bold;
  background:#333;
  color:#fff !important;
  padding:1em 2em;
  text-align: center;
  position: relative;
  transition:.3s;
}

.btn:after{
  content:"";
  position:absolute;
  top:0;
  bottom:.1em;
  right:8%;
  margin:auto;
  width: .3em;
  height: .3em;
  border-top: .1em solid #fff;
  border-right: .1em solid #fff;
  transform: rotate(45deg);
  transition:.3s;
}
.btn:hover{
  opacity:.75;
}
.btn:hover:after{
  right:5%;
  opacity:.75;
}

.btn p{
    color: #fff;
    font-weight: bold;
}

.member_btn{
    line-height: 1.5em;
    position: absolute;
    bottom: 0.5em;
    left: 120px;
}

.submit_btn{
    margin: 0 auto;
    padding: 10 0 0 0;
    width:355px;
}
.form_confirmation{
    margin: 0 0 40px;
}
@media (max-width: 700px){
    .btn{
        width: 280px;
        height: 66px;
    }
    .btn p{
        margin-top: 0;
	left: 0;
    	right: 0;
    }
   .submit_btn{
        width:280px;
    }
}


.section_title{

}

.section_title h2{
    font-size: 30px;
    text-align: center;
    font-weight: bold;
    line-height: 1.8em;
}

.section_title p{
    text-align: center;
    font-weight: bold;
    margin-top: 16px;
}

.section_title_blue{

}

.section_title_blue h2{
    font-size: 30px;
    text-align: center;
    font-weight: bold;
    color: #00AEEB;
    line-height: 1.5em;
}

.title_back{
    height: 210px;
    margin: 0 auto;
    background-position: center;
    background-size: auto 210px;
    background-repeat: no-repeat;
}

.title_back p{
    font-size: 30px;
    font-weight: bold;
    color: #fff;
    width: 1100px;
    margin: 0 auto;
    line-height: 210px;
}

.product_title{
    background-image: url(../img/product_title.png);
}

.news_title_top{
    background-image: url(../img/news_title.png);
}

.price_title_top{
    background-image: url(../img/price_title.png);
}

.company_title{
    background-image: url(../img/company_title.png);
}

.contact_title{
    background-image: url(../img/contact_title.png);
}

.privacy_title{
    background-image: url(../img/privacy_title.png);
}

@media (max-width: 1100px){
    .title_back p{
        width: 90%;
    }
}

@media (max-width: 800px){
    .title_back{
        height: 120px;
        background-size: auto 120px;
    }
    .title_back p{
        font-size: 18px;
        line-height: 120px;
    }
}

/*パンくずリスト*/

.top_link{
    width: 1100px;
    margin: 18px auto 0;
    font-size: 12px;
}

.under{
    text-decoration: underline;
}

.top_link ol{
    display:flex;
    white-space: nowrap;
}

.top_link ol li{
    list-style:none;
    padding-right:10px;
    font-size: 12px;
}

.top_link ol li a:hover{
    opacity:.7;
}

@media (max-width: 1120px){
    .top_link{
        width: 90%;
    }
}

/*          トップ          */

/*TOP*/

.top_main{
    position: relative;
    width: 100%;
    margin: 0 auto 110px;
    z-index: 10;
}

.top_main > p{
    width: 100%;
    position: absolute;
    bottom: 50%;
    text-align: center;
    font-size: 56px;
    color: #fff;
    text-shadow: 0 3px 6px #333;
}

.wave_content{
    height: 600px;
    position: relative;
}

.top_content{
    margin: 0 auto;
    display: flex;
    width: 1100px;
    position: relative;
    z-index: 2;
}

.wave_title p{
    font-size: 30px;
    font-weight: bold;
    margin: 80px 0 67px;
}

.wave_text{
    width: 500px;
    margin-right: auto;
}


.wave_image{
    text-align: right;
    display: flex;
    margin-right: 0;
    margin-left: auto;
}

.space_image02 > img{
    margin-left: 20px;
    margin-top: 66px;
}

.wave_image img{
    width: 250px;
}


.wave{
    height:100px;/*何も表示されない場合は各波の親要素に高さを持たせましょう。*/
    background:#fff;/*背景を塗りつぶして重ねた波を表現したい場合は、波を描画する親要素に波と同じ背景色を設定しましょう。*/
}

canvas{
    position: absolute;
    bottom: 60px;
    left:0;
    width: 100%;
    z-index: 1;
}

@media (max-width: 1100px) {
    .top_main{
        margin: 0;
    }
    .top_main > p{
        font-size: 40px;
    }

    .wave_content{
        height: 640px;
    }

    .top_content{
        margin: 80px auto 0;
        display: flex;
        width: 90%;
        position: relative;
        z-index: 2;
    }

    .wave_title p{
        margin: 40px 0;
    }

    .wave_text{
        width: 50%;
        margin-right: 30px;
    }

    .wave_image{
        width: 343px;
        margin: 70px auto;
    }

    .space_image02 > img{
        margin-left: 25px;
        margin-top: 42px;
    }

    .wave_image img{
        width: 159px;
    }


    .wave{
        height:0;/*何も表示されない場合は各波の親要素に高さを持たせましょう。*/
    }

    canvas{
        bottom: 130px;
    }
}

@media (max-width: 700px) {
    .top_main > p{
        font-size: 24px;
    }

    .wave_content{
        height: auto;
    }

    .top_content{
        margin: 0 auto;
        display: block;
        width: 90%;
        position: relative;
        z-index: 2;
    }

    .wave_title p{
        font-size: 24px;
        margin: 30px 0;
    }

    .wave_text{
        width: 100%;
    }

    .wave_image{
        width: 100%;
        margin: 70px auto;
    }

    .space_image02 > img{
        margin-right: 0;
        margin-left: auto;
        margin-top: 42px;
    }

    .wave_image img{
        width: 159px;
    }


    .wave{
        height:10px;/*何も表示されない場合は各波の親要素に高さを持たせましょう。*/
    }

    canvas{
        bottom: 60px;
    }
}

/*特徴*/

.top_about{
    margin: 0 auto 30px;
    width: 1250px;
}

.about{
    display: flex;
    width: 1250px;
    margin: 0 auto 80px;
}

.about img{
    width: 833px;
}

.about_text{
    width: 356px;
    margin-left: 60px;
    padding-top: 72px;
}

.about_text h3{
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 42px;
    line-height: 1.7em;
}

@media (max-width: 1250px) {
    .top_about{
        width: 90%;
    }

    .about{
        display: block;
        width: 100%;
        margin-bottom: 80px;
    }

    .about img{
        height: auto;
        width: 90%;
    }

    .about_text{
        width: 80%;
        margin: 0 auto;
        padding-top: 30px;
    }

    .about_text h3{
        font-size: 24px;
        font-weight: bold;
        margin-bottom: 42px;
    }
}





/*商品ラインナップ*/

.lineup{
    background-color: #F8F8F8;
    padding: 60px 0 80px;
}

.lineup > .top_link{
    margin: 0 auto 50px;
}

.product_line{
    display: flex;
    width: 1100px;
    margin: 80px auto;
}

/*値段*/


.product{
    width: 350px;
    margin-left: 12px;
    margin-right: 13px;
}

.product img{

}

.product h3{
    font-size: 18px;
    font-weight: bold;
    margin: 30px 0 24px;
}


@media (max-width: 1100px) {
    .lineup{
        padding: 60px 0 80px;
    }

    .product_line{
        display: block;
        width: 80%;
        margin: 30px auto;
    }

    .product{
        width: 100%;
        margin: 0 0 50px;
    }

    .product img{

    }

    .product h3{
        font-size: 16px;
        font-weight: bold;
        margin: 20px 0 ;
    }
}


@media (max-width: 700px) {
    .lineup{
        padding: 18px 0 80px;
    }
}

/*値段　その他*/
.product_others{
	width: 100%;
	    display: flex;
	    justify-content: center;
}
.product_line_others{
	display: flex;
    flex-wrap: wrap;

    width: 1100px;
}
.product_item{
	width:342px;
margin:12px;
}
.product_others h3{
    font-size: 18px;
    font-weight: bold;
    margin: 30px 0 24px;
		line-height: 1.5;
}
.product_item h3 span{
	color:#D13223;
}
@media (max-width: 1100px) {
	.product_others{
		display: block;
	}

.product_line_others{
        display: block;
        width: 80%;
        margin: 30px auto;
    }

.product_item{
        width: 100%;
        margin: 0 0 50px;
    }
.product_others h3{
        font-size: 16px;
        font-weight: bold;
        margin: 20px 0 ;
    }

}
/*料金*/

.section_price_title{
    margin-top: 50px;
}

.price_top_text{
    margin: 60px 0 80px;
    text-align: center;
}

.price{
    background-color: #D3ECF5;
    padding: 80px 0;
}

.price_attention{
    font-size: 12px;
    width: 590px;
    margin: 70px auto 0;
}

.price_image{
    display: flex;
    width: 1100px;
    margin: 80px auto 0;
}

.illust_space{
    width: 427px;
    margin: 0 auto;
}

.illust_area{
    width: 400px;
    height: 400px;
    background-color: #fff;
    border-radius: 200px;
    margin-bottom: 30px;
    position: relative;
}

.illust_space > p{
    text-align: center;
    font-weight: bold;
    color: #174D60;
    font-size: 76px;

}

.yen{
    font-size: 38px;
    font-weight: bold;
}

.price_img01{
    position: relative;
    width: 120px;
    margin-left: 20px;
    top: -20px;
}

.price_img02{
    position: relative;
    width: 240px;
    margin-right: 0;
    top: -230px;
}

.top_price > p{
    width: 590px;
    margin: 0 auto;
    font-size: 12px;
}

.price_list {
    margin-left: 154px;
    position: absolute;
    top: 210px;
}

.price_list a{
    background-color: #174D60;
    border-radius: 30px;
    height: 54px;
    width: 230px;
    margin-bottom: 10px;
}

.price_list a p{
    text-align: center;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    padding-top: 10px;
}

.price_img03{
    position: relative;
    width: 240px;
    top: 20px;
    left: 80px;
    margin-bottom: 100px;
}

.price_list_bottle{
    position: absolute;
    top: 330px;
    left: 70px;
}

.price_list_bottle a{
    background-color: #174D60;
    border-radius: 30px;
    height: 54px;
    width: 260px;
}

.price_list_bottle a p{
    text-align: center;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    padding-top: 10px;
}

.price_imgplus{
    width: 54px;
    height: 82px;
    margin: 170px 45px 0;
}

.price > .btn{
    margin-top: 80px;
}

@media (max-width: 1100px) {
    .price{
        width: 100%;
    }
    .price_top_text{
        margin: 40px auto 60px;
        width: 80%;
        text-align: left;
    }

    .price_attention{
        width: 80%;
        margin: 60px auto 0;
    }

    .price_image{
        display: block;
        width: 100%;
        text-align: center;
    }

    .illust_space{
        width: 80%;
        margin: 0 auto;
    }

    .illust_area{
        width: 300px;
        height: 300px;
        margin: 0 auto;
    }

    .illust_space > p{
        font-size: 47px;
    }

    .yen{
        font-size: 24px;
    }

    .price_img01{
        width: 90px;
        margin-left: 20px;
        top: -20px;
    }

    .price_img02{
        position: relative;
        width: 180px;
        margin-right: 0;
        top: -180px;
    }

    .top_price > p{
        width: 590px;
        margin: 0 auto;
        font-size: 12px;
    }

    .price_list {
        margin-left: 115px;
        position: absolute;
        top: 160px;
    }

    .price_list a{
        height: 40px;
        width: 173px;
    }

    .price_list a p{
        font-size: 15px;
        padding-top: 7px;
    }

    .price_img03{
        width: 145px;
        top: 20px;
        left: 0;
        margin-bottom: 100px;
    }

    .price_list_bottle{
        top: 230px;
        left: 52px;
    }

    .price_list_bottle a{
        height: 40px;
        width: 196px;
    }

    .price_list_bottle a p{
        font-size: 15px;
        padding-top: 7px;
    }

    .price_imgplus{
        width: 54px;
        height: 82px;
        margin: 0 auto 30px;
    }

    .price > .btn{
        margin-top: 80px;
    }
}


/*LINE友達追加バナー*/

.line_bn{
    width: 914px;
    margin: 110px auto;
}

.line_bn:hover{
    opacity: 0.5;
}


/*動画*/

.youtube{
    width: 776px;
    height: auto;
    margin: 0 auto;
}

@media (max-width: 990px) {
    .line_bn{
        width: 90%;
        margin: 60px auto;
    }
    .youtube{
        width: 80%;
        margin: 0 auto;
    }
}

/*お知らせ*/

.news{
    margin-top: 110px;
    padding: 80px 0;
    background-color: #F8F8F8;
}

.news_line{
    margin: 80px auto;
    width: 914px;
}

.news_up{
    display: flex;
}

.news_title{
    margin-left: 50px;
    color: #00AEEB;
}

.news_title:hover{
    text-decoration: underline;
}

@media (max-width: 990px) {
    .news{
        margin-top: 60px;
        padding: 60px 0;
    }

    .news_line{
        margin: 60px auto;
        width: 90%;
    }

    .news_up{
        display: block;
    }

    .news_title{
        margin-left: 0;
    }

    .news_title:hover{
        text-decoration: underline;
    }
}


/*キャンペーン*/

.campaign{
    background-image: url(../img/back_img.png) ;
    height: 788px;
    padding-top: 110px;
}

.campaign_area{
    background-color: #fff;
    width: 914px;
    height: 568px;
    margin: auto;
    padding: 60px 93px;
}

/* 吹き出し本体 */
.comment_area{
  position: relative;
  padding-top: 7px;
  background-color: #EF85D2;
  color: #ffffff;
  border-radius: 30px;
    width: 474px;
    height: 46px;
    margin: 0 auto;
}

.comment_area p{
    font-weight: bold;
    font-size: 20px;
    text-align: center;
}

.bold{
    font-weight: bold;
    font-size: 16px;
}

/* 色付きの半円 */
.comment_area::before{
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-radius: 50%;
  transform: rotate(225deg);
  left: 190px;
  top: 20px;
  border-left: 20px solid #EF85D2;
  border-top: 20px solid #EF85D2;
  border-right: 20px solid transparent;
  border-bottom: 20px solid transparent;
}
/* 白い半円 */
.comment_area::after{
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-radius: 50%;
  transform: rotate(225deg);
  left: 203px;
  top: 26px;
  border-left: 20px solid #ffffff;
  border-top: 20px solid #ffffff;
  border-right: 20px solid transparent;
  border-bottom: 20px solid transparent;
}



.campaign_title {
    position: relative;
    padding: 2em;
    width: 515px;
    margin: 0 auto 20px;
}

.campaign_title p{
    font-size: 28px;
    font-weight: bold;
    text-align: center;
}

.campaign_title::before,
.campaign_title::after {
    position: absolute;
    top: 1.5em;
    height: 59px;
    content: '';
}

.campaign_title::before {
    border-left: solid 3px;
    left: 0;
    transform: rotate(-30deg);
}

.campaign_title::after {
    border-right: solid 3px;
    right: 0;
    transform: rotate(30deg);
}

.campaign_area > .btn{
    margin-top: 60px;
}

@media (max-width: 990px) {
    .campaign{
        height: auto;
        padding: 60px 0 60px;
    }
    .campaign_area{
        width: 90%;
        height: auto;
        margin: auto;
        padding: 40px 20px;
    }

    .campaign_title::before,
    .campaign_title::after {
        top: 2.3em;
        height: 80px;
    }

}

@media (max-width: 700px) {
    .campaign{
        height: auto;
        padding: 60px 0;
    }

    .campaign_area{
        width: 90%;
        height: auto;
        padding: 40px 15px;
    }

    /* 吹き出し本体 */
    .comment_area{
      border-radius: 30px;
        width: 90%;
        height: 60px;
        margin: 0 auto;
    }

    .comment_area p{
        font-size: 17px;
        line-height: 1.4em;
    }

    .bold{
        font-size: 14px;
    }

    /* 色付きの半円 */
    .comment_area::before{
      left: 100px;
      top: 30px;
      border-left: 25px solid #EF85D2;
      border-top: 25px solid #EF85D2;
      border-right: 25px solid transparent;
      border-bottom: 25px solid transparent;
    }
    /* 白い半円 */
    .comment_area::after{
      left: 117px;
      top: 35px;
      border-left: 25px solid #ffffff;
      border-top: 25px solid #ffffff;
      border-right: 25px solid transparent;
      border-bottom: 25px solid transparent;
    }

    .campaign_title {
        width: 90%;
        margin: 20px auto 0;
    }

    .campaign_title p{
        font-size: 20px;
    }

    .campaign_title::before,
    .campaign_title::after {
        top: 2.3em;
        height: 70px;
        content: '';
    }

    .campaign_area > .btn{
        margin: 50px auto 0;
    }
}



/*          商品ラインナップ          */

/*ZiACO*/

.ziaco > .section_title{
    margin: 80px 0;
}

.ziaco_section{
    display: flex;
    width: 1100px;
    margin: 0 auto;
}

.ziaco_section_img{
    width: 734px;
    height: 380px;
    position: relative;
}

.ziaco_section_img01{
    width: 700px;
    position: absolute;
    top: 0;
    left: 0;
}

.ziaco_section_img02{
    width: 220px;
    position: absolute;
    top:  7px;
    right: 100px;
}

.ziaco_section_img03{
    width: 300px;
    position: absolute;
    bottom: 0;
    right: 0;
}

.ziaco_text{
    width: 356px;
    margin-left: 10px;
}

.ziaco_title{
    font-size: 23px;
    font-weight: bold;
    margin-bottom: 34px;
}

@media (max-width: 1100px) {
    .ziaco > .section_title{
        margin: 60px 0;
    }

    .ziaco_section{
        display: block;
        width: 90%;
        margin: 0 auto;
    }

    .ziaco_section_img{
        max-width: 734px;
        height: 380px;
        width: 100%;
        margin: 0 auto;
    }

    .ziaco_section_img01{
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
    }

    .ziaco_section_img02{
        width: 250px;
        position: absolute;
        top: auto;
        bottom:  15px;
        right: 270px;
    }

    .ziaco_section_img03{
        width: 310px;
        position: absolute;
        bottom: 0;
        right: 0;
    }

    .ziaco_text{
        width: 100%;
        margin-left: 0;
    }

    .ziaco_title{
        font-size: 23px;
        font-weight: bold;
        margin-bottom: 34px;
    }
}

@media (max-width: 700px){
    .ziaco_section_img{
        height: 300px;
    }
    .ziaco_section_img01{
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
    }

    .ziaco_section_img02{
        width: 30%;
        position: absolute;
        top: auto;
        bottom:  10px;
        right: auto;
        left: 20%;
    }

    .ziaco_section_img03{
        width: 32%;
        position: absolute;
        bottom: 0;
        right: 0;
    }

        .ziaco_title{
        font-size: 20px;
    }
}

@media (max-width: 500px){
    .ziaco_section_img{
        height: 200px;
    }
    .ziaco_section_img01{
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
    }

    .ziaco_section_img02{
        width: 30%;
        position: absolute;
        top: auto;
        bottom:  10px;
        right: auto;
        left: 20px;
    }

    .ziaco_section_img03{
        width: 60%;
        position: absolute;
        bottom: 0;
        right: 0;
    }
}

/*〜あらゆる空間を清潔・快適空間に〜*/

.clean{
    background-color: #EAF8FD;
    padding: 80px 0;
    margin-top: 60px;
}

.clean_section{
    margin-top: 46px;
}

.clean_section > p{
    text-align: center;
}

.clean_line{
    display: flex;
    width: 1100px;
    margin: 85px auto 0;
}

.clean_line p{
    text-align: center;
}

.clean_about{
    margin-right: 77px;
}

.clean_about_title{
    font-size: 18px;
    font-weight: bold;
}

.clean_about > p , .clean_about_left > p{
    width: 162px;
    margin: 10px auto;
}

@media (max-width: 1100px) {
    .clean{
        padding: 60px 0;
        margin-top: 40px;
    }

    .clean_section > p{
        text-align: center;
    }

    .clean_line{
        display: flex;
        width: 80%;
        margin: 30px auto 0;
    }

    .clean_about{
        margin-right: 30px;
    }

    .clean_about_title{
        font-size: 18px;
        font-weight: bold;
    }

    .clean_about > p , .clean_about_left > p{
        width: 100%;
        margin: 10px auto;
    }
}

@media (max-width: 800px) {
    .clean_section > p{
        width: 80%;
        margin: 0 auto;
        text-align: left;
    }
}
/*          料金の案内          */

/*あんしんサポートパック*/

.support_pack{
    width: 914px;
    background-color: #fff;
    height: 510px;
    margin: 60px auto 0;
    border-radius: 8px;
    padding: 50px 0;
}

.support_pack_title{
    background-color: #00AEEB;
    border-radius: 20px;
    color: #fff;
    height: 40px;
    width: 400px;
    font-size: 18px;
    line-height: 40px;
    margin: 0 auto 30px;
    text-align: center;
}

.support_pack_text{
    text-align: center;
}

.support_about_pc{
    display: flex;
    width: 762px;
    margin: 55px auto;
}

.support_about{
    display: flex;
}

.support_about p{
    text-align: center;
    font-weight: bold;
    color: #00AEEB;
}

.support_image{
    width: 130px;
    margin-right: 28px;
}

.support_image_left{
    width: 130px;
}

.support_attention{
    font-size: 12px;
    width: 690px;
    margin: 0 auto 48px;
}

@media (max-width: 990px){
    .support_pack{
        width: 90%;
        height: auto;
        margin: 40px auto 0;
        padding: 30px 0;
    }

    .support_pack_title{
        width: 280px;
        margin: 0 auto 25px;
    }

    .support_pack_text{
        text-align: left;
        width: 90%;
        margin: 0 auto;
    }

    .support_about_pc{
        display: flex;
        width: 90%;
        margin: 30px auto;
    }

    .support_about{
        display: flex;
    }

    .support_image{
        width: 130px;
        margin-right: 15px;
    }

    .support_image_left{
        width: 130px;
    }

    .support_attention{
        font-size: 12px;
        width: 90%;
        margin: 0 auto 15px;
    }
}

@media (max-width: 700px){
    .support_pack{
        width: 90%;
        height: auto;
        margin: 40px auto 0;
        padding: 30px 0;
    }

    .support_pack_title{
        width: 280px;
        margin: 0 auto 25px;
    }

    .support_pack_text{
        text-align: left;
        width: 90%;
        margin: 0 auto;
    }

    .support_about_pc{
        display: block;
        width: 90%;
        margin: 30px auto ;
    }

    .support_about{
        display: flex;
        margin: 0 auto 30px;
        width: 100%;
    }

    .support_image{
        width: 135px;
        margin: 0 auto;
    }

    .support_image_left{
        width: 135px;
    }

    .support_attention{
        font-size: 12px;
        width: 90%;
        margin: 0 auto 15px;
    }
}

/*毎月かかる料金はクリクラボトルの料金だけ*/

.priceless{
    width: 100%;
    background-color: #174D60;
    margin: 80px auto;
    padding: 60px 0;
    width: 1100px;
}

.priceless_title{
    color: #fff;
    width: 668px;
    margin: 0 auto;
    font-weight: bold;
    font-size: 26px;
    position: relative;
    text-align: center;
}

.priceless_title::before,
.priceless_title::after {
    position: absolute;
    top: -8px;
    height: 72px;
    content: '';
}

.priceless_title::before {
    border-left: solid 2px #fff;
    left: 0;
    transform: rotate(-20deg);
}

.priceless_title::after {
    border-right: solid 2px #fff;
    right: 0;
    transform: rotate(20deg);
}

.priceless_area{
    display: flex;
    width: 954px;
    margin: 75px auto 15px;
}

.liter{
    width: 80px;
    height: 80px;
    margin-left: 50px;
    background-color: #D3ECF5;
    border-radius: 40px;
}

.liter p{
    text-align: center;
    line-height:80px;
    color: #00AEEB;
    font-weight: bold;
    font-size: 23px;
}

.price_imgequal{
    width: 82px;
    height: 82px;
    margin: 159px 32px;
}

.priceless_illust_area{
    width: 400px;
    height: 400px;
    background-color: #fff;
    border-radius: 200px;
    margin-bottom: 50px;
    position: relative;
}

.price_img04{
    position: absolute;
}

.price_img05{
    width: 210px;
    margin-left: 97px;
    position: absolute;
    bottom: 100px;
}

.priceless_illust_area > p{
    text-align: center;
    font-weight: bold;
}

.price_title{
    margin-top: 220px;
    color: #333;
}

.price_text{
    color: #EA202E;
    font-size: 26px;
}

.tax{
    font-size: 16px;
    font-weight: bold;
}

/* 吹き出し本体 */
.y_comment_area{
    position: relative;
    background-color: #FFF500;
    color: #333;
    border-radius: 30px;
    width: 726px;
    height: 56px;
    margin: 0 auto;
    z-index: 10;
}

.y_comment_area p{
    font-weight: bold;
    font-size: 20px;
    text-align: center;
    line-height: 56px;
    position: relative;
    z-index: 20;
}

.red_text{
    color: #EA202E;
    font-weight: bold;
    font-size: 20px;
}

/* 色付きの半円 */
.y_comment_area::before{
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-radius: 50%;
  transform: rotate(160deg);
  left: 585px;
  top: -52px;
  border-left: 40px solid #FFF500;
  border-top: 40px solid #FFF500;
  border-right: 40px solid transparent;
  border-bottom: 40px solid transparent;
}
/* 白い半円 */
.y_comment_area::after{
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-radius: 50%;
  transform: rotate(160deg);
  left: 590px;
  top: -60.2px;
  border-left: 30px solid #174D60;
  border-top: 30px solid #174D60;
  border-right: 30px solid transparent;
  border-bottom: 30px solid transparent;
}

@media (max-width: 1100px){
    .priceless{
        width: 100%;
        margin: 60px auto;
        padding: 40px 0;
    }

    .priceless_title{
        width: 640px;
        font-size: 24px;
    }

    .priceless_area{
        display: block;
        width: 80%;
        margin: 55px auto 15px;
        text-align: center;
    }

    .liter{
        width: 55px;
        height: 55px;
        margin-left: 50px;
        border-radius: 40px;
    }

    .liter p{
        line-height:55px;
        font-size: 15px;
    }

    .price_imgequal{
        width: 55px;
        height: 55px;
        margin: 0 auto 50px;
        transform: rotate( 90deg );
    }

    .priceless_illust_area{
        width: 300px;
        height: 300px;
        margin: 0 auto 50px;
    }

    .price_img04{
        left: 0;
    }

    .price_img05{
        width: 140px;
        margin-left: 0;
        bottom: 85px;
        left: 85px;
    }

    .price_title{
        margin-top: 160px;
        font-size: 13px;
    }

    .price_text{
        font-size: 20px;
    }

    .tax{
        font-size: 12px;
    }

    /* 吹き出し本体 */
    .y_comment_area{
        width: 600px;
    }

    /* 色付きの半円 */
    .y_comment_area::before{
      left: 355px;
    }
    /* 白い半円 */
    .y_comment_area::after{
      left: 360px;
    }
}

@media (max-width: 700px){
    .priceless_title{
        width: 70%;
        font-size: 18px;
    }

        /* 吹き出し本体 */
    .y_comment_area{
        border-radius: 40px;
        width: 320px;
        height: 83px;
    }

    .y_comment_area p{
        font-size: 16px;
        line-height: 1.5em;
        padding-top: 16px;
    }

    .red_text{
        font-size: 16px;
    }

    /* 色付きの半円 */
    .y_comment_area::before{
      left: 103px;
      top: -45px;
      border-left: 35px solid #FFF500;
      border-top: 35px solid #FFF500;
      border-right: 35px solid transparent;
      border-bottom: 35px solid transparent;
    }
    /* 白い半円 */
    .y_comment_area::after{
      left: 110px;
      top: -50px;
      border-left: 25px solid #174D60;
      border-top: 25px solid #174D60;
      border-right: 25px solid transparent;
      border-bottom: 25px solid transparent;
    }
}

/*料金シミュレーション*/

.simulation{

}

.simulation > p{
    text-align: center;
    margin: 60px 0;
}

.simulation_content{
    width: 1100px;
    height: 285px;
    margin: 0 auto 30px;
    border: 2px solid #00AEEB;
    border-radius: 16px;
    padding: 20px;
}

.simulation_case{
    display: flex;
}

.simulation_case > img{
    width: 262px;
    height: 248px;
}

.case_content{
    width: 75%;
    margin-right: 20px;
}

.case_content > p{
    font-size: 20px;
    font-weight: bold;
}

.case_text{
    background-color: #00AEEB;
    width: 77px;
    border-radius: 13px;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    padding: 6px 14px 4px;
    margin-right: 16px;
}

.case_num{
    font-size: 18px;
    font-weight: bold;
    margin-left: 2px;
}

.simulation_price{
    display: flex;
    padding-top: 15px;
}

.simulation_condition{
    display: flex;
    padding-top: 15px;
}

.month{
    border: 1px solid #EA202E;
    border-radius: 50%;
    width: 69px;
    height: 69px;
    margin: auto 0;
}

.month p{
    text-align: center;
    color: #EA202E;
    font-size: 13px;
    font-weight: bold;
    line-height: 1.3em;
    margin-top: 16px;
}

.simulation_price > p{
    color: #EA202E;
    font-size: 46px;
    font-weight: bold;
    margin: auto 0 auto 8px;
}

.simulation_condition > p{
    color: #EA202E;
    font-size: 46px;
    font-weight: bold;
    margin: auto 0 auto 8px;
}

.yen_tax{
    font-size: 20px;
    font-weight: bold;
    margin: auto 0;
}

.breakdown{
    margin-left: 40px;
}

@media (max-width: 1100px){
    .simulation{

    }

    .simulation > p{
        text-align: center;
        margin: 60px 0;
    }

    .simulation_content{
        width: 90%;
        height: auto;
        margin: 0 auto 20px;
        padding: 20px;
    }

    .simulation_case{
        display: block;
        text-align: center;
    }

    .simulation_case > p{
        text-align: left;
    }

    .simulation_case > img{
        width: 228px;
        height: auto;
    }

    .case_content{
        width: 100%;
        margin-right: 0;
    }

    .case_content > p{
        text-align: left;
    }

    .case_content hr{
        margin: 10px 0;
    }

    .simulation_price{
        display: flex;
        padding-top: 15px;
    }

    .simulation_condition{
        display: flex;
        padding-top: 15px;
    }

    .simulation_condition > p{
        font-size: 35px;
    }

    .yen_tax{
        font-size: 15px;
    }

    .breakdown{
        margin-left:15px;
    }

    .breakdown > p{
        text-align: left;
    }
}

@media (max-width: 830px){
  .simulation > p{
        margin: 40px auto;
        font-size: 14px;
        width: 90%;
        text-align: left;
    }

    .simulation_case > img{
        margin-bottom: 20px;
    }

    .case_content hr{
        margin: 10px 0 0 0;
    }

    .simulation_price{
        display: block;
        padding-top: 15px;
    }

    .simulation_condition{
        display: flex;
        padding-top: 0;
    }

    .breakdown{
        margin-left:0;
        margin-top: 15px;
    }

    .breakdown > p{
        font-size: 14px;
    }
}

/*他社と比べても断然おトク！*/

.comparison{
    background-color: #D3ECF5;
    margin-top: 50px;
    padding-top: 73px;
    padding-bottom: 80px;
}

.comparison_title{
    background-color: #174D60;
    width: 542px;
    margin: 0 auto 60px;
    border-radius: 29px;
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    line-height: 57px;
}

.comparison_content{
    background-color: #fff;
    padding: 40px 93px 80px;
    width: 1100px;
    margin: 0 auto;
}

.comparison_content_title{
    color: #174D60;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
}

.comparison_content table{
    margin: 40px 0 30px;
}

.comparison_content th ,.comparison_content td{
    border: 1px solid #707070;
    width: 187px;
    text-align: center;
    font-weight: bold;
}

.comparison_content th{
    background-color: #EFEFEF;
    height: 46px;
}

.comparison_content td{
    height: 90px;
    font-size: 18px;
}

.comparison_company{
    width: 170px;
    font-size: 20px;
}

.y_area{
    background-color: #FFFBD9;
    height: 129px;
}

.y_area img{
    width: 125px;
}

.y_area td {
    font-size: 22px;
}

.r_text{
    color: #EA202E;
}

.size_up{
    font-size: 31px;
    font-weight: bold;
}

.size_down{
    color: #174D60;
    font-size: 12px;
    position: relative;
    top:-20px;
}

.comparison_c{
    border: 2px solid #FF0000;
    padding: 34px 20px 34px 113px;
    display: flex;
    margin-bottom: 16px;
}

.comparison_c p , .underline{
    font-size: 18px;
    font-weight: bold;
    margin: auto 57px auto 0;
}

.underline{
    background:linear-gradient(transparent 40%, #FFF5A3 40%);
}

.red_t{
    color: #EA202E;
    font-size: 30px;
    font-weight: bold;
}

.r_yen{
    font-size: 18px;
    font-weight: bold;
}

.s_text{
    font-size: 12px;
}

@media (max-width: 1100px){
    .comparison{
        margin-top: 40px;
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .comparison_title{
        width: 60%;
        padding: auto;
        margin: 0 auto 40px;
        border-radius: 29px;
        font-size: 30px;
        line-height: 57px;
    }

    .comparison_content{
        padding: 40px 20px 40px;
        width: 90%;
    }

    .comparison_content_title{
        font-size: 20px;
        font-weight: bold;
        text-align: center;
    }

    .comparison_content table{
        margin: 30px 0 30px;
    }

    .comparison_content th ,.comparison_content td{
        width: 177px;
        text-align: center;
        font-weight: bold;
    }

    .comparison_content th{
        background-color: #EFEFEF;
        height: 46px;
        font-size: 14px;
    }

    .comparison_content td{
        height: 90px;
        font-size: 16px;
    }

    .comparison_company{
        width: 180px;
        font-size: 20px;
    }

    .y_area{
        background-color: #FFFBD9;
        height: 129px;
    }

    .y_area img{
        width: 110px;
    }

    .y_area td {
        font-size: 20px;
    }

    .size_up{
        font-size: 28px;
    }

    .size_down{
        font-size: 12px;
        top:-20px;
    }

    .comparison_c{
        padding: 20px 0;
        display: block;
        margin: 0 auto 16px;
    }

    .comparison_c p , .underline{
        text-align: center;
        margin: 0 auto;
    }

}

@media (max-width: 800px){

    .comparison_title{
        width: 270px;
        height: 35px;
        font-size: 17px;
        line-height: 35px;
    }

    .comparison_content{
        padding: 20px 20px 20px;
        width: 90%;
    }

    .comparison_content_title{
        font-size: 15px;
    }


    .sp-scroll-table table{
        border-collapse: collapse;
        margin: 20px 0 0;
        width: 700px;
    }

    .sp-scroll-table {
        overflow-x: auto;
        margin-bottom: 1em;
        max-width: 800px;
    }

    .sp-scroll-table th ,.sp-scroll-table td{
        width: 80px;
        text-align: center;
        font-weight: bold;
    }

    .sp-scroll-table th{
        background-color: #EFEFEF;
        height: 32px;
        font-size: 11px;
        width: 80px;
    }

    .sp-scroll-table td{
        height: 60px;
        font-size: 13px;
        white-space: nowrap;
    }

    .comparison_company{
        width: 80px;
        font-size: 20px;
    }

    .y_area{
        background-color: #FFFBD9;
        height: 88px;
    }

    .y_area img{
        width: 80px;
    }

    .y_area td {
        font-size: 15px;
    }

    .size_up{
        font-size: 20px;
    }

    .size_down{
        font-size: 9px;
        top:-20px;
    }

    .comparison_c{
        padding: 15px;
    }

    .comparison_c p , .underline{
        line-height: 1.8em;
        font-size: 16px;
    }

}

/*          会社概要          */

/*お客様との絆を大切にし、社会に貢献する企業でありたい。*/

.company{
    width: 1100px;
    margin: 50px auto 0;
}

.representative_introduction{
    height: 642px;
}

.representative_introduction >h3{
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 30px;
}

.representative_text{
    width: 554px;
    margin-top: 60px;
    float: left;
}

.representative_image{
    float: right;
    margin-top: 60px;
    margin-bottom: 37px;
}

.representative_image > img{
    width: 501px;
    height: 338px;
    margin-bottom: 7px;
}

.kana{
    font-size: 12px;
    letter-spacing: 0.15em;
}

.representative_image p{
    text-align: right;
}

.kanji{
    font-family: "Yu Mincho", "YuMincho";
    font-size: 30px;
    padding-left: 10px;
}

@media (max-width: 1100px){
    .company{
        width: 100%;
        margin: 40px auto 0;
    }

    .representative_introduction{
        width: 90%;
        margin: 0 auto;
        height: auto;
    }

    .representative_introduction >h3{
        font-size: 20px;
        line-height: 1.5em;
    }

    .representative_text{
        width: 100%;
        margin-top: 40px;
        float:none;
    }

    .representative_image{
        float: none;
        margin-top: 40px;
        margin-bottom: 37px;
    }

    .representative_image > img{
        width: 100%;
        height: 100%;
    }

    .kana{
        font-size: 12px;
        letter-spacing: 0.15em;
    }

    .representative_image p{
        text-align: right;
    }

    .kanji{
        font-size: 26px;
        padding-left: 10px;
    }
    .kana {
    font-size: 10px;
}
}

/*スタッフ紹介*/

.staff{
    background-color: #F8F8F8;
    margin: 100px 0 80px;
    padding-top: 80px;
    padding-bottom: 80px;
}

.staff_line{
    width: 797px;
    margin: 80px auto 0;
    display: flex;
}

.staff_introduction{
    margin: auto;
    width: 340px;
}

.staff_introduction img{
    width: 340px;
    height: 340px;
    background-color: gray;
}

.staff_name{
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    margin: 40px auto 30px;
}

@media (max-width: 800px){
    .staff{
        margin: 60px 0 40px;
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .staff_line{
        width: 90%;
        margin: 40px auto 0;
        display: block;
    }

    .staff_introduction{
        margin: 0 auto 40px;
    }

    .staff_name{
        font-size: 18px;
        font-weight: bold;
        text-align: center;
        margin: 20px auto 15px;
    }

    .staff_introduction{
        margin: auto;
        width: 100%;
    }

    .staff_introduction img{
        width: 100%;
        height: auto;
    }
}

/*事業概要*/

.company_profile table{
    width: 728px;
    margin: 80px auto;
}

.company_profile tr{
}

.company_td , .company_profile th{
    border-bottom: 1px solid #707070;
    border-top: 1px solid #707070;
    text-align: left;
}

.space{
    border-bottom: 1px solid #fff;
    border-top: 1px solid #fff;
    width: 16px;
}

.company_profile td p , .company_profile th p{
    margin: 30px auto 30px 0;
}

.company_profile th{
    width: 125px;
}

@media (max-width: 800px){
    .company_profile table{
        width: 90%;
        margin: 60px auto;
    }

    .space{
        width: 7px;
    }

    .company_profile td p , .company_profile th p{
        margin: 30px auto 30px 0;
        font-size: 14px;
    }

    .company_profile th{
        width: 80px;
    }

        .company_profile th p{
        font-weight: bold;
    }
}

/*          プライバシーポリシー          */

/*プライバシーポリシー*/

.privacypolicy{
    width: 1100px;
    margin: 80px auto 94px;
}

@media (max-width: 1120px){
    .privacypolicy{
        width: 90%;
        margin: 60px auto 60px;
    }
}



/*          お知らせ          */

/*お知らせ一覧*/

.pagination_item a, .pagination_item_current, .pagination_item_tolist, .pagination_btn_prev a, .pagination_btn_next a, .pagination_btn_first, .pagination_btn_last {
  box-sizing: border-box;
  display: block;
  color: #FFF;
  text-decoration: none;
  text-align: center;
  background: #00AEEB;
  border: 1px solid #00AEEB;
  min-width: 3em;
  transition: all .2s;
  margin: 0 8px 0 0;
  padding: calc(1em - 1px) 1em;
}

.pagination_item a:hover, .pagination_item_current:hover, .pagination_item_tolist, .pagination_btn_prev a:hover, .pagination_btn_next a:hover, .pagination_btn_first:hover, .pagination_btn_last:hover /*, .pagination_item_tolist:hover,*/{
  color: #00AEEB;
  background: #FFF;
  border: 1px solid #00AEEB;
}

.pagination {
  position: relative;
  display: flex;
  justify-content: center;
  color: #00AEEB;
  line-height: 1;
  margin: 0;
  padding: 2em 0;
}



.pagination_pos {
  position: absolute;
  top: -.5em;
  left: 50%;
  transform: translate(-50%, 0);
  color: #00AEEB;
}

@media (min-width: 320px) {
  .pagination_list {
    order: 3;
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .pagination_item {
    margin: 0;
  }
  .pagination_item_current {
    background: #FFF;
    color: #00AEEB;
    font-weight: bold;
    border: 1px solid #00AEEB;
    margin: 0 8px 0 0;
  }
  .pagination_pos {
    display: none;
  }
}

  .pagination_item_tolist{
    background: #00AEEB;
    font-weight: bold;
    width: 220px;
    margin: 0 8px 0 0;
      position: relative;
  }

  .pagination_item_tolist a{
    color: #fff;
  }

.tolist_btn{
    font-weight: normal;
    margin-left: 40px;
    position: absolute;
}


/*お知らせ詳細*/

.news_detail{
    width: 1100px;
    margin: 80px auto;
}

.news_detail_title p{
    font-size: 24px;
    font-weight: bold;
}

.news_detail_date{
    font-size: 15px;
    margin: 20px 0 50px;
}

.news_detail_img{
    margin: 80px auto;
    max-width: 623px;
    background-color: darkgray;
}

@media (max-width: 1100px) {
    .news_detail{
        width: 90%;
        margin: 45px auto 40px;
    }

    .news_detail_title p{
        font-size: 20px;
    }

    .news_detail_img{
        margin: 30px auto;
        width: 300px;
        height: 200px;
    }
}

/*          お申し込み・お問い合わせ          */

/*お申し込み手順*/

.contact{
    width: 1100px;
    margin: 80px auto;
}

.contact_process_line{
    display: flex;
}

.contact_process{
    width: 256px;
    margin: 80px auto 0;
    position: relative;
}

.contact_num{
    background-color: #174D60;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    line-height: 32px;
    float: left;
    margin-top: 182px;
}

.contact_process img{
    width: 224px;
    height: 214px;
    margin: 0 0 18px auto;
}

@media (max-width: 1100px) {
    .contact{
            width: 90%;
            margin: 60px auto;
        }

        .contact_process_line{
            display: flex;
            width: 100%;
            margin: 0 auto;
        }

        .contact_process{
            width: 150px;
            margin: 40px auto 0;
            position: relative;
        }

        .contact_num{
            margin-top: 40px;
        }

        .contact_process img{
            width: 150px;
            height: auto;
            margin: 0 0 18px auto;
    }
}

@media (max-width: 800px) {
        .contact_process_line{
            display: block;
        }

        .contact_process{
            width: 90%;
            margin: 40px auto 0;
            position: relative;
        }

        .contact_num{
            margin-top: 10px;
        }

        .contact_process img{
            width: 224px;
            height: auto;
            text-align: center;
            margin: 0 auto 18px;
    }
    .process_content{
        margin: 0 auto;
        width: 256px;
    }
}
/*電話でのお問い合わせ*/

.tel_contact{
    background-color: #D3ECF5;
    padding-top: 80px;
    padding-bottom: 80px;
}

.tel_contact_area{
    background-color: #fff;
    width: 728px;
    padding-top: 60px;
    padding-bottom: 60px;
    margin: 0 auto;
}

.tel_contact_area h3{
    font-size: 30px;
    font-weight: bold;
    text-align: center;
}

.tel_num{
    display: flex;
    width: 430px;
    margin: 32px auto 0;
    border-bottom: 2px solid #00AEEB;
}

.tel_num img{
    width: 35px;
    height: 35px;
    margin: auto;
}

.tel_num p{
    color: #00AEEB;
    font-size: 48px;
    font-weight: bold;
    text-align: center;
}

.tel_contact_area hr{
    border: 1.5px solid #00AEEB;
    width: 460px;
    margin: 0 auto;
}

.tel_time{
    color: #00AEEB;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    margin-top: 14px;
}

@media (max-width: 800px) {
    .tel_contact{
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .tel_contact_area{
        width: 90%;
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .tel_contact_area h3{
        font-size: 16px;
    }

    .tel_num{
        display: flex;
        width: 380px;
        margin-top: 32px;
        margin-left: auto;
        margin-right: auto;
    }

    .tel_num img{
        width: 35px;
        height: 35px;
        margin: auto 10px;
    }

    .tel_num p{
        font-size: 40px;
    }

    .tel_contact_area hr{
        border: 1px solid #00AEEB;
        width: 400px;
        margin: 0 auto;
    }

    .tel_time{
        color: #00AEEB;
        font-size: 18px;
        font-weight: bold;
        text-align: center;
        margin-top: 14px;
    }
}

@media (max-width: 700px) {
    .tel_num{
        width: 300px;
    }
    .tel_num p{
        font-size: 30px;
    }
    .tel_contact_area hr{
        width: 300px;
    }
    .form >label{
        margin-right: 0;
        margin-top: 15px;
        display: block;
}

}

/*フォームでのお問い合わせ*/

#contact_form{
	padding: 60px 0;
}

.form_contact{
    width: 914px;
    margin: 0 auto;
    padding: 80px 0;
}

.form_contact h3{
    font-size: 30px;
    font-weight: bold;
    text-align: center;
}

.form_contact > p{
    text-align: center;
    margin: 60px auto 80px;
}

.form{

}

.form >label{
    margin-right: 30px;
}
.form-item >label{
    margin-right: 30px;
}

.form > p{
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 22px;
}

.js-check, .js-check_radio{
    font-size: 16px;
    padding: 5px;
    vertical-align: baseline;
    margin-right: 5px;
}

.form-item{
}

.form-item-label{
    margin: 42px 0 0 0;
    font-weight: bold;
}

.form-item-label-required{
    background-color: #EA202E;
    color: #fff;
    padding: 4px;
    font-size: 11px;
    margin: 0 0 0 5px;
    position: relative;
    bottom: 2px;
}

.form-item-input , .form-item-input_err{
    width: 100%;
    height: 40px;
    padding: 5px;
    border-radius: 4px;
    border: 1px solid #A2A2A2;
}

.form-item-textarea , .form-item-textarea_err{
    width: 100%;
    height: 220px;
    border-radius: 4px;
    border: 1px solid #A2A2A2;
    padding: 5px;
    font-weight: normal;
    font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", YuGothic, "游ゴシック体", sans-serif;
}

.form-item-input::placeholder {
    color: #dddddd;
}

.form-item-textarea::placeholder {
    font-weight: normal;
    color: #dddddd;
}

#sample , #choice{
  margin-top:10px;
}

.privacy_form{
    margin: 80px auto;
}

.privacy_form > h3{
    font-size: 20px;
    font-weight: bold;
    text-align: center;
}

.privacy_form > p{
    font-size: 15px;
    text-align: center;
    margin: 30px 0 40px;
}

.scroll{
    height: 215px;
    width: 914px;
    overflow: auto;
    border: 1px solid #A2A2A2;
    padding: 15px 13px;
}

.scroll > p{
    font-size: 14px;
}

.scroll > p > span{
    font-weight: bold;
}

@media (max-width: 990px) {
    .form_contact{
        width: 90%;
        padding: 60px 0;
    }

    .form_contact h3{
        font-size: 18px;
    }

    .form_contact > p{
        margin: 40px auto 60px auto;
        text-align: left;
    }

    .form{

    }

    .form > p{
        font-size: 16px;
    }

    .js-check{
        font-size: 16px;
        padding: 5px;
    }

    .form-item{
    }

    .form-item-label{
        margin: 42px 0 0 0;
        font-weight: bold;
    }

    .form-item-label-required{
        background-color: #EA202E;
        color: #fff;
        padding: 4px;
        font-size: 11px;
        margin: 0 0 0 5px;

    }

    .form-item-input , .form-item-input_err{
        width: 100%;
        height: 40px;
        padding: 5px;
        border-radius: 4px;
        border: 1px solid #A2A2A2;
    }

    .form-item-textarea , .form-item-textarea_err{
        width: 100%;
        height: 220px;
        border-radius: 4px;
        border: 1px solid #A2A2A2;
    }

    #sample {
      margin-top:10px;
    }

    .privacy_form{
        margin: 80px auto;
    }

    .privacy_form > h3{
        font-size: 20px;
        font-weight: bold;
        text-align: center;
    }

    .privacy_form > p{
        font-size: 15px;
        text-align: left;
        margin: 30px 0 40px;
    }

    .scroll{
        height: 215px;
        width: 100%;
        overflow: auto;
        border: 1px solid #A2A2A2;
        padding: 15px 13px;
    }


}


/*フォームでのお問い合わせエラー*/

.form-item-input_err , .form-item-textarea_err{
    border: 1px solid #EA202E;
    background-color: #FFF8F9;
}

.form-item-label-err{
    font-size: 13px;
    color: #EA202E;
    margin-left: 10px;
}

::-webkit-input-placeholder{
    font-weight: normal;
}
:-moz-placeholder {
    font-weight: normal;
}

/*フォームでのお問い合わせ確認*/

.form_content_confirmation{
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 22px;
}

.label_confirmation{
    font-weight: bold;
}

.form-item_confirmation{
    display: flex;
    width: 914px;
    border-bottom: 1px solid #A2A2A2;
    margin: 27px auto 0;
    height: 42px;
}

.form-item-label_confirmation{
    width: 190px;
    font-weight: bold;
}

.form-item_confirmation_text{
    width: 914px;
    margin: 27px auto 80px;
}

.form-item-label_confirmation_text{
    margin-bottom: 34px;
    font-weight: bold;
}

@media (max-width: 990px) {
    .form-item_confirmation{
            display: block;
            width: 100%;
            height: 62px;
        }

        .form-item-label_confirmation{
            width: auto;
        }

        .form-item_confirmation_text{
            width: 100%;
            margin: 27px auto 60px;
        }
}


.order{
    width: 914px;
    margin: 80px auto 0;
}


.order_telnum{
    text-decoration: underline;
    color: #00AEEB;
    margin: 0 5px;
    display: inline;
}
.form_order{
    width: 914px;
    margin: 0 auto;
    padding: 40px 0;
}
.order_content{
    background-color: #EAF9FF;
    padding: 0 25px 0;
    position: relative;
}
.order_content ul li:nth-child(-n+6){
    border-bottom: 1px solid gray;
}
.order_content ul li{
    padding: 15px 0;
}
.checkbox01, .checkbox02, .checkbox03, .checkbox04, .checkbox05 , .checkbox06 , .checkbox07 {
    display: block;
    position: relative;
    margin: 1em 0;
    padding-left: 28px;
    cursor: pointer;
    user-select: none; /* テキストの選択を防ぐ */
}

/* inputは非表示にする */
.checkbox01 input, .checkbox02 input, .checkbox03 input, .checkbox04 input, .checkbox05 input, .checkbox06 input, .checkbox07 input{
  display: none;
}

/* □ */
.checkmark {
  position: absolute;
  top: 0; /* 上からの位置 */
  left: 0;
  height: 16px; /* 大きさ */
  width: 16px; /* 大きさ */
  border: solid 1px #00AEEB; /* 線 */
    background-color: #fff;
  box-sizing: border-box;
}
/* ✓ */
.checkmark:after {
  content: "";
  position: absolute;
  left: 3px; /* チェックの位置 */
  top: 0; /* チェックの位置 */
  width: 6px; /* チェックの大きさ */
  height: 10px; /* チェックの大きさ */
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  opacity: 0; /* 透明にしておく */
}

/* チェックが入ったときの□ */
.checkbox01 input:checked + .checkmark {
  background: #00AEEB; /* チェック時の色 */
  border-color: #00AEEB; /* チェック時の色 */
}
.checkbox02 input:checked + .checkmark {
  background: #00AEEB; /* チェック時の色 */
  border-color: #00AEEB; /* チェック時の色 */
}
.checkbox03 input:checked + .checkmark {
  background: #00AEEB; /* チェック時の色 */
  border-color: #00AEEB; /* チェック時の色 */
}
.checkbox04 input:checked + .checkmark {
  background: #00AEEB; /* チェック時の色 */
  border-color: #00AEEB; /* チェック時の色 */
}
.checkbox05 input:checked + .checkmark {
  background: #00AEEB; /* チェック時の色 */
  border-color: #00AEEB; /* チェック時の色 */
}
.checkbox06 input:checked + .checkmark {
  background: #00AEEB; /* チェック時の色 */
  border-color: #00AEEB; /* チェック時の色 */
}
.checkbox07 input:checked + .checkmark {
  background: #00AEEB; /* チェック時の色 */
  border-color: #00AEEB; /* チェック時の色 */
}
/* チェックが入ったときの✓ */
.checkbox01 input:checked + .checkmark:after {
  opacity: 1; /* 透明を解除 */
}
.checkbox02 input:checked + .checkmark:after {
  opacity: 1; /* 透明を解除 */
}
.checkbox03 input:checked + .checkmark:after {
  opacity: 1; /* 透明を解除 */
}
.checkbox04 input:checked + .checkmark:after {
  opacity: 1; /* 透明を解除 */
}
.checkbox05 input:checked + .checkmark:after {
  opacity: 1; /* 透明を解除 */
}
.checkbox06 input:checked + .checkmark:after {
  opacity: 1; /* 透明を解除 */
}
.checkbox07 input:checked + .checkmark:after {
  opacity: 1; /* 透明を解除 */
}

.order_plus p{
    margin: 42px 0 0 0;
    font-size: 18px;
    font-weight: bold;
}

#hidden1{
    position: absolute;
    top: 25px;
    left: 350px;
}
#hidden2{
    position: absolute;
    top: 102px;
    left: 350px;
}
#hidden3{
    position: absolute;
    top: 180px;
    left: 350px;
}
#hidden4{
    position: absolute;
    top: 260px;
    left: 350px;
}
#hidden5{
    position: absolute;
    top: 340px;
    left: 350px;
}
#hidden6{
    position: absolute;
    top: 340px;
    left: 350px;
}
#hidden7{
    position: absolute;
    top: 420px;
    left: 350px;
}
.hidden_area{
    display: flex;
}

.hidden_area select{
    width: 85px;
    padding: 0 5px;
}
.hidden_area p{
    margin-left: 5px;
}

.order_find{
    margin-left: 15px;
}

.form_order > .form_confirmation > .form-item_confirmation_text > .form-item-label_confirmation_text{
    margin-bottom: 15px;
    font-weight: bold;
}


@media (max-width: 1100px) {
    .order{
            width: 90%;
            margin: 40px auto 0;
        }
    .form_order{
        width: 90%;
        padding: 40px 0 40px;
    }
    .order > p {
        display: block;
    }
}

@media (max-width: 700px){
    #hidden1{
        position: relative;
        top: 0;
        left: 0;
        margin-left: 28px;
    }
    #hidden2{
        position: relative;
        top: 0;
        left: 0;
        margin-left: 28px;
    }
    #hidden3{
        position: relative;
        top: 0;
        left: 0;
        margin-left: 28px;
    }
    #hidden4{
        position: relative;
        top: 0;
        left: 0;
        margin-left: 28px;
    }
    #hidden5{
        position: relative;
        top: 0;
        left: 0;
        margin-left: 28px;
    }
    #hidden6{
        position: relative;
        top: 0;
        left: 0;
        margin-left: 28px;
    }
    #hidden7{
        position: relative;
        top: 0;
        left: 0;
        margin-left: 28px;
    }
}
