@charset "UTF-8";

html,body{
    width: 100%;
	min-width: 1100px;/* タブレット表示見切れ解消 */
}

html {
    font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "メイリオ", sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #505050;
}
@media screen and (max-width: 768px) {
    html {
        font-size: 90%;
    }
    html,body {
        width: 100%;
        min-width: auto;
    }
}

body {
    overflow-x: hidden;
}


/* --------------------------------------
基本設定
---------------------------------------*/
a {
    text-decoration: none;
    color: #505050;
}
a:hover,a p:hover {
    color: #00B400;
}
a img:hover {
    opacity: 0.7;
}
li {
    list-style: none;
}

p.read_text {
    font-weight: 500;
    font-size: 20px;
    text-align: center;
    line-height: 40px;
}
img {
    width: 100%;
    height: auto;
  }

@media screen and (min-width: 768px){
    .br-sp {
        display: none;
    }
    
    .sp {
        display: none;
    }
}
@media screen and (max-width: 768px){
    .pc {
        display: none;
    }
}

/* --------------------------------------
文字
---------------------------------------*/
p {
    font-size: 1rem;
    font-weight: 400;
    line-height: 150%;
}
p.indent_text {
    padding-left: 1em;
    text-indent: -1em;
}
p.indent_text span{
    color: #6ab8ae;
}
h2 {
    font-size: 3rem;
    font-weight: 600;
    line-height: 200%;
}
h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
}
h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
}
.title_center p {
    font-size: 1.25rem;
}
.title_center h3 {
    line-height: 200%;
}
@media screen and (max-width: 768px){
    h2,h3 {
        font-size: 5.5vw;
    }
}


/* --------------------------------------
セクション・文字幅
---------------------------------------*/
section {
    height: auto;
    width: 100%;
    padding: 100px 0;
}
section.pd10050 {
    height: auto;
    width: 100%;
    padding: 100px 0 50px;
}
section.pd50100 {
    height: auto;
    width: 100%;
    padding: 50px 0 100px;
}
section.pd5050 {
    height: auto;
    width: 100%;
    padding: 50px 0;
}
section.pd0_50 {
    height: auto;
    width: 100%;
    padding: 0 0 50px;
}
section.pd00 {
    height: auto;
    width: 100%;
    padding: 0;
}
.yellow_bk {
    background-color: yellow;
}
.green_bk {
    background-color: #E5FFD3;
}

.sec_inner {
    width: 100%;
    max-width: 900px;
    height: 100%;
    margin: auto;
}
.title_center {
    text-align: center;
    margin-bottom: 3rem;
}
.content_800px {
    width: 800px;
    height: auto;
    margin: auto;
}
.content_600px {
    width: 600px;
    height: auto;
    margin: auto;
}
.content_400px {
    width: 400px;
    height: auto;
    margin: auto;
}
@media screen and (max-width: 768px) {
    section,
    section.pd10050,
    section.pd50100 {
        padding: 50px 0;
    }
    .sec_inner {
        width: 96%;
        height: 100%;
        margin: auto;
        /* background-color: rgba(255, 238, 0, 0.411); */
    }
    .content_800px {
        width: 100%;
        height: auto;
        margin: auto;
    }
    .content_600px {
        width: 100%;
        max-width: 600px;
        height: auto;
        margin: auto;
    }
    .content_400px {
        width: 100%;
        max-width: 400px;
        height: auto;
        margin: auto;
    }    
}


/* --------------------------------------
 マージン
---------------------------------------*/
.mgn5rem {
    width: 100%;
    height: 5rem;
}
.mgn3rem {
    width: 100%;
    height: 3rem;
}
.mgn2rem {
    width: 100%;
    height: 2rem;
}
.mgn1rem {
    width: 100%;
    height: 1rem;
}
@media screen and (max-width: 768px) {
    .mgn5rem {
        height: 3rem;
    }
    .mgn3rem {
        height: 2rem;
    }
    .mgn2rem {
        height: 1.5rem;
    }
}

