@charset "UTF-8";

/* CSS Document */
/*===============================================
 *	ブラウザリセット
===============================================*/
@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;
}

@font-face {
  font-family: 'MPLUSRounded1c';
  font-style: bold;
  font-weight: 700;
  src: url('../fonts/MPLUSRounded1c-Bold.woff2') format('woff2'), url('../fonts/MPLUSRounded1c-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;
}

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;
  width: 100%;
  height: 375px;
}

picture {}

figure {
  margin: 0;
}

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

p {
  line-height: 1.5;
}

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;
}

main {
  margin-bottom: 50px;
}

@media only screen and (max-width: 568px) {
  main {
    margin-bottom: 20px;
  }
}

/*====================== 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;
}

.js-evenly {
  justify-content: space-evenly;
}

.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;
}

.mt-10 {
  margin-top: 10px;
}

.f-18 {
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: bold;
}


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

 *	common

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

em {
  font-weight: bold;
}

.sp {
  display: none;
}

.inner {
  max-width: 94%;
  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;
  font-weight: bold;
}

.m_plus {
  font-family: 'MPLUSRounded1c';
  font-weight: bold;
}

.nomal {
  font-family: 'Noto Sans JP', serif;
  font-weight: bold;
}

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

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

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

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

.txt_green {
  color: #28979f;
}

.txt_white {
  color: #fff;
}

.txt_color {
  color: #ff8f8f;
}

.txt_glay {
  color: #989898;
}

.txt_yellow {
  color: #efff86;
}

.txt_orenge {
  color: #ea8548;
}

.bg_color {
  background: var(--site-main-color);
}

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

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

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

.bg_quaternary {
  background: var(--site-quaternary);
}

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

.bg_orenge {
  background: #ea8548;
}

.bg_pink {
  background: #fff4f4;
}

.bg_gold {
  background: var(--site-tertiary);
}

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

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

.bg_lightblue {
  background: #dff4f0;
}

.bg_white {
  background-color: #fff;
}

.bg_gray {
  background-color: #f5f5f5;
}

.lg_inner_space {
  padding: 70px 0;
}

.md_inner_space {
  padding: 30px 40px 40px;
  margin-bottom: 50px;
}

.sm_inner_space {
  margin: 40px 0;
}

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

.md_radius_photo,
.md_radius_big {
  border-radius: 30px;
  overflow: hidden;
}

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

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

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

.annotation_sm_txt {
  color: #828282;
  font-size: 14px;
  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;
}

.icon::before {
  content: '';
  background-size: contain;
  display: inline-block;
  margin-right: 10px;
  vertical-align: text-top;
}

.marker_pink {
  background: linear-gradient(transparent 70%, #ffdcea 50%);
}

.marker_yellow {
  background: linear-gradient(transparent 70%, #f9f7b3 50%);
}

.bg_radius {
  border-radius: 50px;
}

#wrap {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  align-items: flex-start
}

@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;*/
    padding: 50px 0;
  }
}

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

  .lg_inner_space {
    padding: 4vw 0;
  }

  .md_inner_space {
    padding: 4vw 4vw;
  }

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

@media only screen and (max-width: 768px) {
  #wrap {
    display: block;
    width: 100%;
  }
}

@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;
  }

  .lg_inner_space {
    padding: 25px 0 30px;
  }

  .md_radius_photo {
    border-radius: 20px;
    overflow: hidden;
  }

  .md_inner_space {
    padding: 30px 5.3vw;
  }

  .sp {
    display: block;
  }

  .sp_side_margin {
    margin: 0 -5.3vw;
  }

  .md_under_radius {
    border-radius: 0;
  }

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

  #wrap {
    overflow-x: hidden;
  }

  .sm_inner_space {
    margin: 20px 0;
  }
}

/*===============================================
 *	サイト使用カラー
===============================================*/
:root {
  --site-primary: #f9dcdc;
  --site-secondary: #ebffde;
  --site-tertiary: #ecd6c6;
  --site-quaternary: #ffe5ad;

  --site-primary-keycolor: #66b7bc;
  --site-secondary-keycolor: #da6272;
  --site-tertiary-keycolor: #a88c76;
  --site-quaternary-keycolor: #c89b31;
  --site-main-color: #ff8f8f;
}

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

  .br-tb {
    display: none;
  }

  .br-sp {
    display: none;
  }
}

@media screen and (min-width:481px) and (max-width: 1024px) {
  .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: 20px 0 -40px;
}

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

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

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

.breadcrumbs a {
  color: var(--site-secondary-keycolor);
  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: 350px;
  border-radius: 100px;
  margin: 0 auto;
  background: var(--site-main-color);
}

.btn a {
  font-size: 18px;
  display: block;
  padding: 30px 0;
  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: 36px;
  height: 36px;
  top: 50%;
  right: 20px;
  transform: translate(0px, -50%);
}

.btn:hover {
  background: #ffb8b8;
  transition: all 0.5s;
}

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

.btn_border {
  margin: 30px auto 20px;
  max-width: 350px;
}

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

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

.btn_border a:hover {
  background: var(--site-main-color);
  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: 1024px) {
  .btn a {
    padding: 20px 0;
  }
}

@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;
  }

  .btn_border a {
    margin-left: 0px;
  }

  .btn_border a::after {
    width: 27px;
    height: 27px;
  }
}

@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: 30px;
    height: 30px;
    right: 16px;
    top: 52%;
  }

  .btn_border {
    margin: 20px auto;
    width: 85%;
  }

  .btn_border a {
    margin: 20px auto;
    padding: 8px 5% 10px;
    width: 100%;
  }

  .btn_border a::after {
    width: 25px;
    height: 25px;
  }
}

