@charset "utf-8";

/*===============================================
 *	ブラウザリセット
===============================================*/
@font-face {
  font-family: 'Noto Sans JP';
  font-style: bold;
  font-weight: 700;
  src: url('../fonts/NotoSansJP-Bold.woff2') format('woff2'), url('../fonts/NotoSansJP-Bold.woff') format('woff');
  font-display: swap;
}

@font-face {
  font-family: 'Noto Sans JP';
  font-style: medium;
  font-weight: 500;
  src: url('../fonts/NotoSansJP-Medium.woff2') format('woff2'), url('../fonts/NotoSansJP-Medium.woff') format('woff');
  font-display: swap;
}

@font-face {
  font-family: 'Noto Serif JP';
  font-style: bold;
  font-weight: 700;
  src: url('../fonts/NotoSerifJP-Bold.woff2') format('woff2'), url('../fonts/NotoSerifJP-Bold.woff') format('woff');
  font-display: swap;
}

@keyframes FloatHorizontal {
  0% {
    -webkit-transform: translate3d(4px, 0, 0);
    transform: translate3d(4px, 0, 0)
  }

  50% {
    -webkit-transform: translate3d(-4px, 0, 0);
    transform: translate3d(-4px, 0, 0)
  }

  to {
    -webkit-transform: translate3d(4px, 0, 0);
    transform: translate3d(4px, 0, 0)
  }
}

/* a:hover img {filter: alpha(opacity=85);-moz-opacity: 0.85;opacity: 0.85;} */
/* html {overflow-x: hidden;overflow-y: scroll;} */
/*
body {font-size: 100%;font-family:'Noto Sans JP', "游ゴシック体", "Yu Gothic", "Hiragino Kaku Gothic Pro", "Meiryo", sans-serif;letter-spacing: 0;height: 100%;}
*/
body {
  font-size: 100%;
  font-family: 'Noto Sans JP', 'ヒラギノ角ゴ ProN W3', Meiryo, sans-serif;
  letter-spacing: 0;
  height: 100%;
  position: relative;
  overflow-x: hidden;
}

table {
  font-size: inherit;
}

select,
input,
textarea {
  font: 99% arial, helvetica, clean, sans-serif;
}

pre,
code {
  font: 115% monospace;
  *font-size: 100%;
}

br {
  letter-spacing: normal;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
form,
fieldset,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
  font-style: normal;
  font-weight: normal;
}

address,
em {
  font-style: normal;
}

strong,
th {
  font-weight: normal;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  border: none;
}

th,
td {
  text-align: left;
  border: none;
  font-weight: normal;
}

hr {
  display: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
}

img,
fieldset {
  border: 0;
  vertical-align: bottom;
}

li {
  list-style-type: none;
}

ul,
ol,
dl {
  margin: 0;
  list-style-position: outside;
  list-style-type: none;
}

li,
dt,
dd {
  font-size: 100%;
}

dt {
  font-weight: normal;
}

a {
  text-decoration: underline;
  outline: none;
}

a:hover {
  text-decoration: none;
}

form,
input {
  padding: 0;
  margin: 0;
}

iframe {
  border: none;
}

picture {}

figure {
  margin: 0;
}

img {
  height: auto;
  width: 100%;
}

p {
  line-height: 1.75;
}

i {
  font-family: 'icon' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* {
  box-sizing: border-box;
}

a {
  color: #333;
  outline: none;
  text-decoration: none;
}

/*====================== clearFix ======================*/
.clearfix:before,
.clearfix:after {
  content: "";
  display: block;
  overflow: hidden;
}

.clearfix:after {
  clear: both;
}

.clearfix {
  zoom: 1;
}

/*=============================================== *
	パターン
===============================================*/
.column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.row-rev {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.space-btw {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.space-around {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.js-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.al-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.al-start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.al-end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.al-base {
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}

/*===============================================

 *	common

===============================================*/
html body {
  background: #fff;
  color: #333;
  font-size: 17px;
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
  letter-spacing: 0.05em;
}

em {
  font-weight: bold;
}

.sp {
  display: none;
}

.inner {
  max-width: 1120px;
  margin: 0 auto;
  width: 100%;
  position: relative;
}

.txt-small {
  font-size: 13px;
}

.center {
  text-align: center;
}

.right {
  text-align: right;
}

.txt-caution {
  font-size: 12px;
}

.magb {
  margin-bottom: 4%;
}

.serif {
  font-family: 'Noto Serif JP', serif;
}

.txt_primarycolor {
  color: var(--site-primary);
}

.txt_keycolor {
  color: var(--site-keycolor);
}

.txt_white {
  color: #fff;
}

.bg_dot_green {
  background: url('../img/common/bg-gr_dot.png') repeat;
}

.bg_dot_deepgreen {
  background: url('../img/common/bg-deepgreen_dot.png') repeat;
}

.bg_dot_brown {
  background: url('../img/common/bg-brown_dot.png') repeat;
}

.bg_dot_pink {
  background: url('../img/common/bg_dot_pink.png') repeat;
}

.bg_dot_orange {
  background: url('../img/common/bg_dot_orange.png') repeat;
}

.bg_dot_yellow {
  background: url('../img/common/bg_dot_yellow02.png') repeat;
}

.bg_lightgreen {
  background: var(--site-secondary);
}

.bg_white {
  background-color: #fff;
}

.bg_gray {
  background-color: #f5f5f5;
}

.bg_gold {
  background: #c5934f;
}

.bg_keycolor {
  background: var(--site-keycolor);
}

.bg_green {
  background: var(--site-primary);
}

.lg_inner_space {
  padding: 70px 0;
}

.md_inner_space {
  padding: 40px 50px 50px;
}

.md_radius {
  border-radius: 10px;
  overflow: hidden;
}

.sm_radius {
  border-radius: 5px;
  overflow: hidden;
}

.md_under_radius {
  border-radius: 0 0 10px 10px;
}

.annotation_txt {
  color: #999;
  font-size: 15px;
  padding-left: 1em;
  text-indent: -1em;
}

.hover_white {
  display: inline-block;
  position: relative;
}

.hover_white::after {
  content: '';
  display: block;
  background: #fff;
  width: 100%;
  height: 100%;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.2s;
}

.hover_white:hover::after {
  opacity: 0.15;
}

.caution_content {
  margin: 30px 0 40px;
}

.caution_content div {
  background: #fbeff1;
  padding: 20px;
  margin-top: 20px;
}

.f-22 {
  font-size: 22px;
  font-weight: bold;
}


@media screen and (min-width: 1025px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

@media only screen and (max-width: 1024px) {
  html body {
    font-size: 16px;
  }

  .inner {
    margin: 0 auto;
    max-width: initial;
    width: 94%;
  }

  .lg_inner_space {
    overflow: hidden;
  }
}

@media only screen and (max-width: 960px) {
  html body {
    font-size: 14px;
  }

  .lg_inner_space {
    padding: 5vw 0;
  }

  .md_inner_space {
    padding: 4vw 4vw;
  }

  .annotation_txt {
    font-size: 14px;
  }
}

@media only screen and (max-width: 768px) {
  html body {
    margin-top: 80px;
  }

  .f-22 {
    font-size: 18px;
  }
}

@media only screen and (max-width: 568px) {
  html {
    scroll-padding-top: 65px;
  }

  html body {
    font-size: 15px;
    margin-top: 60px;
  }

  .inner {
    margin: 0 auto;
    width: 89.4vw;
  }

  .magb {
    margin-bottom: 8%;
  }

  .pc {
    display: none;
  }

  .sp {
    display: block;
  }

  .lg_inner_space {
    padding: 40px 0 42px;
  }

  .md_inner_space {
    padding: 30px 5.3vw;
  }

  .sp_side_margin {
    margin: 0 -5.3vw;
  }

  .md_under_radius {
    border-radius: 0;
  }

  .caution_content div {
    padding: 10px;
    margin-top: 10px;
  }

}


/*===============================================
 *	br
===============================================*/
@media screen and (min-width:1021px) {
  .br-pc {
    display: block;
  }

  .br-tb {
    display: none;
  }

  .br-sp {
    display: none;
  }
}

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

  .br-tb {
    display: block;
  }

  .br-sp {
    display: none;
  }
}

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

  .br-tb {
    display: none;
  }

  .br-sp {
    display: block;
  }
}

/*===============================================
 *	パンくず
===============================================*/
@font-face {
  font-family: 'icon';
  src: url('../fonts/icon.eot?n1r1w2');
  src: url('../fonts/icon.eot?n1r1w2#iefix') format('embedded-opentype'),
    url('../fonts/icon.ttf?n1r1w2') format('truetype'),
    url('../fonts/icon.woff?n1r1w2') format('woff'),
    url('../fonts/icon.svg?n1r1w2#icon') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

.breadcrumbs.area_bread {
  margin: -28px 0 -15px;
}

.breadcrumbs i {
  font-size: 10px;
  padding: 0 10px;
  position: relative;
  top: -1px;
}

.iconarrow_right:before {
  content: '\e900';
  color: var(--site-primary);
}

.breadcrumbs span {
  font-size: 15px;
}

.breadcrumbs a {
  color: var(--site-primary);
  font-weight: bold;
}

@media only screen and (max-width: 960px) {
  .breadcrumbs.area_bread {
    margin: 16px 0 -15px;
  }
}

@media only screen and (max-width: 568px) {
  .breadcrumbs {
    display: none;
  }
}

/*===============================================
 *	ボタン
===============================================*/
.btn_wrapper {
  margin-top: 40px;
  position: relative;
  z-index: 10;
}

.btn {
  max-width: 400px;
  border-radius: 100px;
  margin: 0 auto 4px;
  background: #81c14b;
  box-shadow: 0px 5px 1px #63933b;
}

.btn a {
  font-size: 20px;
  display: block;
  padding: 15px;
  position: relative;
  background-size: 20px;
  color: #fff;
  text-align: center;
  font-weight: bold;
  letter-spacing: 0.05em;
}

.btn a::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
}

.btn a::after {
  content: '';
  background: url(../img/common/icon_arrow_right_white.svg) center no-repeat;
  background-size: contain;
  position: absolute;
  width: 10px;
  height: 16px;
  top: 50%;
  right: 30px;
  transform: translate(0px, -50%);
}

.btn:hover {
  background: #94ca66;
  box-shadow: 0px 5px 1px #7aa358;
  transition: all 0.5s;
}

.btn:hover a {
  color: #fff;
}

.btn_border {

  margin: 0 auto;
}

.btn_border a {
  color: var(--site-primary);
  background: #fff;
  border: 2px solid var(--site-primary);
  border-radius: 50px;
  font-size: 19px;
  font-weight: bold;
  display: block;
  text-align: center;
  padding: 12px 0 13px;
  position: relative;
  transition: 0.2s;
}

.btn_border a::after {
  content: '';
  background: url(../img/common/icon_arrow_right_green.svg) center no-repeat;
  background-size: contain;
  position: absolute;
  width: 10px;
  height: 16px;
  top: 50%;
  right: 30px;
  transform: translate(0px, -50%);
}

.btn_border a:hover {
  background: var(--site-primary);
  color: #fff;
  border-radius: 50px;
}

.btn_border a:hover::after {
  background: url(../img/common/icon_arrow_right_white.svg) center no-repeat;
  background-size: contain;
}

@media only screen and (max-width: 960px) {
  .btn_wrapper {
    margin-top: 4vw;
  }

  .btn a {
    font-size: 18px;
  }

  .btn_border a {
    font-size: 16px;
    padding: 1.2vw 0 1.4vw;
  }
}

@media only screen and (max-width: 568px) {
  .btn_wrapper {
    margin-top: 25px;
  }

  .btn {
    max-width: 83.5%;
  }

  .btn a {
    font-size: 17px;
    padding: 8px 5% 10px;
  }

  .btn a::after {
    width: 8px;
    height: 13px;
    right: 16px;
    top: 52%;
  }

  .btn_border a {
    padding: 8px 0 10px;
  }

  .btn_border a::after {
    width: 8px;
    height: 16px;
  }
}

/*===============================================
 *	header
===============================================*/
#header-area {
  background: #fff;
  border-top: #28979f 5px solid;
  width: 100%;
}

#header-wrap {
  display: flex;
  padding: 20px 0;
  width: 90vw;
  max-width: 1300px;
  margin: 0 auto;
}

#header-wrap .logo {
  max-width: 289px;
  width: 23%;
  margin-right: auto;
  padding-top: 5px;
}

.hd-list {
  display: flex;
  justify-content: flex-end;
}

.hd-phonebox {
  width: 42%;
  max-width: 344px;
}

.hd-contactbox {
  margin-left: 20px;
  width: 32%;
  max-width: 256px;
}

.hd-linebox {
  margin-left: 12px;
  width: 32%;
  max-width: 256px;
}

@media only screen and (max-width: 1024px) {
  .hd-list {
    width: 68%;
  }
}

@media only screen and (max-width: 960px) {
  #header-wrap {
    width: 95vw;
  }
}

@media only screen and (max-width: 768px) {
  #header-area {
    position: fixed;
    left: 0px;
    top: 0;
    width: 100%;
    transition: all 0.3s ease;
    z-index: 99999;
    border: none;
  }

  #header-wrap {
    padding: 10px 0 10px 2%;
    align-items: center;
    height: 80px;
  }

  #header-wrap .logo {
    max-width: 175px;
  }

  .hd-list {
    max-width: 477px;
    margin-right: 10px;
  }
}

@media only screen and (max-width: 568px) {
  #header-wrap {
    width: 100%;
    height: auto;
  }

  #header-wrap {
    padding: 0 0 0 0;
  }

  .hd-list {
    display: none;
  }

  #header-wrap .logo {
    max-width: 170px;
    width: 50%;
    margin: 0 auto 0 5.3vw;
  }
}

@media only screen and (max-width: 320px) {}

/*===============================================
 *	gnavi
===============================================*/
.container {
  border-top: #e2e2e2 1px solid;
  position: relative;
}

.global-nav {
  position: relative;
  width: 90vw;
  max-width: 1300px;
  margin: 0 auto;
}

.global-nav .nav-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-box {
  display: none;
}

.sp_right_btns {
  display: none;
}

/*.global-nav .nav-list .nav-item {width: 100%;}*/
.arrow_u {
  position: relative;
}

.arrow_u:before {
  content: '';
  border-style: solid;
  border-width: 7px 5px 0 5px;
  border-color: #28979f transparent transparent transparent;
  position: absolute;
  top: 39px;
  left: -17px;
}

/* .arrow_u:hover:before {top: 40px;} */
/* .global-nav .nav-list li:nth-child(4) a,.global-nav .nav-list li:nth-child(5) a,.global-nav .nav-list li:nth-child(6) a,.global-nav .nav-list li:nth-child(7) a{padding: 19px 0;} */
/* .global-nav .nav-list li:nth-child(4) a:hover,.global-nav .nav-list li:nth-child(5) a:hover,.global-nav .nav-list li:nth-child(6) a:hover,.global-nav .nav-list li:nth-child(7) a:hover{padding: 19px 0 14px;} */
.global-nav .nav-list .nav-item a {
  font-size: 16px;
  color: #333;
  text-align: center;
  position: relative;
  line-height: 1.4;
  height: 83px;
  display: flex;
  align-items: center;
}

.global-nav .nav-wrap .nav-item a:hover {
  /*border-bottom: #28979f 5px solid;padding: 30px .25em 25px;*/
}

.global-nav .nav-wrap .nav-item a:hover::after {
  content: '';
  background: #28979f;
  height: 5px;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}

/* .global-nav .nav-wrap li.select a{display: block;border-bottom: #28979f 5px solid;} */
/* .global-nav .nav-wrap li.select a:hover{padding: 30px .25em 25px;} */
.global-nav-icon {
  display: none;
}

.gnavi-fixed {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  background: #fff;
}

.nav-wrap-sp {
  display: none;
}

@media screen and (min-width: 569px) {

  .nav-wrap {
    position: relative;
  }

  .nav-item_sub {
    background: #b9dddf;
    opacity: 0;
    position: absolute;
    top: 83px;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.2s ease;
    visibility: hidden;
    width: 99.2vw;
    z-index: 9999;
  }

  .nav-item_sub ul {
    width: 90vw;
    max-width: 1300px;
    margin: 0 auto;
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
  }

  .nav-item_sub ul li {
    display: block;
    width: 24.3%;
  }

  .global-nav .nav-list .nav-item_sub ul li img {
    width: 70px;
    margin-right: 15px;
  }

  .global-nav .nav-list .nav-item_sub ul li a {
    font-size: 21px;
    font-weight: bold;
    background: #fff;
    display: flex;
    align-items: center;
    padding: 10px 10px;
    position: relative;
    border-radius: 10px;
    border-bottom: 5px solid #9cc5c7;
    transition: all 0.2s;
    height: initial;
  }

  .global-nav .nav-list .nav-item_sub ul li a:hover::after {
    display: none;
  }

  .global-nav .nav-list .nav-item_sub ul li:first-child a {
    color: #28979f;
  }

  .global-nav .nav-list .nav-item_sub ul li:nth-child(2) a {
    color: #31865a;
  }

  .global-nav .nav-list .nav-item_sub ul li:nth-child(3) a {
    color: #b98a4a;
  }

  .global-nav .nav-list .nav-item_sub ul li:nth-child(4) a {
    color: #f3786b;
  }

  .global-nav .nav-wrap .nav-item_sub a:hover {
    border-bottom: #28979f 5px solid;
    padding: 10px 10px;
  }

  .global-nav .nav-wrap .nav-item_sub a:before {
    content: '';
    width: 8px;
    height: 8px;
    border: 0;
    border-top: solid 2px #28979f;
    border-right: solid 2px #28979f;
    position: absolute;
    top: 50%;
    right: 5%;
    margin-top: -4px;
    transform: rotate(45deg);
  }

  .global-nav .nav-wrap .nav-item_sub li:nth-child(2) a:before {
    border-top: solid 2px #31865a;
    border-right: solid 2px #31865a;
  }

  .global-nav .nav-wrap .nav-item_sub li:nth-child(3) a:before {
    border-top: solid 2px #b98a4a;
    border-right: solid 2px #b98a4a;
  }

  .global-nav .nav-wrap .nav-item_sub li:nth-child(4) a:before {
    border-top: solid 2px #f3786b;
    border-right: solid 2px #f3786b;
  }

  /* .global-nav .nav-wrap .nav-item_sub a:hover:before {margin-top: -1px;} */
  .nav-item:hover .nav-item_sub {
    opacity: 1;
    visibility: visible;
  }
}

@media screen and (max-width: 1024px) {
  .global-nav .nav-list .nav-item a {
    font-size: 13px;
  }
}