/* --------------------------------------
ホワイト背景
---------------------------------------*/
.white_bk {
    background-color: #fff;
    width: 100%;
    height: 100%;
}
.white_bk_title {
    width: 100%;
    text-align: center;
    padding: 100px 0 50px;
}
.white_bk h4.dot_title {
    font-size: 24px;
}
.white_bk_inner {
    width: 800px;
    height: auto;
    margin: auto;
    padding-bottom: 100px;
}
@media screen and (max-width: 768px) {
    .white_bk_title {
        width: 100%;
        text-align: center;
        padding: 50px 0 50px;
    }
    .white_bk_inner {
        width: 90%;
        height: auto;
        margin: auto;
        padding-bottom: 50px;
    }  
}


/* --------------------------------------
仕切り線
---------------------------------------*/
.partition_bar {
    width: 100%;
    height: 1px;
    background-color: #000;
    margin-bottom: 1rem;
}

/* --------------------------------------
カラム設定
---------------------------------------*/
.two_column {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.two_column_re {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    flex-direction: row-reverse;
}
.three_column {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.two_column_left {
    width: 60%;
}

.two_column_right {
    width: 38%;
}
@media screen and (max-width: 768px) {
    .two_column_left,
    .two_column_right {
        width: 100%;
    }
}

/* --------------------------------------
マージン調整
---------------------------------------*/
.mgn_top_100px {
    margin-top: 100px!important;
}
.mgn_top_200px {
    margin-top: 200px!important;
}
.mgn_bottom_50px {
    margin-bottom: 50px;
}
.mgn_bottom_300px {
    margin-bottom: 300px;
}
@media screen and (max-width: 768px) {
    .mgn_bottom_300px {
        margin-bottom: 200px;
    }
}



/* --------------------------------------
svg
---------------------------------------*/
@media screen and (max-width: 768px) {
  svg {
    width: 100%;
    height: auto;
  }
}







/* --------------------------------------
ページ
---------------------------------------*/
.sec_inner.pager {
    margin-top: 50px;
}
.pager .pagination {
  text-align: center;
}

.pager .pagination li {
  display: inline;
  margin: 0 2px;
  padding: 0;
  display: inline-block;
  background: #85c4ec;
  width: 50px;
  height: 50px;
  text-align: center;
  position: relative;
  border-radius: 50px;
}


.pager .pagination li a{
  vertical-align: middle;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  display:table;
  color: #fff;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all  0.3s ease;
}

.pager .pagination li a span{
  display:table-cell;
  vertical-align:middle;
}

.pager .pagination li a:hover,
.pager .pagination li a.active{
  color: #000;
  background: #bee2f8;
  border-radius: 50px;
}

@media only screen and (max-width: 768px){
  .pager .pagination li{
    display: none;
  }

  .pager .pagination li.pre,
  .pager .pagination li.next{
    display: inline-block;
    width: 40%;
    height: 50px;
    text-align: center;
  }

  .pager .pagination li.pre a,
  .pager .pagination li.next a{
    width: 100%;
    text-align: center;
  }

  .pager .pagination li.pre span::after{
    content: "　前の10件へ";
  }

  .pager .pagination li.next span::before{
    content: "次の10件へ　";
  }
}

/* --------------------------------------
投稿の移動
---------------------------------------*/
.post_links {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
}
.post_link {
    display: inline;
    margin: 0 2px;
    padding: 0;
    display: inline-block;
    background: #85c4ec;
    width: 20%;
    height: 40px;
    text-align: center;
    position: relative;
    border-radius: 20px;
}
.post_link a{
    vertical-align: middle;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    display:table;
    color: #fff;
    text-decoration: none;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all  0.3s ease;
}
.post_link a span{
    display:table-cell;
    vertical-align:middle;
}
.post_link a:hover,
.post_link a.active {
    color: #000;
    background: #bee2f8;
    border-radius: 50px;
}
@media only screen and (max-width: 768px){
  .post_link {
    display: inline-block;
    width: 40%;
    height: 50px;
    text-align: center;
    border-radius: 50px;
    margin-bottom: 100px;
  }
}

/* --------------------------------------
お問い合わせ
---------------------------------------*/
.cform_wrap {
    width: 800px;
    margin: auto;
}
.contact_title {
    font-size: 1.5rem;
    font-weight: 600;
}

.cform tr {
    display: flex;
    justify-content: space-between;
    margin: 30px 0;
}

.cform th {
	font-size: 16px;
    height: 40px;
	width: 30%; /*変なところで改行される場合はここの数字を変更します。*/
	font-weight: 500;
    text-align: left;
    line-height: 40px;
}

/* th必須項目 */
span.req_item::before {
    content: "必須";
    display: inline;
    font-size: 0.8rem;
    padding: 3px;
    background-color: #6ab8ae;
    color: #fff;
    margin-left: 0.5rem;
}


.cform td {
    width: 70%;
	font-size: 16px;
    line-height: 40px;
}

.cform td p {
    font-size: 12px;
    line-height: 12px;
    margin-top: 10px;
}

.cform {
	width: 100%;
	margin: 50px auto;
}

.cform [type=submit] {
	display: inline-block;
	font-size: 20px!important;
	padding: 10px 30px;
	text-decoration: none;
	background: #ff8f00;
	color: #FFF;
	border-bottom: solid 4px #B17C00;
	border-radius: 3px;
}

.cform option,
.cform input[type=text],
.cform input[type=email] {
	width: calc(100% - 20px);
    height: 40px;
    border: none;
    background-color: #fff;
    border: #999 1px solid;
    padding: 0 10px;
    font-size: 16px;
}
input.post_tel {
	width: 100px!important;
    border: none;
    background-color: #fff;
    border: #999 1px solid;
}
input.zip {
	width: 200px!important;
    border: none;
    background-color: #fff;
    border: #999 1px solid;
}
.cform textarea {
	width: calc(100% - 20px);
    border: none;
    background-color: #fff;
    border: #999 1px solid;
    font-size: 16px;
    padding: 10px;
}
.post_select {
	width: 100%;
    padding: 1px 2px;
    height: 40px;
    font-size: 16px;
    font-weight: 500;
    padding: 0 10px;
    border: none;
    background-color: #fff;
    border: #999 1px solid;
}
.post_select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/1697571/chevron-down.svg);
    background-repeat: no-repeat;
    background-position: right 10px center;
}

