html {
    font-size: 10px;
  }
body {
  margin: 0;
  background-color: #fff;
  color: #000000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%; 
  word-wrap: break-word;
  -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
h1 span,
h2 span,
h3 span,
h4 span {
  display: inline-block;
}
.spbr {
  display: none;
}
    
/*-- header --*/
.header {
  position: fixed;
  width: 100%;
  height: 90px;
  top: 0;
  z-index: 99;
  background: rgba(255, 255, 255, .7);
}
.header-inner {
  width: 100%;
  margin: 0 auto;
  padding-left: clamp(20px, 5vw, 50px);
  display: flex;
  justify-content: space-between;
}
h1 {
  font-size: 12px;
  font-weight: 400;
}
.header-left {
  padding: 13px 0 0 0;
}
.header-logo img {
  width: clamp(300px, 33.6vw 336px);
  margin-top: 10px;
}
.header-right {
  display: flex;
}
.header-innerRight {
  width: 80%;
  margin-top: 19px;
}
.header-innerRight div {
  display: flex;
}
.header-address {
  font-size: 12px;
}
.header-business {
  font-size: 12px;
  margin-left: 14px;
}
.header-phone {
  margin-top: 7px;
}
.header-phone img {
  width: 275px;
}
.header-request {
  width: 90px;
  height: 90px;
  text-align: center;
  background: #45AC66;
  margin-left: 28px;
}
.header-request:hover {
  background: #ff8f49;
  transition: all 0.3s ease 0s;
}
.header-request a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.header-request img {
  width: 24px;
}
.header-request span {
  font-size: 12px;
  letter-spacing: 0.05em;
  color: #fff;
  display: inline-block;
  text-align: center;
  margin-top: 14px;
}

/* openbtn */
.openbtn {
  position: relative;
  cursor: pointer;
  width: 90px;
  height:90px;
  z-index: 9999;
  overflow: hidden;
  display: none;
}
.openbtn .openbtn-area{
  transition: all .4s;
}
.openbtn span{
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 25px;
  height: 3px;
  border-radius: 2px;
  background: #63676A;
  width: 45%;
}
.openbtn span:nth-of-type(1) {
  top:25px;	
}
.openbtn span:nth-of-type(2) {
  top:43px;
}
.openbtn span:nth-of-type(3) {
  top:61px;
}
.openbtn.active .openbtn-area{
  transform: rotateX(360deg);
}
.openbtn.active span:nth-of-type(1) {
  top: 34px;
  left: 23px;
  transform: translateY(6px) rotate(-135deg);
  width: 50%;
  background: #fff;
}
.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}
.openbtn.active span:nth-of-type(3){
  top: 46px;
  left: 23px;
  transform: translateY(-6px) rotate(135deg);
  width: 50%;
  background: #fff;
}

.g-nav {
  position: fixed;
  z-index: 999; 
  width: 100%;
  height: 100vh;
  background-color: #916D12;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: none;
}
.g-nav ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 67px;

  height: auto;
  padding: 0;
}
.g-nav li{
  list-style: none;
  position: static;
}
.g-nav li a {
  color: #fff;
  text-decoration: none;
  font-weight: normal;
  letter-spacing: 0.03em;
}
.g-nav.panelactive {
  display: block;
  position:fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  }  
.g-nav.panelactive ul {
  opacity:1;
  }
.g-nav.panelactive ul li {
  position: relative;
  width: 100%;
  height: auto;
  white-space: nowrap;
  animation-name: gnaviAnime;
  animation-duration: 1s;
  animation-delay: .1s;
  animation-fill-mode: forwards;
  opacity: 0;
  display: block;
  }
  @keyframes gnaviAnime {
    0% {
    opacity: 0;
    }
    100% {
    opacity: 1;
    }
  }
.g-nav.panelactive li a {
  font-size: 1.6rem;
}