@media screen and (max-width: 768px) {
  .global-nav-header {
    height: 50px;
  }

  .global-nav .nav-wrap {
    background: rgba(0, 40, 90, .85);
    border-top: #346bb6 4px solid;
    display: none;
    left: 50%;
    padding: 60px 0 0;
    position: absolute;
    transform: translate(-50%, 0%);
    width: 100%;
  }

  .global-nav .nav-wrap .nav-item a {
    background: rgba(0, 40, 90, 1);
    border-bottom: 1px solid #ccc;
    border-right: none;
    color: #fff;
    padding: 1rem 1rem;
    text-align: left;
  }

  .global-nav-icon {
    color: #999;
    cursor: pointer;
    display: inline-block;
    font-size: 28px;
    position: absolute;
    right: 5px;
    top: 15px;
    z-index: 2;
  }

  .nav-item_sub {
    display: none;
  }

  /* .global-nav {height: 100%;left: 0;position: fixed;width: 100%;overflow: scroll;} */
  /* .global-nav {width: 100%; height: 100%;} */
  .nav-wrap-sp {
    display: block;
    background: #e9f4f5;
    position: fixed;
    top: 80px;
    left: 0;
    z-index: 100;
    width: 100%;
    height: 100%;
    overflow: scroll;
    padding-bottom: 60px;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
  }

  .open.nav-wrap-sp {
    visibility: visible;
    opacity: 1;
  }

  .nav-wrap-sp ul {
    display: flex;
    flex-wrap: wrap;
  }

  .nav-wrap-sp ul li:not(.menu_top) {
    width: 100%;
    border-bottom: 1px solid #64b4ba;
  }

  .nav-wrap-sp ul li:not(.menu_top) a {
    display: block;
    min-height: 40px;
    display: flex;
    align-items: center;
    font-size: 16px;
    text-align: center;
    padding: 18px 0;
    line-height: 1.3;
    position: relative;
    font-weight: bold;
  }

  .nav-wrap-sp ul li:not(.menu_top) a::after {
    content: '';
    background: url(../img/common/icon_arrow_right_green.svg) no-repeat center;
    width: 8px;
    height: 100%;
    position: absolute;
    right: 7%;
    top: 50%;
    transform: translateY(-50%);
  }

  .nav-wrap-sp ul li:not(.menu_top) .nav_plan {
    width: 80%;
  }

  .nav-wrap-sp ul.nav_plan li {
    border-left: 1px solid #64b4ba;
  }

  .nav-wrap-sp ul.nav_plan li a {
    padding-left: 15px;
  }

  .nav-wrap-sp ul.nav_plan li:last-child {
    border-bottom: none;
  }

  .nav-wrap-sp ul li:not(.menu_top) a span {
    position: relative;
    padding-left: 40px;
    margin-left: 15px;
  }

  .nav-wrap-sp ul li:not(.menu_top) a span::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 26px;
  }

  .nav-wrap-sp ul li:first-child a span::before {
    background: url(../img/common/icon-nav01.svg) no-repeat center;
  }

  .nav-wrap-sp ul li:nth-child(2) a span::before {
    background: url(../img/common/icon-nav02.svg) no-repeat center;
  }

  .nav-wrap-sp ul li:nth-child(3) a span::before {
    background: url(../img/common/icon-nav03.svg) no-repeat center;
  }

  .nav-wrap-sp ul li:nth-child(4) .plan_ttl span {
    display: flex;
    flex-direction: column;
    text-align: center;
  }

  .nav-wrap-sp ul li:nth-child(4) .plan_ttl span::before {
    content: '';
    background: url(../img/common/icon-nav04.svg) no-repeat center;
    width: 30px;
    height: 26px;
    margin: 0 auto 2px;
  }

  .nav-wrap-sp ul li:nth-child(5) a span::before {
    background: url(../img/common/icon-nav05.svg) no-repeat center;
  }

  .nav-wrap-sp ul li:nth-child(6) a span::before {
    background: url(../img/common/icon-nav06.svg) no-repeat center;
  }

  .nav-wrap-sp ul li:nth-child(7) a span::before {
    background: url(../img/common/icon-nav07.svg) no-repeat center;
  }

  /*.nav-wrap-sp ul li:nth-child(8) a span::before{background:url(../img/common/icon-nav08.svg) no-repeat center;}*/
  .nav-wrap-sp ul li .nav_plan li a {
    font-size: 15px;
    letter-spacing: 0;
  }

  .nav-wrap-sp ul li .nav_plan li span {
    padding-left: 0;
  }

  .nav-wrap-sp ul li .nav_plan li span::before {
    content: none;
  }

  .nav-wrap-sp ul li .nav_plan li:nth-child(2) a span {
    color: #31865a;
  }

  .nav-wrap-sp ul li .nav_plan li:nth-child(3) a span {
    color: #b98a4a;
  }

  .nav-wrap-sp ul li .nav_plan li:nth-child(4) a span {
    color: #f3786b;
  }

  /*.nav-wrap-sp ul li:nth-child(9) a span::before{background:url(../img/common/icon-nav09.svg) no-repeat center;}*/
  .nav-wrap-sp ul .plan_ttl {
    font-size: 16px;
    font-weight: bold;
    display: block;
    margin: 0 auto;
  }

  .nav-wrap-sp ul li:not(.menu_top) .cremation_plan {
    align-items: center;
  }

  /*.nav-wrap-sp ul li:nth-child(even):not(.menu_top) {border-right: 1px solid #64b4ba;}*/
  .nav-wrap-sp ul li.menu_top {
    font-size: 17px;
    background: #64b4ba;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    width: 100%;
  }

  .nav-wrap-sp ul li.menu_btn a {
    font-size: 15px;
    font-weight: bold;
    color: #fff;
    border-radius: 5px;
    position: relative;
    margin: 10px 10px 16px;
    padding: 13px 0;
  }

  .nav-wrap-sp ul li.menu_btn a::after {
    content: '';
    background: url(../img/common/icon_arrow_right_white.svg) no-repeat center;
    width: 8px;
    height: 100%;
    position: absolute;
    right: 10%;
  }

  .nav-wrap-sp ul li.menu_btn.green a {
    background: #81c14b;
    box-shadow: 0px 5px 0px 0px rgba(99, 147, 59, 1.0);
  }

  .nav-wrap-sp ul li.menu_btn.orange a {
    background: #ff8811;
    box-shadow: 0px 5px 0px 0px rgba(206, 103, 0, 1.0);
  }

  .nav-wrap-sp ul li.sp_line a {
    background: #06c755;
    color: #fff;
  }

  .nav-wrap-sp ul li.sp_tel a {
    background: var(--site-keycolor);
    color: #fff;
  }

  .nav-wrap-sp ul li.sp_line a,
  .nav-wrap-sp ul li.sp_tel a {
    padding: 8px 0px 18px;
    position: relative;
  }

  .nav-wrap-sp ul li.sp_line a p {
    font-size: 22px;
    font-weight: bold;
    line-height: 1.3;
    padding-left: 50px;
    margin: 0 auto;
  }

  .nav-wrap-sp ul li.sp_tel a p {
    font-size: 26px;
    font-weight: bold;
    line-height: 1.1;
    padding-left: 40px;
    margin: 0 auto;
  }

  .nav-wrap-sp ul li.sp_line a p span,
  .nav-wrap-sp ul li.sp_tel a p span {
    color: #e9f522;
    font-size: 16px;
    padding-left: 0;
    margin-left: 0;
  }

  .nav-wrap-sp ul li.sp_line a::before {
    content: '';
    background: url(../img/common/hd_line_sp.svg)no-repeat;
    width: 45px;
    height: 44px;
    position: absolute;
    top: 50%;
    left: 31%;
    transform: translateY(-50%);
  }

  .nav-wrap-sp ul li.sp_tel a::before {
    content: '';
    background: url(../img/common/hd_tel_sp.svg)no-repeat;
    width: 30px;
    height: 38px;
    position: absolute;
    top: 50%;
    left: 35%;
    transform: translateY(-50%);
  }

  .nav-wrap-sp ul li.sp_line a::after,
  .nav-wrap-sp ul li.sp_tel a::after {
    content: none;
  }

  .accordion-container {
    position: relative;
    width: 100%;
    border: none;
    border-top: none;
    outline: 0;
    cursor: pointer;
  }

  .accordion-container .accordion-title {
    display: block;
    position: relative;
    margin: 0;
    padding: 20px 0 17px;
    font-weight: normal;
    cursor: pointer;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
  }

  .accordion-container .accordion-title:hover,
  .accordion-container .accordion-title:active,
  .accordion-container .content-entry.open .accordion-title {
    text-align: center;
  }

  .accordion-container .accordion-title:hover i:before,
  .accordion-container .accordion-title:hover i:active,
  .accordion-container .content-entry.open i {
    color: var(--site-primary);
  }

  .accordion-title {
    position: relative;
  }

  .accordion-title:after {
    content: "";
    position: absolute;
    right: 25px;
    top: 38%;
    transition: all 0.2s ease-in-out;
    display: block;
    width: 8px;
    height: 8px;
    border-top: solid 2px var(--site-primary);
    border-right: solid 2px var(--site-primary);
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
  }

  .accordion-title.open:after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 45%;
  }

  .nav-wrap-sp ul.accordion-content {
    display: none;
    background: #e9f4f5;
    border-top: 1px solid var(--site-primary);
  }
}

@media screen and (max-width: 568px) {
  .nav-wrap-sp {
    top: 60px;
  }

  .nav-wrap-sp ul li.sp_line a::before {
    left: 13%;
  }

  .nav-wrap-sp ul li.sp_tel a::before {
    left: 20%;
  }
}

@media only screen and (max-width: 768px) {
  .nav-box {
    display: block;
    background: var(--site-primary);
    padding: 9px 0;
    width: 60px;
    height: 60px;
  }

  .nav-button {
    display: block;
    cursor: pointer;
  }

  .nav-button,
  .nav-button span {
    display: inline-block;
    transition: all .4s;
    box-sizing: border-box;
  }

  .nav-button {
    z-index: 20;
    position: relative;
    height: 36px;
    width: 100%;
    text-align: center;
  }

  .nav-button span {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 3px;
    background-color: #fff;
  }

  .nav-button span:nth-of-type(1) {
    top: 4px;
    width: 25px;
  }

  .nav-button span:nth-of-type(2) {
    top: 13px;
    width: 25px;
  }

  .nav-button span:nth-of-type(3) {
    bottom: 11px;
    width: 25px;
  }

  .nav-button span.txt {
    bottom: 5px;
    color: #fff;
    background: none;
    font-size: 10px;
  }

  .nav-button span.txt::after {
    content: 'メニュー';
  }

  .nav-button.active span.txt::after {
    content: '閉じる';
  }

  .nav-button.active span:nth-of-type(1) {
    -webkit-transform: translate(-12px, 10px) rotate(-45deg);
    transform: translate(-12px, 10px) rotate(-45deg);
  }

  .nav-button.active span:nth-of-type(2) {
    opacity: 0;
  }

  .nav-button.active span:nth-of-type(3) {
    -webkit-transform: translate(-12px, -8px) rotate(45deg);
    transform: translate(-12px, -8px) rotate(45deg);
  }

  .nav-list {
    margin-bottom: 1.5em;
  }

  /* .global-nav .nav-list .nav-btn_home{display: block;position: absolute;right: 60px;top: 0;width: 60px;}
.global-nav .nav-wrap li.nav-btn_home a{color: #fff;background: rgba(209,178,105,.8);display: block;padding: 20px 9px;border-bottom: none;font-size: 13px;font-weight:normal;}
.global-nav .nav-wrap li.nav-btn_home a:before{content: none;} */
}


@media only screen and (max-width: 568px) {

  /* .global-nav .nav-list{display: flex;flex-wrap: wrap;justify-content: space-between;}
.global-nav .nav-list .nav-item a{font-size: 14px;}
.global-nav .nav-list a:before {content: '';width: 6px;height: 6px;border: 0;border-top: solid 2px #fff;border-right: solid 2px #fff;position: absolute;top: 50%;right: .5em;margin-top: -4px;transform: rotate(45deg);}
.global-nav .nav-list > li:nth-child(n + 2){width: 50%;}
.global-nav .nav-list li.accordion_sub{width: 100%;}
.global-nav .nav-list li.accordion_sub > a:hover:before {content: '';width: 6px;height: 6px;border: 0;border-bottom: solid 2px #346bb6;border-right: solid 2px #346bb6;position: absolute;top: 50%;right: .5em;margin-top: -6px;transform: rotate(45deg);}
.global-nav .nav-list li.accordion_sub > a:before {content: '';width: 6px;height: 6px;border: 0;border-bottom: solid 2px #fff;border-right: solid 2px #fff;position: absolute;top: 50%;right: .5em;margin-top: -6px;transform: rotate(45deg);}
.nav-item_sub ul {display: flex;flex-wrap: wrap;justify-content: space-between;font-size: 14px;}
.nav-item_sub ul li{width: 50%;}
.global-nav .nav-wrap .nav-item .nav-item_sub a{background: rgb(30,84,151,.5);font-size: 14px;} */
  /* .global-nav .nav-list {display: none;}
.nav-wrap .aside-menu {margin: 2%;display: flex;justify-content: space-between;flex-wrap: wrap;align-items: center;}
.nav-wrap .aside-menu li {width: calc(100% / 2.1);}
.nav-wrap .aside-menu li a{color: #fff;display: block;text-align: center;background: rgba(255,255,255,.1);border: 1px solid #fff;line-height: 1em;margin: 0 auto;padding: 12px 0 13px 0;}
.nav-wrap .aside-menu li.btn-contact_sp a{background: rgba(247,153,5,.1);border: #f39800 1px solid;color: #f39800;font-weight: bold;} */
  .sp_right_btns {
    display: flex;
  }

  .sp_right_btns li {
    width: 55px;
    height: 60px;
  }

  .sp_right_btns li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
  }

  .sp_right_btns li span {
    color: #fff;
    font-size: 10px;
    line-height: 1.2;
  }

  .sp_right_btns .line_btn {
    background: #06c755;
  }

  .sp_right_btns .line_btn img {
    width: 25px;
    margin: 4px 0 5px;
  }

  .sp_right_btns .phone_btn {
    background: #da6272;
  }

  .sp_right_btns .phone_btn img {
    width: 17px;
    margin: 5px 0 6px;
  }
}

/*--------------------------------
	  フッター
--------------------------------*/
footer {
  padding: 60px 0 138px;
}

footer>.inner {
  justify-content: space-between;
  position: relative;
}

footer li {
  font-size: 15px;
  display: block;
  position: relative;
  padding-left: 16px;
  margin: 0 0 10px 30px;
}

footer li.menu_top {
  font-size: 17px;
  font-weight: bold;
  padding-left: 26px;
  margin: 0 0 10px 0;
}

footer li:not(.menu_top) a::before {
  content: '';
  background: url(../img/common/icon_arrow_right_green.svg) no-repeat;
  width: 6px;
  height: 10px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

footer li.menu_top::before {
  content: '';
  background: url(../img/common/icon_circle_arrow.svg) no-repeat;
  width: 16px;
  height: 16px;
  position: absolute;
  left: 0;
  top: 6px;
}

footer li a {
  transition: all 0.2s;
}

footer li a:hover {
  color: var(--site-primary);
}

.copy {
  color: #fff;
  font-size: 13px;
  text-align: center;
  background: var(--site-primary);
  margin-top: 60px;
  padding: 20px 0;
}

.copy a {
  color: #fff;
}

#fl-fxmenu {
  display: none;
  /*border-top: 3px solid #f7efcb;*/
  border-bottom: 3px solid #f7efcb;
  background: #fdfaee;
  position: fixed;
  width: 100%;
  bottom: 0;
  left: 0;
  z-index: 100;
  /* display: none; */
}

#fl-fxmenu p {
  background: #f7efcb;
  padding: 3px 0;
  position: relative;
}

#fl-fxmenu ul {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: baseline
    /*center*/
  ;
  padding: 5px 0 15px
    /*15px 0*/
  ;
}

#fl-fxmenu .logo {
  width: 20.6%;
  max-width: 269px;
  margin-right: auto;
}

#fl-fxmenu .phone {
  width: 27%;
  max-width: 344px;
  margin-right: 20px;
}

#fl-fxmenu .mail {
  width: 20%;
  max-width: 256px;
  margin-right: 12px;
}

#fl-fxmenu .line {
  width: 20%;
  max-width: 256px;
}

.pagetop {
  display: none;
  position: fixed;
  bottom: 133px;
  right: 30px;
  z-index: 999;
}

.pagetop a {
  display: block;
  background-color: #81c14b;
  text-align: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  transition: all 0.2s;
}

.pagetop a img {
  width: 16px;
  position: relative;
  top: 6px;
}

footer .bnr-link {
  position: absolute;
  right: 0;
  bottom: 0px;
  max-width: 320px;
}

footer .link_bnr {
  margin-bottom: 5px;
}

footer .link_bnr img {
  width: 320px;
}

@media only screen and (max-width: 960px) {
  footer {
    padding: 4vw 0 4vw;
  }

  footer>.inner {
    justify-content: flex-start;
    gap: 4vw 0;
  }

  footer ul {
    width: 33.3%;
  }

  footer li {
    font-size: 14px;
    margin: 0px 0 4px 22px;
  }

  footer li.menu_top {
    font-size: 15px;
    padding-left: 22px;
    margin: 0px 0 5px 0;
  }

  footer li.menu_top::before {
    top: 12px;
  }

  #fl-fxmenu ul {
    padding: 15px 15px;
  }

  footer .link_bnr {
    position: relative;
    right: initial;
    bottom: initial;
  }

  footer .bnr-link {
    max-width: 270px;
  }

  footer .link_bnr img {
    width: 100%;
  }
}

@media only screen and (max-width: 568px) {
  footer {
    padding: 0;
  }

  footer>.inner {
    width: 100%;
    display: block;
  }

  footer ul {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
  }

  footer li.menu_top {
    font-size: 18px;
    background: #64b4ba;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    width: 100%;
    margin: 0;
  }

  footer li.menu_top::before {
    display: none;
  }

  footer li:not(.menu_top) {
    width: 50%;
    margin: 0;
    padding: 0;
    border-bottom: 1px solid #64b4ba;
    line-height: 1.4;

  }

  footer li:nth-child(even):not(.menu_top) {
    border-right: 1px solid #64b4ba;
  }

  footer li:not(.menu_top) a {
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    padding-left: 16px;
  }

  footer li:not(.menu_top) a::before {
    left: initial;
    right: 10px;
  }

  .copy {
    margin: 0 0 65px;
    font-size: 12px;
    padding: 16px 0;
  }

  #fl-fxmenu {
    /* margin-bottom: calc(env(safe-area-inset-bottom) * -1) ;
    padding-bottom:env(safe-area-inset-bottom);
    bottom: env(safe-area-inset-bottom); */

  }

  #fl-fxmenu p {
    background: #ffe580;
  }

  #fl-fxmenu ul {
    padding: 0;
    justify-content: center
      /*flex-start*/
    ;
    align-items: flex-start;
    height: 65px;
    overflow: hidden;
    background: #ffe580;
  }

  #fl-fxmenu {
    background: #fff;
    border: none;
  }

  #fl-fxmenu .phone {
    width: 58.6%;
    border-top: 2px solid #ccc;
    border-bottom: 2px solid #ccc;
    margin: 0;
    padding: 6px
      /*0 10px*/
    ;
    /*display: flex;
    align-items: center;*/
    height: 90px
      /*65px*/
    ;
  }

  #fl-fxmenu .phone a {
    display: block;
    padding: 5px;
  }

  #fl-fxmenu .mail {
    width: 20.7%;
    margin: 0;
  }

  #fl-fxmenu .line {
    width: 20.7%;
  }

  .pagetop {
    display: block;
    position: static;
  }

  .pagetop a {
    width: 100%;
    height: auto;
    padding: 10px 0;
    border-radius: 0;
  }

  .pagetop a img {
    vertical-align: middle;
    top: -2px;
  }

  footer .bnr-link {
    position: static;
    margin: 0 auto;
    max-width: 234px;
    ;
  }

  footer .link_bnr {
    position: relative;
    right: initial;
    bottom: initial;
    display: inline;
  }

  footer .link_bnr img {
    width: 234px;
    display: block;
    margin: 20px auto;
  }

  #fl-fxmenu p::before,
  #fl-fxmenu p::after {
    content: '';
    position: absolute;
  }

  #fl-fxmenu p::before {
    background: url(../img/common/footer_sp_decoration01.png)no-repeat;
    width: 59px;
    height: 15px;
    left: 6px;
    top: -14px;
    background-size: contain;
  }

  #fl-fxmenu p::after {
    background: url(../img/common/footer_sp_decoration02.png)no-repeat;
    width: 17px;
    height: 25px;
    right: 3px;
    top: -25px;
    background-size: contain;
  }

  .copy {
    margin: 0 0 97px;
  }

  #fl-fxmenu .phone a {
    background: #fff;
    border-radius: 10px;
  }
}

/*--------------------------------
	  対応地域
--------------------------------*/
#area-map {}

#area-map .inner {
  background: #fff;
  border-radius: 10px;
  padding-bottom: 230px;
  position: relative;
  z-index: 10;
}

#area-map h2 {
  font-size: 37px;
  text-align: center;
  padding: 15px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  color: #fff;
  margin-bottom: 28px;
}

.speech-bubble {
  max-width: 140px;
  position: absolute;
  left: 133px;
  top: -20px;
}

.area-staff {
  position: absolute;
  bottom: 0;
}

.basic-ttlbox {
  font-size: 30px;
  font-weight: bold;
  padding: 15px;
  text-align: center;
  position: relative;
  margin: 0 auto 60px;
  color: #fff;
}

.subhd-txt {
  font-size: 25px;
  position: relative;
  text-align: center;
  font-weight: bold;
}

.subhd-txt em {
  color: #da6272;
  font-size: 32px;
}

.subhd-txt {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 26px;
  text-align: center;
}

.subhd-txt::before,
.subhd-txt::after {
  content: '';
  width: 90px;
  height: 1px;
  background-color: #cdcdcd;
}

.subhd-txt::before {
  margin: 10px 20px 0 0;
}

.subhd-txt::after {
  margin: 10px 0 0 20px;
}

.img-map {
  margin: 0 auto;
  max-width: 566px;
}

.map-area {
  position: relative;
  padding-top: 30px;
  max-width: 980px;
  text-align: center;
  margin: 0 auto;
}

.map-area dl {
  background: #f5f5f5;
  max-width: 180px;
  width: 100%;
  border-radius: 6px;
  overflow: hidden;
  padding: 10px;
  position: absolute;
}

.map-area dl dt {
  font-size: 18px;
  text-align: center;
  border-radius: 3px;
  padding: 0 0 3px;
}

.map-area dl li {
  border: #cacaca 1px solid;
  border-radius: 5px;
  font-size: 16px;
  width: calc(100% / 2.08);
  text-align: center;
  margin-top: 10px;
  letter-spacing: 0;
  box-shadow: 0px 3px #d8d8d8;
  position: relative;
}

.map-area dl li::after {
  content: '';
  background: url("../img/common/icon-arrow_right_green.png") center no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 6px;
  width: 5px;
  height: 8px;
  transform: translate(0, -50%);
}

.map-area dl li a {
  display: block;
  padding: 3px 0 3px 10px;
  text-align: left;
  color: #333;
  background: #fff;
  border-radius: 5px;
}

.map-area dl li a:hover {
  background: #f4fafa;
  color: var(--site-primary);
}

.map-area dl.hokkaido {
  /*display: none;*/
  right: 100px;
  top: 220px;
}