/*---------------------------------------
*title
-----------------------------------------*/
.top_title {
  position: relative;
  top: 0%;
  left: 50%;
  transform: translateX(-50%);
  letter-spacing: 0;
  padding: 8px 50px;
  outline: 3px solid #ff8f8f;
  font-size: clamp(32px, 2.5vw, 48px);
  color: #333;
  font-weight: 700;
  display: inline-block;
  box-sizing: border-box;
  text-align: center;
  margin: 10px 0 70px;
  margin-inline: auto;
  text-shadow: rgb(255, 255, 255) 3px 0px 0px, rgb(255, 255, 255) 2.83487px 0.981584px 0px, rgb(255, 255, 255) 2.35766px 1.85511px 0px, rgb(255, 255, 255) 1.62091px 2.52441px 0px, rgb(255, 255, 255) 0.705713px 2.91581px 0px, rgb(255, 255, 255) -0.287171px 2.98622px 0px, rgb(255, 255, 255) -1.24844px 2.72789px 0px, rgb(255, 255, 255) -2.07227px 2.16926px 0px, rgb(255, 255, 255) -2.66798px 1.37182px 0px, rgb(255, 255, 255) -2.96998px 0.42336px 0px, rgb(255, 255, 255) -2.94502px -0.571704px 0px, rgb(255, 255, 255) -2.59586px -1.50383px 0px, rgb(255, 255, 255) -1.96093px -2.27041px 0px, rgb(255, 255, 255) -1.11013px -2.78704px 0px, rgb(255, 255, 255) -0.137119px -2.99686px 0px, rgb(255, 255, 255) 0.850987px -2.87677px 0px, rgb(255, 255, 255) 1.74541px -2.43999px 0px, rgb(255, 255, 255) 2.44769px -1.73459px 0px, rgb(255, 255, 255) 2.88051px -0.838247px 0px;
}

.top_title::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  width: 100%;
  height: 100%;
  background: #ffd2d2;
  z-index: -999;
  padding: 5px;
}

.top_title_sub {
  text-align: center;
  font-size: clamp(18px, 1.8vw, 28px);
}

.top_title_sub span {
  position: relative;
  padding: 0 40px;
}

.top_title_sub span::before,
.top_title_sub span::after {
  content: '';
  background-size: contain;
  width: 14px;
  height: 33px;
  position: absolute;
}

.top_title_sub span::before {
  background: url(../img/common/sub_left.png) no-repeat;
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
}

.top_title_sub span::after {
  background: url(../img/common/sub_right.png) no-repeat;
  top: 50%;
  right: 0%;
  transform: translateY(-50%);
}

.sec_title {
  border: 2px solid var(--site-main-color);
  border-radius: 10px;
  box-shadow: 10px 10px 0px var(--site-main-color);
  text-align: center;
  font-size: clamp(32px, 3vw, 48px);
  font-weight: bold;
  padding: 5px 0;
  margin-bottom: 50px;
}

