@charset "UTF-8";
/*
Theme Name: mytheme
Theme URI: /wp-content/themes/mytheme
Description: 
Author: me
Author URI:
Version: 1.0
*/


html{

}
body {
	/* font-family: 'Noto Sans JP', sans-serif; */
	font-family: "Shippori Mincho", "Hiragino Mincho ProN", YuMincho, serif;
	overflow-x: hidden;
}
.toppage{
	
}



header{
    z-index: 1000;
}
.header_pc{
	z-index:100;
}
.header_sp{
	display:none;
}
img{
	width:100%;
}
a{
	transition:0.2s;
    text-decoration: none;
}
a:hover{
	opacity:0.7;
	transition:0.2s;
}
p,a,h1,h2,h3,h4,li,th,td{
	color:#4C4744;
	letter-spacing: 0.1em;
	/*line-height:1.5;*/
	line-height: 1.8em;
	font-size:16px;
}

/* フェードイン */
.fade {
    /* 最初は非表示 */
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px);
    transition: opacity 1s, visibility 1s, transform 1s;
  }
  /* フェードイン時に入るクラス */
  .is-fadein {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }

header{
    width: 100%;
    position: fixed;
    background: url(./img/header-bg2.png?2) no-repeat;
    background-size: 100% 100%;
    color: #fff;
}
.header{
    padding: 10px 40px;
    display: flex;
    align-items: center;
}
.glo-nav{
    margin-left: auto;
}
.glo-nav ul{
    color: #fff;
    display: flex;
    margin-right: 20px;
}
.glo-nav ul li{
    margin:0 15px;
}
.glo-nav ul li a{
    color: #fff;
    font-size: 15px;
}
.glo-nav ul li a{
    position: relative;
    overflow: hidden;
    display: inline-block;
}
.glo-nav ul li a::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
  transform: translate(-100%, 0);
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.4s;
  content: "";
}
.glo-nav ul li a:hover::after {
    transform: translate(0, 0);
}
.others-link{
    display: flex;
    align-items: center;
}
.header-snsbtn{
    width: 30px;
    height: 30px;
    margin-right: 15px;
}
.lang-btn a {
    display: block;
    font-size: 14px;
    padding: 2px 25px;
    border: #fff solid 1px;
    color: #fff;
}
.lang-btn a:hover{
    border: #744C27 solid 1px;
    color: #744C27;
}

.circle-btn{
    margin-left: 10px;;
}
.circle-btn a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    font-size: 15px;
    color: #fff;
    background: #BFA68D;
    border-radius: 80px;
    border: #fff solid 1px;
	opacity: 0.9;
    position: relative;
}
.circle-btn a span{
    position: relative;
    z-index: 2;
}
.circle-btn a::after{
    content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background-color: #744C27;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0, 0);
  transition: transform ease 0.4s;
}
.circle-btn a:hover::after {
  transform: translate(-50%, -50%) scale(1, 1);
}
.circle-btn a:hover{
	opacity:0.8;
    background: #744C27;
}
.side-contactbtn{
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    writing-mode: vertical-rl;
}
.side-contactbtn a{
    color: #fff;
    background: #F27B78;
    border-radius: 10px 0px 0px 10px;
    width:55px;
	height:190px;
	display:flex;
	align-items: center;
    justify-content: center;
	font-size:18px;
	letter-spacing: 0.3em;
}
.side-contactbtn a:before{
	content:"";
	display:block;
	width:20px;
	height:15px;
	background-image: url(./img/mail-icon.svg);
    background-repeat: no-repeat;
    background-size: cover;
    margin-bottom: 5px;
}
.keyv-sp{
    display: none;
}