.map-area dl.hokkaido dt {
  background: #4c99d4;
  color: #fff;
}

.map-area dl.kanto {
  right: 176px;
  bottom: 0px;
}

.map-area dl.kanto dt {
  background: #00aca8;
  color: #fff;
}

.map-area dl.chubu {
  right: 450px;
  top: 80px;
}

.map-area dl.chubu dt {
  background: #8dc33e;
  color: #fff;
}

.map-area dl.kansai {
  left: 320px;
  bottom: -126px;
}

.map-area dl.kansai dt {
  background: #f2c100;
  color: #fff;
}

.map-area dl.chugoku {
  left: 140px;
  bottom: 185px;
}

.map-area dl.chugoku dt {
  background: #f29600;
  color: #fff;
}

.map-area dl.kyushu {
  left: 15px;
  bottom: -10px;
}

.map-area dl.kyushu dt {
  background: #dc689b;
  color: #fff;
}

#area-map p.annotation_txt {
  position: absolute;
  left: 40px;
  bottom: 36px;
}

@media only screen and (max-width: 1024px) {
  #area-map h2 {
    font-size: 32px;
  }

  .speech-bubble {
    left: 10%;
    top: -30px;
  }

  .subhd-txt {
    font-size: 22px;
  }

  .subhd-txt em {
    font-size: 28px;
  }

  #area-map p.annotation_txt {
    left: 2vw;
  }
}

@media only screen and (max-width: 960px) {
  .speech-bubble {
    max-width: 120px;
    left: 2%;
  }

  .subhd-txt {
    line-height: 1.5;
    margin-bottom: 4vw;
  }

  .subhd-txt em {
    font-size: 22px;
  }

  #area-map {
    padding: 5vw 0 5vw;
    background-size: contain;
  }

  #area-map h2 {
    font-size: 28px;
  }

  .map-area {
    padding-top: 0;
  }

  .map-area dl.hokkaido {
    right: 0;
    top: 130px;
  }

  .map-area dl.kanto {
    right: 60px;
    bottom: 66px;
  }

  .map-area dl.chubu {
    left: 230px;
    top: 30px;
  }

  .map-area dl.kansai {
    left: 270px;
  }

  .map-area dl.chugoku {
    left: 50px;
  }

  .map-area dl.kyushu {
    bottom: -80px;
  }
}

@media only screen and (max-width: 568px) {
  .speech-bubble {
    width: 18vw;
    left: initial;
    right: -14px;
    top: -34px;
  }

  #area-map .subhd-txt b::before {
    width: 5px;
    height: 5px;
    left: 7px;
  }

  #area-map .inner {
    border-radius: 10px;
    padding-bottom: 190px;
  }

  .subhd-txt {
    font-size: 16px;
    margin: 15px auto 0;
    max-width: 89.4%;
  }

  .subhd-txt em {
    font-size: 20px;
  }

  .subhd-txt::before {
    position: absolute;
    left: 0;
    top: 39%;
    width: 70px;
  }

  .subhd-txt::after {
    position: absolute;
    right: 0;
    top: 39%;
    width: 70px;
  }

  #area-map h2 {
    font-size: 24px;
    padding: 8px;
    line-height: 1.3;
    margin: 0;
  }

  #area-map {
    padding: 40px 5.3vw;
  }

  .map-area {
    padding: 16px 5.3vw 26px;
  }

  .map-area dl {
    padding: 0;
    width: 120px;
    box-shadow: 0px 3px #d8d8d8;
  }

  .map-area dl dt {
    font-size: 14px;
    margin: 0;
    padding: 5px;
  }

  .map-area dl li {
    border: none;
    box-shadow: none;
    border-radius: 0;
    font-size: 12px;
    width: 50%;
    margin: 0;
    box-sizing: border-box;
    border-right: solid 1px #e2e2e2;
    border-bottom: solid 1px #e2e2e2;
  }

  .map-area dl li:nth-child(even) {
    border-right: 0;
  }

  .map-area dl li a {
    padding: 5px;
    background: #f5f5f5;
  }

  .map-area dl.hokkaido {
    top: 15px;
    right: 30px;
    border-radius: 3px;
  }

  .map-area dl.hokkaido dt {
    border-radius: 3px 3px 0 0;
  }

  .map-area dl.kanto {
    right: 8.3vw;
    bottom: 85px;
    border-radius: 6px;
  }

  .map-area dl.kanto dt {
    border-radius: 3px 3px 0 0;
  }

  .map-area dl.chubu {
    left: 10.6vw;
    top: 5px;
  }

  .map-area dl.chubu dt {
    border-radius: 3px 3px 0 0;
  }

  .map-area dl.chugoku {
    left: 10.6vw;
    bottom: 14px;
  }

  .map-area dl.chugoku dt {
    border-radius: 3px 3px 0 0;
  }

  .map-area dl.kansai {
    left: 180px;
    bottom: -86px;
  }

  .map-area dl.kansai dt {
    border-radius: 3px 3px 0 0;
  }

  .map-area dl.kyushu {
    left: 10.6vw;
    bottom: -98px;
  }

  .map-area dl.kyushu dt {
    border-radius: 3px 3px 0 0;
  }

  .map-area dl li:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .map-area dl.kansai dd li:nth-last-child(2) {
    border-bottom: solid 1px #e2e2e2;
  }

  .map-area dl.kyushu dd li:nth-last-child(2) {
    border-bottom: solid 1px #e2e2e2;
  }

  #area-map p.annotation_txt {
    left: 5.3vw;
    bottom: 20px;
    padding-right: 5.3vw;
  }

  /* .map-area dl.kanto dd li:last-child {border-right: solid 1px #e2e2e2;}
  .map-area dl.kansai dd li:last-child {border-right: solid 1px #e2e2e2;}
  .map-area dl.chugoku dd li:last-child {border-right: solid 1px #e2e2e2;} */
}

@media only screen and (max-width: 320px) {
  #area-map {
    padding: 10% 0 45%;
  }

  .map-area dl.kanto {
    bottom: 25px;
  }

  .map-area dl.chubu {
    left: 35px;
    top: 0px;
  }

  .map-area dl.kansai {
    bottom: -140px;
  }

  .map-area dl.chugoku {
    bottom: 45px;
  }
}

/*===============================================
 *	CVエリア
===============================================*/
.cv_area .cv_ttl {
  background: #007b84;
  padding: 20px 0;
}

.cv_area h2 {
  font-size: 34px;
  color: #fff;
}

.cv_area h2 span {
  font-size: 24px;
  font-family: 'Noto sans JP', serif;
  display: inline-block;
  border: 2px solid #fff;
  padding: 0.3em 1.25em 0.4em;
  letter-spacing: 0.05em;
  margin-right: 32px;
}

.cv_content p em {
  color: #f7f81f;
  font-size: 42px;
  line-height: 1.5;
}

.cv_content {
  padding: 30px 0 40px;
}

.cv_box {
  background: #fff;
  padding: 30px 40px;
  border-radius: 10px;
}

.cv_box_inner {
  position: relative;
}

.cv_content p {
  font-size: 27px;
  font-weight: bold;
  color: #fff;
  background: #64b4ba;
  padding: 0.25em 0 0.25em 50px;
  letter-spacing: 0.08em;
  padding: 0 0 0.5em 90px;
  position: relative;
}

.cv_content p::before {
  content: '';
  background: url("../img/common/icon-cv.png")no-repeat;
  width: 32px;
  height: 42px;
  background-size: contain;
  position: absolute;
  left: 50px;
  top: 50%;
  transform: translateY(-50%);
}

.cv_content p .bg_white {
  margin-left: 20px;
  font-size: 24px;
  padding: 7px 10px;
}

.cv_content p .bg_white span {
  font-size: 16px;
}

.btn_box_wrapper {
  background: url("../img/common/cv_bg.jpg") no-repeat center;
  background-size: cover;
  position: relative;
  padding: 25px 50px;
}

.btn_box {
  max-width: 625px;
}

.btn_box a {
  display: inline-block;
}

.btn_box .mail {
  position: relative;
}

.btn_box .mail::after {
  border-radius: 10px;
}

.cv_box_inner::after {
  content: '';
  background: url("../img/common/cv_staff.png") no-repeat center bottom;
  background-size: contain;
  display: block;
  width: 284px;
  height: 100%;
  position: absolute;
  right: 1%;
  bottom: 0;
}

.btn_box .tel {
  margin-bottom: 30px;
}

/*cv女性*/
.cv_area02 .cv_ttl {
  background: #007b84;
  padding: 20px 0;
}

.cv_area02 h2 {
  font-size: 34px;
  color: #fff;
}

.cv_area02 h2 span {
  font-size: 24px;
  font-family: 'Noto sans JP', serif;
  display: inline-block;
  border: 2px solid #fff;
  padding: 0.3em 1.25em 0.4em;
  letter-spacing: 0.05em;
  margin-right: 32px;
}

.cv_area02 .cv_content p em {
  color: #f7f81f;
  font-size: 42px;
  line-height: 1.5;
}

.cv_area02 .cv_content p {
  padding: 0 0 0.5em 90px;
  position: relative;
}

.cv_area02 .cv_content p::before {
  content: '';
  background: url("../img/common/icon-cv.png")no-repeat;
  width: 32px;
  height: 42px;
  background-size: contain;
  position: absolute;
  left: 50px;
  top: 50%;
  transform: translateY(-50%);
}

.cv_area02 .cv_content p .bg_white {
  margin-left: 20px;
  font-size: 24px;
  padding: 7px 10px;
}

.cv_area02 .cv_content p .bg_white span {
  font-size: 16px;
}

.cv_area02 .cv_box_inner::after {
  background: url(../img/common/cv_staff03.png) no-repeat center bottom;
  width: 323px;
  height: 315px;
  right: 1%;
  background-size: contain;
}

@media only screen and (max-width: 1024px) {
  .cv_area h2 {
    font-size: 28px;
  }

  .cv_area h2 span {
    font-size: 20px;
    padding: 0.75em 0.5em;
    margin-right: 15px;
  }

  .cv_content p {
    font-size: 24px;
  }

  .cv_content p em {
    font-size: 34px;
  }

  .cv_content p .bg_white {
    font-size: 22px;
    padding: 3px 10px 5px;
  }

  .cv_box {
    padding: 3vw;
  }

  .cv_box_inner::after {
    width: 250px;
    right: 1%;
  }

  .btn_box_wrapper {
    padding: 2vw 3vw;
  }

  .btn_box {
    padding: 23px 1vw;
    max-width: 66%;
  }

  .btn_box .mail {
    width: 48%;
  }

  .btn_box .line {
    width: 48%;
  }

  /*cv女性*/
  .cv_area02 h2 span {
    font-size: 20px;
    padding: 0.75em 0.5em;
    margin-right: 15px;
  }

  .cv_area02 .cv_content p em {
    font-size: 34px;
  }

  .cv_area02 .cv_content p .bg_white {
    font-size: 22px;
    padding: 3px 10px 5px;
  }

  .cv_area02 .cv_box_inner::after {
    width: 280px;
    right: 1%;
  }
}

@media only screen and (max-width: 960px) {
  .cv_area h2 {
    font-size: 22px;
  }

  .cv_area h2 span {
    font-size: 18px;
    padding: 0.5em 0.5em;
  }

  .cv_content p em {
    font-size: 32px;
  }

  .cv_box_inner::after {
    width: 153px;
  }

  .btn_box {
    padding: 1vw 2vw;
    width: 72%;
  }

  .btn_box .tel {
    margin-bottom: 20px;
  }

  .cv_content p {
    font-size: 20px;
    padding: 0 0 0.25em 65px;
  }

  .cv_content p::before {
    left: 20px;
    padding: 0 0 0.25em 60px;
  }

  /*cv女性*/
  .cv_area02 h2 {
    font-size: 22px;
  }

  .cv_area02 h2 span {
    font-size: 18px;
    padding: 0.5em 0.5em;
  }

  .cv_area02 .cv_content p em {
    font-size: 32px;
  }

  .cv_area02 .cv_content p {
    padding: 0 0 0.25em 65px;
  }

  .cv_area02 .cv_box_inner::after {
    width: 180px;
  }

  .cv_area02 .cv_content p::before {
    left: 20px;
    padding: 0 0 0.25em 60px;
  }
}

@media only screen and (max-width: 568px) {
  .cv_area h2 {
    font-size: 23px;
    position: relative;
    z-index: 10;
    letter-spacing: -0.02em;
    line-height: 1.3;
  }

  .cv_area h2 span {
    font-size: 14px;
    padding: 0.4em 1.25em;
    margin: 0 0 9px;
    text-shadow: none;
  }

  .cv_area .cv_ttl {
    background: url("../img/common/cv_ttl_bg.jpg") no-repeat;
    background-size: cover;
    padding: 20px 0 14px;
  }

  .cv_content {
    padding: 15px 0 30px;
  }

  .cv_box_inner::after {
    display: none;
  }

  .cv_box {
    position: relative;
    padding: 17px;
  }

  .cv_box::before {
    content: '';
    background: url("../img/common/cv_staff_sp.png") no-repeat;
    background-size: contain;
    display: block;
    width: 185px;
    height: 139px;
    position: absolute;
    right: -4%;
    top: -139px;
  }

  .cv_content p {
    font-size: 16px;
    padding: 0.5em 0;
    text-align: center;
    line-height: 1.4;
    display: flex;
    padding: 0.25em 0 0.25em 50px;
  }

  .cv_content p::before {
    height: 36px;
    width: 27px;
    left: 10px;
  }

  .cv_content p span.sp_left {
    text-align: left;
  }

  .cv_content p em {
    font-size: 23px;
    line-height: 1;
  }

  .cv_content p .bg_white {
    font-size: 17px;
    line-height: 1.2;
    padding: 3px 3px 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 15px;
    gap: 1px;
  }

  .cv_content p .bg_white span {
    font-size: 11px;
  }

  .btn_box_wrapper {
    background: none;
    padding: 0;
  }

  .btn_box {
    background: none;
    padding: 0;
    width: 100%;
    max-width: 100%;
  }

  .btn_box>div {
    flex-direction: column;
  }

  .btn_box a {
    width: 100%;
  }

  .btn_box .tel {
    margin: 12px 0 10px;
  }

  .btn_box .mail {
    width: 100%;
    margin-bottom: 10px;
  }

  .btn_box .line {
    width: 100%;
  }

  /*cv女性*/
  .cv_area02 h2 {
    font-size: 23px;
    position: relative;
    z-index: 10;
    letter-spacing: -0.02em;
    line-height: 1.3;
  }

  .cv_area02 h2 span {
    font-size: 14px;
    padding: 0.4em 1.25em;
    margin: 0 0 9px;
    text-shadow: none;
  }

  .cv_area02 .cv_ttl {
    background: url("../img/common/cv_ttl_bg.jpg") no-repeat;
    background-size: cover;
    padding: 20px 0 14px;
  }

  .cv_area02 .cv_content {
    padding: 15px 0 30px;
  }

  .cv_area02 .cv_content p::before {
    height: 36px;
    width: 27px;
    left: 10px;
  }

  .cv_area02 .cv_content p {
    display: flex;
    padding: 0.25em 0 0.25em 50px;
  }

  .cv_area02 .cv_content p span.sp_left {
    text-align: left;
  }

  .cv_area02 .cv_content p em {
    font-size: 23px;
    line-height: 1;
  }

  .cv_area02 .cv_content p .bg_white {
    font-size: 17px;
    line-height: 1.2;
    padding: 3px 3px 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 15px;
    gap: 1px;
  }

  .cv_area02 .cv_content p .bg_white span {
    font-size: 11px;
  }

  .cv_area02 .cv_box_inner::after {
    display: none;
  }

  .cv_area02 .cv_box {
    position: relative;
    padding: 17px;
  }

  .cv_area02 .cv_box::before {
    content: '';
    background: url("../img/common/cv_staff03_sp.png") no-repeat;
    background-size: contain;
    display: block;
    width: 196px;
    height: 147px;
    position: absolute;
    right: -3%;
    top: -147px;
  }
}

@media only screen and (max-width: 375px) {

  .cv_area .cv_content p,
  .cv_area02 .cv_content p {
    font-size: 14px;
  }

  .cv_area .cv_content p em,
  .cv_area02 .cv_content p em {
    font-size: 22px;
  }

  .cv_area .cv_box::before,
  .cv_area02 .cv_box::before {
    right: -6%;
  }
}

/*===============================================
 *	pagination
===============================================*/
.pagination {
  display: flex;
  justify-content: center;
  gap: 0 5px;
  margin-top: 50px;
}

.pagination li {}

