@charset 'utf-8';


/*  */

/* 共通部分 */

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  font-size: 16px;
  letter-spacing: 0.05em;
  color: #707070;
  list-style: none;
  line-height: 1.5;
  box-sizing: border-box;
  text-decoration: none;
}

body {
  font-family: 'Cormorant',
    serif;
  /* font-family: 'Noto Sans JP',
  sans-serif; */

}

:root {
  --header-gold: rgba(178, 158, 128, 0.8);
  --main-gold: #b29e80;
  --sub-gold: #ada496;
  --ash-gold: #57534d;
  --hover-brown: #4f4602;
  --sec-2-back: #fbfbfb;
  --tooth-icon-filter: rgba(178, 158, 128, 0.8);
  --btn-a: linear-gradient(135deg, #897a62 0%, #b19d7f 45%, #e3c9a0 70%,
    #b19d7f 85%,
    #897a62 90% 100%);
    --btn-b: linear-gradient(135deg, #a18e65 0%, #b19b6c 25%, #bea773 60%,
    #b19b6c 75%,
    #a18e65 90% 100%);
  --btn-a-hover: linear-gradient(135deg, #615604 0%, #776a08 25%, #887a0f 60%,
    #776a08 75%, #615604 90% 100%);
  --translucent: #88704852;
}



h1 {
  color: #fff;
  font-size: 22px;
}


h2 {
  font-size: 40px;
  text-align: center;
  margin-bottom: 30px;
  color: var(--main-gold);
}

h3 {
  font-size: 24px;
  margin-bottom: 30px;
  color: var(--sub-gold);
}

a {
  transition: 0.4s;

}

a:hover,
a h1:hover {
  color: var(--hover-brown);
  transition: 0.5s;
}


.wrapper {
  max-width: 1400px;
  margin: 0 auto;
  /* background-color: beige; */
}

.sp-img {
  display: none;
}

.sp-nav {
  display: none;
}


.gold-btn a {
  margin: 0 auto;
  width: 250px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  /* background-color: var(--main-gold); */
  box-shadow: 1px 1px 1px var(--ash-gold);
  transition: 0.9s;
  background: var(--btn-b)
}

.gold-btn a:hover {
  /* background-color: var(--hover-brown); */
  transition: 0.9s;
  background: var(--btn-a-hover);
  transform: scale(1.025);
}

.policy-menu a:hover {
  transform: scale(1.025);
}

/* js対応 --------------------------------------------------- */

.flow {
  transform: translate(0, 50px);
  transition: 0.9s;
  opacity: 0;
}

.flow.active {
  transform: none;
  opacity: 1;
}

.app {
  opacity: 0;
  transition: 2.5s;
}

.app.appear {
  opacity: 1;
}

.sp-navigation.show {
  opacity: 1;
  visibility: visible;
}

#to_top {
  position: fixed;
  bottom: 10px;
  right: 10px;
  display: inline-block;
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.9s;
  color: #fff;
  font-size: 10px;
  padding: 10px;
  background-color: var(--main-gold);
  box-shadow: 1px 1px 1px var(--ash-gold);
  z-index: 50;
  transform:rotate(-90deg);
  transition: 0.6s;
}

#to_top.scrolled {
  opacity: 1;
}

#to_top:hover {
  background-color: var(--hover-brown);
  transition: 0.6s;
}

/* --------------------------------------------------- js対応 */
/* sp-navigation ---------------------------------------------*/

.sp-navigation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0px;
  background-color:rgba(178, 158, 128, 0.9);
  opacity: 0;
  transition: opacity 0.9s ease, visibility 0.9s ease;
  visibility: hidden;
  z-index: 1;
  overflow: auto;
}

.sp-navigation-title {
  font-size: 40px;
  text-align: center;
  margin-bottom: 10px;
}

.sp-navigation ul {
  display: flex;
  justify-content: center;

}

.sp-navigation li {
  text-align: center;
  margin: 0 10px 20px 10px;
  
}

.sp-navigation a {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 160px;
  height: 50px;
  font-size: 1em;
}

.sp-navigation p {
  color: #fff;
  text-align: center;
  margin-bottom: 10px;
}

.sp-tel span {
  margin-right: 10px;
}


.bg-gold {
  /* background-color: var(--main-gold); */
  background-color: var(--btn-b);
  padding: 5px;
  box-shadow: 1px 1px 1px var(--ash-gold);
}

/* --------------------------------------------- sp-navigation*/

/*------------------------------------------------------------ 共通部分 */
/* top-img ------------------------------------------------------------*/

.top-img {
  height: 100vh;
  background: url(../images/office-top.jpg) no-repeat center;
  /* background: url(../images/office-dentist-nobody.jpg) no-repeat center; */
  background-size: cover;
}