.sub-title {
  font-size: clamp(32px, 2.3vw, 48px);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.sub-title span {
  z-index: 1;
  position: relative;
  padding: 0 20px;
  display: inline-block;
}

.sub-title::before {
  content: "";
  width: 100%;
  height: 15px;
  background: repeating-linear-gradient(-45deg, #72bdc1 0, #72bdc1 1px, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0) 50%);
  background-size: 8px 8px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.sub-title::before {
  margin-right: 30px;
}

.top-sub-title {
  font-size: clamp(28px, 2vw, 38px);
  position: relative;
  display: inline-block;
  padding: 0 80px;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 30px;
}

.top-sub-title:before,
.top-sub-title:after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 45px;
  height: 2px;
  border-top: solid 2px black;
  border-bottom: solid 2px black;
}

.top-sub-title:before {
  left: 0;
}

.top-sub-title:after {
  right: 0;
}

.top-sub-title span em {
  font-size: clamp(40px, 3.5vw, 56px);
}

@media only screen and (max-width: 1024px) {
  .top_title {
    font-size: clamp(24px, 2.5vw, 32px);
    margin-bottom: 50px;
  }

  .top-sub-title {
    font-size: 24px;
  }
}


@media only screen and (max-width: 960px) {
  .sec_title {
    margin-bottom: 30px;
  }

  .sub-title {
    font-size: clamp(24px, 1.8vw, 32px);
  }
}

@media only screen and (max-width: 568px) {
  .top_title {
    font-size: 24px;
    padding: 8px 24px;
    width: 100%;
    margin-bottom: 20px;
  }

  .top_title::before {
    top: 5px;
    left: 5px;
    width: 98%;
    height: 96%;
  }

  .top-sub-title {
    font-size: 22px;
    padding: 0 60px;
    margin-bottom: 20px;
  }

  .top-sub-title span em {
    font-size: 32px;
  }

  .top-sub-title:before,
  .top-sub-title:after {
    content: '';
    position: absolute;
    top: 50%;
    display: inline-block;
    width: 45px;
    height: 2px;
    border-top: solid 2px black;
    border-bottom: solid 2px black;
  }

  .top-sub-title:before {
    left: 0;
  }

  .top-sub-title:after {
    right: 0;
  }

  .top-sub-title span em {
    font-size: clamp(40px, 3.5vw, 56px);
  }

  .top_title_sub span {
    width: 100%;
    display: block;
    padding: 0 35px;
  }

  .sec_title {
    margin: 20px -5.3vw;
    font-size: 28px;
    box-shadow: 0px 9px 0px var(--site-main-color);
    border-radius: 0;
    border-left: none;
    border-right: none;
  }

  .sub-title {
    font-size: 24px;
    letter-spacing: 0;
    margin: 0 -5.7vw 20px;
    text-align: center;
  }
}

/*--------------------------------------
*h1セクション
----------------------------------------*/
.hd-ttl {
  font-size: 14px;
  max-width: 100%;
  margin: 0 auto;
  background: var(--site-tertiary);
}

.hd-ttl h1 {
  padding-left: 20px;
  font-size: 28px;
  text-align: center;
}

@media only screen and (max-width: 1024px) {
  .hd-ttl {
    font-size: 12px;
  }
}

@media only screen and (max-width: 768px) {
  .hd-ttl {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    padding-bottom: 2px;
  }

  .hd-ttl h1 {
    padding-left: 5px;
    font-size: 20px;
  }
}

@media only screen and (max-width: 568px) {
  .hd-ttl h1 {
    font-size: 10px;
  }
}

/*--------------------------------------
*header
----------------------------------------*/

header {
  position: sticky;
  max-width: 25vw;
  top: 0;
  left: 0;
  z-index: 10;
  padding: 1.2vw 2vw;
  margin-right: auto;
}

.header-logo {
  max-width: 398px;
  height: auto;
  margin-bottom: 35px;
}


.nav-wrap ul li {
  font-weight: bold;
  line-height: 1.6;
  max-width: 230px;
  position: relative;
  font-size: clamp(14px, 1.5vw, 18px);
}

.nav-wrap ul li a {
  max-width: 230px;
}

.underline {
  display: block;
  padding-bottom: 4px;
  position: relative;
}

.underline::after {
  background: #dd7280;
  bottom: 0;
  content: '';
  display: block;
  height: 3px;
  left: 0;
  position: absolute;
  transition: .5s all;
  width: 0;
}

.underline:hover::after {
  width: 100%;
}



.nav-wrap ul li.has-child::before {
  content: '';
  position: absolute;
  right: 20px;
  top: 10px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #999;
  border-right: 2px solid #999;
  transform: rotate(45deg);
}


/*== 2階層目の設定 */

/*下の階層を持っているulの指定*/
.nav-wrap li.has-child ul {
  /*絶対配置で位置を指定*/
  position: absolute;
  left: 105%;
  top: -25px;
  z-index: 4;
  background: #f9dcdcd2;
  width: 19vw;
  visibility: hidden;
  opacity: 0;
  transition: all .3s;
  padding: 20px;
  border-radius: 10px;
  display: block;
  font-size: clamp(14px, 1.5vw, 18px);
}

/*hoverしたら表示*/
.nav-wrap li.has-child:hover>ul,
.nav-wrap li.has-child ul li:hover>ul,
.nav-wrap li.has-child:active>ul,
.nav-wrap li.has-child ul li:active>ul {
  visibility: visible;
  opacity: 1;
}

.nav-wrap li.has-child ul li {
  max-width: 100%;
  margin-bottom: 10px;
}

/*ナビゲーションaタグの形状*/
.nav-wrap li.has-child ul li a {
  color: #333;
  max-width: 100%;
  max-width: 100%;
  width: 100%;
  display: block;
}

.nav-wrap li.has-child ul li:last-child>a {
  border-bottom: none;
}

.nav-wrap li.has-child ul li a:hover::after,
.nav-wrap li.has-child ul li a:active::after {
  content: '';
  background: #28979f;
  height: 5px;
  width: 100%;
  position: absolute;
  bottom: -5px;
  left: 0;
}

.nav_goudou span::before {
  content: '';
  background: url(../img/common/icon-goudou.svg)no-repeat;
  background-size: contain;
  width: 50px;
  height: 30px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}

.nav_kobetsu span::before {
  content: '';
  background: url(../img/common/icon-kobetsu.svg)no-repeat;
  background-size: contain;
  width: 30px;
  height: 40px;
  display: inline-block;
  vertical-align: bottom;
  margin-right: 21px;
  margin-left: 9px;
}

.nav_premium span::before {
  content: '';
  background: url(../img/common/icon-premium.svg)no-repeat;
  background-size: contain;
  width: 30px;
  height: 40px;
  display: inline-block;
  vertical-align: bottom;
  margin-right: 20px;
  margin-left: 10px;
}

.nav_ceremony span::before {
  content: '';
  background: url(../img/common/icon-ceremony.svg)no-repeat;
  background-size: contain;
  width: 30px;
  height: 30px;
  display: inline-block;
  vertical-align: bottom;
  margin-right: 20px;
  margin-left: 10px;
}



.nav-wrap ul.hd-list {
  margin-top: 15px;
}

.nav-wrap ul.hd-list li {
  max-width: 100%;
  margin-bottom: 10px;
}

.header-tel a p {
  font-size: clamp(16px, 2.4vw, 48px);
  line-height: 1;
  font-weight: bold;
  text-align: center;
}

.header-tel a img {
  margin-bottom: 5px;
}

.header-tel a p::before {
  content: '';
  background: url(../img/common/icon-dial.png)no-repeat;
  background-size: contain;
  width: 2.5vw;
  height: 1.6vw;
  display: inline-block;
  vertical-align: baseline;
  margin-right: .5vw;
}

.header-tel a p span {
  font-size: 18px;
  display: block;
  text-align: center;
}

.header-payment {
  margin-top: 30px;
}

.header-payment .pay {
  background: var(--site-primary-keycolor);
  font-size: 14px;
  border-radius: 10px;
  color: #fff;
  padding: 5px 0;
  margin-bottom: 10px;

}

.header-payment .pay span {
  position: relative;
  padding-left: 85px;
  display: inline-block;
}

.header-payment .pay span::before {
  content: '';
  background: url(../img/common/icon-payment.png)no-repeat;
  background-size: contain;
  width: 61px;
  height: 41px;
  position: absolute;
  left: 15px;
  top: 0;
}

.header-payment p.attention {
  font-size: 12px;
  color: #999;
}


@media only screen and (max-width: 1024px) {
  header {
    padding: 20px 20px;
  }

  .header-tel a p::before {
    width: 28px;
    height: 19px
  }

  .header-tel a p {
    font-size: 20px;
  }

  .header-tel a p span {
    font-size: 14px;
  }

  .header-payment .pay span {
    position: relative;
    padding-left: 85px;
    display: inline-block;
  }

  .header-payment .pay span::before {
    top: 50%;
    transform: translateY(-50%);
  }
}


/*==768px以下の形状*/

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

  header {
    position: fixed;
    left: 0px;
    top: 35px;
    max-width: 100%;
    width: 100%;
    transition: all 0.3s ease;
    z-index: 99999;
    border: none;
    display: flex;
    padding: 0px;
    background: #fff;
    align-items: center;
  }

  header .header-logo {
    max-width: 20%;
    margin-right: auto;
    padding: 5px 0 5px 10px;
    margin-bottom: 0;
  }


  .nav-wrap li.has-child ul,
  .nav-wrap li.has-child ul ul {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    visibility: visible;
    /*JSで制御するため一旦表示*/
    opacity: 1;
    /*JSで制御するため一旦表示*/
    display: none;
    /*JSのslidetoggleで表示させるため非表示に*/
    transition: none;
    /*JSで制御するためCSSのアニメーションを切る*/
  }

  .nav-wrap ul li a {
    border-bottom: 1px solid #ccc;
    color: #fff;
  }

  .nav-wrap-sp .phone_btn,
  .nav-wrap-sp .line_btn {
    width: 55px;
    height: 60px;
  }

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

  .nav-wrap-sp .phone_btn {
    background: var(--site-primary);
  }

  .nav-wrap-sp .phone_btn img {
    width: 20px;
    height: 37px;
  }

  .nav-wrap-sp .phone_btn span,
  .nav-wrap-sp .line_btn span {

    font-size: 10px;
    display: block;
    text-align: center;
  }

  .nav-wrap-sp .line_btn {
    background: #06c755;
    display: block;
    text-align: center;
  }

  .nav-wrap-sp .line_btn img {
    width: 28px;
    height: 33px;
  }

  .nav-wrap-sp .line_btn span {
    color: #fff;
    margin-top: 3px;
    font-size: 11px;
  }



  /*矢印の向き*/
  .nav-wrap ul li.has-child::before,
  .nav-wrap ul ul li.has-child::before {
    transform: rotate(135deg);
    left: 20px;
  }

  .nav-wrap ul li.has-child.active::before {
    transform: rotate(-45deg);
  }

  .nav-wrap {
    display: none;
  }

  .nav-wrap-sp {
    height: 60px;
    display: block;
  }

  .nav-box {
    display: block;
    padding: 9px 0;
    width: 60px;
    height: 60px;
  }

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

  .nav-button {
    cursor: pointer;
  }

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

  .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: 5px;
    background-color: #da6272;
    border-radius: 10px;
  }

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

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

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



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

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

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

  .nav-box.active span:nth-of-type(3) {
    -webkit-transform: translate(-15px, -10px) rotate(45deg);
    transform: translate(-15px, -10px) rotate(45deg);
  }

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

  .sp_nav_btn {
    justify-content: end;
  }

  .sp_nav {
    opacity: 0;
  }

  .sp_nav_box {
    display: none;
  }

  .sp_nav_box.open {
    display: block;
  }

  .sp_nav.open {
    overflow: scroll;
    position: fixed;
    left: 0;
    height: 100%;
    -webkit-overflow-scrolling: touch;
    background: #fff;
    padding-bottom: 20%;
    transition: .3s;
    opacity: 1.0;
    visibility: visible;
  }

  .sp_nav.close {
    opacity: 0;
  }

  .sp_nav ul {
    display: flex;
    flex-wrap: wrap;
  }

  .sp_nav ul li.menu_top {
    font-size: 17px;
    background: #da6272;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    width: 100%;
  }

  .sp_nav ul li:not(.menu_top) {
    width: 50%;
    border-bottom: 1px solid #da6272;
  }

  .sp_nav ul li:nth-child(even):not(.menu_top) {
    border-right: 1px solid #da6272;
  }

  .sp_nav ul li:not(.menu_top) a {

    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    text-align: center;
    padding: 8px 0;
    line-height: 1.3;
  }

  .nav-wrap-sp ul li.menu_btn.gold a {
    background: #a88c76;
    border-radius: 50px;
    color: #fff;
    margin: 10px;
    position: relative;
  }

  .nav-wrap-sp ul li.menu_btn.gold a::after {
    content: '';
    background: url(../img/common/icon_arrow_right_white.svg)no-repeat;
    background-size: contain;
    width: 15px;
    height: 15px;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
  }

  .nav-wrap-sp ul li.menu_btn.sp-contact a {
    background: #f9dcdc;
    border-radius: 50px;
    margin: 10px;
    box-sizing: border-box;
    border: 2px solid #da6272;
    position: relative;
  }

  .nav-wrap-sp ul li.menu_btn.sp-contact a::after {
    content: '';
    background: url(../img/common/icon_arrow_right_deep_pink.svg)no-repeat;
    background-size: contain;
    width: 15px;
    height: 15px;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
  }

}