.pagination li a {
  font-size: 20px;
  font-weight: bold;
  font-family: 'Noto Serif JP';
  color: var(--site-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 5px;
  border: 2px solid var(--site-primary);
  width: 50px;
  height: 50px;
  transition: 0.2s;
}

.pagination li a.active {
  color: #fff;
  background: var(--site-primary);
}

.pagination li a:hover {
  color: #fff;
  background: var(--site-primary);
}

.pagination li img {
  width: 10px;
  vertical-align: baseline;
}

.pagination li.pre a:hover img,
.pagination li.next a:hover img {
  display: none;
}

.pagination li.pre a:hover::after {
  content: '';
  display: block;
  background: url(../img/common/icon_arrow_left_white.svg) no-repeat;
  width: 10px;
  height: 16px;
}

.pagination li.next a:hover::after {
  content: '';
  display: block;
  background: url(../img/common/icon_arrow_right_white.svg) no-repeat;
  width: 10px;
  height: 16px;
}

@media only screen and (max-width: 960px) {
  .pagination {
    margin-top: 35px;
  }

  .pagination li a {
    font-size: 16px;
    width: 40px;
    height: 40px;
  }

  .pagination li img {
    width: 8px;
  }

  .pagination li.pre a:hover::after,
  .pagination li.next a:hover::after {
    width: 8px;
    position: relative;
    top: 2px;
  }
}

@media only screen and (max-width: 568px) {
  .pagination {
    margin-top: 25px;
    gap: 0 10px;
  }

  .pagination li a {
    font-size: 18px;
  }

  .pagination li img {
    width: 8px;
    position: relative;
    top: -1px;
  }

  .pagination li.pre a:hover::after,
  .pagination li.next a:hover::after {
    width: 8px;
  }
}

/*===============================================
 *	汎用パーツ
===============================================*/
.bg_circle_left::before {
  content: '';
  background: url('../img/common/bg_circle01.png') no-repeat;
  background-size: contain;
  width: 293px;
  height: 292px;
  position: absolute;
  left: -88px;
  z-index: -1;
}

.bg_circle_right::before {
  content: '';
  background: url('../img/common/bg_circle02.png') no-repeat;
  background-size: contain;
  width: 293px;
  height: 292px;
  position: absolute;
  right: -88px;
  z-index: -1;
}

.half_box {
  align-items: flex-start;
}

.half_box .txt {
  width: 49%;
  max-width: 490px;
}

.half_box .half_box_ttl {
  font-size: 30px;
  line-height: 1.5;
  position: relative;
  top: -8px;
  margin-bottom: 8px;
}

.half_box img {
  width: 49%;
  max-width: 490px;
}

.half_box .photo {
  width: 49%;
  max-width: 490px;
}

.half_box .photo img {
  width: 100%;
  max-width: initial;
}

.ttl_content_top {
  font-size: 34px;
  color: #fff;
  padding: 18px 10px 18px;
  text-align: center;
  border-radius: 10px 10px 0 0;
}

.ttl_double_border {
  font-size: 34px;
  line-height: 1.25;
  text-align: center;
  background: #f4fafa;
  border-top: 1px solid #93cbcf;
  border-bottom: 1px solid #93cbcf;
  position: relative;
  padding: 0.45em 0 0.45em;
  margin-bottom: 42px;
}

.ttl_double_border::before {
  content: '';
  position: absolute;
  height: 2px;
  width: 100%;
  background: #93cbcf;
  top: -6px;
  left: 0;
}

.ttl_double_border::after {
  content: '';
  position: absolute;
  height: 2px;
  width: 100%;
  background: #93cbcf;
  bottom: -6px;
  left: 0;
}

.ttl_double_border .size_small {
  font-size: 19px;
  font-weight: bold;
  display: block;
  margin: 15px 0 0;
}

.ttl_double_border .size_large {
  font-size: 44px;
}

.ttl_left_border {
  font-size: 27px;
  padding: 2px 0 12px 20px;
  line-height: 1.0;
  border-bottom: 1px solid #93cbcf;
  position: relative;
  margin-bottom: 28px;
}

.ttl_left_border::before {
  content: '';
  background: linear-gradient(180deg, rgba(147, 203, 207, 1) 0%, rgba(147, 203, 207, 1) 50%, rgba(40, 151, 159, 1) 50%, rgba(40, 151, 159, 1) 100%);
  height: 32px;
  width: 6px;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
}

.ttl_left_border.green {
  border-bottom: 1px solid #98c2ac;
}

.ttl_left_border.green::before {
  background: linear-gradient(180deg, rgba(152, 194, 172, 1) 0%, rgba(152, 194, 172, 1) 50%, rgba(49, 134, 90, 1) 50%, rgba(49, 134, 90, 1) 100%);
}

.ttl_left_border.gold {
  border-bottom: 1px solid #dcc4a4;
}

.ttl_left_border.gold::before {
  background: linear-gradient(180deg, rgba(220, 196, 164, 1) 0%, rgba(220, 196, 164, 1) 50%, rgba(185, 138, 74, 1) 50%, rgba(185, 138, 74, 1) 100%);
}

.ttl_left_border.pink {
  border-bottom: 1px solid #f9bdb6;
}

.ttl_left_border.pink::before {
  background: linear-gradient(180deg, rgba(252, 222, 218, 1) 0%, rgba(252, 222, 218, 1) 50%, rgba(243, 120, 107, 1) 50%, rgba(243, 120, 107, 1) 100%);
}

.bg_flower_single {
  position: relative;
}

.bg_flower_single::before {
  content: '';
  background: url(../img/common/bg-flower_left02.png) no-repeat;
  background-size: contain;
  width: 147px;
  height: 255px;
  position: absolute;
  left: 4%;
  bottom: 0;
}

.bg_flower_single::after {
  content: '';
  background: url(../img/common/bg-flower_right02.png) no-repeat;
  background-size: contain;
  width: 133px;
  height: 256px;
  position: absolute;
  right: 4%;
  bottom: 0;
  z-index: 1;
}

.bg_flower_double {
  position: relative;
}

.bg_flower_double::before {
  content: '';
  background: url(../img/common/bg-flower.png) no-repeat bottom center;
  background-size: cover;
  width: 100%;
  height: 380px;
  position: absolute;
  left: 0;
  bottom: 0;
}

.attention_box_gray {
  padding: 40px;
}

.attention_box_gray p {
  position: relative;
  padding-left: 70px;
}

.attention_box_gray p::before {
  content: '';
  background: url(../img/common/icon_exclamation.svg) no-repeat center;
  width: 50px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.ttl_section-top {
  font-size: 40px;
  line-height: 1.3;
  margin-bottom: 32px;
}

.ttl_section-top .en {
  font-size: 19px;
  color: #999;
  position: relative;
  top: -8px;
}

.ttl_section-top .size_large {
  font-size: 50px;
}

.ttl_section-top .size_num {
  font-size: 60px;
}

.content_img-txton .box_wrapper {
  display: flex;
  position: relative;
  margin-bottom: 80px;
}

.content_img-txton .box_wrapper:nth-of-type(even) {
  margin-bottom: 80px;
}

.content_img-txton .box_wrapper.bg_circle_left::before {
  top: -80px;
}

.content_img-txton .box_wrapper.bg_circle_right::before {
  bottom: -80px;
}

.content_img-txton .photo_box {
  max-width: 620px;
  position: absolute;
  left: 0;
  top: 0;
}

.content_img-txton .box_wrapper:nth-of-type(even) .photo_box {
  left: initial;
  right: 0;
}

.content_img-txton .txt_box {
  background: #f5f5f5;
  max-width: 580px;
  padding: 45px 48px;
  position: relative;
  top: 30px;
  margin-left: auto;
}

.content_img-txton .box_wrapper:nth-of-type(even) .txt_box {
  top: 40px;
  margin-left: initial;
  margin-right: auto;
}

.content_img-txton .txt_box .box_ttl {
  font-size: 30px;
  line-height: 1.5;
  margin-bottom: 14px;
}

@media only screen and (max-width: 1024px) {
  .ttl_content_top {
    font-size: 28px;
  }

  .half_box .half_box_ttl {
    font-size: 26px;
  }

  .ttl_double_border {
    font-size: 30px;
  }

  .ttl_double_border .size_large {
    font-size: 38px;
  }

  .ttl_left_border {
    font-size: 25px;
  }

  .ttl_section-top {
    font-size: 32px;
  }

  .ttl_section-top .size_num {
    font-size: 44px;
  }

  .ttl_section-top .size_large {
    font-size: 38px;
  }

  .bg_flower_double::before {
    height: 260px;
  }

  .content_img-txton .txt_box {
    padding: 32px 36px;
    max-width: 480px;
    top: 50px;
  }

  .content_img-txton .txt_box .box_ttl {
    font-size: 26px;
  }
}

@media only screen and (max-width: 960px) {
  .ttl_content_top {
    font-size: 23px;
  }

  .half_box .half_box_ttl {
    font-size: 22px;
    top: -7px;
  }

  .half_box img {
    width: 47%;
  }

  .half_box .photo {
    width: 47%;
  }

  .half_box .photo img {
    width: 100%;
  }

  .ttl_double_border {
    font-size: 24px;
    margin-bottom: 24px;
  }

  .ttl_double_border .size_large {
    font-size: 30px;
  }

  .ttl_double_border .size_small {
    font-size: 16px;
  }

  .ttl_left_border {
    font-size: 21px;
    padding: 2px 0 15px 20px;
  }

  .ttl_left_border.double {
    line-height: 1.4;
    padding-bottom: 8px;
  }

  .ttl_left_border.double::before {
    top: 0;
  }

  .attention_box_gray {
    padding: 3vw 3vw;
  }

  .bg_flower_single::before {
    width: 102px;
    height: 177px;
  }

  .bg_flower_single::after {
    width: 90px;
    height: 177px;
  }

  .bg_flower_double::before {
    height: 210px;
  }

  .ttl_section-top {
    font-size: 26px;
    margin-bottom: 16px;
  }

  .ttl_section-top .en {
    font-size: 15px;
    top: -6px;
  }

  .ttl_section-top .size_num {
    font-size: 36px;
  }

  .ttl_section-top .size_large {
    font-size: 34px;
  }

  .content_img-txton .box_wrapper {
    margin-bottom: 11vw;
  }

  .content_img-txton .box_wrapper:nth-of-type(even) {
    margin-bottom: 11vw;
  }

  .content_img-txton .photo_box {
    max-width: 52%;
  }

  .content_img-txton .txt_box {
    padding: 4vw;
    max-width: 62%;
  }

  .content_img-txton .txt_box .box_ttl {
    font-size: 22px;
  }

}

@media only screen and (max-width: 568px) {
  .bg_circle_left::before {
    width: calc(293px / 2);
    height: calc(292px / 2);
    left: -44px;
  }

  .bg_circle_right::before {
    width: calc(293px / 2);
    height: calc(292px / 2);
    right: -44px;
  }

  .ttl_content_top {
    border-radius: 0;
    padding: 9px 0 9px;
  }

  .half_box {
    flex-direction: column;
  }

  .half_box img {
    width: 100%;
  }

  .half_box .photo {
    width: 100%;
  }

  .half_box .txt {
    width: 100%;
    max-width: 100%;
  }

  .half_box .half_box_ttl {
    font-size: 21px;
    text-align: center;
    top: 0;
    margin: 14px 0 8px;
  }

  .ttl_double_border {
    margin-bottom: 20px;
    line-height: 1.4;
    padding: 0.4em 0 0.45em;
  }

  .ttl_double_border .size_small {
    font-size: 15px;
    line-height: 1.45;
    margin: 10px 0 0;
  }

  .ttl_double_border .size_large {
    font-size: 33px;
    line-height: 1.1;
  }

  .ttl_double_border::before {
    top: -5px;
  }

  .ttl_double_border::after {
    bottom: -5px;
  }

  .ttl_left_border {
    padding: 2px 0 12px 20px;
    margin-bottom: 20px;
    border-bottom: 2px solid #93cbcf;
  }

  .ttl_left_border::before {
    top: -5px;
    width: 5px;
  }

  .ttl_left_border.double::before {
    top: 6%;
    width: 5px;
    height: 82%;
  }

  .ttl_left_border.green {
    border-bottom: 2px solid #98c2ac;
  }

  .ttl_left_border.gold {
    border-bottom: 2px solid #dcc4a4;
  }

  .bg_flower_double::before {
    background: url(../img/common/bg-flower_sp.png) no-repeat bottom center;
    background-size: cover;
    height: 200px;

  }

  .attention_box_gray {
    padding: 16px 20px 16px;
  }

  .attention_box_gray p {
    padding: 0;
  }

  .attention_box_gray p::before {
    width: 35px;
    height: 35px;
    position: relative;
    top: 5px;
    float: left;
    margin: 0 15px 10px 0;
  }

  .ttl_section-top {
    margin-bottom: 12px;
  }

  .content_img-txton .box_wrapper {
    flex-direction: column;
    margin-bottom: 5px;
  }

  .content_img-txton .box_wrapper:nth-of-type(even) {
    margin-bottom: 0;
  }

  .content_img-txton .box_wrapper.bg_circle_left::before {
    top: -40px;
  }

  .content_img-txton .photo_box {
    max-width: 100%;
    position: relative;
  }

  .content_img-txton .txt_box {
    padding: 5vw 6.5vw;
    max-width: 100%;
    width: 90%;
    position: relative;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
  }

  .content_img-txton .txt_box .box_ttl {
    text-align: center;
    font-size: 21px;
    margin-bottom: 10px;
  }

  .content_img-txton .box_wrapper:nth-of-type(even) .txt_box {
    top: -25px;
    left: 50%;
  }
}

/*--------------------------------
	  対応エリア（ページ下部）
--------------------------------*/
#area_all {
  background: url(../img/common/bg_arealist.jpg) no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
}

#area_all::before {}

#area_all .inner::before {
  content: '';
  background: url(../img/common/map02.png) no-repeat;
  background-size: contain;
  width: 51%;
  height: 100%;
  position: absolute;
  left: -8%;
  top: 8.5%;
  z-index: -1;
}

#area_all p {
  font-size: 19px;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 40px;
}

#area_all .top {
  font-size: 24px;
  margin: -13px 0 18px;
}

#area_all .top span {
  font-size: 30px;
}

#area_all .area_list {
  border: 4px solid var(--site-primary);

}

#area_all .area_list h3 {
  font-size: 27px;
  background: url(../img/common/bg-gr_dot.png);
  color: #fff;
  padding: 8px 0 10px;
}

#area_all .area_list ul {
  padding: 34px 40px;
  background: #fff;
  gap: 10px 0;
}

#area_all .area_list li {
  width: 11.1%;
}

#area_all .area_list li a {
  position: relative;
  padding-left: 17px;
  transition: 0.2s;
}

#area_all .area_list li a:hover {
  color: var(--site-primary);
}

#area_all .area_list li a::before {
  content: '';
  background: url(../img/common/icon_arrow_right_green.svg) no-repeat;
  width: 7px;
  height: 10px;
  position: absolute;
  left: 0;
  top: 38%;
}

#area_all p.annotation_txt {
  text-align: left;
  font-size: 14px;
  color: #666;
  margin: 10px 0 -8px;
}

@media only screen and (max-width: 1024px) {
  #area_all p {
    font-size: 15px;
    line-height: 1.75;
  }

  #area_all .top {
    font-size: 22px;
  }

  #area_all .top span {
    font-size: 26px;
  }

  #area_all .area_list h3 {
    font-size: 23px;
  }

  #area_all .area_list ul {
    padding: 3vw 4vw;
  }
}

@media only screen and (max-width: 568px) {
  #area_all .inner::before {
    width: 88%;
    height: 100%;
    left: 50%;
    top: 8.5%;
    transform: translateX(-50%);
  }

  #area_all .area_list {
    border: 3px solid var(--site-primary);
  }

  #area_all p {
    text-align: left;
    margin-bottom: 25px;
  }

  #area_all .top {
    font-size: 19px;
    text-align: center;
    line-height: 1.5;
    margin: -5px 0 13px;
  }

  #area_all .top span {
    font-size: 23px;
  }

  #area_all .area_list h3 {
    font-size: 19px;
    padding: 6px 0 8px;
  }

  #area_all .area_list ul {
    padding: 10px 0 14px;
    justify-content: center;
    gap: 5px 0;
  }

  #area_all .area_list li {
    width: 24%;
  }

  #area_all .area_list li a {
    padding-left: 24px;
  }

  #area_all .area_list li a::before {
    left: 10px;
    top: 34%;
  }

  #area_all p.annotation_txt {
    margin: 6px 0 -8px;
  }
}

/*-----------------------------------------------
 *	コラム一覧
-----------------------------------------------*/
#column p.intro {
  font-size: 19px;
  text-align: center;
  margin: -10px 0 34px;
}

#column ul {
  gap: 50px 0;
}

#column li {
  width: 23.3%;
}

#column li .thumbnail {
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  margin: 0 0 14px 0;
}

#column li .thumbnail::before {
  content: '';
  display: block;
  padding-top: 61.8%;
}

#column li .thumbnail img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#column li .txt {
  padding: 0 10px;
}

#column li h3 {
  font-size: 19px;
  line-height: 1.6;
  margin: 0 0 14px;
}

#column li .btn_border {
  margin-top: 20px;
  width: 90%;
}

#column li .btn_border a {
  padding: 8px 0 9px;
}

#column li .btn_border a::after {
  right: 20px;
}

#column .btn_wrapper {
  margin-top: 50px;
}

@media only screen and (max-width: 1024px) {
  #column p.intro {
    font-size: 17px;
  }
}

@media only screen and (max-width: 960px) {
  #column p.intro {
    font-size: 15px;
  }

  #column li .thumbnail {
    margin: 0 0 1vw;
  }

  #column li h3 {
    font-size: 16px;
    margin: 0 0 1vw;
  }

  #column li .txt {
    padding: 0px 5px;
  }

  #column li .btn_border a {
    font-size: 14px;
  }

  #column li .btn_border a::after {
    right: 14px;
    width: 8px;
  }

}

@media only screen and (max-width: 568px) {
  #column p.intro {
    text-align: left;
    margin: -5px 0 20px;
  }

  #column ul {
    gap: 30px 0;
  }

  #column li {
    width: 47.8%;
  }

  #column li .txt {
    padding: 0;
  }

  #column li p {
    font-size: 14px;
  }

  #column li .btn_border a {
    font-size: 15px;
    padding: 4px 0;
  }

  #column .btn_wrapper {
    margin-top: 30px;
  }
}

/*-----------------------------------------------
 *	火葬事例一覧 TOP/地域
-----------------------------------------------*/
#example {
  padding-top: 70px;
}

.date_time {
  font-size: 15px;
  color: var(--site-primary);
  margin-bottom: 20px;
  text-align: left;
}

.date_time time {
  padding-left: 22px;
  background: url(../img/column/icon_date.svg) no-repeat left center;
  background-size: 16px;
}

.related_posts li a .date_time time {
  text-decoration: none;
}

#example .example_list {
  gap: 2.7%;
  margin-bottom: 15px;
}

#example .plan_case {
  position: relative;
  width: 31.5%;
}

#example .plan_case.mb_0 {
  margin-bottom: 0;
}

#example .plan_case .ttl_content_top {
  font-size: 18px;
  border-radius: 5px 5px 0 0;
}

#example p.intro {
  font-size: 19px;
  text-align: center;
  margin: -10px 0 34px;
}

#example .plan_case .md_inner_space {
  padding: 20px 20px 30px 20px;
}

#example .plan_case h3,
.plan_case .bg_white {
  position: relative;
  z-index: 10;
}

#example .plan_case.premium h3.bg_dot {
  background: url('../img/common/bg-brown_dot.png') repeat;
}

#example .plan_case.single h3.bg_dot {
  background: url('../img/common/bg-deepgreen_dot.png') repeat;
}

#example .plan_case.joint h3.bg_dot {
  background: url('../img/common/bg-gr_dot.png') repeat;
}

#example .plan_case h4 {
  margin-bottom: 20px;
}

#example .plan_case img {
  margin-bottom: 20px;
  border-radius: 5px;
}

#example .joint dd.plan::before {
  background: url("../img/price/icon_menu_joint.png") no-repeat;
  background-size: contain;
}

#example .single dd.plan::before {
  background: url("../img/price/icon_menu_single.png") no-repeat;
  background-size: contain;
}

#example .premium dd.plan::before {
  background: url("../img/price/icon_menu_premium.png") no-repeat;
  background-size: contain;
}

#example .plan_case.premium dd {
  line-height: 1.2;
}

#example .plan_case dl {
  margin-bottom: 20px;
}

#example .plan_case dl:last-of-type {
  margin-bottom: 30px;
}

#example .example_plice {
  padding-bottom: 20px;
  border-bottom: 2px solid #cdcdcd;
}

#example .plan_case.premium .example_plice dt,
.plan_case.single .example_plice dt,
.example_plice dt {
  background: var(--site-keycolor);
  color: #fff;
}

#example .plan_case.premium .example_plice dd,
.plan_case.single .example_plice dd,
.example_plice dd {
  font-size: 24px;
  font-weight: bold;
}

#example .case_content {
  display: grid;
  grid-template-columns: auto 400px;
  grid-template-rows: auto 1fr;
  column-gap: 48px;
  border-bottom: 1px solid #cdcdcd;
  margin-bottom: 30px;
  padding-bottom: 30px;
}

#example .case_content h4 {
  grid-column: 1;
  grid-row: 1;
  font-size: 24px;
  margin: -8px 0 14px;
}

#example .case_content p {
  grid-column: 1;
  grid-row: 2;
}

#example .case_content img {
  grid-column: 2;
  grid-row: 1 / -1;
  border-radius: 10px;
}

#example .plan_case dl {
  display: flex;
}

#example .plan_case dt {
  color: #fff;
  background: #65b3b9;
  font-weight: bold;
  width: 110px;
  padding: 6px 10px 8px;
  text-align: center;
}

#example .plan_case.single dt {
  background: #6ba788;
}

#example .plan_case.premium dt {
  background: #cbaa7d;
}

#example .plan_case dd {
  padding: 0px 48px 0 15px;
  display: flex;
  align-items: center;
}

#example .plan_case dd.plan::before {
  content: '';
  width: 40px;
  height: 40px;
  margin-right: 10px;
}

#example .plan_case.joint dd.plan::before {
  background: url(../img/price/icon_joint.png) no-repeat;
  background-size: contain;
}

#example .plan_case.single dd.plan::before {
  background: url("../img/price/icon_single.png") no-repeat;
  background-size: contain;
}

#example .plan_case.premium dd.plan::before {
  background: url("../img/price/icon_premium.png") no-repeat;
  background-size: contain;
}

@media only screen and (max-width: 960px) {
  #example .plan_case dl {
    display: block;
    margin-bottom: 10px;
  }

  #example .plan_case dt {
    width: 100%;
  }

  #example .plan_case dd {
    justify-content: center;
    padding: 5px 20px;
  }
}

@media only screen and (max-width: 568px) {
  #example {
    padding: 40px 0 0;
  }

  #example p.intro {
    font-size: 17px;
  }

  #example .al-start {
    gap: 25px 0;
  }

  #example .plan_case {
    width: 100%;
  }

  #example .plan_case dl {
    display: flex;
  }

  #example .plan_case dt {
    width: 30%;
  }

  #example .plan_case dd {
    width: 68%;
    justify-content: left;
  }

  #example .example_list {
    margin: 20px -5.3vw;
  }

  #example .case-slider .slick-center.plan_case {
    opacity: 1;
    transform: scale(1);
    max-width: 330px;
  }

  #example .case-slider .plan_case {
    opacity: .5;
    transform: scale(.9);
    transition: opacity .5s, transform .5s;
  }

  #example .case-slider button.arrow-next {
    background: url(../img/top/arrow-next.png) no-repeat !important;
    background-size: contain !important;
    position: absolute;
    top: 45%;
    right: 9%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    z-index: 10;
    width: 30px;
    height: 30px;
  }

  #example .case-slider button.arrow-prev {
    background: url(../img/top/arrow-prev.png) no-repeat !important;
    background-size: contain !important;
    position: absolute;
    top: 45%;
    left: 9%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    z-index: 10;
    width: 30px;
    height: 30px;
  }

  #example .case-slider button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    padding: 0;
    border: none;
    background-color: transparent;
  }
}

/*===============================================
 *	サービス・プランの流れ
===============================================*/
ul.flow {
  position: relative;
  z-index: 10;
}

ul.flow li {
  padding: 40px 50px;
  margin-bottom: 10px;
  border-radius: 10px;
  position: relative;
  align-items: flex-start;
}

ul.flow li::after {
  content: '';
  background: url(../img/top/icon_flow_down.svg) no-repeat;
  width: 51px;
  height: 28px;
  position: absolute;
  left: 50%;
  bottom: -28px;
  transform: translateX(-50%);
  z-index: 10;
}

ul.flow li:last-child {
  margin-bottom: 0;
}

ul.flow li:last-child::after {
  content: none;
}

ul.flow li .photo {
  width: 40%;
  max-width: 400px;
  position: relative;
}

ul.flow li .photo::after {
  content: '';
  width: 60px;
  height: 60px;
  position: absolute;
  top: 0;
  left: 0;
}

ul.flow li:first-child .photo::after {
  background: url(../img/common/icon_num01_large.svg) no-repeat;
}

ul.flow li:nth-child(2) .photo::after {
  background: url(../img/common/icon_num02_large.svg) no-repeat;
}

ul.flow li:nth-child(3) .photo::after {
  background: url(../img/common/icon_num03_large.svg) no-repeat;
}