.top-content-inner{
    width: 95%;
    max-width: 1400px;
    margin: auto;
    margin-bottom: 150px;
}
.top-content-inner2{
    width: 100%;
    margin-bottom: 120px;
}
.top-news{
    max-width: 1000px;
    margin: auto;
}
.title2{
    font-size: 14px;
    margin-bottom: 40px;
	position:relative;
    color: #6b6b6b;
    font-weight: 400;
}
.title2 span{
    display: block;
    font-weight: 100;
    font-size: 35px;
    color: #744C27;
    margin-bottom: 25px;
    font-weight: bold;
    line-height: 1.2em;
}
.top-content-inner .title2 span {
    font-size: 50px;
}
.top-content-inner2 .title2 span {
    font-size: 50px;
}
.title2:before{
	content:"";
	display:block;
	position:absolute;
	top:-25px;
	left:-10px;
	width:13px;
	height:13px;
	background-image: url(./img/h-pink.svg);
    background-repeat: no-repeat;
    background-size: cover;
}
.newsbox{
    margin: auto;
}
.newsbox a {
    display: flex;
    padding: 30px 0px;
    text-decoration: none;
    align-items: center;
    border-bottom: 1px solid #D9C2AB;
    position: relative;
}
.newsbox a {
    padding: 20px 0px;
}
.newsbox a::before {
    content: "";
    display: block;
    height: 2px;
    width: 30px;
    background: #744C27;
    position: absolute;
    right: 0;
    bottom: -1px;
    transition: width cubic-bezier(0.215, 0.61, 0.355, 1) 0.4s;
}
.newsbox a::after{
    content:"";
    display: block;
    width: 30px;
    min-width: 30px;
    height: 30px;
    background-image: url(./img/circle-arrow.png);
    background-repeat: no-repeat;
    background-size: cover;
    margin-left: auto;
    transition: 0.2s;
}
.newsbox a:hover{
    opacity: 1;
}
.newsbox a:hover::before{
    width: 100%;
}
.newsbox a:hover::after{
    background-image: url(./img/btn-arrow.png);
}
.newsdate{
    margin-right: 80px;
}
.btn{
    margin: auto;
    margin-top: 40px;
    text-align: center;

}
.btn a{
    color: #744C27;
    display: inline-block;
    padding: 15px 65px;
    border: #744C27 solid 1px;
    font-size: 14px;
    position: relative;
    transition: 0.2s;
    opacity: 1;
     background-repeat: no-repeat;
  background-position: 100% 0;
  background-size: 200% auto;
  background-image: linear-gradient(
    to right,
    #744C27 0%,
    #744C27 50%,
    #fff 50%,
    #fff 100%
  );
}
.btn a:hover {
  background-position: 0 0;
  color: #fff;
}
.btn a:hover{
    /*background: #F27B78;
    border: #F27B78 solid 1px;
    color: #fff;*/
}
.btn a::after{
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url(./img/btn-arrow.png);
    background-size: 100% 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    right: 15px;
    transition: 0.2s;
}
.btn a:hover::after{
    background-image: url(./img/btn-brownarrow.png);
}
.btn-exe a{
    color: #fff;
    display: inline-block;
    padding: 15px 60px;
    font-size: 14px;
    position: relative;
    background-image: url(./img/btn-exebg.png);
	background-size:cover;
    opacity: 1;
}
.btn-exe a::after{
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url(./img/btn-arrow2.png);
    background-size: 100% 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    right: 15px;
}
.btn-exe a {
	overflow: hidden;
}
.btn-exe a::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background-image: linear-gradient(130deg, rgba(255, 255, 255, 0) 20%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 80%);
	transition: .5s;
}
.btn-exe a:hover::before {
	top: 0;
	left: 100%;
}
.top-aboutlinkbox {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 550px;
    padding: 40px 0;
    margin: 20px;
    background: #fff;
    border-radius: 5px;
}
.top-aboutlinkimg{
    width: 90%;
    margin: auto;
    margin-top: 30px;
	margin-bottom:10px;
	max-width: 440px;
}
.top-aboutlinks{
    list-style: none;
    width: 95%;
    max-width: 440px;
}
.top-aboutlinks li a{
    display: flex;
    padding: 16px 0px;
    text-decoration: none;
    align-items: center;
    border-bottom: 1px solid #D9C2AB;
    position: relative;
    font-size: 22px;
    transition: 0.2s;
    opacity: 1;
}
.top-aboutlinks li a{
    opacity: 1;
}
.top-aboutlinks li a::after{
    content: "";
    display: block;
    width: 26px;
    height: 26px;
    background-image: url(./img/circle-arrow.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    margin-left: auto;
    transition: 0.2s;
}
.top-aboutlinks li a::before{
    content: "";
    display: block;
    height: 2px;
    width: 26px;
    background: #744C27;
    position: absolute;
    right: 0;
    bottom: -1px;
    transition: width cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s
}
.top-aboutlinks li a:hover::before {
    width: 100%;
}
.top-aboutlinks li a:hover::after {
    background-image: url(./img/btn-arrow.png);
}
.top-aboutbox {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}
.top-title3{
    font-size:32px;
    color: #744C27;
    font-weight: 100;
    border-bottom:1px solid #D9C2AB;
    position: relative;
}
.top-title3::before{
    content: "";
    display: block;
    height: 1px;
    width: 26px;
    background: #744C27;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    bottom: -1px;
    transition: width cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
}
.top-title3.active::before{
    width: 100%;
}
.top-menuexe {
	background:url(./img/ex-bg.png) no-repeat;
    background-size: cover;
	background-position:center;
    padding: 60px;
    margin: 40px;
    margin-bottom: 60px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    border-radius: 10px;
}
.top-exetxt{
    color: #fff;
    margin-bottom: 40px;
}
.top-title3exe{
    font-size:30px;
    font-weight: 100;
    color: #fff;
    position: relative;
    padding-top: 20px;
    margin-bottom: 40px;
}
.top-title3exe::before{
    content: "";
    display: block;
    width: 440px;
    height: 70px;
    background:url(./img/exe-bg.png) no-repeat;
    background-size: contain;
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}
.top-menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.top-menubox {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 300px;
    padding: 40px 20px;
    margin: 5px;
    background: #fff;
    border-radius: 5px;
    margin-bottom: 40px;
}
.top-menutxt{
    padding: 0 30px;
}
.top-menubox .top-title3{
    font-size: 27px;
    margin-bottom: 40px;
}
.top-pickupbox {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}
.top-pickuptxtbox{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 50%;
    padding: 40px;
    background: #fff;
    border-radius: 5px;
}
.top-pickuptxtbox .top-title3{
    font-size: 28px;
    margin-bottom: 40px;
}
.top-pickupimgbox{
    width: 50%;
}
.flex-reverse{
    flex-direction: row-reverse;
}

.t-c-innertitle{
    width: 95%;
    max-width: 1300px;
    margin: auto;
    margin-bottom: 40px;
}
/*.top-feature-scrollcontainer {
    display: flex;
    overflow-x: auto;
    padding: 20px;
    gap: 20px;
    scroll-snap-type: x mandatory;
    margin-bottom: 80px;
  }*/
  .swiper-wrapper {
    right: 18%;
}
  
  .swiper-slide.top-feature-scrollbox {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
	padding-left:0px;
    border-radius: 5px;
    margin-bottom: 40px;
    transition: transform 0.3s ease;
    min-width: 560px;
    width: 560px;
    flex-shrink: 0;
  }
  
  .top-feature-scrollbox img {
    width: 90%;
    max-width: 350px;
    margin-bottom: 20px;
    border-radius: 2%;
}
.swiper-slide p{
    font-size: 15px;
}
  
  .top-feature-scrollbox.up {
    margin-top: 0;
  }
  
  .top-feature-scrollbox.down {
    margin-top: 40px;
  }
  .top-feature-scrollbox .top-title3{
    font-size: 28px;
    margin-bottom: 20px;
  }

.top-featurebox {
    position: relative;
    margin-bottom: 100px;
}

.top-featureboximg {
    width: 52%;
}
.top-featureboxtxt {
    width: 38%;
    top: 50%;
    position: absolute;
    right: 10%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    background: #fff;
    padding: 50px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.top-featureboxtxt .top-title3{
    display: inline-block;
    text-align: center;
    margin-bottom: 40px;
}
.top-featurebox-reverse .top-featureboximg {
    margin-left: auto;
}
.top-featurebox-reverse .top-featureboxtxt {
    right: auto;
    left: 7%;
}
.top-medipartimgbox {
    display: flex;
    width: 60%;
}
.top-medipart{
    display: flex;
}
.top-medipartimg{
    margin-right: 10px;
}
.top-medipartimgbox .top-medipartimg:nth-child(2){
    margin-top: 30px;
}
.top-medipartimgbox .top-medipartimg:nth-child(3){
    margin-top: 60px;
}
.t-medpart-title{
    text-align: center;
}
.top-medipartlinkbox{
    width:40%;
}
.top-medipartlinks{
    list-style: none;
    padding: 40px;
}
.top-medipartlinks li{
    margin-top: 20px;
}
.top-medipartlinks li a {
    display: flex;
    padding: 10px 0px;
    text-decoration: none;
    align-items: center;
    border-bottom: 1px solid #D9C2AB;
    position: relative;
    font-size: 28px;
    color: #744C27;
}
.top-medipartlinks li a::after {
    content: "";
    display: block;
    width: 26px;
    height: 26px;
    background-image: url(./img/circle-arrow.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    margin-left: auto;
    transition: 0.2s;
}
.top-medipartlinks li a::before{
    content: "";
    display: block;
    height: 2px;
    width: 26px;
    background: #744C27;
    position: absolute;
    right: 0;
    bottom: -1px;
    transition: width cubic-bezier(0.215, 0.61, 0.355, 1) 0.4s;
}
.top-medipartlinks li a:hover{
    opacity: 1;
}
.top-medipartlinks li a:hover::after {
    background-image: url(./img/btn-arrow.png);
}
.top-medipartlinks li a:hover::before{
    width: 100%;
}
.mpl-mb {
    margin-bottom: 60px;
}
.medi-info{
    display: flex;
    justify-content: space-between;
}
.medi-infotablebox,.medi-infomap{
    width: 47%;
}
.medi-infotable:first-child{
    margin-bottom: 40px;
}
.medi-infomap iframe{
    height: 100%;
    max-width: 100%;
}

footer{
    background: url(./img/footer-bg.png) no-repeat;
    background-size: cover;
    z-index: 10;
}
.footer-inner{
    width: 95%;
    max-width: 1260px;
    margin: auto;
    padding-top: 120px;
    padding-bottom: 120px;
}
.footer-telbtn a{
    display: flex;
    text-align: center;
    padding: 10px;
    background: #F27B78;
    color: #fff;
    font-size: 32px;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
}
.footer-telbtn a::before{
    display: inline-block;
    content: "";
    width: 20px;
    height: 27px;
    background: url(./img/tel-icon.png) no-repeat;
    background-size: contain;
    padding-right: 15px;
}
.footer-flexbox{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.footer-logo{
    width: 100%;
    max-width: 400px;
}
.footer-telbtn{
    width: 100%;
    margin-bottom: 20px;
}
.footer-flexinfo,
.footer-flexlinks{
    width: 48%;
}
.footer-flexlinks ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    list-style: none;
    flex-direction: column;
    height: 240px;
}
.footer-flexlinks ul li{
    margin: 0 15px;
    margin-bottom: 20px;
}
.footer-flexlinks ul li a{
    color: #744C27;
    position: relative;
    overflow: hidden;
    display: inline-block;
}
.footer-flexlinks ul li a::after{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #744C27;
    transform: translate(-100%, 0);
    transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.4s;
    content: "";
}
.footer-flexlinks ul li a:hover:after{
    transform: translate(0, 0);
}
.footer-snslinks{
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
}
.footer-snslinks p{
    margin-right: 20px;
}
.footer-snslinks p a{
    display: flex;
    align-items: center;
    color: #744C27;
    position: relative;
    overflow: hidden;
    padding-bottom: 4px;
    margin-bottom: 20px;
}
.footer-snslinks a img{
    width: 30px;
    margin-right: 5px;
    height: 30px;
}
.footer-snslinks p a::after{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #744C27;
    transform: translate(-100%, 0);
    transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.4s;
    content: "";
}
.footer-snslinks p a:hover::after{
    transform: translate(0, 0);
}

.content-bg{
    position: relative;
}
.content-bg::before{
    position: absolute;
    content: "";
    display: block;
    width: 100%;
    height: 210%;
    z-index: -100;
    background: url(./img/content-bg.png) no-repeat;
    background-size: 100% 100%;
	top:-40px;
}
.content-bg2::before{
    margin-top: 20%;
    height: 130%;
}
.sp-bottombtns{
    display: none;
}
.featureboximg-sp{
    display: none;
}

@media only screen and (max-width: 1700px) {
    .circle-btn a {
        width: 65px;
        height: 65px;
        font-size: 14px;
    }
    .lang-btn a {
        display: block;
        font-size: 12px;
        padding: 2px 15px;
        border: #fff solid 1px;
        color: #fff;
    }
    .header-snsbtn {
        width: 30px;
        height: 30px;
        margin-right: 10px;
    }
    .glo-nav ul li {
        margin: 0 10px;
    }
    .header .logo{
        width: 230px;
    }
}
@media only screen and (max-width: 1430px) {
    .top-featurebox {
        margin-bottom: 200px;
    }
    .top-feature-scrollcontainer {
        margin-bottom: 180px;
    }
    .header {
        padding: 10px;
    }
    .header .logo {
        width: 200px;
    }
    .glo-nav ul li a {
        font-size: 14px;
    }
    .header-snsbtn{
        display: none;
    }
    
}

/*--*/
@media only screen and (max-width: 1400px) {
    .top-aboutlinkbox {
    width: 400px;
}
.top-content-inner .title2 span {
    font-size: 35px;
    margin-bottom: 10px;
}
.top-content-inner2 .title2 span {
    font-size: 35px;
    margin-bottom: 10px;
}
.top-content-inner2 .title2 {
    max-width: 900px;
}
.top-aboutlinks {
    max-width: 350px;
}
.top-aboutlinkimg {
    max-width: 350px;
}
.top-title3 {
    font-size: 24px;
}
.top-aboutlinks li a {
    font-size: 18px;
}
.top-menubox {
    width: 250px;
    padding: 30px 10px;
}
.top-menubox .top-title3{
    font-size: 24px;
}
.top-menutxt {
    padding: 0 20px;
    font-size: 15px;
}
.top-content-inner{
    width: 95%;
    max-width: 900px;
    margin: auto;
    margin-bottom: 150px;
}
.top-title3exe {
    font-size: 24px;
}
.top-pickupimgbox {
    width: 40%;
}
.top-pickuptxtbox {
    width: 60%;
}
.top-pickuptxtbox .top-title3 {
    font-size: 24px;
    margin-bottom: 20px;
}
.top-feature-scrollbox .top-title3 {
    font-size: 24px;
}
.top-medipartlinks li a{
    font-size:22px;
}
.top-medipartlinks {
    padding: 20px;
}
.top-medipartlinks li {
    margin-top: 10px;
}
.mpl-mb {
    margin-bottom: 40px;
}
}
/*--*/


@media only screen and (max-width: 1250px) {
    .top-featureboxtxt {
        width: 45%;
        right: 2%;
    }
    .top-featurebox-reverse .top-featureboxtxt {
        right: auto;
        left: 2%;
    }
        .header{
        display: none;
    }
    .header_sp{
        display: block;
    }
}
@media only screen and (max-width: 1000px) {
    .top-featureboxtxt {
        position: static;
        transform: translateY(0%);
        -webkit-transform: translateY(0%);
        -ms-transform: translateY(0%);
        width: 70%;
    }
    .top-featurebox {
        margin-bottom: 40px;
        display: flex;
        flex-direction: column;
        align-items: center;
    } 
    .top-featureboximg{
        margin-bottom: 20px;
    }
    .top-featurebox-reverse .top-featureboximg {
        margin: auto;
        margin-bottom: 20px;
    }
    .top-medipartlinks li a{
        font-size: 20px;
    }
    .top-medipartimgbox {
        width: 50%;
    }
    .top-medipartlinkbox {
        width: 50%;
    }
    .footer-logo, .footer-telbtn {
        width: 80%;
    }
    .footer-telbtn a {
        font-size: 24px;
    }
    
}


@media only screen and (max-width: 768px) {
    p,a,h1,h2,h3,h4,li,th,td{
        color:#4C4744;
        letter-spacing: 0.1em;
        /*line-height:1.5;*/
        line-height: 1.8em;
        font-size:15px;
    }
    .header{
        display: none;
    }
    .title2 {
        font-size: 13px;
        margin: 0 10px;
        margin-bottom: 40px;
    }
    .title2:before{
        width: 8px;
        height: 8px;
        top: -10px;
    }
    .title2 span {
        font-size: 28px;
        margin-bottom: 5px;
    }
    .top-title3{
        font-size:20px
    }

    .newsbox a{
        position: relative;
        padding: 15px 0px;
        padding-top: 35px;
    }
    .newsbox a .newsdate{
        position: absolute;
        top: 0;
    }
    .newsbox a::before{
        width: 20px;
    }
    .newsbox a::after {
        width: 20px;
        min-width: 20px;
        height: 20px;
    }
    	.newstitle{
		width:95%;
	}
    .top-aboutlinkbox {
        margin: 0px;
        margin-bottom: 40px;
        padding: 40px 5px;
    }
    .top-aboutlinks li a{
        font-size:18px;
    }
    .top-aboutlinks li a::after {
        content: "";
        display: block;
        width: 22px;
        height: 22px;
    }
    .top-menuexe {
        background: #4f3924;
        padding: 30px 15px;
        margin: 0;
        margin-bottom: 40px;
    }
    .top-title3exe{
        padding-top: 10px;
        font-size:14px;
    }
    .top-title3exe::before {
        width: 220px;
    }
    .top-menubox {
        width: 550px;
        padding: 40px 20px;
    }
    .top-menubox .top-title3 {
        font-size: 20px;
    }
    .top-pickupbox {
        flex-direction: column-reverse;
    }
    .top-pickuptxtbox{
        width: 95%;
        padding-top: 20px;
        padding-bottom: 60px;
    }
    .top-pickupimgbox{
        width: 100%;
    }
    .top-pickuptxtbox .top-title3 {
        font-size: 20px;
        margin-bottom: 20px;
    }
    .top-medipart {
        display: flex;
        flex-direction: column;
    }
    .top-medipartimgbox {
        display: flex;
        width: 100%;
        max-width: 500px;
        margin: auto;
    }
    .top-medipartimg{
        margin-right: 5px;
    }
    .top-medipartimgbox .top-medipartimg:last-child{
        margin-right: 0;
    }
    .top-medipartlinkbox {
        width: 100%;
    }
    .top-medipartlinks {
        padding: 5px;
    }
    .medi-infotablebox, .medi-infomap {
        width: 100%;
        max-width: 500px;
    }
    .medi-info {
        display: flex;
        justify-content: space-between;
        flex-direction: column;
        align-items: center;
    }
    .medi-infomap {
        height: 350px;
    }
    .medi-infomap iframe {
        width: 100%;
    }
    .footer-flexbox {
        flex-direction: column;
        margin-bottom: 20px;
    }
    .footer-flexinfo, .footer-flexlinks {
    width: 100%;
    max-width: 600px;
            margin: auto;
    }
    .footer-telbtn a {
        font-size: 20px;
        padding: 5px;
    }
    .footer-inner {
        padding-top: 40px;
    }
    .footer-telbtn a::before {
        width: 16px;
        height: 14px;
        padding-right: 5px;
    }
    .footer-flexlinks{
        margin-top: 40px;
    }
    .footer-flexlinks ul {
    justify-content: flex-start;
    }
    .footer-snslinks {
        margin-top: 20px;
        justify-content: center;
    }
    .footer-snslinks img {
        width: 30px;
    }
    .footer-logo, .footer-telbtn {
        width: 100%;
        max-width: 300px;
    }
    .side-contactbtn{
        display: none;
    }
    .header_sp {
    display: flex;
    height: 44px;
    padding: 10px 5px;
    align-items: center;
    position: relative;
}
.sp-bottombtns{
    position: fixed;
    bottom: 0;
    display: flex;
    width: 100%;
    z-index: 100;
}
.sp-bottombtn1,.sp-bottombtn2{
    width: 50%;
}
.sp-bottombtn1 a{
    display: flex;
    height: 50px;
    background: #F27B78;
    color: #fff;
    text-align: center;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}
.sp-bottombtn2 a{
    display: flex;
    height: 50px;
    background: #FFE6E5;
    color: #F27B78;
    text-align: center;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}
.swiper-wrapper {
    right: auto;
}
.swiper-slide.top-feature-scrollbox {
    padding: 5px;
    min-width: 290px;
    width: 290px;
}
.top-feature-scrollbox .top-title3 {
    font-size: 20px;
}
.top-feature-scrollbox.down {
    margin-top: 0px;
}
.featureboximg-sp{
    display: block;
}
.featureboximg-pc{
    display: none;
}
.top-featurebox {
    margin-bottom: -80px;
}
.top-featureboximg{
    margin: auto;
    margin-bottom: 0;
    width: 100%;
    max-width: 500px;
}
.top-featureboxtxt{
    transform: translateY(-180px);
}
.top-featureboxtxt{
    padding: 30px;
}
}
@media only screen and (max-width: 500px) {
.top-featureboxtxt{
    transform: translateY(-100px);
}
}
@media only screen and (max-width: 420px) {
    .keyv-pc{
        display: none;
    }
    .keyv-sp{
        display: block;
    }
}
.hamburger {
    display: block;
    position: absolute;
    right: 0;
    top: 0px;
    width: 50px;
    height: 50px;
    cursor: pointer;
    text-align: center;
}
.hamburger span {
    display: block;
    position: absolute;
    width: 40px;
    height: 2px;
    right: 8px;
    background: #ffffff;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
	z-index:100;
}
.hamburger span:nth-child(1) {
  top: 15px;
}
.hamburger span:nth-child(2) {
  top: 30px;
  width: 35px;
}
/* ナビ開いてる時のボタン */
.hamburger.active{
	
}
.hamburger.active span:nth-child(1) {
  top : 25px;
  right: 10px;
	  width: 32px;
  background :#FFF;
  -webkit-transform: rotate(-45deg);
  -moz-transform   : rotate(-45deg);
  transform        : rotate(-45deg);
}
.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 25px;
	width: 32px;
	right: 10px;
  background :#fff;
  -webkit-transform: rotate(45deg);
  -moz-transform   : rotate(45deg);
  transform        : rotate(45deg);
}
.hamburger.active span:nth-child(4){
	opacity:0;
}
nav.globalMenuSp {
    position: fixed;
    z-index: 2;
    top: 0;
    left: 0;
    color: #fff;
    background: #744c27d7;
    text-align: left;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity .3s ease, visibility .3s ease;
    visibility: hidden;
    overflow-y: scroll;
    height: 100%;
}
nav.globalMenuSp.active {
    opacity: 100;
    visibility: visible;
    overflow-y: scroll;
    height: 100%;
    z-index: 20;
    padding-bottom: 40px;
}
.head_logo_sp{
    width:200px;
    z-index: 100;
}
nav.globalMenuSp ul {
    margin: 0 auto;
    padding: 0;
    width: 90%;
    padding-top: 120px;
    padding-bottom: 70px;
}
nav.globalMenuSp ul li a{
    color: #fff;
    display: flex;
    padding: 16px 0px;
    text-decoration: none;
    align-items: center;
    border-bottom: 1px solid #D9C2AB;
    position: relative;
    font-size: 18px;
}
nav.globalMenuSp ul li a:after {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    background-image: url(./img/btn-whitearrow.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    margin-left: auto;
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  z-index: 10;
  cursor: pointer;
}

.swiper-button-prev {
  left: -24px;
}

.swiper-button-next {
  right: -24px;
}

.swiper-button-prev img,
.swiper-button-next img {
    width: 55px;
    height: 55px;
    position: relative;
    z-index: 2;
}
.swiper-button-prev img{
  transform: rotate(180deg); /* 前ボタンを反転 */
}
.swiper-button-prev::after,
.swiper-button-next::after {
  display: none !important;
}
.swiper-buttonbox{
	position: relative;
	margin-right:150px;
	margin-left: auto;
    width: 150px;
	margin-bottom:140px;
    margin-top: 30px;
}
@media only screen and (max-width: 1400px) {
.swiper-buttonbox{
	margin-bottom: 220px;
} 
}
@media only screen and (max-width: 1000px) {
    .swiper-buttonbox {
    margin: auto;
    margin-top: 30px;
    margin-bottom: 100px;
    }
    .shindan-content{
        display: none;
    } 
    
}
.t-medpart-title span span{
    display: inline;
    position: relative;
}
.title2.t-medpart-title:before{
    display: none;
}
.title2.t-medpart-title span span:before{
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: -10px;
    width: 13px;
    height: 13px;
    background-image: url(./img/h-pink.svg);
    background-repeat: no-repeat;
    background-size: cover;
}
.fv{
    position: relative;
}
.shindan-content{
    position: absolute;
    bottom: 0;
    right: 0;
}
.shindan-content a{
    background: #BFA68D;
    color: #fff;
    font-size: 28px;
    display: block;
    padding: 20px 40px;
    text-align: center;
}
.sp-bottombtn1 a::before{
    content: "";
    display: block;
    width: 16px;
    height: 12px;
    background-image: url(./img/mail-icon.svg);
    background-repeat: no-repeat;
    background-size: cover;
}
.sp-bottombtn2 a::before{
    content: "";
    display: block;
    width: 9px;
    height: 12px;
    background-image: url(./img/tel-icon.svg);
    background-repeat: no-repeat;
    background-size: cover;
}
.subpage-fv{
	position:relative;
}
.subpage-fvwhite{
    background-image: url(./img/sub-white.png);
    background-size: 100% 100%;
    height: 100%;
    width: 100%;
	position:absolute;
	top:0;
}
.pagetitle{
    font-size: 55px;
    color: rgb(116, 76, 39);
    font-weight: 100;
    position: absolute;
    top: 50%;
    left: 10%;
    border-bottom: 1px solid #F4BDBB;
}
.pagetitle::before {
    content: "";
    display: block;
    height: 1px;
    width: 26px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -1px;
    transition: width cubic-bezier(0.215, 0.61, 0.355, 1) 0.4s;
    background: #F27B78;
}
.pagetitle.active::before{
    width: 100%;
}
.pagetitle-url {
    width: 100%;
    display: inline-block;
    position: absolute;
    text-align: center;
    bottom: -75%;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    font-size: 20px;
    letter-spacing: 0.1rem;
}
.breadcrumb{
    position: absolute;
    top: 100px;
    left: 60px;
    margin-bottom: 20px;
}
.breadcrumb ul{
    display: flex;
    list-style: none;
}
.breadcrumb ul li,
.breadcrumb ul li a{
    font-size:14px;
    font-weight: bold;
    color: rgb(116, 76, 39);
}
.breadcrumb ul li:before{
    content: "‐";
    display: inline-block;
    padding: 0 5px;
}
.breadcrumb ul li:first-child::before{
    display: none;
}
.subpage-inner{
    width: 95%;
    max-width: 1000px;
    margin: auto;
    margin-bottom: 150px;
}
.sub-flexbox{
    display: flex;
    align-items: center;
}
.sub-flextxt,
.sub-fleximg{
    width: 50%;
}
.sub-flextxt p{
    padding-left: 10%;
}
.subpage .title2{
    margin-top: 120px;
}
.sub-txt{
    max-width: 1200px;
    margin: auto;
}

.title3{
    font-size: 24px;
    color: #744C27;
    font-weight: 100;
    text-align: center;
    margin: auto;
    margin-top: 120px;
    margin-bottom: 50px;
}
.title3 span{
    border-bottom: 1px solid #D9C2AB;
    position: relative;
}
.title3 span::before {
    content: "";
    display: inline-block;
    height: 1px;
    width: 26px;
    background: #744C27;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    bottom: -1px;
    transition: width cubic-bezier(0.215, 0.61, 0.355, 1) 0.4s;
}
.title3-span.active::before{
    width: 100%;
}
.sub-flexbox.flexreverse{
    flex-direction: row-reverse;
}
.flexreverse .sub-flextxt p{
    padding-left: 0;
    padding-right: 10%;
}
.white-txtbox {
    margin-top: 120px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 1px 1px 10px #e3e3e3;
    padding: 4% 8%;
}
.white-txtbox .title3{
    margin-top: 0;
    margin-bottom: 60px;
    font-size: 26px;
}
.sub-bg{
    position: relative;
    padding-top: 10px;
}
.sub-bg::before{
    display: block;
    content: "";
    background-image: url(./img/subpage-bg.png);
    background-size: cover;
    background-position: center;
    position: absolute;
    top:0;
    height: 100%;
    width: 100%;
    z-index: -1;
}

@media only screen and (max-width: 768px) {
    .title2.t-medpart-title span span:before{
        width: 8px;
        height: 8px;
    }
    .sub-flexbox {
    display: flex;
    align-items: center;
    flex-direction: column;
}
.sub-flextxt p {
    padding-left: 0%;
}
.sub-flextxt, .sub-fleximg {
    width: 100%;
}
.sub-fleximg{
    width: 80%;
    padding-bottom: 20px;
}
.sub-flexbox.flexreverse {
    flex-direction: column;
}
.flexreverse .sub-flextxt p {
    padding-left: 0;
    padding-right: 0;
}
.sub-bg::before{
    display: block;
    content: "";
    background-image: url(./img/subpage-bgsp2.png?2);
}
.title3 {
    font-size: 22px;
    margin-top: 80px;
}
.white-txtbox {
    margin-top: 120px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 1px 1px 10px #e3e3e3;
    padding: 40px 20px;
}
.white-txtbox .title3{
    font-size: 18px;
}
.subpage-fvwhite{
    background-image: url(./img/sub-whitesp.png);
}
}
@media only screen and (max-width: 1250px) {
    .breadcrumb {
    position: absolute;
    top: 55px;
    left: 20px;
}.breadcrumb ul li, .breadcrumb ul li a {
    font-size: 12px;
}
.pagetitle {
    font-size: 40px;
}
.pagetitle-url {
    font-size: 14px;
    letter-spacing: 0.02rem;
}
}
@media only screen and (max-width: 768px) {
    .pagetitle {
    font-size: 34px;
}
}
@media only screen and (max-width: 500px) {
    .sub-bg::before{
        background-image: url(./img/subpage-bgsp2.png?2);
    }
}
@media only screen and (max-width:450px) {
    .pagetitle {
    font-size: 30px;
    left: 4%;
    letter-spacing: 0.05em;
}
.pagetitle-url {
    font-size: 12px;
}
}

.table-box{
    background: #fff;
    padding:0 20px;
    margin-bottom: 60px;
}
.table-name{
    background: #F27B78;
    color: #fff;
    text-align: center;
    padding: 10px;
}
.tablesheet {
    width: 100%;
}
thead,tbody{
    width: 100%;
}
.tablesheet th,
.tablesheet td{
    text-align: center;
    padding-bottom: 5px;
    padding-top: 5px;
    font-weight: 400;
}
.tablesheet th{
    border-bottom: 1px solid #4f3924;
}
.table-name.table-color2 {
    background: #FFE6E5;
    color: #F27B78;
}
.table-box{
    background: #fff;
    padding:0 20px;
    margin-bottom: 60px;
}
.medi-infotablebox .table-box:last-child{
    margin-bottom: 0;
}
@media only screen and (max-width: 768px) {
.tablesheet th,
.tablesheet td{
    font-size: 14px;
}
.medi-infotablebox{
    margin-bottom: 60px;
}
.table-box{
    padding:0 10px;
}
}

.subpage p{
    margin-bottom: 20px;
}

.menupage_flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    max-width: 1000px;
    margin: auto;
}
.menupage_box {
    display: flex;
    flex-direction: column;
    width: 90%;
    max-width: 380px;
    margin: 10px;
    margin-bottom: 40px;
    border-bottom: 2px #fff solid;
}
.menupage_box p {
    padding-top: 20px;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
}
.menupage_box a {
    text-decoration: none;
}
.img_box_1 {
    text-align: center;
    margin-bottom: 30px;
}
.img_box_1 img {
    width: 90%;
    max-width: 400px;
}
.list {
    list-style-position: inside;
    margin-bottom: 20px;
}
.list li {
    padding-bottom: 6px;
}
table.sheet {
    border-collapse: collapse;
    border-spacing: 0px;
    border-bottom: none;
    margin-bottom: 15px;
    width: 100%;
    background: #f5f5f5;
    border-top: solid 1px #e2e2e2;
    border-right: solid 1px #e2e2e2;
}
.sheet th, .sheet td {
    padding: 10px 20px;
    text-align: left;
    line-height: 1.5em;
    vertical-align: middle;
    background: #fefefe;
    border-bottom: solid 1px #e2e2e2;
    line-height: 220%;
    border-left: 1px solid #e2e2e2;
}
.sheet th{
    background: #f4fafe;
    font-weight: 500;
    text-align: center;
    border-bottom: solid 1px #e2e2e2;
}
.sub-flextxt h4{
    font-size:20px;
    margin-bottom: 20px;
}
.doc-name{
    font-size:20px;
    font-weight: bold;
}
.history_area {
    margin-top: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 70px 0px;
    width: 95%;
    margin: auto;
    max-width: 1200px;
}
.history_area .title3{
    margin-top: 0;
}
.history_1, .history_2 {
    width: 90%;
    background: #fff;
    padding: 30px;
    margin: 15px;
    border: 1px solid #744C27;
}
.history_table_flex {
    display: flex;
}
.history_table {
    width: 50%;
}
.history_table tbody {
    width: 100%;
}
.history_table tr {
    width: 100%;
    display: inline-block;
    margin-bottom: 10px;
}
.history_table th, .history_table td {
    padding-right: 10px;
    color: #312d2b;
}
.history_table th {
    font-weight: 300;
    width: 100px;
    text-align: left;
    color: #4f3924 !important;
}
ul.history_list {
    display: flex;
    flex-wrap: wrap;
}
.history_list li {
    width: 50%;
    list-style: none;
    display: flex;
    align-items: center;
    margin-bottom: 1em;
}
.medimenu_listflex {
    display: flex;
    justify-content: center;
}
.medimenu_listflex h4 {
    margin-bottom: 20px;
    text-align: center;
}
.medimenu_listflex div {
    width: 50%;
    max-width: 350px;
}
.equipment_flex {
    display: flex;
    justify-content: space-between;
}
.equipment_flex div {
    width: 45%;
    max-width: 250px;
    margin: 10px;
}
@media only screen and (max-width: 768px) {
    .history_table_flex {
        display: flex;
        flex-direction: column;
    }
        .history_list li {
        width: 100%;
        font-size: 14px;
    }
    .history_table {
    width: 100%;
}
    .medimenu_listflex {
        flex-direction: column;
        align-items: center;
    }
    .medimenu_listflex div {
        width: 95%;
        max-width: 600px;
    }
    .equipment_flex {
        flex-wrap: wrap;
        justify-content: space-around;
}
}


.subpage .title3{
	margin-top:60px;
}
.title3-span {
  display: inline-block;
}

.title3-span.active {
  background-size: 100% 1px;
}
/*.title3 span::before {
    display: none;
}*/


@media only screen and (max-width: 768px) {
    .subpage .title3 {
        font-size: 18px;
        margin-top:40px;
        line-height: 1.5rem;
    }
}



.indispensable{
	display: inline-block;
	font-size: 12px;
	color: #fff;
	background: #ff8100;
	padding: 2px;
	border-radius: 5px;
	line-height: 140%;
	margin: 0;
	margin-left:10px;
}
input.wpcf7-form-control.wpcf7-text {
    border: 1px solid #DDDDDD;
    background-color: #FFFFFF !important;
    padding: 6px 5px;
    border-radius: 3px;
    width: 95%;
    font-size:15px;
    font-family: 'Noto Sans JP', sans-serif;
}
textarea.wpcf7-form-control.wpcf7-textarea{
	width: 95%;
    margin: 5px 0;
    border: 1px solid #DDDDDD;
    border-radius: 3px;
    background: #fff;
    outline: none;
	font-family: 'Noto Sans JP', sans-serif;
	padding: 5px 5px;
	font-size: 15px;
}
select {
    font-family: 'Noto Sans JP', sans-serif;
	font-size:15px;
	line-height: 0;
	height: 2rem;
}
.wpcf7-select option{
	font-family: 'Noto Sans JP', sans-serif;
}
.wpcf7-spinner{
	display:none!important;
}
.contact_btn{
	display: flex;
    justify-content: space-evenly;
}
#submit,#previous {
	cursor: pointer;
    display: inline-block;
    text-decoration: none;
	font-size: 16px;
    color: #fff;
    text-align: center;
	padding: 12px 70px;
    letter-spacing: 1px;
    background: #7898da;
    font-weight: 500;
    border-radius: 50px;
    border: none;
	-webkit-transition: 0.2s;
	transition: 0.2s;
    -webkit-appearance: none;
}
#submit:hover,#previous:hover{
	-webkit-transition: 0.2s;
    transition: 0.2s;
	opacity:0.6;
}
#submit, #previous {
    display: block;
    text-decoration: none;
    padding: 15px 5px;
    border: 1px solid #312d2b;
    max-width: 300px;
    width: 90%;
    font-size: 18px;
    text-align: center;
    border-radius: 30px;
    margin: 30px auto;
    background: #fff;
    color: #312d2b;
    font-size: 14px;
}
.contactform p{
    font-size:85%;
}
.contactform th p{
    margin-bottom: 5px;
    text-align: left;
}
.contactform th{
    width: 25%;
}
.contactform td p{
    margin-bottom: 0;
}
.day_flex p {
    display: flex;
    align-items: center;
}
.wpcf7-not-valid-tip{
    font-size: 12px!important;
}
/*-赤い注意書きの表示非表示に関する調整↓-*/
span.wpcf7-not-valid-tip {
    display: none; /* 初期状態でエラー非表示 */
}
.wpcf7-submitting .wpcf7-not-valid-tip {
    display: block; /* フォーム送信時のみエラー表示 */
	font-size:12px;
}
/*-赤い注意書きの表示非表示に関する調整↑-*/
.birthflex_parent{
    display: flex;
}
.brithflex {
    display: flex;
}
.brithflex p {
    padding-right: 18px;
    margin-right: 10px;
    position: relative;
}
.brithflex p .brith_ex {
    font-size: 14px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}