/*------------------------------------------------------------ top-img */
/* header -------------------------------------------------------------*/

header {
  padding: 20px 20px 10px 20px;
  background-color: var(--header-gold);
}

header p,
header li,
header span,
header li a {
  color: #fff;
}

.header-pac {
  display: flex;
  flex-direction: column;

}



/* header-left -------------------------*/

.header-left {}

.header-left p {
  text-align: center;
  font-size: 14px;
  letter-spacing: 0;
  margin-left: 0;
  /* background-color: aqua; */
}

.logo {
  width: 40px;
  height: 40px;
  margin-right: 5px;
  /* background-color: antiquewhite; */
}

.logo-set a {
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translate(-25px, 0);
}

/* header-right -------------------------*/



.header-right span {
  font-size: 1.5rem;
  margin-right: 20px;
}

.header-right p {
  text-align: center;
  font-size: 12px;
}

.header-right .tel {
  font-size: 20px;
}


.tel span {
  font-size: 12px;
}

.right-list li {
  display: none;
}

/* sec-3 */
/* sec-4 */


/* footer ---------------*/

.foot {
  height: auto;
  background-color: var(--header-gold);

}

.foot p,
a,
span {
  color: #fff;

}

.foot small {
  display: block;
  font-size: 0.75em;
  color: #fff;
  text-align: center;
  margin-top: 10px;
}

/* ----------------------------------------------------- footer */


/* 0~768 -----------------------------------------------------------------------------*/