ul.flow li:nth-child(4) .photo::after {
  background: url(../img/common/icon_num04_large.svg) no-repeat;
}

ul.flow li:nth-child(5) .photo::after {
  background: url(../img/common/icon_num05_large.svg) no-repeat;
}

ul.flow li:nth-child(6) .photo::after {
  background: url(../img/common/icon_num06_large.svg) no-repeat;
}

ul.flow li:nth-child(7) .photo::after {
  background: url(../img/common/icon_num07_large.svg) no-repeat;
}

ul.flow li:nth-child(8) .photo::after {
  background: url(../img/common/icon_num08_large.svg) no-repeat;
}

ul.flow li .txt {
  width: 60%;
  max-width: 580px;
}

ul.flow li .ttl_flow_item {
  font-size: 27px;
  margin: -10px 0 14px;
}

@media only screen and (max-width: 1024px) {
  ul.flow li {
    padding: 4vw;
  }

  ul.flow li .photo {
    width: 37%;
  }

  ul.flow li .txt {
    width: 58%;
  }

  ul.flow li .ttl_flow_item {
    font-size: 22px;
    margin: -8px 0 4px;
  }
}

@media only screen and (max-width: 960px) {}

@media only screen and (max-width: 568px) {
  ul.flow li {
    flex-direction: column;
    padding: 25px 25px;
  }

  ul.flow li .photo {
    width: 100%;
    max-width: initial;
  }

  ul.flow li .photo::after {
    width: 50px;
    height: 50px;
  }

  ul.flow li .txt {
    width: 100%;
    max-width: initial;
  }

  ul.flow li .ttl_flow_item {
    font-size: 21px;
    text-align: center;
    margin: 13px 0 7px;
  }

  ul.flow li::after {
    width: 37px;
  }
}

/*===============================================
 *	ダイオキシン類等調査
===============================================*/
.dioxin_box {
  background: #fff;
  padding: 35px 54px 45px;
  border: 5px solid #f4d0d4;
  display: grid;
  grid-template-columns: 20% 75%;
  grid-template-rows: auto 1fr;
  column-gap: 5%;
}

.dioxin_box .ttl {
  color: #fff;
  font-size: 26px;
  text-align: center;
  background: url(../img/common/bg_dot_pink.png);
  padding: 13px 0;
  border-radius: 50px;
  margin-bottom: 20px;
  grid-column: 2;
  grid-row: 1;
}

.dioxin_box .ttl span {
  position: relative;
  margin-left: 45px;
}

.dioxin_box .ttl span::before {
  content: '';
  background: url(../img/common/icon_memo.png) no-repeat;
  background-size: contain;
  width: 41px;
  height: 45px;
  position: absolute;
  left: -52px;
}

.dioxin_box a {
  position: relative;
  border: 2px solid #dfdfdf;
  grid-column: 1;
  grid-row: 1 / -1;
  height: fit-content;
}

.dioxin_box a::after {
  content: '';
  background: url(../img/common/icon_zoom.svg) no-repeat;
  width: 40px;
  height: 40px;
  position: absolute;
  right: -2px;
  bottom: -3px;
}

.dioxin_box .txt {
  grid-column: 2;
  grid-row: 2;
}

.dioxin_box .annotation_txt {
  text-indent: 0;
  padding-left: 0;
}

/* .dioxin_box ul {
  gap: 0 30px;
  margin: 35px 0 15px;
}
.dioxin_box ul li {
  border: 2px solid #dfdfdf;
  width: 28%;
  max-width: 276px;
}
.dioxin_box ul li a {
  position: relative;
}
.dioxin_box ul li a::after {
  content: '';
  background: url(../img/common/icon_zoom.svg) no-repeat;
  width: 40px;
  height: 40px;
  position: absolute;
  right: -2px;
  bottom: -3px;
} */
@media only screen and (max-width: 1024px) {
  .dioxin_box {
    padding: 35px 40px 45px;
  }

  .dioxin_box .ttl {
    font-size: 24px;
  }
}

@media only screen and (max-width: 960px) {
  .dioxin_box {
    padding: 4vw 4vw;
  }

  .dioxin_box .txt_box {
    width: 76%;
  }

  .dioxin_box .ttl {
    font-size: 19px;
    margin-bottom: 15px;
    padding: 10px 0;
  }

  .dioxin_box .ttl span {
    margin-left: 33px;
  }

  .dioxin_box .ttl span::before {
    width: 34px;
    height: 32px;
    left: -35px;
  }

  .dioxin_box a::after {
    width: 30px;
    height: 30px;
  }
}

@media only screen and (max-width: 568px) {
  .dioxin_box {
    margin: 0 -5.3vw;
    border-radius: 0;
    display: block;
    padding: 0 5.3vw 20px;
    border: none;
    border-bottom: 4px solid #f4d0d4;
  }

  .dioxin_box>div {
    border: none;
    border-bottom: 4px solid #f4d0d4;
    padding: 16px 5.3vw 20px;
    /* flex-direction: column;
    align-items: center; */
    display: block;
  }

  .dioxin_box .ttl {
    font-size: 21px;
    border-radius: 0;
    margin: 0 -5.3vw 16px;
  }

  .dioxin_box .ttl span {
    display: block;
    text-align: left;
    padding-left: 73px;
    margin-left: 0;
  }

  .dioxin_box .ttl span::before {
    width: 41px;
    height: 45px;
    left: 20px;
    top: 11px;
  }

  .dioxin_box .txt {
    width: 100%;
  }

  .dioxin_box a {
    width: 36%;
    float: left;
    margin: 0 20px 5px 0;
  }

  /* .dioxin_box ul {
    gap: 0;
    justify-content: space-between;
    margin: 18px 0 10px;
  }
  .dioxin_box ul li {
    width: 31.3%;
  }
  .dioxin_box ul li a::after {
    width: 30px;
    height: 30px;
  } */
}

/*===============================================
 *	自治体と民間のペット火葬の違い・ハピネスの特徴
===============================================*/
.merit_demerit {
  display: grid;
  grid-template-columns: 150px auto auto;
  grid-template-rows: auto 1fr 1fr;
  background: #999;
  border: 1px solid #ccc;
  margin: 50px 0 30px;
}

.merit_demerit .name {
  font-size: 22px;
  text-align: center;
  color: #fff;
  border-left: 1px solid #ccc;
  padding: 12px 0;
}

.merit_demerit .txt {
  background: #fff;
  vertical-align: middle;
  display: grid;
  align-items: center;
  padding: 20px 25px;
  border-left: 1px solid #ccc;
}

.merit_demerit li {
  line-height: 1.7;
  padding-left: 1em;
  text-indent: -1em;
  margin-bottom: 3px;
}

.jichi {
  grid-column: 2;
  grid-row: 1;
}

.reien {
  grid-column: 3;
  grid-row: 1;
}

.merit_ttl {
  grid-column: 1;
  grid-row: 2;
  font-size: 20px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fbeff1 url(../img/top/bg_maru.png) no-repeat center center;
  border-bottom: 1px solid #ccc;
}

.merit_jichi {
  grid-column: 2;
  grid-row: 2;
  border-bottom: 1px solid #ccc;
}

.merit_reien {
  grid-column: 3;
  grid-row: 2;
  border-bottom: 1px solid #ccc;
}

.demerit_ttl {
  grid-column: 1;
  grid-row: 3;
  font-size: 20px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5 url(../img/top/bg_batsu.png) no-repeat center center;
}

.demerit_jichi {
  grid-column: 2;
  grid-row: 3;
}

.demerit_reien {
  grid-column: 3;
  grid-row: 3;
}

.our_merit h3 {
  font-size: 30px;
  margin-bottom: 14px;
}

.our_merit h3 .txt_primarycolor {
  font-size: 34px;
}

.our_merit h3 .sideline {
  position: relative;
}

.our_merit h3 .sideline::before {
  content: '';
  background: url(../img/common/line-left.png) no-repeat;
  background-size: contain;
  width: 31px;
  height: 37px;
  position: absolute;
  left: -50px;
  top: 5px;
}

.our_merit h3 .sideline::after {
  content: '';
  background: url(../img/common/line-right.png) no-repeat;
  background-size: contain;
  width: 31px;
  height: 37px;
  position: absolute;
  right: -50px;
  top: 5px;
}

.our_merit .box {
  border: 5px solid #bedfe2;
  padding: 40px 40px 25px;
}

.our_merit ul {
  margin-top: 25px;
}

.our_merit ul li {
  font-size: 19px;
  position: relative;
  padding: 0 0 20px 40px;
  margin-bottom: 20px;
}

.our_merit ul li:last-child {
  margin: 0;
}

.our_merit ul li:last-child::after {
  display: none;
}

.our_merit ul li .txt_keycolor {
  font-weight: bold;
}

.our_merit ul li::before {
  content: '';
  background: url(../img/common/icon_check.svg) no-repeat;
  width: 30px;
  height: 28px;
  position: absolute;
  left: 0;
  top: 3px;
}

.our_merit ul li::after {
  content: '';
  background: url(../img/common/line_dot.png) no-repeat;
  width: 100%;
  height: 4px;
  position: absolute;
  left: 0;
  bottom: 0;
}

@media only screen and (max-width: 1024px) {
  .our_merit ul li {
    font-size: 17px;
  }
}

@media only screen and (max-width: 960px) {
  .merit_demerit {
    grid-template-columns: 120px auto auto;
    grid-template-rows: auto 1fr 1fr;
  }

  .merit_demerit .name {
    font-size: 18px;
  }

  .merit_demerit .txt {
    padding: 3vw 2vw;
  }

  .merit_ttl {
    font-size: 18px;
  }

  .demerit_ttl {
    font-size: 18px;
  }

  .our_merit h3 {
    font-size: 26px;
  }

  .our_merit h3 .txt_primarycolor {
    font-size: 28px;
  }

  .our_merit .box {
    padding: 4vw 4vw 2.5vw;
  }

  .our_merit ul li {
    font-size: 16px;
  }
}

@media only screen and (max-width: 568px) {
  .merit_demerit {
    margin: 25px 0 25px;
  }

  .merit_demerit .name {
    border: none;
    padding: 7px 0;
  }

  .merit_demerit {
    grid-template-columns: 100%;
    grid-template-rows: repeat(10, auto);
  }

  .merit_demerit .txt {
    border: none;
    border-top: 1px solid #ccc;
    font-size: 14px;
    padding: 12px 18px;
  }

  .jichi {
    grid-column: 1;
    grid-row: 1;
  }

  .reien {
    grid-column: 1;
    grid-row: 6;
  }

  .merit_ttl {
    grid-column: 1;
    grid-row: 2;
    font-size: 16px;
    padding: 13px 0;
    background-size: 38px;
    border: none;
  }

  .merit_jichi {
    grid-column: 1;
    grid-row: 3;
    border-bottom: 1px solid #ccc;
  }

  .merit_reien {
    grid-column: 1;
    grid-row: 8;
    border-bottom: 1px solid #ccc;
  }

  .demerit_ttl {
    grid-column: 1;
    grid-row: 4;
    font-size: 16px;
    padding: 13px 0;
    background-size: 36px;
    border-top: 1px solid #ccc;
  }

  .demerit_jichi {
    grid-column: 1;
    grid-row: 5;
  }

  .demerit_reien {
    grid-column: 1;
    grid-row: 10;
  }

  .merit_ttl.sp {
    grid-column: 1;
    grid-row: 7;
  }

  .demerit_ttl.sp {
    grid-column: 1;
    grid-row: 9;
  }

  .our_merit h3 {
    font-size: 21px;
    margin-bottom: 10px;
  }

  .our_merit h3 .txt_primarycolor {
    font-size: 21px;
  }

  .our_merit h3 .sideline::before {
    width: 23px;
    top: 0;
    left: -32px
  }

  .our_merit h3 .sideline::after {
    width: 23px;
    top: 0;
    right: -32px
  }

  .our_merit .box {
    border: none;
    border-top: 4px solid #bedfe2;
    border-bottom: 4px solid #bedfe2;
    border-radius: 0;
    padding: 21px 5.3vw 0;
    margin: 0 -5.3vw;
  }

  .our_merit ul {
    margin-top: 18px;
  }

  .our_merit ul li {
    font-size: 15px;
    padding: 0 0 20px 35px;
  }

  .our_merit ul li::before {
    background-size: contain;
    width: 25px;
  }
}

/*-----------------------------------------------
 *	ペット火葬ハピネスは他社とココがちがう
-----------------------------------------------*/
table.compare_table {
  width: 100%;
  table-layout: fixed;
  margin: 45px 0 30px;
}

table.compare_table th,
table.compare_table td {
  font-size: 20px;
  text-align: center;
}

table.compare_table thead th {
  color: #fff;
}

table.compare_table tbody th {
  background: #e9f4f5;
  font-weight: bold;
  width: 200px;
  border: 1px solid #ccc;
}

table.compare_table tbody td {
  padding: 18px 0;
  border: 1px solid #ccc;
}

table.compare_table .none {
  background: #fff;
}

table.compare_table .color {
  color: var(--site-primary);
  font-weight: bold;
}

table.compare_table thead th.color {
  background: url(../img/common/bg-gr_dot.png);
  padding: 20px 0;
}

table.compare_table thead th img {
  width: 78%;
}

table.compare_table thead th.gray {
  vertical-align: bottom;
}

table.compare_table thead th.gray div {
  background: #999;
  padding: 17px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid #ccc;
}

table.compare_table thead th.gray div span {}

table.compare_table .on {
  border: 4px solid var(--site-primary);
}

@media only screen and (max-width: 960px) {
  table.compare_table {
    margin: 3vw 0 4vw;
  }

  table.compare_table tbody th {
    width: 10vw;
  }

  table.compare_table th,
  table.compare_table td {
    font-size: 16px;
  }
}

@media only screen and (max-width: 568px) {
  table.compare_table {
    margin: 25px 0 25px;
  }

  table.compare_table th,
  table.compare_table td {
    font-size: 14px;
    line-height: 1.3;
  }

  table.compare_table thead th img {
    width: 90%;
    vertical-align: baseline;
  }

  table.compare_table thead th {
    font-size: 18px;
  }

  table.compare_table tbody td {
    padding: 6px 5px 7px;
  }

  table.compare_table tbody th {
    padding: 17px 0;
  }

  table.compare_table .on {
    border: 2px solid var(--site-primary);
  }

  table.compare_table thead th.color {
    padding: 18px 0;
    background-size: 25%;
  }

  table.compare_table thead th.gray div {
    padding: 14px 0;
  }
}

/*===============================================
 *	各プランへのメニューボタン
===============================================*/
ul.plan_btns li {
  width: 24%;
  max-width: 359px;
  margin-bottom: 40px;
}

ul.plan_btns li a {
  display: block;
  background: #fff;
  position: relative;
  font-size: 20px;
  font-weight: bold;
  color: var(--site-primary);
  border: 2px solid var(--site-primary);
  border-radius: 100px;
  padding: 17px 20px;
  text-align: center;
  transition: 0.2s;
}

ul.plan_btns li a::after {
  content: '';
  background: url(../img/common/icon_arrow_right_green.svg) no-repeat;
  background-size: contain;
  width: 10px;
  height: 15px;
  position: absolute;
  top: 50%;
  right: 7%;
  margin-top: -6px;
  transform: rotate(90deg);
  transition: 0.2s;
}

ul.plan_btns li span {
  position: relative;
}

ul.plan_btns li span::before {
  content: '';
  background: url(../img/price/icon_menu_joint.png) no-repeat;
  background-size: contain;
  width: 50px;
  height: 50px;
  position: absolute;
  top: 50%;
  left: -64px;
  transform: translateY(-50%);
  transition: 0.2s;
  content: none;
}

ul.plan_btns li:first-child a {
  color: var(--site-primary);
}

ul.plan_btns li:first-child a:hover {
  color: #48a6ae;
  border: 2px solid #48a6ae;
}

ul.plan_btns li a:hover span::before {
  opacity: 0.85;
}

ul.plan_btns li a:hover::after {
  opacity: 0.85;
}

ul.plan_btns li:nth-child(2) a {
  color: #31865a;
  border: 2px solid #31865a;
}

ul.plan_btns li:nth-child(2) a::after {
  background: url(../img/common/icon_arrow_right_deepgreen.svg) no-repeat;
  background-size: contain;
}

ul.plan_btns li:nth-child(2) span::before {
  background: url(../img/price/icon_menu_single.png) no-repeat;
  background-size: contain;
}

ul.plan_btns li:nth-child(2) a:hover {
  color: #509873;
  border: 2px solid #509873;
}

ul.plan_btns li:nth-child(3) a {
  color: #b98a4a;
  border: 2px solid #b98a4a;
}

ul.plan_btns li:nth-child(3) a::after {
  background: url(../img/common/icon_arrow_right_gold.svg) no-repeat;
  background-size: contain;
}

ul.plan_btns li:nth-child(3) span {
  /* left: 15px; */
}

ul.plan_btns li:nth-child(3) span::before {
  background: url(../img/price/icon_menu_premium.png) no-repeat;
  background-size: contain;
}

ul.plan_btns li:nth-child(3) a:hover {
  color: #c39b65;
  border: 2px solid #c39b65;
}

ul.plan_btns li:nth-child(4) a {
  color: #f3786b;
  border: 2px solid #f3786b;
}

ul.plan_btns li:nth-child(4) a::after {
  background: url(../img/common/icon_arrow_right_pink.svg) no-repeat;
  background-size: contain;
}

ul.plan_btns li:nth-child(4) span::before {
  background: url(../img/price/icon_menu_memorial.png) no-repeat;
  background-size: contain;
}

ul.plan_btns li:nth-child(4) a:hover {
  color: #fb8b7f;
  border: 2px solid #fb8b7f;
}

@media only screen and (max-width: 1024px) {
  ul.plan_btns li a {
    font-size: 17px;
  }

  ul.plan_btns li span::before {
    width: 40px;
    height: 40px;
    left: -45px;
  }
}

@media only screen and (max-width: 960px) {
  ul.plan_btns {
    justify-content: center;
    gap: 20px 3%;
    margin-bottom: 40px;
  }

  ul.plan_btns li {
    width: 46%;
    max-width: initial;
    margin-bottom: 0;
  }
}

@media only screen and (max-width: 568px) {
  ul.plan_btns {
    flex-direction: column;
    gap: 10px 0;
    margin-bottom: 30px;
  }

  ul.plan_btns li {
    width: 76vw;
    max-width: initial;
    margin: 0 auto;
  }

  ul.plan_btns li a {
    font-size: 17px;
    padding: 9px 0 10px;
  }

  ul.plan_btns li span::before {
    content: '';
    width: 35px;
    height: 35px;
  }
}

/*===============================================
 *	プラン比較表
===============================================*/
.plan_table table {
  width: 100%;
  table-layout: fixed;
  margin-bottom: 10px;
}

.plan_table th {
  font-size: 18px;
  text-align: center;
  background: #64b4ba;
}

.plan_table thead th {
  color: #fff;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  font-size: 20px;
  padding: 18px 0;
}

.plan_table tbody th {
  width: 200px;
  font-weight: bold;
  color: #fff;
  border-bottom: 1px solid #fff;
}

.plan_table th.joint {
  background: var(--site-primary);
}

.plan_table th.single {
  background: #31865a;
}

.plan_table th.premium {
  background: #b98a4a;
}

.plan_table th.memorial {
  background: #f3786b;
}

.plan_table td {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  border: 1px solid #fff;
  background: #f5f5f5;
  padding: 12px 0;
}

.plan_table tr:nth-child(even) td {
  background: #e6e6e6;
}

.plan_table .price {
  color: var(--site-keycolor);
  font-size: 24px;
}

.plan_table .price .yen {
  font-size: 0.75em;
}

.plan_table td img {
  position: relative;
  top: -5px;
}

.plan_table .maru {
  width: 20px;
}

.plan_table .batsu {
  width: 17px;
}

.slide_txt {
  display: none;
}

@media only screen and (max-width: 960px) {
  .plan_table thead th {
    font-size: 17px;
  }

  .plan_table .price {
    font-size: 20px;
  }
}

@media only screen and (max-width: 568px) {
  .plan_table {
    margin: 0 -5.3vw 10px;
    overflow-x: scroll;
  }

  .plan_table table {
    margin-bottom: 20px;
    white-space: nowrap;
    table-layout: initial;
  }

  .plan_table thead th {
    font-size: 15px;
    line-height: 1.3;
    padding: 8px 0;
  }

  .plan_table thead th:first-child {
    position: sticky;
    left: 0;
    top: 0;
    z-index: 10;
  }

  .plan_table thead th:last-child {
    border-right: none;
  }

  .plan_table thead th:last-child th:first-child,
  .plan_table tbody th {
    width: 22.4%;
  }

  .plan_table tbody th {
    font-size: 14px;
    width: initial;
    padding: 12px 8px;
    position: sticky;
    left: 0;
    top: 0;
    z-index: 10;
  }

  .plan_table tbody th span {
    display: none;
  }

  .plan_table td {
    font-size: 14px;
    border-right: none;
    padding: 12px 6px;
  }

  .plan_table .price {
    font-size: 16px;
  }

  .plan_table td img {
    top: -2px;
  }

  .plan_table .simplebar-track.simplebar-horizontal {
    background: #dfe1e2;
    /* スクロールバーの背景色 */
    height: 7px;
    border-radius: 7px;
    margin: 0 5.3vw 0;
  }

  .plan_table .simplebar-track .simplebar-scrollbar::before {
    background: #9a9c9e;
    /* スクロールバーのつまみ部分の色 */
    height: 7px;
    border-radius: 7px;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
  }

  .slide_txt {
    display: block;
    font-size: 14px;
    position: relative;
    padding: 0 2.2em 0 0;
    margin: 0 0 12px 0;
    text-align: right;
    animation: FloatHorizontal 3s ease-in-out infinite alternate;
  }

  .slide_txt:before {
    content: "";
    background: url("../img/common/icon_slide.svg") left no-repeat;
    background-size: contain;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
  }
}