@media screen and (max-width:568px) {
  header {
    justify-content: end;
    top: 18px;
  }

  header .header-logo {
    max-width: 45%;
    padding: 8px 0 5px 10px;
    position: relative;
  }

  header .header-logo {
    position: absolute;
    left: 0px;

  }

}

/*------*/
#main_wrap {
  width: calc(100% - 26vw);
}


@media screen and (max-width:768px) {
  #main_wrap {
    width: 100%;
    margin-top: 60px;
  }
}

/*-----------------------------------
*導入
-------------------------------------*/
.intro-title {
  text-align: center;
  margin-bottom: 10px;
}

.intro-title p {
  font-size: clamp(24px, 2vw, 36px);
  font-weight: bold;
  display: inline-block;
  margin: 0 auto;
  color: #fff;
  background: linear-gradient(180deg, #66b7bc 0%, #66b7bc 50%, #5ca5aa 50%, #5ca5aa 100%);
  padding: 0 30px;
}

.intro-title h2 {
  font-size: clamp(32px, 2vw, 40px);
}

.intro-point {
  background: #ff8f8f;
  border-radius: 50px;
  margin: 30px 0;
}

.intro-point p {
  color: #fff;
  font-size: clamp(16px, 2vw, 30px);
  padding: 2px;
  line-height: 1;
  padding: 8px 12px;
}

.intro-point p::before {
  content: '';
  background: url(../img/common/icon-star.svg)no-repeat;
  background-size: contain;
  width: 51px;
  height: 51px;
  display: inline-block;
  vertical-align: text-top;
  margin-right: 10px;
  vertical-align: sub;
}

.intro-point p span {
  font-size: clamp(24px, 2.6vw, 50px);
  ;
}

.intro-point p em {
  font-size: clamp(20px, 2.6vw, 24px);
}

.intro_content {
  gap: 2vw;
  margin-bottom: 30px;
}

.intro-txt-box {
  max-width: 604px;
  width: 100%;
}

.intro-txt-box ul {
  margin-bottom: 40px;
  gap: 1vw;
}

.intro-txt-box ul li {
  font-size: clamp(22px, 2vw, 34px);
  background: linear-gradient(transparent 70%, #dab676 0%);
  line-height: .7;
}

.intro-txt-box ul li::before {
  content: '';
  background: url(../img/common/icon-medal.svg)no-repeat;
  background-size: contain;
  width: 32px;
  height: 48px;
  display: inline-block;
  vertical-align: text-top;
  margin-right: 10px;
}

.intro-txt-box ul li span {
  font-size: clamp(28px, 2.8vw, 60px);
}

.intro-txt-box ul li em {
  font-size: clamp(26px, 2.8vw, 40px);
}

.intro-txt-box h3 {
  font-size: clamp(20px, 1.5vw, 32px);
  line-height: 1.3;
  margin-bottom: 20px;
}

.bg_pink {
  padding: 25px 40px;
}

.director_box {
  box-shadow: 5px 5px 9px #e6e6e6;
}

.director-photo {
  background: var(--site-primary-keycolor);
  max-width: 367px;
  width: 100%;
  padding: 30px 45px;
}

.director-txt {
  padding: 30px 65px;
  max-width: 953px;
  width: 100%;
}

.director-txt h4 {
  font-size: clamp(24px, 3vw, 38px);
  margin-bottom: 25px;
}

.director-txt h4::before {
  content: '';
  background: url(../img/common/icon-license.svg)no-repeat;
  background-size: contain;
  display: inline-block;
  width: 59px;
  height: 55px;
  vertical-align: middle;
  margin-right: 30px;
}

@media only screen and (max-width: 1024px) {
  .intro-point p {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .intro-txt-box ul {
    flex-direction: column;
    margin-bottom: 20px;
  }

  .intro-txt-box ul li {
    display: flex;
    align-items: baseline;
    justify-content: center;
    line-height: 1.2;
  }

  .bg_pink {
    padding: 20px 30px;
  }

  .director-photo {
    width: 100%;
    max-width: 25%;
    padding: 20px;
  }

  .director-txt {
    padding: 20px;
  }

  .director-txt h4 {
    font-size: 24px;
    margin-bottom: 15px;
  }

  .director-txt h4::before {
    width: 40px;
    height: 38px;
    margin-right: 15px;
  }
}

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

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

  .intro-title p {
    font-size: 22px;
    padding: 5px 10px;
  }

  .intro-title h2 {
    font-size: 24px;
  }

  .intro-point p {
    display: block;
    position: relative;
    font-size: 16px;
    padding: 15px 0 15px 65px;
  }

  .intro-point p::before {
    position: absolute;
    left: 3%;
    top: 50%;
    transform: translateY(-50%);
  }

  .intro-point p span {
    font-size: 24px;
  }

  .intro-point p em {
    font-size: 16px;
  }

  .intro_content {
    flex-direction: column;
  }

  .intro-txt-box ul {
    flex-direction: row;
  }

  .intro-txt-box ul li::before {
    width: 26px;
    height: 40px;
    margin-right: 5px;
  }

  .intro-txt-box ul li {
    font-size: 28px;
    display: block;
    letter-spacing: 0;
  }

  .intro-txt-box ul li span {
    font-size: 32px;
    letter-spacing: 0;
  }

  .bg_pink {
    padding: 20px 25px;
  }

  .intro-txt-box h3 {
    font-size: 20px;
  }

  .director_box {
    flex-direction: column;
  }

  .director-photo {
    max-width: 100%;
    padding: 0;
  }

  .director-photo img {
    width: 60%;
    display: block;
    margin: 20px auto;
  }

  .director-txt {
    padding: 20px 15px;
    text-align: center;
  }

  .director-txt h4 {
    font-size: 20px;
    letter-spacing: 0;
    display: inline-block;
  }

  .director-txt h4::before {
    width: 27px;
    height: 25px;
    margin-right: 5px;
  }

  .director-txt p {
    text-align: left;
  }
}

/*--------------------------------------------------
*決済方法
---------------------------------------------------*/
.payment ul {
  gap: 2vw;
  margin-bottom: 30px;
}

.payment ul li {
  max-width: 657px;
  width: 100%;

}

.payment ul li p {
  background: var(--site-primary-keycolor);
  color: #fff;
  position: relative;
  font-size: clamp(16px, 1.3vw, 24px);
  border-radius: 10px;
  text-align: center;
  padding: 10px 0;
}

.payment ul li:first-child p span {
  margin-left: 20px;
}

.payment ul li:first-child p span::before {
  content: '';
  background: url(../img/common/icon-card.png)no-repeat;
  background-size: contain;
  display: inline-block;
  width: 83px;
  height: 67px;
  position: absolute;
  right: 84%;
  top: -10px;
}

.payment ul li:nth-child(2) p span::before {
  content: '';
  background: url(../img/common/icon-pay.png)no-repeat;
  background-size: contain;
  display: inline-block;
  width: 83px;
  height: 67px;
  position: absolute;
  right: 72%;
  top: -15px;
}

.payment ul li:first-child img {
  max-width: 417px;
  margin: 20px auto;
  display: block;
  width: 26vw;
}

.payment ul li:nth-child(2) img {
  max-width: 554px;
  margin: 20px auto;
  display: block;
}

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

  .payment ul li:first-child p span::before {
    width: 50px;
    height: 40px;
    right: 84%;
    top: -10px;
  }

  .payment ul li:nth-child(2) p span::before {
    width: 45px;
    height: 54px;
    right: 82%;
    top: -6px;
  }
}

@media only screen and (max-width: 568px) {
  .payment ul {
    flex-direction: column;
    margin-bottom: 10px;
  }

  .payment ul li p {
    font-size: 14px;
  }

  .payment ul li:first-child p span::before {
    width: 49px;
    height: 38px;
    right: 85%;
    top: -5px;
  }

  .payment ul li:nth-child(2) p span::before {
    width: 38px;
    height: 46px;
    right: 85%;
    top: -8px;
  }

  .payment ul li:first-child img {
    width: 80%;
  }
}

/*----------------------------------------
*cvエリア
----------------------------------------*/
.cv-area {
  position: relative;
}

.cv-title {
  background: var(--site-tertiary);
}

.cv-title h2 {
  font-size: clamp(22px, 1.9vw, 30px);
  padding: 15px 0 15px 20px;
}

.cv-title h2 span {
  background: #fff;
  border: 3px solid var(--site-tertiary-keycolor);
  box-sizing: border-box;
  padding: 0 20px;
  margin-right: 20px;
}

.cv-box {
  background: url(../img/common/cv_bg.jpg)no-repeat;
  background-size: cover;
  gap: 1vw;
  position: relative;
}

.cv-content {
  max-width: 922px;
  width: 70%;
  padding: 30px 0 30px 40px;
}

.cv-content h3 {
  font-size: clamp(24px, 1.9vw, 40px);
  margin-bottom: 20px;
}

.tel-txt dt {
  background: #da6272;
  font-size: clamp(20px, 1.8vw, 32px);
  color: #fff;
  font-weight: bold;
  width: 40%;
}

.tel-txt dd {
  background: var(--site-primary);
  font-size: clamp(20px, 1.8vw, 34px);
  font-weight: bold;
  width: 60%;
}

.cv_tel {
  font-size: clamp(50px, 5.8vw, 110px);
  font-weight: bold;
  line-height: 1;
}

.cv_tel span::before {
  content: '';
  background: url(../img/common/cv_dial.png)no-repeat;
  background-size: contain;
  width: 7vw;
  height: 4vw;
  display: inline-block;
}

.btn-box div {
  gap: 1vw;
  margin-top: 30px;
}

.btn-box .cv_mail {
  width: 48.5%;
}

.btn-box .cv_line {
  width: 48.5%;
}

.cv-staff {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 23vw;
}

@media only screen and (max-width: 1024px) {
  .cv-content {
    padding: 20px 0 30px 30px;
  }

  .cv-content .tel-txt {
    margin-bottom: 10px;
    font-size: 16px;
  }

  .tel-txt dt,
  .tel-txt dd {
    font-size: 16px;
  }

  .cv_tel {
    font-size: 62px;
  }

  .cv_tel span::before {
    width: 6.8vw;
    height: 4vw;
  }

  .cv-staff {
    margin-top: 0;
    width: 22vw;
  }
}

@media only screen and (max-width: 960px) {
  .cv-title h2 {
    text-align: center;
  }

  .cv-content h3 {
    margin-bottom: 10px;
  }

  .cv-content {
    padding: 20px 0 20px 30px;
  }

  .cv-staff {
    margin-top: 0;
    width: 33vw;
  }

}

@media only screen and (max-width: 568px) {
  .cv-title h2 {
    font-size: 24px;
    text-align: left;
    padding: 10px;
    z-index: 1;
    position: relative;
    min-height: 153px;
    text-shadow:
      2px 1px 2px #fff,
      -2px 1px 2px #fff,
      -2px -1px 2px #fff,
      2px -1px 2px #fff;
  }

  .cv-title h2 span {
    font-size: 17px;
    padding: 5px 10px;
    display: inline-block;
    text-shadow: none;
  }

  .cv-box {
    flex-direction: column;
    position: static;
  }

  .cv-staff {
    position: absolute;
    top: 5vw;
    right: 0;
    max-width: 116px;
    width: 38.5vw;
    z-index: 0;
    height: fit-content;
  }

  .cv-content {
    padding: 12px 0 20px;
    max-width: 94%;
    margin: 0 auto;
    width: 100%;
  }

  .cv-content h3 {
    font-size: 16px;
    letter-spacing: 0;
  }

  .cv-content .tel-txt {
    flex-direction: column;
    border-radius: 0;
  }

  .tel-txt dt,
  .tel-txt dd {
    width: 100%;
    font-size: 17px;
    padding: 5px 0;
  }

  .cv_tel {
    font-size: 35px;
    border-radius: 10px;
    border: 2px solid #cccccc;
    background: #fff;
    text-align: center;
    display: block;
    padding: 5px 0;
  }

  .cv_tel span::before {
    width: 45px;
    height: 30px;
    vertical-align: middle;
    margin-right: 10px;
  }

  .btn-box div {
    margin-top: 10px;
    flex-direction: column;
    gap: 10px;
  }

  .btn-box .cv_mail,
  .btn-box .cv_line {
    width: 100%;
  }

  .cv-box .btn-box a {
    max-width: 100%;
  }
}


/*-----モーダル上書き-------*/
.modaal-container {
  max-width: 560px;
}

.modaal-content-container {
  padding: 0;
}

.bnr {
  margin-bottom: 60px;
}

@media only screen and (max-width: 568px) {
  .bnr {
    margin-bottom: 30px;
  }
}

/*----------------------------------------
*footer
----------------------------------------*/
footer {
  background: var(--site-primary);
  padding: 60px 0 0;
}

.footer-inner {
  max-width: 1600px;
  width: 98%;
  margin: 0 auto;
  position: relative;
}

.footer-area-ttl {
  background: var(--site-tertiary-keycolor);
  border-radius: 50px;
  color: #fff;
  font-size: 18px;
  display: inline-block;
  max-width: 245px;
  width: 100%;
  text-align: center;
  position: relative;
  letter-spacing: 0;
  padding: 5px;
  padding-left: 10px;
  margin-bottom: 20px;
}

.footer-area-ttl span::before {
  content: '';
  background: url(../img/common/icon_arrow_right_white.svg)no-repeat;
  width: 19px;
  height: 19px;
  background-size: contain;
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
}

.footer-area ul {
  padding: 40px 100px 30px;
  gap: calc((100% -(16%* 5)) / 5);
}

.footer-area ul li {
  width: 12.5%;
  position: relative;
  padding-left: 12px;
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer-area ul li::before {
  content: '';
  background: url(../img/common/icon_arrow_right.svg)no-repeat;
  background-size: contain;
  width: 9px;
  height: 13px;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.footer-area {
  margin-bottom: 40px;
}

.footer-contents {
  gap: 2.5vw;
  margin-bottom: 40px;
}

.company-address {
  padding: 10px 15px;
}

.company-address p.name {
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 10px;
}

.company-address p {
  margin-bottom: 7px;
  line-height: 1.75;
}

.company-info .license::before {
  content: '■';
  color: #ff8f8f;
  font-size: 14px;
  vertical-align: text-bottom;
  margin-right: 10px;
  margin-bottom: 5px;
}

.footer-nav {
  width: 77%;
}

.footer .company-info {
  max-width: 412px;
  width: 100%;
}

.footer .company-info a {
  margin-bottom: 40px;
  display: block;
}

.footer-nav .menu_top {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  padding-left: 24px;
  position: relative;
}

.footer-nav .menu_top::before {
  content: '';
  background: url(../img/common/icon_arrow_right_gold.svg)no-repeat;
  width: 19px;
  height: 19px;
  background-size: contain;
  position: absolute;
  left: 0;
  top: 5px;
}

.footer-nav li:not(.menu_top) {
  padding-left: 16px;
  margin: 0 0 10px 27px;
  position: relative;
}

.footer-nav li:not(.menu_top)::before {
  content: '';
  background: url(../img/common/arrow_pink_right.svg) no-repeat;
  width: 9px;
  height: 10px;
  position: absolute;
  left: 0;
  top: 8px;
}

.mb-space {
  margin-bottom: 45px;
}

.recommended_links {
  margin-bottom: 40px;
}

.recommended_links p {
  font-size: 20px;
  font-weight: bold;
  border-bottom: 2px solid var(--site-tertiary-keycolor);
  margin-bottom: 30px;
}

.recommended_links p::before {
  content: '■';
  color: var(--site-tertiary-keycolor);
  font-size: 20px;
  vertical-align: text-bottom;
  margin-right: 5px;
  margin-bottom: 5px;
}

.recommended_links ul {
  gap: 20px 1.25%;
}

.recommended_links li {
  width: 19%;
}

.pagetop {
  display: none;
  position: fixed;
  bottom: 130px;
  right: 1vw;
  z-index: 999;
}

.pagetop a {
  display: block;
  background-color: var(--site-tertiary-keycolor);
  text-align: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  transition: all 0.2s;
}

.pagetop a img {
  width: 9px;
  position: relative;
  top: 8px;
  transform: rotate(90deg);
}

p.copy {
  background: #ff8f8f;
  padding: 20px 0;
  font-size: 14px;
}

p.copy a {
  color: #fff;
}


/*--fixfooter--*/
.fix-inner {
  max-width: 98%;
  width: 100%;
  margin: 0 auto;
}

#fxmenu {
  padding: 10px 1vw 15px;
  border-bottom: 4px solid #fff6e2;
  width: 100%;
  bottom: 0;
  left: 0;
  z-index: 100;
}

#fxmenu .logo {
  width: 30%;
  max-width: 454px;
}

#fxmenu .logo {
  width: 30%;
  max-width: 454px;
}