@media screen and (max-width: 768px) {

  /* 共通部分 ------------------------------------*/

  .sp-hide-title {
    display: none;
  }

  .pc-hide-title {
    display: block;
  }

  .sp-img {
    display: block;
    width: 100%;
    height: 500px;
    margin-bottom: 60px;
    /* background-color: antiquewhite; */
  }

  .sp-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .sp-size {
    padding: 20px;
  }

  .sp-size h2 {
    font-size: 30px;
    margin-bottom: 50px;
  }

  .sp-size h3 {
    font-size: 20px;
    margin-bottom: 50px;
  }

  .sp-size p {
    margin-bottom: 50px;
  }

  .gold-btn {
    text-align: center;
    margin-bottom: 120px;
  }

  .foot .sp-working-days {
    font-size: 15px;
  }

  /*------------------------------------ 共通部分 */
/* header ------------------------------------*/

.header-top-word,
.header-ad,
.working-days {
  display: none;
}

/*------------------------------------ header */
  /* nav ------------------------------------*/

  .header-nav {
    display: none;
  }


  /*------------------------------------ nav */
  /* ハンバーガーボタン・top申し込みボタン -----*/

  .hamburger {
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 30;
    transition: 0.3s;
  }

  .hamburger-pac {
    position: relative;
    width: 30px;
    height: 30px;
    /* background-color: aqua; */
  }

  .hamburger-pac span {
    position: absolute;
    width: 30px;
    height: 1px;
    background-color: #fff;
    box-shadow: black 1px 1px 1px;
    top: 50%;
    transition: all .4s;
  }

  .hamburger-pac span:nth-child(1) {
    top: 5px;
  }

  .hamburger-pac span:nth-child(3) {
    top: 26px;
  }

  /* 1本目の線を-45度回転        後で.activeを付ける*/
  .hamburger-pac.active span:nth-child(1) {
    top: 13px;
    left: 0px;
    background: #fff;
    box-shadow: none;
    transform: rotate(-45deg);
  }

  /* 2本目と3本目は重ねて45度回転 */
  .hamburger-pac.active span:nth-child(2),
  .hamburger-pac.active span:nth-child(3) {
    top: 13px;
    right: 0px;
    background: #fff;
    box-shadow: none;
    transform: rotate(45deg);
  }

  .top-contact-btn {
    position: absolute;
    display: block;
    top: 60px;
    right: 10px;
    background-color: var(--main-gold);
    box-shadow: 1px 1px 1px var(--ash-gold);
    padding: 3px;
    cursor: pointer;
    z-index: 1;
  }

  .top-contact-btn a {

  }

  .top-contact-btn:hover {
    background-color: var(--hover-brown);
  }
  
  .top-contact-btn p {
    color: #fff;
    font-size: 8px;
    line-height: 1.5;
  }

  /* ------ ハンバーガーボタン・申し込みボタン */
  /* top画像 ---------------------------------*/

  .top-img {
    height: 100vh;
    background-size: cover;
  }

  .top-title {
    margin-top: 25vh;
    background-color: var(--header-gold);
  }

  
  .top-title p {
    text-align: center;
    font-size: 24px;
    color: #fff;
    text-shadow: 1px 1px 1px var(--sub-gold);
  }

  .policy-menu {
    display: none;
  }

  /*--------------------------------- top画像 */
  /* sec-0 ---------------------------------*/


  .sec-0 {
    /* background-color: antiquewhite; */
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .sp-nav {
    display: block;
  }

  .sp-nav li {
    text-align: center;
    margin-bottom: 60px;
  }

  .sp-nav li:last-child {
    margin-bottom: 0px;
  }

  .sp-nav a {
    color: var(--sub-gold);
    font-size: 1.25em;

  }

  .sp-nav a:hover {
    color: var(--hover-brown);
  }



  /* -------------------------------- sec-0 */
  /* sec-1 -------------------------------- */

  .hide-title p {
    display: none;
  }

  .policy-menu li {
    text-align: center;
    margin-bottom: 60px;
  }

  .policy-menu li:last-child {
    margin-bottom: 95px;
  }

  .policy-menu a {
    color: var(--sub-gold);
    font-size: 1.25em;
    transition: 0.6s;
  }

  .policy-menu a:hover {
    color: var(--hover-brown);
    transform: scale(1.5);
    transition: 0.6s;
  }

  /* -------------------------------- sec-1 */
  /* sec-2 -------------------------------- */

  .right-img {
    display: none;
  }

  /* -------------------------------- sec-2 */
  /* sec-3 -------------------------------- */

  .sec-3 {
    height: auto;
  }

  .list-pac {
    display: block;

  }

  .list-pac dt {
    color: #707070;
    margin-bottom: 10px;
    padding-right: 30px;
    width: 230px;
  }

  .list-pac dd {
    color: #707070;
    font-size: 1em;
    margin-bottom: 20px;
  }



  /* -------------------------------- sec-3 */
  /* sec-4 -------------------------------- */

  .sec-4 .sp-img img {
    
  }

  .sec-pac-4 p {
    margin-left: 0;
  }

  /* -------------------------------- sec-4 */
  /* sec-5 -------------------------------- */
  /* -------------------------------- sec-5 */
  /* sec-6 -------------------------------- */

  .sec-6 .sp-img img {
    object-position: 30% 0;
  }

  .sec-6 h2 {
    font-size: 38px;
  }

  /* -------------------------------- sec-6 */
  /* footer -------------------------------- */


  .foot p {
    text-align: center;
    margin-bottom: 30px;
  }

  .foot-flex li {
    text-align: center;
    margin-bottom: 50px;

  }

  .foot-logo-set {
    margin-bottom: 30px;
  }

  .foot .tel {
    font-size: 20px;
    margin-bottom: 70px;
  }

  .foot .tel span {
    margin-right: 10px;
  }

  /* -------------------------------- footer */


}

/*------------------------------------------------------------------------------- 0~768 */



/* 769~1024 ----------------------------------------------------------------------------*/

@media screen and (min-width: 769px) and (max-width: 1024px) {

  /* 共通部分 ------------------------------------*/

  header {
    padding-top: 5px;
    padding-bottom: 5px;
  }

  h2 {
    font-size: 32px;
    margin: 0;
    padding: 150px 0 100px;
  }

  .pc-hide-title {
    display: none;
  }

  .sp-hide-title {}

  .sp-hide-title h2 {
    padding-top: 150px;
  }

  .flex-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .sp-size {
    width: 46%;
    /* background-color: aliceblue; */
  }

  .flex-img {
    display: block;
    width: 46%;
  }


  .gold-btn {
    text-align: right;
    margin-bottom: 120px;
  }

  .sp-navigation {
    display: none;
  }

  .sp-navigation.show {
    display: none;
  }

  /*------------------------------------ 共通部分 */



  .header-pac {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
  }

  .header-left p {
    font-size: 14px;
    text-align: left;
    letter-spacing: 0.05em;
  }

  h1 {
    font-size: 24px;
    margin-bottom: 0;
  }

  .logo {
    width: 40px;
    height: 40px;
    margin-left: 25px;
    margin-right: 15px;
  }

  .header-ad {
    display: none;
  }

  .header-right p {
    text-align: right;
    font-size: 14px;
  }


  .right-list ul {
    display: none;
  }


  .header-nav ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .header-nav a {
    padding: 0;
    line-height: 0;
  }

  .hamburger {
    display: none;
  }

  .top-contact-btn {
    display: none;
  }

  .gold-btn a {
    margin: 0 0 50px auto;
  }

  .sp-navigation.show {
    display: none;
  }

  /* top画像 ---------------------------------*/

  .top-img {
    height: auto;
    background-size: cover;
  }

  .top-title {
    margin-top: 20%;
    margin-bottom: 80px;
  }
  
  .top-title p {
    text-align: center;
    font-size: 40px;
    color: var(--main-gold);
    text-shadow: 1px 1px 1px var(--sub-gold);

  }

  .policy-menu {
    padding-bottom: 10px;
  }

  .policy-menu ul {
    display: flex;
    justify-content: center;
  }

  .policy-menu li {
    margin: 50px 5px 50px;
  }

  .policy-menu a {
    background-color: var(--main-gold);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 140px;
    height: 140px;
    box-shadow: 1px 1px 1px var(--ash-gold);
  }

  .policy-menu li:nth-child(1) a {
    background: url(../images/to-1.png) no-repeat center;
    background-size: cover;
    background-color: var(--translucent);
  }

  .policy-menu li:nth-child(2) a {
    background: url(../images/to-2.png) no-repeat center;
    background-size: cover;
    background-color: var(--translucent);

  }

  .policy-menu li:nth-child(3) a {
    background: url(../images/to-3.png) no-repeat center;
    background-size: cover;
    background-color: var(--translucent);

  }

  .policy-menu li:nth-child(4) a {
    background: url(../images/to-4.png) no-repeat center;
    background-size: cover;
    background-color: var(--translucent);

  }

  .policy-menu li:nth-child(5) a {
    background: url(../images/to-5.png) no-repeat center;
    background-size: cover;
    background-color: var(--translucent);

  }

  .policy-menu li:nth-child(1) a:hover {
    color: #fff;
    background-color: var(--hover-brown);
  }

  .policy-menu li:nth-child(2) a:hover {
    color: #fff;
    background-color: var(--hover-brown);
  }

  .policy-menu li:nth-child(3) a:hover {
    color: #fff;
    background-color: var(--hover-brown);
  }

  .policy-menu li:nth-child(4) a:hover {
    color: #fff;
    background-color: var(--hover-brown);
  }

  .policy-menu li:nth-child(5) a:hover {
    color: #fff;
    background-color: var(--hover-brown);
  }

  /*--------------------------------- top画像 */
  /* sec-1 -------------------------------- */

  .sec-1 {
    height: auto;
    padding: 0 30px;
  }

  .hide-title {
    display: none;
  }


  .sec-1 .sp-img {
    margin-right: 20px;
  }

  .sec-1 .sp-img img {
    width: 100%;
    height: 500px;
    object-fit: cover;
  }

  .sec-pac-1 p {
    margin-top: 30px;
    margin-bottom: 30px;
  }

  

  /* -------------------------------- sec-1 */
  /* sec-2 -------------------------------- */

  .sec-2 {
    padding: 0px 30px 0 30px;
    /* background-color: antiquewhite; */
  }

  .sec-2 .sp-img {
    margin-right: 20px;
  }

  .sec-2 .sp-img img {
    width: 100%;
    height: 500px;
    object-fit: cover;
  }

  .sec-pac-2 {
    
  }


  .sec-pac-2 p {
    margin-top: 100px;
    margin-bottom: 30px;
  }

  


  /* -------------------------------- sec-2 */
  /* sec-3 -------------------------------- */

  .sec-3 {
    background-size: cover;
    padding: 0px 30px 0px;
  }

  
  .sec-3 .sp-img {
    margin-right: 20px;
  }

  .sec-3 .sp-img img {
    width: 100%;
    height: 530px;
    object-fit: cover;
  }

  .sec-pac-3 p {
    margin-top: 100px;
    margin-bottom: 30px;
  }


  /* -------------------------------- sec-3 */
  /* sec-4 -------------------------------- */

  .sec-4 {
    width: 100%;
    padding: 0px 30px 0px;

  }

  .sec-4 .sp-img {
    margin-right: 20px;
  }

  .sec-4 .sp-img img {
    width: 100%;
    height: 500px;
    object-fit: cover;
  }

  .sec-pac-4 p {
    margin-bottom: 30px;
  }

  .sec-pac-4 {
    width: 46%;
    order: 1;
    /* background-color: antiquewhite; */
  }

  .sec-pac-4 p {
    margin-top: 110px;
    margin-left: 0;
    margin-bottom: 30px;

  }

  /* -------------------------------- sec-4 */
  /* sec-5 -------------------------------- */

  .sec-5 {
    padding: 0 30px 180px;
  }

  .sec-5 .sp-img {
    margin-right: 20px;
  }

  .sec-5 .sp-img img {
    width: 100%;
    height: 500px;
    object-fit: cover;
  }

  .sec-pac-5 p {
    margin-top: 150px;
    margin-bottom: 30px;
  }

  .sec-pac-5 {
    width: 46%;
    margin: 0 0 50px auto;
  }

  

  /* -------------------------------- sec-5 */
  /* sec-6 -------------------------------- */

  .sec-6 {
    height: 100%;
    background: url(../images/contact.jpg) no-repeat;
    background-size: cover;
    background-position: right 50% bottom 0;
    padding: 120px 30px 50px 0;

  }

  .sec-6 h2 {
    font-size: 40px;
    padding-top: 0;
    margin-top: 0;
  }

  .sec-pac-6 {
    width: 50%;
    margin: 0 0 50px auto;


  }

  .sec-pac-6 p {
    margin-bottom: 30px;
  }


  .sec-6 .sp-img {}

  /* -------------------------------- sec-6 */
  /* footer -------------------------------- */

  .foot {
    padding: 10px;
  }

  

  .foot .sp-size {
    width: 100%;
  }

  .foot .left-pac p {
    text-align: center;
    margin-bottom: 10px;
  }

  .foot .tel {
    font-size: 1.25em;
  }

  .foot .tel span {
    margin-right: 15px;
  }

  .right-pac {
    display: flex;
    justify-content: center;

  }


  .site-map:nth-child(2) {
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
  }

  .site-map li {
    margin: 10px;
  }


  .foot-btn {
    display: none;
  }

  /* -------------------------------- footer */

}

/*------------------------------------------------------------------------------- 769~1024 */

/* 1025~1500 --------------------------------------------*/

@media screen and (min-width: 1025px) and (max-width: 1500px) {
  
  /* 共通部分 ------------------------------------*/

  header {
    padding-top: 5px;
    padding-bottom: 5px;
    padding-right: 60px;
    padding-left: 60px;
  }

  h2 {
    font-size: 32px;
    margin: 0;
    padding: 150px 0 100px;
  }

  .pc-hide-title {
    display: none;
  }

  .sp-hide-title {}

  .sp-hide-title h2 {
    padding-top: 150px;
  }

  .flex-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .sp-size {
    width: 46%;
    /* background-color: aliceblue; */
  }

  .flex-img {
    display: block;
    width: 46%;
  }


  .gold-btn {
    text-align: right;
    margin-bottom: 120px;
  }

  .sp-navigation {
    display: none;
  }


  /*------------------------------------ 共通部分 */
  /* header -------------------------------------------------------------*/

  .header-pac {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
  }

  /* header-left -------------------------*/

  .header-left p {
    font-size: 16px;
    text-align: left;
    letter-spacing: 0.05em;
  }

  h1 {
    font-size: 32px;
    margin-bottom: 0;
  }


  .logo {
    width: 60px;
    height: 60px;
    margin-right: 15px;
    margin-left: 23px;
  }

  .header-ad {
    display: none;
  }

  /* header-right -------------------------*/

  .header-right p {
    font-size: 16px;
    text-align: right;
    margin-bottom: 5px;
  }

  .right-list ul {
    display: flex;
    justify-content: right;
  }

  .right-list li {
    display: none;
  }


  .header-nav ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .header-nav a {
    padding: 0;
    line-height: 0;
  }

  .hamburger {
    display: none;
  }

  .top-contact-btn {
    display: none;
  }

  .gold-btn a {
    margin: 0 0 50px auto;
  }

  .sp-navigation.show {
    display: none;
  }

  /* top画像 ---------------------------------*/

  .top-img {
    height: auto;
    background-size: cover;
  }

  .top-title {
    margin-top: 20%;
    margin-bottom: 80px;
  }
  
  .top-title p {
    text-align: center;
    font-size: 40px;
    color: var(--main-gold);
    text-shadow: 1px 1px 1px var(--sub-gold);

  }

  .policy-menu {
    padding-bottom: 10px;
  }

  .policy-menu ul {
    display: flex;
    justify-content: center;
  }

  .policy-menu li {
    margin: 50px 5px 50px;
  }

  .policy-menu a {
    background-color: var(--main-gold);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 140px;
    height: 140px;
    box-shadow: 1px 1px 1px var(--ash-gold);
  }

  .policy-menu li:nth-child(1) a {
    background: url(../images/to-1.png) no-repeat center;
    background-size: cover;
    background-color: var(--translucent);

  }

  .policy-menu li:nth-child(2) a {
    background: url(../images/to-2.png) no-repeat center;
    background-size: cover;
    background-color: var(--translucent);

  }

  .policy-menu li:nth-child(3) a {
    background: url(../images/to-3.png) no-repeat center;
    background-size: cover;
    background-color: var(--translucent);

  }

  .policy-menu li:nth-child(4) a {
    background: url(../images/to-4.png) no-repeat center;
    background-size: cover;
    background-color: var(--translucent);

  }

  .policy-menu li:nth-child(5) a {
    background: url(../images/to-5.png) no-repeat center;
    background-size: cover;
    background-color: var(--translucent);

  }

  .policy-menu li:nth-child(1) a:hover {
    color: #fff;
    background-color: var(--hover-brown);
  }

  .policy-menu li:nth-child(2) a:hover {
    color: #fff;
    background-color: var(--hover-brown);
  }

  .policy-menu li:nth-child(3) a:hover {
    color: #fff;
    background-color: var(--hover-brown);
  }

  .policy-menu li:nth-child(4) a:hover {
    color: #fff;
    background-color: var(--hover-brown);
  }

  .policy-menu li:nth-child(5) a:hover {
    color: #fff;
    background-color: var(--hover-brown);
  }

  /*--------------------------------- top画像 */
  /* sec-1 -------------------------------- */


  .sec-1 {
    height: auto;
    padding: 0 30px 30px;
    /* background-color: azure; */
  }

  .hide-title {
    display: none;
  }


  .sec-1 .sp-img {
    margin-right: 20px;
  }

  .sec-1 .sp-img img {
    width: 100%;
    height: 500px;
    object-fit: cover;
  }

  .sec-pac-1 p {
    margin-top: 30px;
    margin-bottom: 50px;
  }

  

  /* -------------------------------- sec-1 */
  /* sec-2 -------------------------------- */

  .sec-2 {
    padding: 0 30px 30px;
    /* background-color: antiquewhite; */
  }

  .sec-2 .sp-img {
    margin-right: 20px;
  }

  .sec-2 .sp-img img {
    width: 100%;
    height: 500px;
    object-fit: cover;
  }

  .sec-pac-2 {
    
  }


  .sec-pac-2 p {
    margin-top: 60px;
    margin-bottom: 50px;
  }

  

  /* -------------------------------- sec-2 */
  /* sec-3 -------------------------------- */

  .sec-3 {
    padding: 0 30px 30px;
  }

  .sec-3 .sp-img {
    margin-right: 20px;
  }

  .sec-3 .sp-img img {
    width: 100%;
    height: 500px;
    object-fit: cover;
  }

  .sec-pac-3 p {
    margin-top: 80px;
    margin-bottom: 50px;
  }

  /* -------------------------------- sec-3 */
  /* sec-4 -------------------------------- */

  .sec-4 {
    width: 100%;
    padding: 0 30px 30px;

  }

  .sec-4 .sp-img {
    margin-right: 20px;
  }

  .sec-4 .sp-img img {
    width: 100%;
    height: 500px;
    object-fit: cover;
  }

  
  

  .sec-pac-4 {
    width: 46%;
    order: 1;
    /* background-color: antiquewhite; */
  }

  .sec-pac-4 p {
    margin-top: 100px;
    margin-left: 0;
    margin-bottom: 50px;

  }

  /* -------------------------------- sec-4 */
  /* sec-5 -------------------------------- */

  .sec-5 {
    padding: 0 30px 180px;
    /* background-color: aqua; */
  }

  .sec-5 .sp-img {
    margin-right: 20px;
  }

  .sec-5 .sp-img img {
    width: 100%;
    height: 500px;
    object-fit: cover;
  }

  .sec-pac-5 p {
    margin-top: 60px;
    margin-bottom: 50px;
  }

  .sec-pac-5 {
  }
  /* -------------------------------- sec-5 */
  /* sec-6 -------------------------------- */

  .over-footer-img {
    height: auto;
    background: url(../images/contact.jpg) no-repeat;
    background-size: cover;
    background-position: right 50% top 0%;
  }

  .sec-6 {
    padding: 120px 30px 50px 0;

  }

  .sec-6 h2 {
    font-size: 40px;
    padding-top: 0;
    margin-top: 0;
  }

  .sec-pac-6 {
    width: 50%;
    margin: 0 0 50px auto;


  }

  .sec-pac-6 p {
    margin-bottom: 30px;
  }


  .sec-6 .sp-img {}

  /* -------------------------------- sec-6 */
  /* footer -------------------------------- */

  .foot {
    padding: 10px;
  }

  .foot .sp-size {
    width: 100%;
  }

  .foot-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .foot .left-pac p {
    text-align: center;
    margin-bottom: 10px;
  }

  .foot .tel {
    font-size: 1.25em;
  }

  .foot .tel span {
    margin-right: 15px;
  }

  .right-pac {
    display: flex;
    justify-content: center;

  }


  .site-map:nth-child(2) {
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
  }

  .site-map li {
    margin: 10px;
  }


  .foot-btn {
    display: none;
  }

  /* -------------------------------- footer */

}

/*----------------------------------------------------------------------- 1025~1500 */

/* 1501~ ---------------------------------------------------------------------------*/

@media screen and (min-width: 1501px) {

  /* 共通部分 ----------------------- */
  
  h2 {
    font-size: 40px;
    margin: 0;
    padding: 150px 0 100px;
  }


  h3 {
    font-size: 30px;
    padding-bottom: 60px;
  }

  p {
    font-size: 1.25em;
  }

  a {
    font-size: 1.25em;

  }

  .pc-hide-title {
    display: none;
  }

  .sp-hide-title {}

  .sp-hide-title h2 {
    padding-top: 150px;
  }

  .flex-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .sp-size {
    width: 46%;
    /* background-color: aliceblue; */
  }

  .flex-img {
    display: block;
    width: 46%;
  }


  .gold-btn {
    text-align: right;
    margin-bottom: 120px;
  }

  .sp-navigation {
    display: none;
  }



  /* -----------------------共通部分 */
  /* header -------------------------------------------------------------*/

  header {
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 100px;
    padding-right: 100px;
  }

  .head-out-wrapper {
    max-width: 1800px;
    margin: 0 auto;
    /* background-color: aquamarine; */
  }

  .header-pac {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
  }

  /* header-left -------------------------*/

  h1 {
    font-size: 40px;
    margin-bottom: 0;
  }

  .header-left p {
    text-align: left;
    font-size: 16px;
    letter-spacing: 0.1em;
    margin-left: 0;
    /* background-color: aqua; */
  }

  .logo {
    width: 60px;
    height: 60px;
    margin-right: 30px;
    margin-left: 20px;
  }

  .header-ad {
    padding-left: 105px;

  }

  /* header-right -------------------------*/

  .header-right p {
    text-align: right;
    font-size: 16px;
    letter-spacing: 0.08em;
    margin-bottom: 0px;
  }

  .header-right .tel {
    font-size: 2rem;
  }

  .header-right span {
    font-size: 1.5rem;
    margin-right: 20px;
  }





  .right-list ul {
    display: flex;
    justify-content: right;
  }

  .right-list li {
    display: block;
    margin: 6px;
  }

  .right-list li:last-child {
    margin-right: 0;
  }

  .right-list a {
    font-size: 1em;
    letter-spacing: 0.05em;
  }


  .header-nav ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-right: 100px;
    margin-left: 100px;
  }



  .header-nav a {
    font-size: 1.25em;
    line-height: 0;
  }

  .hamburger {
    display: none;
  }

  .top-contact-btn {
    display: none;
  }

  .gold-btn a {
    margin: 0 0 0 auto;
  }

  .sp-navigation.show {
    display: none;
  }

  /* top画像 ---------------------------------*/

  .top-img {
    height: auto;
    background-size: cover;
  }

  .top-title {
    margin-top: 17%;
    margin-bottom: 210px;
  }
  
  .top-title p {
    text-align: center;
    font-size: 50px;
    color: var(--main-gold);
    text-shadow: 1px 1px 1px var(--sub-gold);

  }

  .policy-menu {
    padding-bottom: 10px;
  }

  .policy-menu ul {
    display: flex;
    justify-content: center;
  }

  .policy-menu li {
    margin: 50px 19px 150px;
  }

  .policy-menu a {
    background-color: var(--main-gold);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 250px;
    height: 140px;
    box-shadow: 1px 1px 1px var(--ash-gold);
  }

  .policy-menu a:hover {
    color: #fff;
    background-color: var(--hover-brown);
  }

  .policy-menu li:nth-child(1) a {
    background: url(../images/to-1.png) no-repeat center;
    background-size: cover;
    background-color: var(--translucent);

  }

  .policy-menu li:nth-child(2) a {
    background: url(../images/to-2.png) no-repeat center;
    background-size: cover;
    background-color: var(--translucent);

  }

  .policy-menu li:nth-child(3) a {
    background: url(../images/to-3.png) no-repeat center;
    background-size: cover;
    background-color: var(--translucent);

  }

  .policy-menu li:nth-child(4) a {
    background: url(../images/to-4.png) no-repeat center;
    background-size: cover;
    background-color: var(--translucent);

  }

  .policy-menu li:nth-child(5) a {
    background: url(../images/to-5.png) no-repeat center;
    background-size: cover;
    background-color: var(--translucent);

  }

  .policy-menu li:nth-child(1) a:hover {
    color: #fff;
    background-color: var(--hover-brown);
  }

  .policy-menu li:nth-child(2) a:hover {
    color: #fff;
    background-color: var(--hover-brown);
  }

  .policy-menu li:nth-child(3) a:hover {
    color: #fff;
    background-color: var(--hover-brown);
  }

  .policy-menu li:nth-child(4) a:hover {
    color: #fff;
    background-color: var(--hover-brown);
  }

  .policy-menu li:nth-child(5) a:hover {
    color: #fff;
    background-color: var(--hover-brown);
  }

  /*--------------------------------- top画像 */
  /* sec-1 -------------------------------- */


  .sec-1 {
    height: auto;
    padding-left: 60px;
    padding-right: 60px;
    padding-bottom: 80px;
    /* background-color: azure; */
  }

  .hide-title {
    display: none;
  }

  

  .sec-pac-1 {
    
  }

  .sec-pac-1 p {
    margin-bottom: 100px;
  }

  .sec-1 .sp-img {
    margin-right: 50px;
  }

  .sec-1 .sp-img img {
    width: 100%;
    height: 640px;
    object-fit: cover;
  }

  .general-btn {
    margin-bottom: 0;
  }


  /* -------------------------------- sec-1 */
  /* sec-2 -------------------------------- */

  .sec-2 {
    height: auto;
    padding-left: 60px;
    padding-right: 60px;
    padding-bottom: 80px;
  }

  .sec-2 .sp-img {
    margin-right: 50px;
  }

  .sec-2 .sp-img img {
    width: 100%;
    height: 640px;
    object-fit: cover;
  }

  .sec-pac-2 {
   
  }


  .sec-pac-2 p {
    margin-bottom: 100px;
  }

  .ceramic-btn {
    margin-bottom: 0;
  }

  /* -------------------------------- sec-2 */
  /* sec-3 -------------------------------- */

  .sec-3 {
    height: auto;
    padding-left: 60px;
    padding-right: 60px;
    padding-bottom: 80px;
  }

  .sec-3 .sp-img {
    margin-right: 50px;
  }

  .sec-3 .sp-img img {
    width: 100%;
    height: 640px;
    object-fit: cover;
  }

  .sec-pac-3 p {
    margin-bottom: 100px;
  }

  .implant-btn {
    margin-bottom: 0;
  }



  /* -------------------------------- sec-3 */
  /* sec-4 -------------------------------- */

  .sec-4 {
    height: auto;
    padding-left: 60px;
    padding-right: 60px;
    padding-bottom: 80px;
  }

  .sec-4 .sp-img {
    margin-right: 50px;
  }

  .sec-4 .sp-img img {
    width: 100%;
    height: 640px;
    object-fit: cover;
  }

  .sec-pac-4 {
    width: 46%;
    order: 1;
    /* background-color: antiquewhite; */
  }

  .sec-pac-4 p {
    margin-left: 0;
    margin-bottom: 100px;

  }

  .brace-btn {
    margin-bottom: 0;
  }

  /* -------------------------------- sec-4 */
  /* sec-5 -------------------------------- */


  .sec-5 {
    height: auto;
    padding-left: 60px;
    padding-right: 60px;
    padding-bottom: 80px;
  }

  .sec-5 .sp-img {
    margin-right: 50px;
  }

  .sec-5 .sp-img img {
    width: 100%;
    height: 640px;
    object-fit: cover;
  }

  .sec-pac-5 {
    /* background-color: aqua; */
  }

  .sec-pac-5 p {
    margin-bottom: 100px;
    
  }

  .whitening-btn {
    margin-bottom: 0;
  }

  /* -------------------------------- sec-5 */
  /* sec-6 -------------------------------- */

  .over-footer-img {
    /* height: auto; */
    width: 100%;
    height: 100%;
    background: url(../images/contact.jpg) no-repeat;
    background-size: cover;
    background-position: right 43% top 10%;
  }

  .sec-6 {
    padding: 120px 30px 50px 30px;

  }

  .sec-6 h2 {
    font-size: 60px;
    padding-top: 0;
    margin-top: 0;
  }

  .sec-pac-6 {
    width: 50%;
    margin: 0 0 50px auto;
    /* background-color: antiquewhite; */

  }

  .sec-pac-6 p {
    margin-bottom: 30px;
  }


  .sec-6 .sp-img {}

  /* -------------------------------- sec-6 */


  /* footer -------------------------------- */

  .foot {
    padding: 10px;
  }

  .foot .sp-size {
    width: 100%;
  }

  .foot-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .foot .left-pac p {
    text-align: center;
    margin-bottom: 10px;
  }

  .foot .tel {
    font-size: 1.25em;
  }

  .foot .tel span {
    margin-right: 15px;
  }

  .right-pac {
    display: flex;
    justify-content: center;

  }


  .site-map:nth-child(2) {
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
  }

  .site-map li {
    margin: 10px;
  }


  .foot-btn {
    display: none;
  }

}

/* -------------------------------------------------------------------------- 1501~ */