#notice-text{
    font-size: 12px;
    margin-bottom: 10px;
}
#date-time, #date-time2, #date-time3 {
    margin-top: 5px;
}
#select-menu {
    width: 95%;
}
@media screen and (max-width: 768px) {
    .birthflex_parent {
        font-size: 10px;
        display: flex;
        flex-direction: column;
    }
}

h1.upper-title {
    color: #fff;
    height: 22px;
    display: flex;
    padding-left: 12px;
    font-size: 10px;
    font-weight: normal;
    background: #9B6B40;
    width: 100%;
    align-items: center;
    margin: 0;
    position:absolute;
    top:0;
    z-index:2;
}

.subpage-fvwhite{
	display:none;
}
.breadcrumb {
    position: static!important;
}
.breadcrumb ul {
    justify-content: flex-end;
}
.pagetitle-url {
	text-align: left;
}
.pagetitle {
	left: 7%;
	font-size: 45px;
	top: 55%;
}
@media only screen and (max-width: 1250px) {
	.pagetitle {
    left: 4%;
    font-size: 40px;
    top: 50%;
}

}
@media only screen and (max-width: 1000px) {
	.pagetitle {
    left: 4%;
    font-size: 37px;
    top: 50%;
}
}
@media only screen and (max-width: 750px) {
	.pagetitle {
    left: 2%;
    font-size: 32px;
    top: 45%;
}
}
@media only screen and (max-width: 750px) {
	.pagetitle {
    left: 2%;
    font-size: 28px;
    top: 45%;
}
}