#fxmenu .phone {
  max-width: 400px;
  width: 23%;
  margin-left: auto;
}

#fxmenu ul li.phone a img {
  margin-bottom: 5px;
}

#fxmenu ul li.phone a p {
  font-size: clamp(20px, 2.3vw, 46px);
  line-height: .2;
  font-weight: bold;
  text-align: center;
  line-height: .8;
}

#fxmenu ul li.phone a p::before {
  content: '';
  background: url(../img/common/icon-dial.png)no-repeat;
  background-size: contain;
  width: 56px;
  height: 36px;
  display: inline-block;
  margin-right: 10px;
  position: relative;
  top: 5px;
}

#fxmenu ul li.phone a p span {
  font-size: clamp(14px, 1.5vw, 18px);

}

#fxmenu .mail {
  margin-left: 30px;
  width: 21%;
  max-width: 400px;
}

#fxmenu .line {
  margin-left: 10px;
  width: 21%;
  max-width: 400px;
}

.toggle {
  display: none;
}

@media only screen and (max-width: 1024px) {
  .footer-inner {
    max-width: 94%;
  }

  .footer-area ul {
    padding: 30px 50px 30px;
  }

  #fxmenu ul li.phone a p::before {
    width: 34px;
    height: 22px;
  }

  #fxmenu ul li.phone a img {
    margin-bottom: 5px;
  }
}