.first {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.first .front-img {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  width: clamp(200px, 69.8vw, 894px);
}
.first .wrapper {
  width: 100%;
  padding: 140px 0 50px 50px;
}
.first .image-box {
  width: clamp(200px, 30vw, 300px);
}
.first .wrapper.bottom {
  width: 100%;
  background-color: #EAF8EF;
  padding: 93px 0 93px 50px;
}
.first .message {
  line-height: calc(40 / 16);
  width: 300px;
}
.first .btn {
  display: block;
  width: fit-content;
  margin-top: 60px;
}
.first .btn-inner {
  font-size: 16px;
  font-weight: 500;
  color: #45AC66;
  width: 300px;
  padding: 19px 0;
  border-radius: 32px;
  border: 1px solid #45AC66;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;  
  position: relative;
}
.first .btn-inner::after {
  position: absolute;
  top: 50%;
  right: 32.5px;
  content: '';
  background-image: url(../images/green-arrow.png);
  background-repeat: no-repeat;
  background-size: cover;
  transform: translateY(-50%);
  width: 15px;
  height: 13px;
}
.first .btn-inner:hover {
  cursor: pointer;
  color: #ffffff;
  background-color: #45AC66;
  transition: .3s;
}
.first .btn-inner:hover::after {
  background-image: url(../images/white-arrow.png);
}

.second {
  width: 100%;
  padding: 214px 0 330px;
  position: relative;
  overflow: hidden;
}
.second::after {
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  content: '';
  width: 198px;
  height: 398px;
  background-image: url(../images/img_mesh_03.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.second .wrapper {
  width: 100%;
  padding-left: clamp(20px, 145.5px, 11.37vw);
  display: flex;
  column-gap: clamp(70px, 8.7vw, 111px);
}
.second .container {
  width: 71%;
}
.second .title {
  font-family: "Kiwi Maru", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 38px;
  letter-spacing: 0.05em;
  text-align: center;
  padding-bottom: 12px;
  border-bottom: 5px dotted #45AC66;
}
.second .title span {
  color: #45AC66;
}
.second .image-box {
  width: 100%;
  margin-top: 82px;
}
.second .content {
  font-size: 18px;
  font-weight: 500;
  line-height: calc(33/18);
  color: #4E4D4D;
  margin-top: 51px;
}
.second .content span {
  color: #45AC66;
}
.second .container.right {
  width: 100%;
  position: relative;
  z-index: 2;
}
.second .container.right::before {
  position: absolute;
  z-index: -1;
  top: -143px;
  right: 0;
  content: '';
  width: 352px;
  height: 297px;
  background-image: url(../images/img_mesh_01.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.second .container.right::after {
  position: absolute;
  z-index: -1;
  bottom: -184px;
  left: -158px;
  content: '';
  width: 586px;
  height: 506px;
  background-image: url(../images/img_mesh_02.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.third {
  width: 100%;
  background-image: url(../images/bg_third_01.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  padding-bottom: 256px;
  overflow: hidden;

}
.third .title {
  font-family: "Kiwi Maru", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 38px;
  letter-spacing: 0.05em;
  text-align: center;
  width: 100%;
  max-width: 552px;
  padding: 0 0 12px;
  margin: auto;
  border-bottom: 5px dotted #45AC66;
}
.third .title span {
  color: #45AC66;
}
.third .plan-cards {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1040px;
  padding: 0 20px;
  margin: 105px auto 0;
}
.third .plan-card {
  width: 230px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.third .card-img {
  width: 100%;
}
.third .btn {
  display: block;
  width: fit-content;
  margin-top: -20px;
}
.third .btn-inner {
  font-family: "Kiwi Maru", serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.05em;
  color: #FFFFFF;
  width: 190px;
  padding: 8px 0 8px 18px;
  border-radius: 20px;
  border: none;
  background-color: #3D7C51;
  display: flex;
  align-items: center;  
  position: relative;
}
.third .btn-inner.kobetu {
  background-color: #4B5993;
}
.third .btn-inner.tachiai {
  background-color: #AC457C;
}
.third .btn-inner.houmon {
  background-color: #A26D38;
}
.third .btn-inner::after {
  position: absolute;
  top: 50%;
  right: 18px;
  content: '';
  background-image: url(../images/white-arrow.png);
  background-repeat: no-repeat;
  background-size: cover;
  transform: translateY(-50%);
  width: 15px;
  height: 13px;
}
.third .btn-inner:hover {
  cursor: pointer;
}
.third .btn-inner:hover::after {
  right: 10px;
  transition: .3s;
}
.third .wrapper {
  width: 100%;
  max-width: 1165px;
  padding: 0 20px 0 55px;  
  margin-top: 114px;
  width: 100%;
  display: flex;
  column-gap: clamp(20px, 4.9vw, 63px);
  position: relative;
}
.third .wrapper:first-of-type {
  margin-top: 150px;

}
.third .image-box {
  width: 30%;
  z-index: 1;
}
.third .container {
  width: 700px;
  z-index: 1;
}
.third .mesh-image-top {
  position: absolute;
  z-index: 0;
  right: -246px;
  bottom: -180px;
  width: 500px;
}
.third .mesh-image-bottom {
  position: absolute;
  z-index: 0;
  left: -186px;
  bottom: -330px;
  width: 500px;
}
.third .inner-top {
  display: flex;
  justify-content: space-between;
  column-gap: 30px;
}
.third .plan-name {
  font-family: "Kiwi Maru", serif;
  font-size: 30px;
  font-weight: 500;
  color: #3D7C51;
}
.third .plan-name.kobetu {
  color: #4B5993;
}
.third .plan-name.tachiai {
  color: #AC457C;
}
.third .plan-name.houmon {
  color: #A26D38;
}
.third .price-box {
  width: 100%;
  padding: 14px 0;
  margin-top: 20px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 0 6px rgba(0, 0, 0, .16);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.third .price-box-inner {
  display: flex;
  column-gap: 15px;
}
.third .price-name {
  font-family: "Kiwi Maru", serif;
  font-size: 25px;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: #333333;
}
.third .label {
  font-size: 14px;
  color: #ffffff;
  background-color: #7E7E7E;
  border-radius: 20px;
  padding: 5px 15px;
}
.third .price {
  font-family: "Kiwi Maru", serif;
  font-size: 29px;
  font-weight: 500;
  color: #333333;
  margin-top: 16px;
  display: flex;
  align-items: baseline;
}
.third .price span.big {
  font-family: "Kiwi Maru", serif;
  font-size: 38px;
  font-weight: 500;
  color: #3D7C51;
}
.third .price.kobetu span.big {
  color: #4B5993;
}
.third .price.tachiai span.big {
  color: #AC457C;
}
.third .price.houmon span.big {
  color: #A26D38;
}
.third .price span.tax {
  font-family: "Kiwi Maru", serif;
  font-size: 20px;
  font-weight: 500;
  color: #333333;
}
.third .annotation {
  font-size: 12px;
  color: #333333;
  line-height: calc(14 / 12);
  margin-top: 10px;
}
.third .plan-message {
  font-size: 16px;
  letter-spacing: 0.02em;
  line-height: calc(33 / 16);
  color: #333333;
  width: 100%;
  max-width: 373px;
}
.third .inner-bottom {
  width: 100%;
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.third .flow {
  font-size: 14px;
  color: #ffffff;
  text-align: center;
  background-color: #3D7C51;
  border-radius: 5px;
  padding: 16px;
  min-width: 131px;
}
.third .flow.kobetu {
  background-color: #4B5993;
}
.third .flow.tachiai {
  background-color: #AC457C;
}
.third .flow.houmon {
  background-color: #A26D38;
}
.third .flow.white {
  color: #3D7C51;
  background-color: #ffffff;
}
.third .flow.kobetu.white {
  color: #4B5993;
  background-color: #ffffff;
}
.third .arrow.kobetu path {
  stroke: #4B5993;
}
.third .flow.tachiai.white {
  color: #AC457C;
  background-color: #ffffff;
}
.third .arrow.tachiai path {
  stroke: #AC457C;
}
.third .flow.houmon.white {
  color: #A26D38;
  background-color: #ffffff;
}
.third .arrow.houmon path {
  stroke: #A26D38;
}
.third .content-box {
  width: 100%;
  max-width: 1040px;
  padding: 0 20px;
  margin: 63px auto 0;
  background-color: #ffffff;
  border: 1px solid #333333;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.third .content {
  width: 100%;
  max-width: 934px;
  padding: 37px 20px 44px;
  color: #333333;
  line-height: calc(28 / 16);
}


.fourth {
  width: 100%;
  margin-top: 170px;
}
.fourth .wrapper {
  width: 100%;
  max-width: 1040px;
  padding: 0 20px;
  margin: auto;
}
.fourth .subtitle {
  font-family: "Kiwi Maru", serif;
  font-size: 26px;
  font-weight: 500;
  color: #333333;
  text-align: center;
}
.fourth .title {
  font-family: "Kiwi Maru", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 38px;
  letter-spacing: 0.05em;
  color: #45AC66;
  text-align: center;
  width: 100%;
  max-width: 552px;
  padding: 0 0 15px;
  border-bottom: 5px dotted #45AC66;
  margin: 6px auto 0;
}
.fourth .message {
  font-size: 18px;
  font-weight: 500;
  line-height: calc(33 /18);
  color: #4E4D4D;
  margin-top: 60px;
}
.fourth .goods {
  width: 100%;
  margin: 78px auto 0;
  display: flex;
  flex-wrap: wrap;
  column-gap: 40px;
  row-gap: 30px;
}
.fourth .list {
  width: 480px;
  background-color: #F6F4EF;
  border-radius: 20px;
  padding: 30px;
  display: flex;
  align-items: center;
  column-gap: 35px;
}
.fourth .image-box {
  width: 200px;
}
.fourth .inner {
  width: 185px;
}
.fourth .goods-name {
  font-family: "Kiwi Maru", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 22px;
  color: #333333;
  text-align: center;
  padding: 0 0 19px;
  border-bottom: 3px dotted #333333;
}
.fourth .goods-price {
  font-family: "Kiwi Maru", serif;
  font-size: 18px;
  font-weight: 500;
  color: #333333;
  margin-top: 20px;
}
.fourth .goods-price span.big {
  font-family: "Kiwi Maru", serif;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: #333333;
}
.fourth .goods-price span.tax {
  font-family: "Kiwi Maru", serif;
  font-size: 14px;
  font-weight: 500;
  color: #333333;
}

.fifth {
  width: 100%;
  margin-top: 54px;
  padding: 295px 20px 320px;
  background-image: url(../images/bg_fifth_01.png);
  background-repeat: no-repeat;
  background-position: top;
  background-size: 100% 100%;
  overflow-x: hidden;
}
.fifth .title {
  font-family: "Kiwi Maru", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 38px;
  letter-spacing: 0.05em;
  color: #333333;
  text-align: center;
  width: 100%;
  max-width: 552px;
  margin: auto;
  padding: 0 0 12px;
  border-bottom: 5px dotted #4B5993;
}
.fifth .tab-container {
  width: 100%;
  max-width: 1000px;
  margin: 54px auto 0;
  position: relative;
}
.fifth .tab-menu {
  display: flex;
  column-gap: 10px;
  list-style: none;
  width: 100%;
  margin: 0;
  padding: 0;
}
.fifth .tab-menu-item {
  font-family: "Kiwi Maru", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 26px;
  letter-spacing: 0.05em;
  color: #ffffff;
  text-align: center;
  width: calc((100% - 20px) / 3);
  padding: 15px 0;
  cursor: pointer;
  background-color: #A2AAD0;
  border-radius: 10px 10px 0 0;
}
.fifth .tab-menu-item.move {
  background-color: #4B5993;
}
.fifth .tab-content {
  width: 100%;
  padding: 50px 10px 35px;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.fifth .plan-desc {
  font-family: "Kiwi Maru", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 20px;
  color: #333333;
  text-align: center;
  width: 100%;
}
.fifth .image-box {
  margin: 14px auto 0;
}
.fifth .image-box.planb {
  width: 100%;
  max-width: 382px;
}
.fifth .image-box.planc {
  width: 100%;
  max-width: 609px;
}
.fifth .tab-pane {
  display: none;
}
.fifth .tab-pane.move {
  display: block;
}
.fifth table {
  max-width: 750px;
  width: 100%;
  margin: 50px auto 0;
  border: 1px solid #D8D8D8;
}
.fifth table th {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.05em;
  padding: 18px 0 18px;
  color: #ffffff;
  background-color: #767676;
  border: 1px solid #D8D8D8;
}
.fifth table tr td:first-child {
  background-color: #F5F5F5;
}
.fifth table tr td {
  font-size: 16px;
  font-weight: 400;
  color: #333333;
  text-align: center;
  padding: 11px 0 11px;
  border: 1px solid #D8D8D8;
  min-width: 150px;
}
.fifth .annotation {
  font-size: 14px;
  font-weight: 400;
  color: #000000;
  margin-top: 15px;
}
.fifth .flower-image {
  position: absolute;
  bottom: clamp(-300px, -39vw, -215px);
  right: clamp(-130px, -17vw, -60px);
  width: clamp(280px, 50.3vw, 387px);
}
.sixth {
  width: 100%;
  padding-bottom: 206px;
}
.sixth .title {
  font-family: "Kiwi Maru", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 38px;
  letter-spacing: 0.05em;
  color: #333333;
  text-align: center;
  width: 100%;
  max-width: 559px;
  margin: 100px auto 0;
  padding-bottom: 12px;
  border-bottom: 5px dotted #45AC66;
}
.sixth .title span {
  color: #45AC66;
}
.sixth .container {
  width: 100%;
  max-width: 1145px;
  padding-left: clamp(90px, 11.3vw, 145px);
  margin-top: 121px;
  display: flex;
  align-items: center;
  column-gap: 67px;
  position: relative;
}
.sixth .container.reverse {
  width: 100%;
  max-width: 1145px;
  padding-right: clamp(90px, 11.3vw, 145px);
  margin-top: 121px;
  margin-left: auto;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  column-gap: 67px;
  position: relative;
}
.sixth .flower {
  position: absolute;
  z-index: -1;
  bottom: clamp(-108px, -14.1vw, -181px);
  left: 0;
  width: clamp(240px, 31.25vw, 402px);
}
.sixth .flower-reverse {
  position: absolute;
  z-index: -1;
  bottom: clamp(-84px, -10.8vw, -139px);
  right: 0;
  width: clamp(280px, 36.1vw, 463px);
}
.sixth .image-box {
  width: clamp(260px, 33.8vw, 433px);
}
.sixth .inner {
  width: 39vw;
}
.sixth .subtitle {
  font-family: "Kiwi Maru", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 30px;
  letter-spacing: 0.05em;
  color: #45AC66;
}
.sixth .content {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: calc(33 / 18);
  color: #4E4D4D;
  margin-top: 36px;
}

.seventh {
  width: 100%;
  background-image: url(../images/bg_seventh_01.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% 100%;
  padding-top: 295px;
  padding-bottom: 387px;
  position: relative;
}
.seventh .title {
  font-family: "Kiwi Maru", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 38px;
  letter-spacing: 0.05em;
  text-align: center;
  width: 100%;
  max-width: 552px;
  padding: 0 0 12px;
  margin: auto;
  border-bottom: 5px dotted #45AC66;
}
.seventh .title span {
  color: #45AC66;
}
.seventh .content {
  font-size: 18px;
  font-weight: 500;
  line-height: calc(33 / 18);
  color: #4E4D4D;
  text-align: center;
  margin-top: 60px;
}
.seventh .grave-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 20px;
  row-gap: 54px;
  width: 100%;
  max-width: 1040px;
  padding: 0 20px;
  margin: 60px auto 0;
}
.seventh .grave-card {
  width: 320px;
  min-height: 200px;
  padding: 4px;
  background-color: #ffffff;
  border: 1px solid #E0E0E0;
}
.seventh .card-inner {
  width: 100%;
  padding: 0 26px 28px;
}
.seventh .card-title {
  font-family: "Kiwi Maru", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 24px;
  text-align: center;
  color: #45AC66;
  margin-top: 23px;
}
.seventh .card-message {
  font-weight: 500;
  font-size: 16px;
  line-height: calc(30 / 16);
  color: #333333;
  margin-top: 14px;
}
.seventh .card-box {
  width: 100%;
  margin-top: 20px;
  padding: 12px 0 9px;
  background-color: #F8F8F8;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.seventh .label {
  font-family: "Kiwi Maru", serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.03em;
  font-size: 18px;
  text-align: center;
  color: #333333;
}
.seventh .price {
  font-family: "Kiwi Maru", serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: -0.05em;
  font-size: 20px;
  text-align: center;
  color: #45AC66;
  margin-top: 4px;
  display: flex;
  align-items: baseline;
}
.seventh .price span.big {
  font-family: "Kiwi Maru", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 32px;
  color: #45AC66;
}
.seventh .price span.tax {
  font-family: "Kiwi Maru", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 14px;
  color: #333333;
}
.seventh .annotation {
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.03em;
  line-height: calc(17 / 14);
  color: #333333;
  margin-top: 10px;
}
.seventh .btm-flower {
  position: absolute;
  bottom: -76px;
  left: 0;
  width: 100%;
}

.eighth {
  width: 100%;
  padding: 175px 0 106px;
  background-image: linear-gradient(to bottom, #F2F7F7, #ffffff 90%);
}
.eighth .title {
  font-family: "Kiwi Maru", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 38px;
  letter-spacing: 0.05em;
  color: #45AC66;
  text-align: center;
  width: 100%;
  max-width: 552px;
  padding: 0 0 12px;
  margin: auto;
  border-bottom: 5px dotted #45AC66;
}
.eighth .content {
  font-size: 18px;
  font-weight: 500;
  line-height: calc(33 / 18);
  color: #4E4D4D;
  text-align: center;
  margin-top: 60px;
}
.eighth .wrapper {
  width: 100%;
  max-width: 1040px;
  margin: 70px auto 0;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  column-gap: 44px;
  row-gap: 35px;
}
.eighth .container {
  width: 478px;
  padding: 20px 30px 30px;
  background-color: #ffffff;
  border: 1px solid #707070;
  border-radius: 10px;
  box-shadow: 0 0 5px rgba(0, 0, 0, .16);
}
.eighth .inner {
  width: 100%;
  display: flex;
  align-items: center;
  column-gap: 21px;
}
.eighth .icon-image {
  width: 50px;
}
.eighth .voice-name {
  font-size: 22px;
  font-weight: 500;
  color: #45AC66;
  width: 100%;
  padding-bottom: 15px;
  border-bottom: 1px solid #707070;
}
.eighth .voice-name.gold {
  color: #A3854C;
}
.eighth .voice-name.blue {
  color: #7481CB;
}
.eighth .voice-name span {
  font-size: 20px;
  font-weight: 500;
  color: #7E7E7E;
}
.eighth .voice-content {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: #333333;
  line-height: calc(32 / 18);
  margin-top: 12px;
}

.ninth {
  width: 100%;
}
.ninth .title {
  font-family: "Kiwi Maru", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 36px;
  letter-spacing: 0.05em;
  color: #FFFFFF;
  text-align: center;
  width: 100%;
  padding: 74px 0;
  background-color: #45AC66;
}
.ninth .wrapper {
  width: 100%;
  max-width: 1040px;
  padding: 0 20px;
  margin: 60px auto 0;
}
.ninth .message {
  font-size: 18px;
  font-weight: 500;
  line-height: calc(33 / 18);
  color: #4E4D4D;
}
.ninth .sp-container {
  display: flex;
  flex-direction: column;
}
.ninth .container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 60px;
  column-gap: 3%;
  row-gap: 30px;
}
.ninth .inner {
  width: 100%;
  width: 48.5%;
  max-width: 500px;
}
.ninth .inner-title {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  padding: 5px 0 15px;
  background-color: #45AC66;
  margin-top: 56px;
}
.ninth .inner-title:first-child {
  margin-top: 0;
}
.ninth .inner-list {
  font-size: 18px;
  font-weight: 500;
  color: #333333;
  list-style: none;
  line-height: calc(33 / 18);
}
.ninth .map {
  width: 50%;
  width: 48.5%;
  max-width: 470px;
}
.ninth .carnavi-box {
  width: 100%;
  padding: 30px 30px 33px;
  border: 1px solid #E30D0D;
  border-radius: 10px;
}
.ninth .carnavi {
  font-size: 16px;
  font-weight: 500;
  line-height: calc(26 / 16);
  color: #E30D0D;
}
.ninth .annotation {
  font-size: 12px;
  font-weight: 400;
  color: #333333;
  margin-top: 18px;
}
.ninth .address {
  font-size: 18px;
  font-weight: 400;
  line-height: calc(33 / 18);
  color: #333333;
  margin-top: 20px;
}
/* Google Map */
.googlemap {
  position: relative;
  width: 50%;
  width: 48.5%;
  max-width: 470px;
  height: 0;
  padding-top: 36.1%;
}
.googlemap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.ninth .overview-title {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #ffffff;
  text-align: center;
  width: 100%;
  background-color: #7E7E7E;
  padding: 20px 10px;
  margin-top: 100px;
}
.ninth .box-overview {
  border: 1px solid #7E7E7E;
  background-color: #fff;
  padding: 42px 0 53px 65px;
}
.ninth table.overview {
  width: 92%;
  max-width: 865px;
  border-collapse: collapse;
}
.ninth table.overview tr {
  display: flex;
  border-bottom: 1px solid #ccc;
  padding: 8px 0 15px;
  vertical-align: middle;
}
.ninth table.overview th {
  width: 120px;
  text-indent: 1em;
  text-align: left;
  font-size: 18px;
  font-weight: 700;
  color: #333333;
}
.ninth table.overview td {
  width: calc(100% - 120px);
  font-size: 18px;
  font-weight: 400;
  color: #333333;
}
  

.tenth {
  margin-top: 238px;
  padding-bottom: 175px;
}
.tenth .title {
  font-family: "Kiwi Maru", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 36px;
  letter-spacing: 0.05em;
  color: #FFFFFF;
  text-align: center;
  width: 100%;
  padding: 74px 0;
  background-color: #45AC66;
}
.entryform {
  width: 100%;
  max-width: 1040px;
  margin: 60px auto 0;
  padding: 0 20px;
}
.tenth .content {
  font-size: 18px;
  font-weight: 500;
  line-height: calc(33 / 18);
  color: #4E4D4D;
}
.main-entryform-001 {
  width: 100%;
  margin-top: 60px;
}
.entryform table {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 18px;
  width: 100%;
  border: solid 1px #aaaaaa;
}
.entryform label.error {
  position: absolute;
  margin: -52px 0px 0px 0px;
  display: block;
  background-color: #ee0000;
  color: #ffffff;
  font-size: 10px;
  padding: 2px 15px;
  border-radius: 5px;
  opacity: 0.60;
  /* -ms-filter:"progid:DXImageTransform.Microsoft.Alpha"(Opacity=60);
  filter: progid:DXImageTransform.Microsoft.Alpha(opacity=60); */
  filter: alpha(opacity=60);
}
.entryform label.error:before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 18px;
  border: 5px solid transparent;
  border-top: 5px solid #ee0000;
}
.entryform input.error {
  border: solid 1px #ff7777;
}
.entryform dl {
  margin: 0px;
  padding: 0px;
  display: flex;
  align-items: center;
}
.entryform dl dt {
  float: left;
}
.entryform dl dt:nth-of-type(2) {
  padding: 0px 0px 0px 1em;
}
.entryform dl dd {
  padding: 0px;
  margin: 0px 0px 0px 0.5em;
  float: left;
}
.entryform textarea {
  width: 100%;
  max-width: 480px;
}
.entryform table td:nth-of-type(odd) {
  width: 256px;
  padding: 32px 25px 22px 37px;
  border-right: solid 1px #ffffff;
  border-bottom: solid 1px #ffffff;
  background-color: #E3E3E3;
  vertical-align: middle;
}
.entryform table td:nth-of-type(even) {
  padding: 10px 27px 10px 32px;
  background-color: #f5f5f5;
  border-bottom: solid 1px #ffffff;
}
.entryform table td.bold {
  font-weight: 700;
}
.entryform table td.sp-start {
  display: flex;
  flex-direction: column;
}
.entryform table td.bold label {
  font-weight: 500;
}
.entryform table tr:last-of-type td {
  border-bottom: solid 1px #aaaaaa;
}
.entryform span {
  padding: 5px 9px;
  font-size: 16px;
  color: #ffffff;
  background-color: #D04343;
  border-radius: 3px;
  float: inline-end;
  margin-top: -4px;
}
.entryform input,
.entryform select {
  font-size: 16px;
  width: 260px;
  height: 60px;
  padding: 5px 8px;
  margin: 0 0.5em;
  border: solid 1px #dddddd;
}
.entryform input.long {
  width: 415px;
}
.entryform textarea {
  padding: 5px 8px;
  font-size: 16px;
  font-family: "メイリオ", "MS Ｐゴシック", "Osaka", "ヒラギノ角ゴ Pro W3", Arial, sans-serif;
}
.entryform .submit {
  max-width: 360px;
  margin: 35px auto 0;
}
.entryform .submit input {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #ffffff;
  background-color: #C70E2E;
  border-radius: 44px;
  width: 100%;
  height: auto;
  padding: 21px 0;
  text-align: center;
}
.entryform .submit input:hover {
  cursor: pointer;
  background-color: #cc3333;
}
.entryform .annotation {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color:#282828;
  text-align: center;
  margin-top: 30px;
}

.contact-wrapper {
  width: 100%;
  max-width: 920px;
  padding: 0 20px;
  margin: 100px auto 0;
}
.contact-title {
  font-family: "Kiwi Maru", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 24px;
  letter-spacing: 0.03em;
  color: #FFFFFF;
  text-align: center;
  width: 100%;
  padding: 11px 0 14px;
  background-color: #45AC66;
}
.contact-title span.yellow {
  color: #FFF505;
}
.contact-container {
  width: 100%;
  padding: 26px 20px 32px;
  border: 1px solid #C6C6C6;
  box-shadow: 0 0 5px rgba(0, 0, 0, .16);
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact-name {
  font-family: "Kiwi Maru", serif;
  font-weight: 500;
  letter-spacing: -0.06em;
  font-style: normal;
  font-size: clamp(21px, 2.3vw, 30px);
  color: #333333;
  padding-right: 22px;
}
.contact-phone {
  width: 42%;
  padding: 0 37px 0 20px;
  border-left: 1px solid #C6C6C6;
  border-right: 1px solid #C6C6C6;
}
.contact-inner {
  padding-left: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact-time {
  color: #333333;
}
.contact-time span {
  font-size: 18px;
}
.contact-message {
  font-size: 14px;
  color: #ffffff;
  text-align: center;
  width: 100%;
  padding: 5px 10px;
  margin-top: 5px;
  background-color: #455EB2;
}

/*-- footer --*/
.footer {
  width: 100%;
}
.footer .wrapper.top {
  width: 100%;
  background-color: #EAF8EF;
}
.footer .container {
  max-width: 1030px;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  padding: 65px 20px 150px;
}
.footer .right {
  display: flex;
  padding-right: clamp(40px, 5.1vw, 66px);
  margin-left: auto;
}
.footer .desc {
  font-size: 14px;
  line-height: calc(37 / 14);
  color: #333333;
}
.footer .name {
  font-size: 24px;
  font-weight: bold;
  color: #333333;
  margin-top: 13px;
}
.footer .address {
  font-size: 14px;
  color: #333333;
  letter-spacing: 0.03em;
  line-height: calc(23 /14);
  margin-top: 14px;
}
.footer ul {
  margin-left: clamp(60px, 7.8vw, 100px);
}
.footer ul:first-of-type {
  margin-left: 0;
}
.footer ul li {
  position: relative;
  padding-left: 26px;
  margin-top: 26px;
}
.footer ul li:first-of-type {
  margin-top: 0;
}
.footer ul li a {
  font-size: 12px;
  letter-spacing: 0.03em;
  color: #333333;
}
.footer li::before {
  position: absolute;
  top: 8px;
  left: 0;
  content: '';
  width: 6px;
  height: 6px;
  border-bottom: 1px solid #333333;
  border-right: 1px solid #333333;
  transform: rotate(-45deg);
}
.footer .wrapper.bottom {
  width: 100%;
  background-color: #45AC66;
  margin-top: 0;
  padding: 25px 0 63px;
}
.footer .small {
  font-size: 12px;
  letter-spacing: 0.03em;
  color: #ffffff;
  text-align: center;
}
.footer .small a {
  font-size: 12px;
  letter-spacing: 0.03em;
  color: #ffffff;
  text-align: center;
}

/*-- privacy --*/
.content .privacy {
  width: 70%;
  margin: 174px auto 156px;
  letter-spacing: 0;
}
.content .privacy > * {
  line-height: 1.85;
}
.content .privacy h2 {
  text-align: center;
  margin: 0 0 30px 0;
  font-size: 24px;
  line-height: 1.5;
}
.content .privacy h3 {
  margin: 24px 0 0 0;
}