.executive-page{
	background: #584635;
}
.executive-page .pagetitle{
    color: #fff;
}
.executive-page p{
    color: #fff;
}
.executive-page .title2{
    color: #fff;
    z-index: 2;
}
.executive-page .pagetitle::before{
    background: #fff;
}
.executive-page .pagetitle{
    border-bottom: 1px solid #D3B36D;
}
.executive-page .title2 span{
    color: #D3B36D;
}
.executive-page .breadcrumb ul li, 
.executive-page .breadcrumb ul li a{
    color: #fff;
}
.executive-footer{
    background: #584635;
}
.top-content-inner {
    padding-bottom: 150px;
    margin-bottom: 0px;
}
.exe-txtbg,.exe-txtbg2{
    position: relative;
    z-index: 1;
}
.executive-page .sub-fleximg{
    z-index: 2;
}
.exe-txtbg::before{
    /*content: url('./img/exe-txtbg.png');*/
    content: "";
    display: block;
    width: 1000px;
    height: 800px;
    position: absolute;
    top: -40%;
    left: 0%;
    background: url('./img/exe-txtbg.png') no-repeat center;
    background-size: contain;
    z-index: -1;
}
.exe-txtbg2::before{
    /*content: url('./img/exe-txtbg.png');*/
    content: "";
    display: block;
    width: 1000px;
    height: 800px;
    position: absolute;
    top: -160%;
    left: -40%;
    background: url('./img/exe-txtbg2.png') no-repeat center;
    background-size: contain;
    z-index: -1;
}
.executive-page .sub-bg::before{
    background: url(./img/sub-bg-exe2.png) no-repeat;
    background-size: 100% 100% ;
    background-position: center;
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
}
.executive-page .sub-bg {
    z-index: 1;
}
.executive-page .sub-bg p{
    color: #707070;
}
.executive-page .white-txtbox{
    background: #2F2922;
}
.executive-page .sub-bg .white-txtbox p{
    color: #fff;
}
.executive-page .sub-bg .white-txtbox .title3{
    color: #fff;
    line-height: 1.8em;
}
.executive-page .table-box{
    padding-bottom: 10px;
}
.exe-list{
    display: none;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-bottom: 80px;
}
.executive-page .exe-list{
    display: flex;
}
.exe-list li{
    list-style-position: inside;
    list-style: none;
    width: calc(100%/3);
    color: #fff;
    margin-bottom: 20px;
}
.exe-list li a{
    border-bottom: 1px solid #D3B36D;
    color: #fff;
    padding-left: 20px;
    position: relative;
    padding-bottom: 10px;
    margin-right: 10px;
    display: inline-block;
    line-height: 1.0rem;
}
.exe-list li a::before{
    content: "";
    display: block;
    width: 4px;
    height: 4px;
    background: #D3B36D;
    border-radius: 2px;
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);

}
.exe-list li a:hover{
    opacity: 0.6;
    border-bottom: 1px solid #2F2922;
}
.executive-footer{
    background: url(./img/footer-exebg.png) no-repeat center;
    background-size: cover;
}