@media only screen and (max-width: 960px) {
  .footer-contents {
    flex-direction: column;

  }

  .footer .company-info {
    display: flex;
    max-width: 100%;
    align-items: center;
    gap: 4vw;
  }

  .company-address {
    width: 100%;
    max-width: 55%;
  }

  .footer-nav {
    width: 100%;
  }

  #fxmenu .mail {
    margin-left: 10px;
  }
}

@media only screen and (max-width: 768px) {
  #fxmenu {
    position: fixed;
    bottom: 0;
    left: 0;
    background: #fff;
    padding: 5px 0;
  }

  #fxmenu ul li.phone a p {
    font-size: 18px;
  }

  #fxmenu ul li.phone a p::before {
    width: 23px;
    height: 15px;
    margin-right: 5px;
    top: 0;
  }

  #fxmenu ul li.phone a p span {
    font-size: 12px;
  }

  footer {
    margin-bottom: 70px;
  }

}

@media only screen and (max-width: 568px) {
  footer {
    padding-top: 20px;
    margin-bottom: 74px;
  }

  .footer-area {
    margin-bottom: 0;
  }

  .footer-area-ttl {
    max-width: 100%;
    margin-bottom: 0;
  }

  .footer-area ul {
    padding: 20px;
    width: 94%;
    margin: 20px auto 0;
  }

  .footer-area ul li {
    width: 49%;
  }

  .footer-contents {
    gap: 4vw;
  }

  .footer-accordion {
    margin: 0 auto;
  }

  .option {
    position: relative;
    margin-bottom: 1em;
  }

  .title,
  .content {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    transition: all 0.3s;
  }

  .title {
    display: block;
  }

  .title::after,
  .title::before {
    border-right: solid 2px #fff;
    border-top: solid 2px #fff;
    content: "";
    display: block;
    height: 8px;
    position: absolute;
    right: 15px;
    top: 30%;
    transform: rotate(135deg);
    transition: transform .3s ease-in-out, top .3s ease-in-out;
    width: 8px;
  }

  .title::after {
    transform: rotate(135deg);
  }

  .content {
    max-height: 0;
    overflow: hidden;
  }

  .toggle:checked+.title+.content {
    max-height: 1250px;
    transition: all 1.5s;
  }

  .toggle:checked+.title::before {
    transform: rotate(-45deg) !important;
  }

  .company-info {
    flex-direction: column;
  }

  .footer .company-info a {
    width: 75%;
    margin-bottom: 0;
  }

  .company-address {
    max-width: 100%;
  }

  .footer-nav {
    margin: 0 -2.9vw;
    width: 100vw;
  }

  .footer-nav div {
    flex-direction: column;
  }

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

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

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

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

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

  .footer-nav li:not(.menu_top)::before {
    content: '';
    background: url(../img/common/arrow_pink_right.svg) no-repeat;
    width: 9px;
    height: 10px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
    left: unset;
  }

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

  }

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

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

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

  .mb-space {
    margin-bottom: 0;
  }

  .recommended_links ul {
    gap: 10px 10px;
  }

  .recommended_links li {
    width: 48%;
  }

  .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;
  }

  #fxmenu {
    padding: 0;
    border-bottom: none;
  }

  #fxmenu .logo {
    display: none;
  }

  #fxmenu .phone {
    width: 100%;
    max-width: 55%;
    border-top: 2px solid #ccc;
    border-bottom: 2px solid #ccc;
    padding: 3px 0;
    display: flex;
    align-items: center;
  }

  #fxmenu ul li.phone a img {
    width: 94%;
    text-align: center;
    display: block;
    margin: 0 auto 7px;
  }

  #fxmenu ul li.phone a p {
    font-size: 24px;
  }

  #fxmenu ul li.phone a p span {
    font-size: 12px;
  }

  #fxmenu .mail {
    background: #f9dcdc;
    padding: 10px 5px;
    width: 25%;
  }

  #fxmenu .mail {
    margin-left: 0;
  }

  #fxmenu .line {
    background: #06c755;
    padding: 0 5px 10px 5px;
    margin-left: 0;
    width: 25%;
  }

  .fix-inner {
    max-width: 100%;
  }

  .fix-inner ul {
    align-items: unset;
  }

}


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

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

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

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