/*===============================================
 *	料金訴求
===============================================*/
.feature {
  text-align: center;
  border: 4px solid var(--site-primary);
  border-radius: 10px;
  margin-top: 80px;
}

.feature h5 {
  font-size: 24px;
  background: var(--site-primary);
  color: #fff;
  border-radius: 30px;
  max-width: 530px;
  margin: -30px auto 0;
  line-height: 2.5;
}

.f-txt {
  padding: 15px 0 35px 0;
  font-feature-settings: "palt";
  letter-spacing: 5px;
  font-size: 36px
}

.marker {
  background: linear-gradient(transparent 75%, #ffd88f 75%);
}

@media only screen and (max-width: 960px) {
  .feature {
    margin-top: 50px;
  }

  .f-txt {
    font-size: 26px;
  }
}

@media only screen and (max-width: 568px) {
  .feature {
    margin-top: 50px;
    border: 2px solid var(--site-primary);
  }

  .feature h5 {
    font-size: 16px;
    margin: -17px auto 0;
    width: 94%;
    line-height: 2;
  }

  .f-txt {
    font-size: 20px;
    padding: 10px 15px 25px;
  }
}

/*===============================================
 *	日本動物葬儀霊園協会リンク
===============================================*/
.nds-link {
  margin: 0 auto 40px;
  max-width: 468px;
}

/*===============================================
 *	ペットが亡くなったら内部リンク
===============================================*/
.pet-link a:hover {
  opacity: .7;
}

.pet-link h4 {
  font-size: 30px;
  margin: 46px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pet-link h4:before,
.pet-link h4:after {
  border-top: 2px solid var(--site-keycolor);
  content: "";
  width: 80px;
}

.pet-link h4:before {
  margin-right: 10px;
}

.pet-link h4:after {
  margin-left: 10px;
}

.pet-link ul {
  margin-bottom: 70px;
  gap: 20px;
  align-items: stretch;
}

.pet-link ul li {
  border: 2px solid var(--site-primary);
  border-radius: 10px;
  background: #e9f4f5;
  text-align: center;
  box-shadow: 0px 5px 0px 0px #28979f;
  max-width: 240px;
}

.pet-link ul li a {
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.pet-link ul li img {
  border-radius: 6px;
  margin-bottom: 10px;
}

.pet-link ul li p:first-of-type {
  font-size: 22px;
  line-height: 1;
  color: var(--site-primary);
}

.pet-link ul li p span {
  font-size: 17px;
}

.induction {
  font-size: 17px;
  color: #fff;
  background-color: var(--site-primary);
  border-radius: 10px;
  position: relative;
  margin-top: 20px;
}

.induction::after {
  content: '';
  background: url('../img/common/arrow.svg') no-repeat;
  background-size: contain;
  width: 14px;
  height: 12px;
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translateY(-50%);
  transition: 0.2s;
}

.mt-0 {
  margin-top: 0;
}

@media only screen and (max-width: 960px) {
  .pet-link ul li a {
    padding: 10px;
  }

  .pet-link h4 {
    font-size: 24px;
  }

  .pet-link ul {
    gap: 20px 10px;
  }

  .pet-link ul li {
    max-width: 155px;
    width: 23%;
  }

  .pet-link h4::before,
  .pet-link h4::after {
    width: 40px;
  }

  .pet-link ul li p:first-of-type {
    font-size: 20px;
    line-height: 1.2;
  }

  .pet-link ul li p span {
    font-size: 14px;
  }

  .induction {
    font-size: 10px;
    line-height: 2;
  }

  .induction::after {
    width: 10px;
    height: 8px;
    right: 0px;
  }
}

@media only screen and (max-width: 568px) {
  .pet-link ul {
    margin-bottom: 0;
    gap: 0 10px;
  }

  .pet-link ul li {
    max-width: 48%;
    margin-bottom: 20px;
    width: 100%;
  }

  .pet-link ul li p:first-of-type {
    font-size: 24px;
  }

  .pet-link h4 {
    margin: 0 0 20px;
    font-size: 22px;
  }

  .pet-link h4:before {
    margin-right: 20px;
  }

  .pet-link h4::after {
    margin-left: 20px;
  }

  .pet-link ul li p:first-of-type {
    font-size: 20px;
  }
}


/*===============================================
 *	悪徳業者部分導線
===============================================*/
.btn-02 {
  grid-column: -1 / 1;
  grid-row: 3;
  text-align: center;
}

.btn-02 a {
  position: relative;
  max-width: 580px;
  background: #ffd580;
  border-radius: 16px;
  display: block;
  margin: 30px auto 0;
  padding: 5px 0;
  font-size: 24px;
  font-weight: bold;
}

.btn-02 a:hover {
  opacity: .7;
}

.btn-02 a::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 20px;
  right: 3%;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  background: url(../img/common/arrow-black.svg) no-repeat;
}

@media only screen and (max-width: 960px) {
  .btn-02 a {
    font-size: 22px;
  }
}

@media only screen and (max-width: 568px) {
  .btn-02 a {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .btn-02 a::after {
    width: 14px;
    height: 16px;
  }
}

/*===============================================
*	自治体と民間部分導線
===============================================*/
.btn-03 {
  text-align: center;
}

.btn-03 a {
  position: relative;
  max-width: 600px;
  border: 4px solid #da6272;
  color: #da6272;
  ;
  border-radius: 35px;
  display: block;
  margin: 30px auto;
  padding: 10px 0;
  font-size: 24px;
  font-weight: bold;
}

.btn-03 a:hover {
  opacity: .7;
}

.btn-03 a::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 20px;
  right: 3%;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  background: url(../img/common/arrow-red.svg) no-repeat;
}

@media only screen and (max-width: 960px) {
  .btn-03 a {
    font-size: 22px;
  }
}

@media only screen and (max-width: 568px) {
  .btn-03 a {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .btn-03 a::after {
    width: 14px;
    height: 16px;
  }
}

/*===============================================
*	ディレクターコラム導線ボタン
===============================================*/
.half_box .btn_dot a {
  position: relative;
  text-align: center;
  display: block;
  background: url(../img/common/bg-gr_dot.png) repeat;
  color: #fff;
  font-weight: bold;
  margin: 20px auto 0;
  border-radius: 10px;
  padding: 10px 0;
  font-size: 20px;
}

.half_box .btn_dot a::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 20px;
  right: 3%;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  background: url(../img/common/arrow.svg) no-repeat;
}

.half_box .btn_dot a:hover {
  opacity: .7;
  transition: 1s;
}

@media only screen and (max-width: 960px) {
  .half_box .btn_dot a {
    font-size: 16px;
  }
}

@media only screen and (max-width: 568px) {
  .half_box .btn_dot a {
    margin-bottom: 10px;
  }

  .half_box .btn_dot a::after {
    width: 14px;
    height: 16px;
  }
}

/*===============================================
*	火葬証明書コラム導線ボタン
===============================================*/
.btn_certificate {
  margin: 20px auto;
  width: 100%;
}

.certificate_box .btn_certificate a {
  position: relative;
  box-shadow: none;
  border: 4px solid var(--site-primary);
  border-radius: 10px;
  padding: 10px 70px;
  max-width: 380px;
  background: #fff;
  color: var(--site-primary);
  font-weight: bold;
  margin: 0 auto;
  display: block;
  text-align: center;
}

.certificate_box .btn_certificate a::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 17px;
  right: 3%;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  background: url(../img/common/arrow-green.svg) no-repeat;
}

.certificate_box .btn_certificate a:hover {
  opacity: .7;
}

@media only screen and (max-width: 568px) {
  .btn_certificate {
    width: 100%;
    margin: 20px auto 0;
  }

  .certificate_box .btn_certificate a {
    width: 100%;
    padding: 10px 0;
    text-align: center;
    border: 2px solid var(--site-primary);
  }

  .certificate_box .btn_certificate a::after {
    right: 5%;
  }
}

/*----------230710追加----------------*/
/*===============================================
 *	メモリアルグッズ導線
===============================================*/

.plan-goods {
  background: #fff;
  border-radius: 10px;
  padding: 30px 50px;
  margin-top: 50px;
  margin-bottom: 10px;
}

.plan-goods h4 {
  font-size: 28px;
  text-align: center;
  margin-bottom: 25px;

}

.memorial-img {
  max-width: 294px;
  width: 100%;
  position: relative;
}

.memorial-img img {
  border-radius: 10px;
}

.memorial-img::before {
  content: "";
  background: url(../img/top/plan_goods_02.png) no-repeat;
  background-size: contain;
  width: 153px;
  height: 104px;
  position: absolute;
  bottom: -9%;
  left: -11%;
}

.content-goods-txt p {
  margin-bottom: 30px;
}

.plan-goods .goods-btn {
  text-align: center;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  max-width: 400px;
}

.goods-btn a {
  background: #f8e0e3;
  width: 100%;
  border-radius: 30px;
  position: relative;
  color: var(--site-keycolor);
  font-size: 20px;
  font-weight: bold;
  padding: 10px 0;
}

.goods-btn a:hover {
  opacity: .7;
  transition: .7s;
}

.goods-btn a::after {
  content: "";
  background: url(../img/common/arrow-red.svg) no-repeat;
  width: 15px;
  height: 17px;
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

@media only screen and (max-width: 960px) {
  .plan-goods {
    padding: 25px;
  }

  .plan-goods .space-btw {
    gap: 31px;
  }

  .memorial-img::before {
    width: 70%;
    height: 70%;
    bottom: 10%;
    left: -17%;
  }

  .memorial-img {
    max-width: 220px;
  }

  .plan-goods .goods-btn {
    max-width: 320px;
  }
}

@media only screen and (max-width: 568px) {
  .plan-goods {
    margin-top: 30px;
  }

  .plan-goods h4 {
    font-size: 24px;
  }

  .plan-goods .row-rev {
    display: block;
  }

  .memorial-img {
    max-width: 100%;
    margin-bottom: 40px;
  }

  .memorial-img::before {
    width: 60%;
    height: 60%;
    bottom: -21%;
    left: -10%;
  }

  .goods-btn a {
    font-size: 17px;
  }
}

/*===============================================
 *	火葬車LPバナー
===============================================*/
.lp-banner {
  background: url(../img/common/lp_banner_bg.jpg)no-repeat center;
  background-size: cover;
  display: grid;
  grid-template-columns: 54.4% 45.6%;
  -ms-grid-rows: auto 1fr;
  grid-template-rows: auto 1fr;
  border-radius: 10px;
  padding: 40px 35px 10px 35px;
  margin-top: 70px;
}

.banner-title {
  grid-column: 1;
  -ms-grid-column: 1;
  grid-row: 1;
  -ms-grid-row: 1;
  max-width: 580px;

}

.banner-title h4 {
  font-size: 26px;
  font-weight: bold;
  color: #fff;
  background-color: var(--site-keycolor);
  clip-path: polygon(100% 0%, 97% 50%, 100% 100%, 0% 100%, 3% 50%, 0% 0%);
  -webkit-clip-path: polygon(100% 0%, 97% 50%, 100% 100%, 0% 100%, 3% 50%, 0% 0%);
  position: relative;
  padding: 10px 0 10px 60px;
  margin-bottom: 20px;
}

.banner-title h5 {
  font-size: 40px;
  color: #fff;
  font-style: italic;
  font-weight: bold;
  text-shadow: 4px 3px 1px rgba(0, 54, 109, 0.3);
  line-height: 1.3;
  margin-bottom: 20px;
}

.banner-title h5 span {
  font-size: 56px;
}

.banner-title p {
  font-weight: bold;
  color: #fff;
  text-shadow: 4px 3px 1px rgba(0, 54, 109, 0.3);
}

.txt_yellow {
  color: #f7f81f;
}

.marks {
  background: linear-gradient(transparent 60%, #da6272 60%);
}

.banner-title h4::before {
  content: "";
  width: 29px;
  height: 39px;
  background: url(../img/common/icon_juzu.svg)no-repeat;
  position: absolute;
  left: 25px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  background-size: cover;
}

.lp-banner .btn-03 {
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-grid-row: 2;
  grid-row: 2;
  max-width: 580px;
}

.lp-banner .btn-03 a {
  border-radius: 26px;
  background: #f5feff;
  border: 4px solid var(--site-primary);
  color: var(--site-primary);
  max-width: 80%;
}

.lp-banner .btn-03 a::after {
  background: url(../img/common/arrow-green.svg)no-repeat;
}

.lp-banner .btn-03 a:hover {
  transition: .7s;
}

.banner-cars {
  grid-column: 2;
  -ms-grid-column: 2;
  grid-row: 1 / -1;
  -ms-flex-item-align: end;
  -ms-grid-row-align: end;
  align-self: end;
  -ms-grid-column-align: end;
  justify-self: end;
  max-width: 490px;
}

@media only screen and (max-width: 1024px) {
  .banner-title h4 {
    font-size: 24px;
    padding: 10px 0 10px 40px;
  }

  .banner-title h4::before {
    width: 21px;
    height: 29px;
    left: 17px;
  }

  .banner-title h5 {
    font-size: 32px;
  }

  .banner-title h5 span {
    font-size: 46px;
  }

  .banner-cars {
    align-self: center;
  }
}

@media only screen and (max-width: 960px) {
  .lp-banner {
    padding: 30px 25px 10px 25px;
    ;
  }

  .banner-title h4 {
    font-size: 17px;
    padding: 10px 0 10px 40px;
  }

  .banner-title h4::before {
    width: 21px;
    height: 29px;
    left: 17px;
  }

  .banner-title h5 {
    font-size: 24px;
  }

  .banner-title h5 span {
    font-size: 36px;
  }

  .lp-banner .btn-03 a {
    font-size: 18px;
    margin: 10px auto 15px;
    ;
  }
}

@media only screen and (max-width: 568px) {
  .lp-banner {
    padding: 20px;
    -ms-grid-columns: auto;
    grid-template-columns: auto;
    -ms-grid-columns: auto auto auto;
    grid-template-columns: auto auto auto;
    margin-top: 40px;
  }

  .banner-title {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 1;
    grid-row: 1;
  }

  .banner-title h4 {
    font-size: 20px;
    padding: 10px 0 10px 65px;
    margin-bottom: 10px;
  }

  .banner-title h4::before {
    width: 31px;
    height: 43px;
    left: 20px;
  }

  .banner-title h5 {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .banner-title h5 span {
    font-size: 28px;
  }

  .banner-title p {
    margin-bottom: 20px;
  }

  .banner-cars {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 2;
    grid-row: 2;
    width: 100%;
    -ms-grid-column-align: center;
    justify-self: center;
    margin: 0;
  }

  .lp-banner .btn-03 {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 3;
    grid-row: 3;
    width: 100%;

  }

  .lp-banner .btn-03 a {
    margin: 10px auto;
    max-width: 100%;
    border-radius: 15px;
  }
}

/*---230719追記---*/
/*===============================================
 *	ペットちゃんをお見送りした後は
===============================================*/
.procedure .intro_txt {
  margin-bottom: 50px;
}

.procedure ul {
  margin-bottom: 90px;
}

.procedure li {
  width: 48%;
  border: 4px solid var(--site-primary);
  border-radius: 10px;
  background: #e9f4f5;
}

.procedure li h4 {
  text-align: center;
  color: #fff;
  background: var(--site-primary);
  border-radius: 5px 5px 0 0;
  font-size: 30px;
  font-weight: bold;
  padding: 25px 0;
}

.procedure li h4 span {
  font-size: 24px;
}

.after-content {
  padding: 30px;
}

.after-content img,
.after-content p {
  margin-bottom: 30px;
}

.after-content a,
.loss-txt a {
  border: 2px solid var(--site-primary);
  color: var(--site-primary);
  font-weight: bold;
  font-size: 22px;
  text-align: center;
  border-radius: 45px;
  width: 100%;
  display: block;
  padding: 25px 0;
  background: #fff;
  position: relative;
}

.after-content a::after,
.loss-txt a::after {
  content: "";
  position: absolute;
  background: url(../img/common/icon_arrow_right_green.svg)no-repeat;
  width: 13px;
  height: 20px;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.after-content a:hover::after,
.loss-txt a:hover::after {
  background: var(--site-primary);
  background: url(../img/common/icon_arrow_right_white.svg)no-repeat;
  transition: .5s;
}

.after-content a:hover,
.loss-txt a:hover {
  color: #fff;
  background: var(--site-primary);
  transition: .5s;
}

.loss-content img {
  max-width: 503px;
}

.loss-txt {
  max-width: 560px;
}

.loss-txt h4 {
  font-size: 26px;
  margin-bottom: 20px;
}

.loss-txt p {
  margin-bottom: 20px;
}

@media only screen and (max-width: 960px) {
  .procedure li h4 {
    font-size: 24px;
  }

  .procedure li h4 span {
    font-size: 18px;
  }

  .procedure li:first-child h4 {
    padding: 5px 0;
  }

  .procedure li:last-child h4 {
    padding: 25px 0;
  }

  .after-content a,
  .loss-txt a {
    font-size: 20px;
    padding: 10px 0;
  }

  .procedure ul {
    margin-bottom: 40px;
  }

  .loss-content img {
    max-width: 350px;
  }

  .loss-txt {
    max-width: 350px;
  }

  .loss-txt h4 {
    font-size: 20px;
  }
}

@media only screen and (max-width: 568px) {
  .procedure h3 {
    margin: 0 -5.3vw 20px
  }

  .procedure .intro_txt {
    margin-bottom: 30px;
  }

  .procedure ul {
    margin-bottom: 20px;
  }

  .procedure li {
    width: 100%;
  }

  .procedure li:first-child {
    margin-bottom: 20px;
  }

  .procedure li:first-child h4,
  .procedure li:last-child h4 {
    font-size: 18px;
  }

  .procedure li h4 span {
    font-size: 16px;
  }

  .procedure li:first-child h4,
  .procedure li:last-child h4 {
    padding: 10px 0;
  }

  .after-content {
    padding: 20px;
  }

  .after-content img,
  .after-content p {
    margin-bottom: 20px;
  }

  .after-content a,
  .loss-txt a {
    font-size: 16px;
  }

  .after-content a::after,
  .loss-txt a::after {
    right: 3%;
    width: 11px;
    height: 13px;
  }

  .loss-txt {
    margin-top: 10px;
  }
}

/*---231128追記---*/
/*===============================================
 *	お勧め相互リンクバナー
===============================================*/
footer .recommended_links .inner {
  margin: 0 auto 3vw;
}

.recommended_links {
  margin: 30px 0 0 0;
}

.recommended_links .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.recommended_links ul {
  gap: 20px 2%;
}

.recommended_links li {
  width: 23.5%;
  margin: 0;
  padding: 0;
}

footer .recommended_links li a::before {
  content: none;
}

.recommended_links .ttl_left_border {
  font-size: 21px;
}

@media only screen and (max-width: 568px) {
  .recommended_links {
    margin: 30px 5% 30px;
  }

  .recommended_links .ttl_left_border {
    font-size: 18px;
  }

  .recommended_links ul {
    gap: 15px 3.5%;
  }

  footer .recommended_links li {
    width: 48%;
    border: none;
  }

  footer .recommended_links li a {
    height: auto;
    padding: 0;
  }

  footer .recommended_links li:nth-child(even) {
    border: none;
  }
}

/*===============================================
 *	相互リンク
===============================================*/
footer ul.mutual-link {
  margin: 30px auto;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  max-width: 1120px;
  width: 100%;
}

footer ul.mutual-link li {
  margin: 0 0 20px 0;
  width: 25%;
}

footer ul.mutual-link li a {
  padding-left: 0;
}

footer ul.mutual-link li a::before {
  content: none;
}

@media only screen and (max-width: 960px) {
  .mutual-link {
    width: 94%;
    margin: 40px auto;
  }

  footer ul.mutual-link li {
    padding-left: 0;
    width: 32%;
  }
}

@media only screen and (max-width: 568px) {
  footer ul.mutual-link {
    flex-direction: column;
    gap: 15px 0;
    width: 90%;
    margin: 30px auto;
  }

  footer ul.mutual-link li {
    width: 100%;
    display: block;
    border: none;
  }

  footer ul.mutual-link li a {
    padding: 0;
    display: block;
    height: auto;
  }

}

/*-----------------------------------------------
 *	ボランティア活動
-----------------------------------------------*/
#volunteer {
  border-bottom: 15px solid var(--site-secondary);
}

.volunteer-box {
  border: 6px solid #bedfe2;
  box-sizing: border-box;
  background: #fff;
  padding: 45px;
  border-radius: 10px;
  margin-bottom: 40px;
}

.volunteer-txt {
  max-width: 555px;
}

.volunteer-grid {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto auto;
  gap: 0 2vw;
  margin-bottom: 30px;
}

#volunteer .top_ttl {
  font-size: 27px;
  margin-bottom: 20px;
}

.volunteer-grid .box_ttl {
  grid-column: 2;
  grid-row: 1;
  font-size: 26px;
  text-align: center;
  border-radius: 50px;
  line-height: 1;
  padding: 8px 0 0;
  margin-bottom: 15px;
}

.volunteer-txt h4,
.volunteer-txt h5 {
  font-size: 26px;
  margin: -10px 0 18px;
}

.volunteer-txt .reborn {
  position: relative;
  padding-left: 60px;
  font-size: 24px;
}

.volunteer-txt .reborn::before {
  content: '';
  background: url(../img/top/icon-reborn-logo.svg)no-repeat;
  background-size: contain;
  width: 44px;
  height: 61px;
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
}

.volunteer-txt .links {
  margin-top: 26px;
  gap: 0 3%;
}

.volunteer-txt .links li {
  width: 45%;
}

.volunteer-grid .volunteer-photo {
  width: 100%;
  grid-column: 1;
  grid-row: 1 / 4;
}

.volunteer-grid .volunteer-photo_sub {
  grid-column: 1;
  grid-row: 2;
}

.volunteer-grid .volunteer-photo_sub ul {
  gap: 10px;
}

.volunteer-grid .volunteer-txt {
  grid-column: 2;
  grid-row: 2 / 4;
}

.volunteer-photo {
  width: 42%;
}

.volunteer-box .sub-contents {
  padding: 25px 40px 30px;
  margin-top: 40px;
  background: var(--site-secondary);
}

.volunteer-box .sub-contents .ttl {
  font-size: 24px;
  color: var(--site-primary);
  margin-bottom: 8px;
}

.volunteer-box .sub-contents ul {
  margin-top: 20px;
  gap: 0 1.5%;
}

.baton-list {
  margin-top: 20px;
  border-radius: 10px;
  background-color: #f2ebeb;
  grid-column: 1 / 3;
  grid-row: 4;
}

.baton-list p {
  background: var(--site-keycolor);
  font-size: 20px;
  padding: 5px 0 8px;
}

.baton-list ul {
  padding: 20px 25px;
  gap: 20px;
}

.baton-list ul li {
  padding-left: 35px;
  font-weight: bold;
  font-size: 18px;
  position: relative;
  line-height: 2;
}

.baton-list ul li::before {
  content: '';
  background: url(../img/top/icon-reborn.svg)no-repeat;
  width: 30px;
  height: 30px;
  background-size: contain;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

@media only screen and (max-width: 1024px) {
  .volunteer-photo {
    max-width: 38%;
  }

  .volunteer-txt {
    max-width: 58%;
  }

  .volunteer-txt .links img {
    max-width: 250px;
  }

  .volunteer-grid .volunteer-photo,
  .volunteer-grid .volunteer-txt {
    max-width: 100%;
  }
}

@media only screen and (max-width: 960px) {
  .volunteer-box {
    margin-bottom: 30px;
    padding: 30px;
  }

  .volunteer-txt h3 {
    font-size: 22px;
    margin: -4px 0 8px;
  }

  .volunteer-txt .links {
    margin-top: 20px;
  }

  .volunteer-box .sub-contents {
    padding: 20px 25px 25px;
    margin-top: 28px;
  }

  .volunteer-box .sub-contents .ttl {
    font-size: 20px;
    margin-bottom: 8px;
  }

  .volunteer-box .sub-contents li {
    width: 30%;
  }

  .volunteer-grid {
    grid-template-columns: 40% 60%;
  }

  .volunteer-grid .volunteer-photo {
    margin-bottom: -200px;
  }

  .volunteer-txt h4,
  .volunteer-txt h5 {
    font-size: 24px;
  }

  #volunteer .top_ttl {
    font-size: 22px;
  }
}

@media only screen and (max-width: 568px) {
  #volunteer {
    border-width: 20px;
  }

  #volunteer .bg_circle_left::before {
    content: none;
  }

  .volunteer-box {
    border: 3px solid #bedfe2;
    margin: 0 -5.3vw 25px;
    padding: 20px 5.3vw;
    border-right: none;
    border-left: none;
    border-radius: 0;
  }

  .volunteer-box>.wrap {
    flex-direction: column-reverse;
  }

  .volunteer-txt h3 {
    text-align: center;
    font-size: 21px;
  }

  .volunteer-photo,
  .volunteer-txt {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .volunteer-txt .links {
    flex-direction: column;
    align-items: center;
    gap: 12px 0;
    margin-top: 16px;
  }

  .volunteer-txt .links li {
    width: 64%;
  }

  .volunteer-photo {
    width: 100%;
  }

  .volunteer-box .sub-contents {
    padding: 20px 20px;
    margin-top: 10px;
  }

  .volunteer-box .sub-contents ul {
    flex-direction: column;
    align-items: center;
    gap: 12px 0;
    margin-top: 15px;
  }

  .volunteer-box .sub-contents ul li {
    width: 73%;
  }

  #volunteer .top_ttl {
    font-size: 20px;
    letter-spacing: 0;
  }

  .volunteer-grid {
    grid-template-columns: 49% 49%;
    grid-template-rows: auto auto auto auto;
    margin-bottom: 20px;
  }

  .volunteer-txt h5 {
    margin: 0px 0 20px;
    ;
  }

  .volunteer-grid .box_ttl {
    grid-column: 1 / 3;
    grid-row: 1;
    margin: 0px -5.3vw 20px;
    ;
    font-size: 20px;
    border-radius: 0;
    width: 100vw;
    padding: 13px 0;
  }

  .volunteer-grid .volunteer-photo {
    grid-column: 1;
    grid-row: 2;
    margin-bottom: 20px;
  }

  .volunteer-grid .volunteer-txt {
    grid-column: 1 / 3;
    grid-row: 2;
    margin-bottom: 10px;
  }

  .volunteer-txt .reborn {
    margin-left: 50%;
    font-size: 16px;
  }

  .volunteer-txt .reborn::before {
    width: 29px;
    height: 40px;
  }

  .volunteer-box .ttl_double_border {
    margin: 0 -5.7vw 20px;
    font-size: 20px;
  }

  .baton-list {
    margin-top: 10px;
  }

  /*.volunteer-grid .volunteer-photo_sub{
    grid-column: 1;
    grid-row: 3;
  }*/
  .volunteer-txt h4,
  .volunteer-txt h5 {
    font-size: 20px;
    text-align: center;
  }

  .baton-list p {
    font-size: 16px;
    text-align: left;
    padding: 5px 15px 8px;
  }

  .baton-list ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 10px 15px;
  }

  .baton-list ul li {
    font-size: 15px;
    line-height: 1.5;
  }

  .baton-list ul li::before {
    top: 0%;
    transform: translateY(0%);
    width: 25px;
    height: 25px;
  }

  .volunteer-txt .reborn {
    text-align: left;
    padding-left: 55px;
  }

  .volunteer-txt .reborn::before {
    content: '';
    background: url(../img/top/icon-reborn-logo.svg)no-repeat;
    background-size: contain;
    width: 45px;
    height: 62px;
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translateY(-50%);
  }
}