.executive-page footer{
    background: #fff;
}
.executive-page footer p{
    color: #744C27;
}
.executive-page footer .footer-content{
    background: #fff;
    background: url(./img/footer-bg.png) no-repeat;
    background-size: cover;
}
.executive-footer .title2{
    display: block!important;
}
@media only screen and (max-width: 1400px) {
    .executive-footer .top-content-inner {
        padding-bottom: 150px;
    }
}
@media only screen and (max-width: 1100px) {
.exe-txtbg::before{
    /*content: url('./img/exe-txtbg.png');*/
    content: "";
    display: block;
    width: 500px;
    height: 400px;
    position: absolute;
    top: -10%;
    left: 0%;
    background: url('./img/exe-txtbg.png') no-repeat center;
    background-size: contain;
    z-index: -1;
}
.exe-txtbg2::before{
    /*content: url('./img/exe-txtbg.png');*/
    content: "";
    display: block;
    width: 500px;
    height: 400px;
    position: absolute;
    top: -40%;
    left: -5%;
    background: url('./img/exe-txtbg2.png') no-repeat center;
    background-size: contain;
    z-index: -1;
}
}
@media only screen and (max-width: 900px) {
.executive-page .sub-bg::before {
    background-size: 160% 100%;
}
}
@media only screen and (max-width: 768px) {
    .exe-txtbg2::before{
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    }
    .exe-txtbg::before{
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    }
    .executive-page .exe-list{
        max-width: 500px;
        margin: auto;
    }
    .exe-list li {
    width: calc(100% / 1);
}
}
@media only screen and (max-width: 600px) {
.executive-page .sub-bg::before {
    background-size: 200% 100%;
}
}