.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_color-white.svg) no-repeat;
  width: 10px;
  height: 16px;
}

.pagination li.next a:hover::after {
  content: '';
  display: block;
  background: url(../img/common/icon_arrow_right_color-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;
  }
}

/*---モーダル上書き--*/
.modaal-container {
  width: 36% !important;
}

.modaal-container .fit-content {
  width: 100% !important;
}

@media only screen and (max-width: 568px) {
  .modaal-container {
    width: 100% !important;
  }
}


/*========= mediaモーダル表示のためのCSS ===============*/

/*全て共通：hideエリアをはじめは非表示*/
.hide-area {
  display: none;
}

/*全て共通：モーダルのボタンの色を変更したい場合*/
#media .modaal-close:after,
#media .modaal-close:before {
  background: #ccc;
}

#media .modaal-close:focus:after,
#media .modaal-close:focus:before,
#media .modaal-close:hover:after,
#media .modaal-close:hover:before {
  background: #666;
}

#media .modaal-wrapper .modaal-content-container,
#media .modaal-wrapper .modaal-content-container video {
  width: 100% !important;
}

@media only screen and (max-width: 568px) {
  #media .modaal-content-container {
    padding: 10px 10px 4px !important;
  }

  #media .modaal-close {
    top: 19vw !important;
  }

  .modaal-content-container {
    padding: 20px !important;
  }
}