/*========= モーダル表示のためのCSS ===============*/

/*全て共通：hideエリアをはじめは非表示*/
.hide-area {
  display: none;
}

/*全て共通：モーダルのボタンの色を変更したい場合*/
.modaal-close:after,
.modaal-close:before {
  background: #ccc;
}

.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before {
  background: #666;
}

.modaal-wrapper .modaal-content-container video {
  width: 100%;
}

@media only screen and (max-width: 568px) {
  .modaal-content-container {
    padding: 10px 10px 4px !important;
  }

  .modaal-close {
    top: 19vw !important;
  }
}

/*========= 240801追加コンテンツ用（3つのプラン下部） ===============*/
.other_service {
  margin-top: 60px;
}

.other_service .ttl {
  font-size: 28px;
  margin-bottom: 35px;
}

.other_service .ttl .f34 {
  font-size: 34px;
}

.other_service .options {
  gap: 20px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.other_service .options li {
  max-width: 100%;
  width: 100%;
}

.other_service ul.options li h5 {
  text-align: center;
  color: #fff;
  font-size: 32px;
  display: inline-block;
  width: 100%;
  vertical-align: middle;
  padding: 13px 0 10px;
}

.other_service .options li img {
  border-radius: 10px;
  overflow: hidden;
  max-width: 100%;
}

.other_content {
  padding: 20px 30px;
  gap: 30px;
}

.other_content .option-img {
  max-width: 415px;
}

.other_content .option_txt {
  max-width: 615px;
}

.other_content {
  padding: 20px 30px;
}

.other_content h6 {
  font-size: 28px;
}

.other_content .option_txt .center {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0;
}

.other_content .option_txt .center::before {
  content: '●';
  font-size: 20px;
  color: var(--site-keycolor);
  display: inline-block;
}

.other_content .option-box .center {
  margin: 0;
  font-size: 16px;
  padding: 9px 0 6px;
}

.other_content .option-box .center::before {
  content: none;
}

.other_content p {
  font-size: 16px;
}

.other_service ul li:first-child .other_content dl {
  margin-top: 30px;
}

.other_service ul li:nth-child(3) .other_content .goods-btn {
  margin-top: 50px;
}

.other_content .option-box {
  border-radius: 10px;
  background: #34c4ce;
  box-sizing: border-box;
  margin-top: 10px;
}

.other_content .option-box dl {
  border: 3px solid #34c4ce;
  align-items: center;
  background: #fff;
  border-radius: 0 0 10px 10px;
}

.other_service .option-box dl dd {
  text-align: center;
  padding: 26px 0 26px 45px;
  margin: 0 auto;
  font-weight: bold;
  position: relative;
  font-size: 20px;
  color: #319ca3;
}

.other_service .option-box dl dd:nth-child(2) {
  padding: 26px 0 26px 35px;
}

.other_service .option-box dl dd::before {
  content: '';
  background-size: contain;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.other_service .option-box dl dd:first-child::before {
  background: url(../img/top/icon-sankotsu01.svg)no-repeat;
  width: 38px;
  height: 28px;
}

.other_service .option-box dl dd:nth-child(2):before {
  background: url(../img/top/icon-sankotsu02.svg)no-repeat;
  width: 28px;
  height: 41px;
}

.other_service .option-box dl dd:nth-child(3):before {
  background: url(../img/top/icon-sankotsu03.svg)no-repeat;
  width: 35px;
  height: 43px;
}

.other_service .option-box dl dd:nth-child(4):before {
  background: url(../img/top/icon-sankotsu04.svg)no-repeat;
  width: 40px;
  height: 33px;
}

.btn-yellow {
  margin-top: 20px;
  position: relative;
  z-index: 10;
}

.option-btn {
  max-width: 305px;
  border-radius: 100px;
  margin: 0 auto 4px;
  background: #ffeda4;
  box-shadow: 0px 5px 1px #bdb07a;
}

.option-btn a {
  font-size: 19px;
  display: block;
  padding: 15px;
  position: relative;
  background-size: 20px;
  color: var(--site-primary);
  text-align: center;
  font-weight: bold;
  letter-spacing: 0.05em;
}

.option-btn a::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
}

.option-btn a::after {
  content: '';
  background: url(../img/common/icon_arrow_right_green.svg) center no-repeat;
  background-size: contain;
  position: absolute;
  width: 10px;
  height: 16px;
  top: 50%;
  right: 30px;
  transform: translate(0px, -50%);
}

.option-btn:hover {
  background: #bdb07a;
  box-shadow: 0px 5px 1px #887f5c;
  transition: all 0.5s;
}

.option-btn:hover a {
  color: #fff;
}

.option-btn:hover a::after {
  background: url(../img/common/icon_arrow_right_white.svg) center no-repeat;
}

.other_service .options-sub dl {
  border: 3px solid #efce7f;
  align-items: center;
  margin-top: 50px;
}

.other_service .options-sub li dl dt {
  background: #efce7f;
  width: 37%;
  text-align: center;
  padding: 20px 0;
  font-weight: bold;
}

.other_service .options-sub li dl dd {
  text-align: center;
  padding: 6px 0;
  margin: 0 auto;
  font-weight: bold;
}

.other_service .options-sub li .options_annotation {
  font-size: 14px;
  padding-left: 1em;
  text-indent: -1em;
  color: #999;
  margin-bottom: 10px;
}

.other_service .annotation_txt {
  margin-top: 10px;
}

.other_service .options-sub ul {
  gap: 20px;
  display: flex;
  flex-direction: wrap !important;
  margin-top: 30px;
}

.other_service .options-sub ul li {
  padding: 20px;
  width: 31.8%;
}

.other_service .options-sub ul li .option_title {
  font-size: 22px;
  margin-bottom: 20px;
  padding: 5px 0;
  line-height: 1.4;
}

.other_service .options-sub ul li img {
  width: 50%;
  float: left;
  margin-right: 20px;
}

.other_service .options-sub ul li .option_txt {
  margin-bottom: auto;
  padding: 10px 0;
}

.other_service .options-sub ul li .options_price {
  font-size: 28px;
  color: var(--site-keycolor);
  font-weight: bold;
  text-align: center;
  margin-bottom: 15px;
  line-height: 1.2;
}

.other_service .options-sub ul li .options_price span {
  color: #333;
  font-size: 16px;
}

.other_service .options-sub ul li .btn_border {
  margin: 0 auto;
  width: 100%;
}

@media only screen and (max-width: 1024px) {
  .other_service ul {
    gap: 20px;
  }

  .other_service li h5 {
    font-size: clamp(16px, 2vw, 24px);
  }
}

@media only screen and (max-width: 960px) {

  .other_service .option-box dl dd:first-child::before,
  .other_service .option-box dl dd:nth-child(2):before,
  .other_service .option-box dl dd:nth-child(3):before,
  .other_service .option-box dl dd:nth-child(4):before {
    position: static;
    display: block;
    transform: none;
    margin: 10px auto;
  }

  .other_service .option-box dl dd,
  .other_service .option-box dl dd:nth-child(2) {
    display: block;
    padding: 10px;
    line-height: 1.2;
    font-size: 18px;
  }

  .other_content .goods-btn a {
    font-size: clamp(14px, 2vw, 20px);
  }

  .other_content {
    padding: 20px;
  }

  .other_content .mgoods {
    width: 100%;
  }

  .other_content .option_txt {
    width: 70%;
  }

  .other_service .options ul {
    gap: 20px;
  }

  .other_service ul.options li h5 {
    font-size: 28px;
    padding: 3px 0 5px;
  }

  .other_content h6 {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .other_content p {
    margin-bottom: 10px;
  }

  .other_service .options-sub ul li {
    padding: 20px;
  }

  .other_service .options-sub ul li .option_title {
    line-height: 1.3;
  }
}

@media only screen and (max-width: 568px) {
  .other_service {
    margin-top: 40px;
  }

  .other_service .ttl {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .other_service .ttl .f34 {
    font-size: 20px;
  }

  .other_service ul {
    gap: 20px 0;
    flex-direction: column;
  }

  .other_service .options {
    margin: 20px -5.3vw;
  }

  .other_service .options li {
    border-radius: 0;
  }

  .other_service ul li {
    width: 100%;
    max-width: 100%;
  }

  .other_service ul li h5 {
    font-size: 20px;
  }

  .other_service li:first-child h5::before,
  .other_service li:nth-child(2) h5::before,
  .other_service li:nth-child(3) h5::before {
    width: 30px;
    height: 30px;
  }

  .other_service ul li p,
  .other_content dl dt,
  .other_content dl dt {
    font-size: 15px;
  }

  .other_service li:nth-child(2) dl dd {
    padding: 3px 0;
  }

  .other_content p {
    margin-top: 15px;
  }

  .other_service ul li:first-child .other_content dl,
  .other_service ul li:nth-child(3) .other_content .goods-btn {
    margin-top: auto;
  }

  .other_content,
  .reverse {
    flex-direction: column;
    padding: 20px;
  }

  .other_content .option_txt .center::before {
    margin-left: 15px;
  }

  .other_content {
    gap: 10px;
  }

  .other_content h5,
  .reverse h5 {
    grid-column: 1;
    grid-row: 1;
    margin-bottom: 20px;
  }

  .other_content img,
  .reverse img {
    grid-column: 1;
    grid-row: 2;
  }

  .other_content .option_txt,
  .reverse .option_txt {
    width: 100%;
  }

  .other_service .options ul {
    flex-direction: column;
  }

  .other_content .option_txt .center {
    font-size: 16px;
    text-align: left;
  }

  .other_content h6 {
    text-align: center;
    margin-bottom: 10px;
  }

  .other_content .option_txt .center {
    text-indent: -1em;
    padding-left: 1em;
  }

  .other_content .option-box {
    margin-bottom: 10px;
  }

  .other_content .option-box .center {
    text-align: center;
    text-indent: 0;
    padding-left: 0;
    padding: 5px 0;
  }

  .other_content .option-box dl {
    padding: 10px;
  }

  .other_content .goods-btn a {
    width: 100%;
  }

  .other_service .options ul li {
    grid-template-columns: auto auto;
    grid-template-rows: auto auto auto;
    gap: 0 10px;
  }

  .other_service .options ul li .option_title {
    grid-column: 2;
    grid-row: 1;
    margin-bottom: 0;
    padding: 17px 0;
    font-size: 20px;
  }

  .other_service .options ul li img {
    grid-column: 1;
    grid-row: 1;
  }

  .other_service .options ul li .option_txt {
    grid-column: 1 / 3;
    grid-row: 2;
  }

  .other_service .options ul li .btn_border {
    grid-column: 1 / 3;
    grid-row: 3;
  }

  .other_service .options-sub ul {
    margin: 20px -5.3vw;
  }

  .other_service .options-sub ul li {
    border-radius: 0;
    width: 100%;
  }

  .other_service .options-sub ul li .option_title {
    font-size: 20px;
  }

  .other_service .options-sub ul li .sp_fsize {
    font-size: 17px;
  }

  .other_service .options-sub dl {
    margin-top: 10px;
  }

  .other_service .options-sub dl {
    margin-top: 10px;
  }
}

/*========= 240801追加コンテンツ用（独自のサービス） ===============*/

.original_service {
  margin-top: 40px;
}

.original_service h5 {
  color: #fff;
  text-align: center;
  font-size: 26px;
  border-radius: 50px;
  margin-bottom: 40px;
  padding: 3px 0 5px;
}

.original_service ul {
  gap: 20px;
}

.original_service ul li {
  max-width: 490px;
  width: 100%;
}

.original_service ul li:first-child dl {
  margin-top: 45px;
}

.original_service ul li .bg_gray {
  padding: 20px 30px 30px 30px;
  min-height: 61%;
}

.original_service ul li h6 {
  font-size: 26px;
  margin-bottom: 10px;
}

.original_service ul li p.serif {
  font-size: 20px;
}

.original_service ul li p {
  margin-bottom: 15px;
}

.original_service .goudou {
  padding: 18px 30px;
  background: var(--site-primary);
  color: #fff;
}

.original_service .kobetsu {
  padding: 18px 30px;
  background: #31865a;
  color: #fff;
}

.original_service .premium {
  padding: 18px 30px;
  background: #b98a4a;
  color: #fff;
  line-height: 1.5;
}

.original_service dl {
  width: 97%;
  margin: 0 auto;
  border: 4px solid var(--site-primary);
}

.original_service dl dt {
  color: #fff;
  background: var(--site-primary);
  width: 50%;
  padding: 10px;
}

.original_service dl dd {
  width: 50%;
  padding: 10px;
}

.original_service .attention_box_gray {
  border: 4px solid #fbeff1;
  padding: 25px 40px;
  margin-top: 40px;
}

@media only screen and (max-width: 1024px) {
  .original_service ul li p.serif {
    font-size: 18px;
  }

  .original_service .goudou {
    padding: 18px 15px;
  }

  .original_service .kobetsu {
    padding: 18px 15px;
  }

  .original_service .premium {
    padding: 6px 10px;
  }
}

@media only screen and (max-width: 960px) {
  .original_service {
    margin-top: 30px;
  }

  .original_service h5 {
    margin-bottom: 20px;
  }

  .original_service dl {
    width: 100%;
  }

  .original_service .goudou,
  .original_service .kobetsu {
    padding: 15px 10px;
  }

  .original_service .premium {
    padding: 3px 10px;
  }

  .original_service .attention_box_gray {
    margin-top: 30px;
  }
}

@media only screen and (max-width: 568px) {
  .original_service h5 {
    font-size: 20px;
    border-radius: 10px;
  }

  .original_service ul {
    flex-direction: column;
  }

  .original_service ul li {
    width: 100%;
    max-width: 100%;
  }

  .original_service ul li h6 {
    font-size: 20px;
  }

  .original_service ul li p.serif {
    font-size: 16px;
  }

  .original_service ul li .bg_gray {
    padding: 15px 15px 20px;
  }

  .original_service .premium {
    padding: 15px 10px;
  }

  .original_service ul li p.serif {
    margin-bottom: 10px;
  }

  .original_service .attention_box_gray {
    margin-top: 20px;
  }

  .original_service ul li:first-child dl {
    margin-top: auto;
  }
}


/*-----240910-------*/

.plan-mv .goudou-mv h5 {
  background: #28979f;
  padding: 5px 8px;
}

.plan-mv .single-mv h5 {
  background: #31865a;
  padding: 5px 8px;
}

.plan-mv .premium-mv h5 {
  background: #b98a4a;
  padding: 5px 8px;
}

.plan-mv h4 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 12px;
}

.plan-mv h4::before {
  content: '';
  background: url(../img/common/icon_youtube03.svg)no-repeat;
  width: 42px;
  height: 42px;
  display: block;
}

.movie_box.plan-mv ul {
  padding: 30px;
}

.movie_box.plan-mv ul li {
  width: 32%;
}

@media only screen and (max-width: 568px) {
  .movie_box.plan-mv ul li {
    width: 100%;
  }

  .movie_box.plan-mv ul {
    padding: 20px;
  }
}

/*--羊毛フェルト--*/
.goods_contents .new {
  background: #fffebf;
  margin-top: 30px;
}

.goods_contents .new .md_inner_space {
  padding: 30px;
  gap: 20px;
}

.goods_contents .new .felt .bg_gold {
  background: #ab8a5b;
  border-radius: 50px;
  font-size: 24px;
  margin-bottom: 10px;
}

.goods_contents .new .felt h6 {
  font-size: 28px;
}

.goods_contents .new-neme {
  position: relative;
  padding-left: 100px;
  margin-bottom: 20px;
}

.goods_contents .new-neme p {
  font-size: 40px;
  line-height: 1.3;
}

.goods_contents .new-neme .btn_wrapper {
  margin-top: 10px;
}

.goods_contents .new-neme .btn_wrapper .btn {
  max-width: 246px;
  background: var(--site-keycolor);
  box-shadow: 0px 3px 1px #bd5d6a;
}

.goods_contents .new-neme .btn_wrapper .btn:hover {
  background: #dd7785;
  box-shadow: 0px 3px 1px #c06874;
  transition: all 0.5s;
}

.goods_contents .new-neme .btn_wrapper .btn a {
  font-size: 18px;
  padding: 7px 0 5px;
}

.goods_contents .new-neme .btn_wrapper .btn a::after {
  right: 15px;
}

.goods_contents .new-neme::before {
  content: '';
  background: url(../img/top/icon_pic.svg)no-repeat;
  width: 91px;
  height: 87px;
  background-size: contain;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}

.goods_contents .new .felt {
  max-width: 360px;
}

.goods_contents .new .felt .bg_white {
  padding: 10px 15px;
}

.goods_contents .new .felt p.annotation {
  font-size: 15px;
  color: #999;
  text-indent: -1em;
  padding-left: 1em;
}

.goods_list {
  margin-top: 30px;
}

@media only screen and (max-width: 960px) {
  .goods_contents .new .felt {
    width: 100%;
  }

  .goods_contents .new .felt .bg_gold {
    font-size: 20px;
  }

  .goods_contents .new .felt h6 {
    font-size: 23px;
  }

  .goods_contents .new-neme::before {
    width: 71px;
    height: 67px;
  }

  .goods_contents .new-neme {
    padding-left: 85px;
  }

  .goods_contents .new-neme p {
    font-size: 32px;
  }

  .goods_contents .new-neme .btn_wrapper .btn a {
    font-size: 15px;
  }

  .goods_contents .new .felt p.annotation {
    font-size: 13px;
  }
}

@media only screen and (max-width: 568px) {
  .goods_contents .md_inner_space {
    padding: 30px 0;
  }

  .goods_contents .new .md_inner_space {
    flex-direction: column;
    padding: 20px 15px;
  }

  .goods_contents .new {
    margin-top: 20px;
  }
}

/*---20250124---*/
/* グッズ一覧 */
.goods_list {
  gap: 20px 20px;
  margin-top: 30px;
}

.goods_list li {
  width: 32%;
  max-width: 326px;
  display: flex;
  flex-direction: column;
}

.goods_list li.new {
  position: relative;
  border: 2px solid #b98a4a;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  flex-direction: row;
}

.goods_list li.new .item_info {
  padding: 25px;
}

.goods_list li.new .item_info h5 {
  font-size: 20px;
  border-radius: 50px;
  padding: 10px 0;
  color: #fff;
  background: url(../img/common/bg-brown_dot.png);
  line-height: 1.8;
  margin-bottom: 10px;
}

.goods_list li.new .item_info h5 span {
  background: #fff;
  padding: 3px 20px;
  border-radius: 50px;
  color: #b98a4a;
  ;
  font-size: 16px;
}

.goods_list li.new::after {
  content: '';
  background: url(../img/top/goods_badge_new.svg) no-repeat;
  width: 64px;
  height: 78px;
  position: absolute;
  left: 10px;
  top: 0;
}

.goods_list li.new picture {
  width: 35%;
}


.goods_list li.popular {
  position: relative;
}

.goods_list li.popular::after {
  content: '';
  background: url(../img/top/goods_badge_popular.svg) no-repeat;
  width: 64px;
  height: 78px;
  position: absolute;
  left: 10px;
  top: 0;
}

.goods_list li.few {
  position: relative;
}

.goods_list li.few::after {
  content: '';
  background: url(../img/top/goods_badge.svg) no-repeat;
  width: 64px;
  height: 78px;
  position: absolute;
  left: 10px;
  top: 0;
}

.goods_list .item_info {
  text-align: center;
  padding: 25px 0;
  display: flex;
  flex-direction: column;
  flex: 2;
}

.goods_list .item_info>span {
  /* display: block; */
}

.goods_list .item_name {
  font-size: 20px;
  line-height: 1.45;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 2;
}

.goods_list .num {
  font-size: 27px;
}

.goods_list .yen {
  font-size: 20px;
}

.goods_list .before_txt {
  font-size: 20px;
}

.goods_contents h5 {
  font-size: 27px;
  margin-bottom: 20px;
}

@media only screen and (max-width: 960px) {
  .goods_list li {
    width: 31%;
  }
}

@media only screen and (max-width: 568px) {
  .goods_contents .md_inner_space {
    padding: 30px 0;
  }

  .goods_list {
    margin-top: 20px;
  }

  .goods_list li {
    width: 47%;
  }

  .goods_list li.popular::after,
  .goods_list li.few::after {
    width: 40px;
  }
}

/*-------------------------------------------------
ペット葬儀士在籍[動画項目部分]
-------------------------------------------------*/

.reason03_content.expert .staff_introduction {
  margin-top: 40px;
}

.reason03_content.expert .staff_introduction .photo::after,
.staff_introduction .staff_youtube .staff .photo::after {
  content: none;
}

.staff_introduction h5 {
  font-size: 36px;
  line-height: 1.3;
  margin-bottom: 30px;
}

.staff_introduction h5 .small {
  font-size: 24px;
}

.staff_introduction h5 .under_yellow {
  background: linear-gradient(transparent 70%, #fcff10 70%);
}

.staff_introduction p {
  margin: 30px 0;
}

.staff_introduction p .txt_keycolor {
  font-weight: bold;
}

.staff_introduction .staff_youtube {
  background: var(--site-primary);
  gap: 1.3vw;
  align-items: center;
}

.staff_introduction .staff_youtube .txt {
  background: #fff;
  margin: 20px 0;
  padding: 20px 0;
}

.staff_introduction .staff_youtube .txt h6 {
  font-size: 26px;
  line-height: 1.3;
  margin-bottom: 20px;
}

.staff_introduction .staff_youtube .txt h6 .txt_keycolor {
  font-size: 32px;
}

.staff_introduction .movie_btn {
  display: block;
  text-align: center;
}

.staff_introduction .movie_btn a img {
  width: 100%;
  max-width: 200px;
}

@media only screen and (max-width: 1024px) {
  .staff_introduction .staff_youtube {
    gap: 1vw;
  }

  .staff_introduction .staff_youtube .txt h6 {
    font-size: 24px;
  }

  .staff_introduction .staff_youtube .txt h6 .txt_keycolor {
    font-size: 28px;
  }

  .staff_introduction .staff_youtube .txt {
    margin: 10px 0;
    padding: 15px 0;
  }
}

@media only screen and (max-width: 960px) {
  .reason03_content.expert .staff_introduction {
    margin-top: 30px;
  }

  .staff_introduction h5 {
    font-size: 28px;
  }

  .staff_introduction h5 .small {
    font-size: 20px;
  }

  .staff_introduction .staff_youtube .txt {
    margin: 7px 0;
  }

  .staff_introduction .staff_youtube .txt h6 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .staff_introduction .staff_youtube .txt h6 .txt_keycolor {
    font-size: 24px;
  }

  .staff_introduction .movie_btn a img {
    max-width: 140px;
  }

  .staff_introduction .staff_youtube {
    gap: 2vw;
  }
}

@media only screen and (max-width: 568px) {
  .reason03_content.expert .staff_introduction {
    margin-top: 10px;
  }

  .staff_introduction h5 {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .staff_introduction h5 .small {
    font-size: 18px;
  }

  .staff_introduction .sp_full {
    border-radius: 0;
    margin: 0 -5.3vw;
    width: 100vw;
  }

  .staff_introduction p {
    margin: 20px 0;
  }

  .staff_introduction .staff_youtube .txt {
    margin: 7px 0px 15px;
    width: 90%;
  }

  .staff_introduction .staff_youtube .txt h6 .txt_keycolor {
    font-size: 22px;
  }
}

/*--ペットちゃんのご遺骨の供養方法動画--*/
.service_item_movie {
  margin-top: 40px;
}

.service_item_movie h4 {
  border-radius: 10px 10px 0 0;
  overflow: hidden;
  font-size: 30px;
  padding: 15px 0;
}

.service_item_thumbnail {
  background: #e9f4f5;
  border: 4px solid #edb5bd;
  border-top: none;
  border-radius: 0 0 10px 10px;
  padding: 40px;
}

.service_item_thumbnail a {
  max-width: 442px;
  margin: 0 auto;
  display: block;
}

@media only screen and (max-width: 1024px) {
  .service_item_movie h4 {
    font-size: 28px;
  }
}

@media only screen and (max-width: 960px) {
  .service_item_movie h4 {
    font-size: 24px;
  }
}

@media only screen and (max-width: 568px) {
  .service_item_movie {
    margin: 20px -5.3vw;
  }

  .service_item_movie h4 {
    font-size: 24px;
    border-radius: 0;
  }

  .service_item_thumbnail {
    border-radius: 0;
    padding: 20px;
    border-left: none;
    border-right: none;
  }
}

/*===============================================
 *	インスタグラム slider
===============================================*/
.voice-slider {
  margin: 70px 0 20px;
}

.voice-slider h5 {
  font-size: 24px;
  text-align: center;
  margin-bottom: 30px;
}

.voice-slider>p {
  margin-bottom: 30px;
}

.voice-slider h5 span {
  position: relative;
}

.voice-slider h5 span::before {
  content: '';
  position: absolute;
  background: url(../img/top/icon-instagram.png)no-repeat;
  width: 70px;
  height: 71px;
  left: -85px;
  top: -14px;
}

.instagram-slider {
  width: 100%;
  margin: 0 auto;
  position: relative;
}

.instagram-slider .slider-img {
  height: auto;
  opacity: .3;
  transform: scale(.9);
  transition: opacity .5s, transform .5s;
  width: 100%;
}

.instagram-slider .slider-img img {
  margin-bottom: 20px;
}

/* 中央のスライド */
.instagram-slider .slick-center {
  opacity: 1;
  transform: scale(1);
  max-width: 1120px;
}

.instagram-slider .slide-arrow {
  width: 40px;
  height: 40px;
}

.instagram-slider button.arrow-common {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  background-size: contain;
  background-repeat: no-repeat;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 5;
}


.instagram-slider button.arrow-next {
  background: url(../img/top/slide-btn-r.svg)no-repeat !important;
  background-size: contain !important;
  position: absolute;
  top: 45%;
  right: 29%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  z-index: 10;
}

.instagram-slider button.arrow-prev {
  background: url(../img/top/slide-btn-l.svg)no-repeat !important;
  background-size: contain !important;
  position: absolute;
  top: 45%;
  left: 29%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  z-index: 10;
}

.instagram-slider button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  padding: 0;
  border: none;
  background-color: transparent;
}

.instagram-slider button:focus {
  outline: none;
}

.instagram-slider .slick-dots li.slick-active button::before {
  color: #da6272;
}

.slick-dots {
  bottom: -40px !important;
}

.instagram-btn {
  margin-top: 80px;
}

.instagram-btn .btn {
  background: #fff9df;
  box-shadow: 0px 5px 1px #c5bd41;
}

.instagram-btn .btn:hover {
  background: #fff6cc;
  box-shadow: 0px 5px 1px #ada535;
  transition: all 0.5s;
}

.instagram-btn .btn a {
  color: #43649f;
}

.instagram-btn .btn a::after {
  content: '';
  background: url(../img/common/icon_arrow_right_blue.svg) center no-repeat;
  background-size: contain;
  position: absolute;
  width: 10px;
  height: 16px;
  top: 50%;
  right: 30px;
  transform: translate(0px, -50%);
}

.reason03_content.enquete .pb-10 {
  padding: 50px 50px 10px 50px;
}

/* インスタ画像拡大時の左右ナビ非表示 */
.lb-nav {
  display: none !important;
}



@media only screen and (max-width: 960px) {
  .instagram-slider button.arrow-next {
    right: 5%;
  }

  .instagram-slider button.arrow-prev {
    left: 5%;
  }

}

@media only screen and (max-width: 568px) {
  .voice-slider h5 {
    font-size: 20px;
    text-align: left;
    margin-bottom: 20px;
  }

  .voice-slider>p {
    text-align: left;
  }

  .voice-slider h5 span::before {
    left: 0;
    width: 50px;
    height: 51px;
    background-size: contain;
    top: 25px;
  }

  .voice-slider h5 span {
    padding-left: 60px;
    display: block;
  }

  .instagram-slider .slider-img {
    opacity: .5;
    transform: scale(.9);
  }

  .instagram-slider .slider-img p {
    font-size: 17px;
  }

  .instagram-slider button.arrow-common {
    width: 30px;
  }

  .instagram-slider button.arrow-next {
    right: -2%;
  }

  .instagram-slider button.arrow-prev {
    left: -2%;
  }

  .reason03_content.enquete .pb-10 {
    padding: 35px 5.3vw 1px;
  }

  .instagram-slider .slick-center {
    opacity: 1;
    transform: scale(1);
    max-width: 330px;
  }

  .instagram-slider .slick-list {
    margin: 0 -5.7vw;
  }

  .instagram-btn {
    margin-top: 60px;
  }

  .instagram-btn .btn a {
    font-size: 15px;
  }

  .instagram-btn .btn a::after {
    width: 8px;
    height: 13px;
    right: 16px;
    top: 52%;
  }

}

/*-------------------------------
種別一覧
--------------------------------*/
.pet_list li p {
  font-size: 27px;
  line-height: 1.0;
}

.pet_list li p.size_small {
  font-size: 20px;
  line-height: 1;
}

.pet_list li p.size_more_small {
  font-size: 17px;
  line-height: 1.2;
}

.pet_list li span {
  font-size: 15px;
  color: #e9a8b0;
}

.pet_list li span.size_small {
  font-size: 13px;
  line-height: 1.5;
  display: inline-block;
}

.pet_list li span.size_small {
  font-size: 13px;
  margin-top: 5px;
}

#readMoreBlock {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  gap: 35px;
}

.readMoreInner {
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}

.readMoreContainer {
  position: relative;
  height: auto;
  max-height: 400px;
  overflow: hidden;
  transition: max-height 0.6s;
  padding-bottom: 10px;
}

.readMoreInner .readMoreContainer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  transition: 1s;
  background: linear-gradient(to bottom, transparent 60%, #fff 100%);
  pointer-events: none;
}

.readMoreInner02 .readMoreContainer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  transition: 1s;
  background: linear-gradient(to bottom, transparent 40%, #fff 100%);
  pointer-events: none;
}

.readMoreContainer.show:after {
  z-index: -1;
  opacity: 0;
}

.readMoreBtn {
  display: block;
  padding: 15px;
  border: 0;
  color: #ffffff;
  background-color: #db6777;
  cursor: pointer;
  box-shadow: 0px 5px 1px #af525f;
  max-width: 400px;
  width: 100%;
  border-radius: 100px;
  margin: 20px auto 40px;
  font-weight: bold;
  font-size: 20px;
  border-radius: 50px;
  position: relative;
}

.readMoreBtn span.open::after {
  content: '▼';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
}

.readMoreBtn span.close::after {
  content: '▲';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
}

.readMoreContainer p:last-child {
  margin-bottom: 10px;
}

@media only screen and (max-width: 960px) {
  .pet-link ul li p.sm_font {
    font-size: 18px;
  }
}

@media only screen and (max-width: 568px) {
  .readMoreContainer {
    max-height: 300px;
  }

  .readMoreBtn {
    width: 80%;
    font-size: 16px;
    margin: 20px auto
  }

  #readMoreBlock02 .btn a {
    font-size: 15px;
  }
}

/*250414*/
.reason02_content .grid_box {
  display: grid;
  grid-template-columns: 48% 48%;
  grid-template-rows: auto auto auto auto;
  gap: 0 4%;
}

.reason02_content .grid_box h4 {
  grid-column: 1;
  grid-row: 1;
  font-size: 32px;
  line-height: 1.3;
  text-align: center;
  margin-bottom: 10px;
}

.reason02_content .grid_box h4 span {
  font-size: 40px;
}

.reason02_content .grid_box img {
  grid-column: 2;
  grid-row: 1 / 4;
}

.reason02_content .grid_box p {
  grid-column: 1;
  grid-row: 2;
  margin-bottom: 20px;
}

.reason02_content .grid_box .car-content {
  grid-column: 1;
  grid-row: 3;
}

.reason02_content .grid_box .car-sale {
  grid-column: 1 / 3;
  grid-row: 4;
}

.reason02_content .grid_box .car-content h5 {
  font-size: 20px;
  margin-bottom: 10px;
}

.reason02_content .grid_box .car-sale .btn {
  background: #1b9199;
  box-shadow: 0px 5px 1px #508089;
}

.compare .bg_arrow {
  background: #ffeda4;
  height: calc(60px / 2);
  width: 200px;
  height: 83px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  text-align: center;
  margin: 30px auto;
}

.compare .bg_arrow p {
  font-size: 32px;
}

.compare .bg_gold h4 {
  text-align: center;
  font-size: 30px;
  padding: 20px 0 25px;
  margin-bottom: 30px;
}

.compare .bg_keycolor {
  margin-top: 50px;
}

.compare .bg_keycolor h4 {
  font-size: 36px;
  padding: 20px 0 25px;
  line-height: 1.5;
  margin-bottom: 50px;
}

.voice_title01,
.voice_title02 {
  position: relative;
  text-align: center;
  margin-bottom: 20px;
}

.voice_title01::before {
  content: "";
  width: 100%;
  height: 1px;
  background: var(--site-primary);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.voice_title02::before {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  background: var(--site-keycolor);
}

.voice_title01 span,
.voice_title02 span {
  background: #fff;
  z-index: 1;
  position: relative;
  padding: 0 15px;
  font-size: 30px;
}

/*===============================================
 *	POPUP LINE 2025/05/20 add
===============================================*/
.popup_line {
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  z-index: 999;
}

.popup-banner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "GenEiMGothic";
  max-width: 670px;
  width: 100%;
}

.popup_medal {
  width: 84%;
  margin: -50px auto 0;
  display: block;
}

.popup_btn {
  width: 90%;
  margin: 20px auto 30px;
  display: block;
}

.popup_btn a:hover {
  opacity: .8;
}

.popup-close {
  display: block;
  position: absolute;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #000;
  right: -40px;
  top: -40px;
  cursor: pointer;
}

.popup-close:hover {
  opacity: .8;
}

.popup-close::before,
.popup-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4px;
  height: 40px;
  background: #fff;
}

.popup-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.popup-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.popup_line.active {
  display: block;
}

.popup_line.hidden {
  display: none;
}

@media only screen and (max-width: 568px) {
  .popup-banner {
    width: 90%;
  }

  .popup_medal {
    margin: -20px auto 0;
  }

  .popup_btn {
    font-size: 20px;
    margin: 20px auto;
  }

  .popup-close {
    width: 30px;
    height: 30px;
    right: -15px;
    top: -15px;
  }

  .popup-close::before,
  .popup-close::after {
    width: 3px;
    height: 20px;
  }
}

/*----------ligtbox02-------------*/
.lum-lightbox-inner img {
  max-width: 400px !important;
}

.lum-lightbox {
  z-index: 1000;
}

.lum-gallery-button {
  display: none !important;
}

@media only screen and (max-width: 568px) {
  .lum-lightbox {
    z-index: 99999;
  }
}