@keyframes pulseMotion {
  0% {
    transform: translate(-50%, -50%) scale(1, 1);
    background-color: rgba(170, 143, 123, 0.4)
  }
  100% {
    transform: translate(-50%, -50%) scale(2.5, 2.5);
    background-color: rgba(170, 143, 123, 0)
  }
}
@keyframes pulseMotionios {
  0% {
    transform: translate(-50%, -50%) scale(1, 1);
    background-color: rgba(170, 143, 123, 0.4)
  }
  100% {
    transform: translate(-50%, -50%) scale(2.5, 2.5);
    background-color: rgba(170, 143, 123, 0)
  }
}

.pulse{
    position: relative;
    transition: 0.3s;
}
.pulse::before {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  transition: opacity linear 0.4s;
  content: '';
  pointer-events: none;
}
.pulse::before {
  animation: pulseMotion 1.5s linear infinite;
}
.iphone .pulse::before {
  animation-fill-mode: both;
  animation: pulseMotionios 1.5s linear infinite;
}
.swiper-button-disabled .pulse::before{
    display: none;
}
.swiper-button-prev:hover .pulse,
.swiper-button-next:hover .pulse{
    transform: scale(1.2, 1.2);
}
.sub_newsbox {
    border: 1px solid #744c272f;
    margin-bottom: 20px;
    transition: 0.2s;
}
.sub_newsbox:hover{
    border: 1px solid #744c27;
    transform: scale(1.02, 1.02);
}
.sub_newsbox a {
    text-decoration: none;
    padding: 20px;
    display: block;
}
.sub_newsbox a .date {
    font-size: 13px;
}
.sub_newsbox .category {
    display: inline-block;
    text-align: center;
    color: #744C27;
    padding: 5px 20px;
    margin: 0 30px 0 20px;
    font-size: 12px;
    line-height: 100%;
    text-transform: uppercase;
    vertical-align: middle;
    background: #fff;
    border: solid 1px #744C27;
}
.sub_newsbox .post-title {
    margin: 20px 0;
}
.news_content_txt {
    font-size: 13px;
    color: #888;
}
.sub_newsbox a .post-title{
    color: #744C27;
}