/*------スライダーコンテンツ--------*/
#media {
  background: #fffcce;
  position: relative;
  padding: 60px 0;
  margin-bottom: 80px;
}

#media::before {
  content: '';
  background: url(../img/top/stamp.png) no-repeat;
  background-size: contain;
  width: 217px;
  height: 216px;
  position: absolute;
  right: 3%;
  top: 9%;
}

#media h3 {
  max-width: 586px;
  margin: 0 auto 40px;
}

#media .slide-title {
  width: 50%;
  background: #fff;
  text-align: center;
  outline: 2px solid #333;
  outline-offset: -20px;
}

#media .slide-img {
  width: 50%;
}

#media .slide-title a {
  color: var(--site-secondary-keycolor);
}

#media .slide-title a.media-link {
  width: 100%;
  max-width: 198px;
  margin: 0 auto;
}

#media .slide-title span {
  font-size: clamp(18px, 1.5vw, 30px);
}

#media .slide-title {
  font-size: clamp(15px, 1.5vw, 24px);
  display: flex;
  align-items: center;
  justify-content: center;
}

#media .slide-title p {
  margin-bottom: 20px;
}

#media .slick-dots {
  position: static;
  margin-top: 20px;
}

#media .slick-dots li.slick-active button::before {
  color: #28979f;
}

#media #slider .next-arrow {
  position: absolute;
  right: -40px;
  top: 43%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  z-index: 10;
}

#media #slider .prev-arrow {
  position: absolute;
  left: 0px;
  top: 43%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  z-index: 10;
}

.slide-arrow {
  width: 40px;
  height: 40px;
}

#slider {
  margin-top: 30px;
}

@media only screen and (max-width: 1024px) {
  #media {
    padding: 40px 0;
    margin-bottom: 40px;
  }

  #media .slide-title a.media-link {
    max-width: 128px;
  }

  #media::before {
    width: 157px;
    height: 156px;
    top: 22%;
  }

  .btn-box a {
    max-width: 48%;
  }
}

@media only screen and (max-width: 960px) {
  #media .slide-title p {
    margin-bottom: 0px;
  }

  #media #slider .next-arrow {
    right: -35px;
  }
}

@media only screen and (max-width: 568px) {
  #media::before {
    top: 18%;
    width: 126px;
    height: 125px;
  }

  #media {
    padding: 20px 0;
  }

  #media h3 {
    margin: 0 auto 30px;
  }

  #media p.center {
    text-align: left;
  }

  #media .row-rev {
    flex-direction: column;
  }

  #media .slide-title,
  #media .slide-img {
    width: 100%;
  }

  #media .slide-title {
    outline: none;

  }

  #media .slide-title p {
    margin-bottom: 0;
    padding: 10px 0;
    font-size: 16px;
  }

  #media .slick-dots {
    margin-top: 10px;
  }

  #media #slider .next-arrow {
    right: -30px;
  }

  #media .slide-title span {
    font-size: 16px;
  }
}

/*---------------------------------
関連サイトリンク
-----------------------------------*/
.connection_links {
  margin-bottom: 40px;
}

.pet-kanren_tochigi {
  display: none;
}

.connection_links p {
  font-size: 20px;
  font-weight: bold;
  border-bottom: 2px solid var(--site-tertiary-keycolor);
  margin-bottom: 30px;
}

.connection_links p::before {
  content: '■';
  color: var(--site-tertiary-keycolor);
  font-size: 20px;
  vertical-align: text-bottom;
  margin-right: 5px;
  margin-bottom: 5px;
}

.connection_links ul {
  gap: 20px 1%;
}

.connection_links ul li {
  width: 12%;
}

@media only screen and (max-width: 568px) {
  .connection_links {
    margin-bottom: 30px;
  }

  .recommended_links p,
  .connection_links p {
    margin-bottom: 20px;
  }

  .connection_links ul {
    gap: 10px 3.5%;
  }

  .connection_links ul li {
    width: 31%;
  }
}