.required-srt {
	font-size: 12pt;
	padding: 5px;
	background: #ce0000;
	color: #fff;
	border-radius: 3px;
	margin-left: 10px;
	vertical-align: middle;
}



.submit-btn input,
.send-btn {
    font-size: 16px;
    font-weight: 500;
	background: #00B400;
	width: 300px;
    height: 40px;
    line-height: 40px;
	margin: 30px auto;
	display: block;
	border: 1px #00B400 solid;
	text-align: center;
	color: #fff;
	transition: all 0.4s ease;
}
.submit-btn input:hover,
.send-btn:hover {
	background: #fff;
	color: #000;
}

.submit-btn-bk input {
    font-size: 16px;
    font-weight: 500;
	background: #555;
	width: 300px;
    height: 40px;
	margin: 30px auto;
	display: block;
	border: 1px #555 solid;
	text-align: center;
	color: #fff;
	transition: all 0.4s ease;
}
.submit-btn-bk input:hover {
	background: #fff;
	color: #4d3623;
}

.mw_wp_form_input h4.input {
    display: inline-block;
}
.mw_wp_form_input p.confirm {
    display: none;
}
.mw_wp_form_confirm h4.input {
    display: none;
}
.mw_wp_form_confirm h4.confirm {
    display: inline-block;
}
.mw_wp_form_input .confirm {
    display: none;
}
.mw_wp_form_confirm .input_show {
    display: none;
}

@media only screen and (max-width:767px) {
    .cform_wrap {
        width: 100%;
    }
	.cform tr {
        display: block;
        justify-content: space-between;
        margin: 30px 0;
    }
    .cform th{
        line-height: 2rem;
    }
    .cform th,
	.cform td {
		width: 100%;
        height: auto;
		display: block;
		border-top: none;
        text-align: left;
	}
    .cform th.sp_hidden {
        display: none;
    }
    input.post_tel {
        width: 20%!important;
    }
    .submit-btn input,
    .send-btn {
        width: 100%;
    }
    .submit-btn-bk input {
        width: 100%;
    }
}