/*pagination*/
.pagination {
	width: 100%;
	text-align: center;
	z-index: 200;
	list-style-type: none;
	padding:0;
}
.pagination a {
	margin: 0 5px;
	width: 15px;
	height: 15px;
	display: inline-block;
	overflow: hidden;
}
.pagination a.active {
	filter:alpha(opacity=100)!important;
	-moz-opacity: 1!important;
	opacity: 1!important;
}
.pagination,
.pagination li a {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}
.pagination a {
	font-weight: 500;
	padding-top: 1px;
	text-decoration:none;
	border-left-width: 0;
	min-width:36px;
	min-height:36px;
	color: #333;
	background-color: #fff;
}
.pagination li:not([class*="current"]) a:hover {
	background:#744C27;
	color:#fff;
}
.pagination li:first-of-type a {
	border-left-width: 1px;
}
.pagination li.first span,
.pagination li.last span,
.pagination li.previous span,
.pagination li.next span {
	position: absolute;
	top: -9999px;
	left: -9999px;
}
.pagination li.first a::before,
.pagination li.last a::after,
.pagination li.previous a::before,
.pagination li.next a::after {
	display: inline-block;
	font-family: Fontawesome;
	font-size: inherit;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	transform: translate(0, 0);
}
.pagination li.first a::before { content: "<<"; }
.pagination li.last a::after { content: ">>"; }
.pagination li.previous a::before { content: "<"; }
.pagination li.next a::after { content: ">"; }
/* 色変更箇所*/
.pagination li.current a {
	background:#744C27;
	cursor: default;
	pointer-events: none;
	color:#fff;
}
.pagination > li:first-child > a {
	border-bottom-left-radius: 4px;
	border-top-left-radius: 4px;
}
.pagination > li:last-child > a {
	border-bottom-right-radius: 4px;
	border-top-right-radius: 4px;
}
@media only screen and ( max-width: 639px ) {
	.pagination li.first,
	.pagination li.last {
		/* screen readers only */
		position: absolute;
		top: -9999px;
		left: -9999px;
	}
	.uk-container .pagination li{
		padding:0;
		margin:0 0 20px;
	}
	.pagination li.previous a {
		border-left-width: 1px;
	}
}

.sub-bgexe{
    padding-top: 120px;
}
.copyright{
    font-size: 14px;
    color: #744C27;
    text-align: center;
    display: block;
    padding-bottom: 60px;
}
.copyright a{
    text-decoration: underline;
    color: #744C27;
}
.border-r-10{
    border-radius: 15px;
}