/* チェックボタン位置調整 */
input.question {
    vertical-align: initial!important;
}

/* ページ移動ボタン */
.contact_wrap {
    position: relative;
}
.contact_btn {
    position: absolute;
    top: 0;
    right: 0;
    padding: 1rem;
    background: #19b195;
	border: 1px #19b195 solid;
	text-align: center;
	color: #fff;
	transition: all 0.4s ease;
}
.contact_btn:hover {
    background: #fff;
	color: #000;
}
@media only screen and (max-width:767px) {
    .contact_btn {
        position: static;
    }
}


/* --------------------------------------
フェードイン
---------------------------------------*/

/* 上から */
.fadeDown{
animation-name:fadeDownAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity:0;
}
@keyframes fadeDownAnime{
  from {
    opacity: 0;
	transform: translateY(-100px);
  }
  to {
    opacity: 1;
	transform: translateY(0);
  }
}

/* 左から */

.fadeLeft{
animation-name:fadeLeftAnime;
animation-duration:2s;
animation-fill-mode:forwards;
/* opacity:0; */
}

@keyframes fadeLeftAnime{
  from {
    /* opacity: 0; */
	transform: translateX(-200px);
  }
  to {
    /* opacity: 1; */
	transform: translateX(0);
  }
}


/* fadeUp */

.fadeUp{
animation-name:fadeUpAnime;
animation-duration:1s;
animation-fill-mode:forwards;
opacity:0;
}
@keyframes fadeUpAnime{
  from {
    opacity: 0;
  transform: translateY(100px);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}


/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
 
.fadeUpTrigger{
    opacity: 0;
}


/* --------------------------------------
トップへ戻る
---------------------------------------*/
/*リンクの形状*/
#page-top a{
	display: flex;
	justify-content:center;
	align-items:center;
	background:#00B400;
    border: 1px solid #00B400;
	width: 50px;
	height: 50px;
	color: #fff;
	text-align: center;
	text-transform: uppercase; 
	text-decoration: none;
	font-size:0.6rem;
	transition:all 0.3s;
}

#page-top a:hover{
	background: #fff;
    color: #00B400;
}

/*リンクを右下に固定*/
#page-top {
	position: fixed;
	right: 10px;
	bottom:10px;
	z-index: 2;
    /*はじめは非表示*/
	opacity: 0;
	transform: translateY(100px);
}

/*　上に上がる動き　*/
#page-top.UpMove{
	animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }
  to {
    opacity: 1;
	transform: translateY(0);
  }
}

/*　下に下がる動き　*/
#page-top.DownMove{
	animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
  	opacity: 1;
	transform: translateY(0);
  }
  to {
  	opacity: 1;
	transform: translateY(100px);
  }
}
i.fas.fa-angle-up {
    font-size: 2rem;
}

@media screen and (max-width: 768px) {
    /*リンクを右下に固定*/
    #page-top {
        position: fixed;
        right: 10px;
        bottom: 90px;
        z-index: 2;
        /*はじめは非表示*/
        opacity: 0;
        transform: translateY(200px);
    }

    /*　上に上がる動き　*/
    #page-top.UpMove {
        animation: UpAnime 0.5s forwards;
    }
    @keyframes UpAnime {
        from {
            opacity: 0;
            transform: translateY(200px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /*　下に下がる動き　*/
    #page-top.DownMove {
        animation: DownAnime 0.5s forwards;
    }
    @keyframes DownAnime {
        from {
            opacity: 1;
            transform: translateY(0);
        }
        to {
            opacity: 1;
            transform: translateY(200px);
        }
    }
}

/* --------------------------------------
ドロップシャドウ
---------------------------------------*/
.dropshadow {
  -webkit-filter:drop-shadow(1px 3px 5px rgba(0, 0, 0, 0.5));
  -moz-filter:drop-shadow(1px 3px 5px rgba(0, 0, 0, 0.5));
  -ms-filter:drop-shadow(1px 3px 5px rgba(0, 0, 0, 0.5));
  filter:drop-shadow(1px 3px 5px rgba(0, 0, 0, 0.5));
}