@charset "UTF-8";
* {
  margin: 0px;
  padding: 0px;
  font-family: 'Noto Serif JP', serif;
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

body, html {
  width: 100%;
  overflow-x: hidden;
}

@media screen and (max-width: 768px) {
  a {
    text-decoration: none;
    transition: none;
  }
}

a:not(.noLink) {
  text-decoration: none;
  transition: opacity 0.2s;
}

a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  a:hover {
    opacity: 1;
  }
}

li {
  list-style: none;
}

img {
  width: 100%;
  vertical-align: bottom;
}

.spHid {
  display: block;
}
@media screen and (max-width: 768px) {
  .spHid {
    display: none;
  }
}

.pcHid {
  display: none;
}
@media screen and (max-width: 768px) {
  .pcHid {
    display: block;
  }
}

.spHid_in {
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .spHid_in {
    display: none;
  }
}

.pcHid_in {
  display: none;
}
@media screen and (max-width: 768px) {
  .pcHid_in {
    display: inline-block;
  }
}

.mt0 {
  margin-top: 0;
}

.mb0 {
  margin-bottom: 0;
}

.mr0 {
  margin-right: 0;
}

.ml0 {
  margin-left: 0;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  z-index: 100;
}
@media screen and (max-width: 768px) {
  header {
    border-bottom: 2px solid #C49E66;
  }
}
header .headLinks {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  padding: 20px 45px;
}
@media screen and (min-width: 769px) and (max-width: 1000px) {
  header .headLinks {
    padding: 2vw 4.5vw;
  }
}
@media screen and (max-width: 768px) {
  header .headLinks {
    padding: 2vw;
    height: 19vw;
    align-items: flex-start;
  }
}
header .headLinks h1 {
  width: 230px;
}
@media screen and (min-width: 769px) and (max-width: 1000px) {
  header .headLinks h1 {
    width: 30%;
  }
}
@media screen and (max-width: 768px) {
  header .headLinks h1 {
    display: none;
  }
}
header .headLinks ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: flex-end;
}
@media screen and (max-width: 768px) {
  header .headLinks ul {
    width: 60%;
  }
}
header .headLinks ul li {
  margin: 0 5px;
}
header .headLinks ul li:last-of-type {
  margin-right: 0;
}
@media screen and (min-width: 769px) and (max-width: 1000px) {
  header .headLinks ul li {
    margin: 0 .5vw;
  }
}
@media screen and (max-width: 768px) {
  header .headLinks ul li {
    margin: 0 .5vw;
    width: 100%;
  }
  header .headLinks ul li.listSns {
    display: none;
  }
}
header .headLinks ul li .ohLogo {
  width: 65%;
  margin: auto;
  margin-bottom: 5px;
}
@media screen and (max-width: 768px) {
  header .headLinks ul li .ohLogo {
    display: none;
  }
}
header .headLinks ul li a {
  display: block;
}
header .headLinks ul li a.sns {
  width: 35px;
  line-height: 1em;
}
@media screen and (min-width: 769px) and (max-width: 1000px) {
  header .headLinks ul li a.sns {
    width: 4vw;
  }
}
@media screen and (max-width: 768px) {
  header .headLinks ul li a.sns {
    width: 5.5vw;
  }
}
header .headLinks ul li a.tel {
  font-size: 35px;
  line-height: 1em;
  font-weight: 600;
  color: #000;
  text-decoration: none;
  pointer-events: none;
}
@media screen and (min-width: 769px) and (max-width: 1000px) {
  header .headLinks ul li a.tel {
    font-size: 3vw;
    pointer-events: all;
  }
}
@media screen and (max-width: 768px) {
  header .headLinks ul li a.tel {
    pointer-events: all;
    font-size: 7vw;
    text-align: center;
  }
}
header .headLinks ul li a.cate {
  padding: 8px 10px;
  background-color: #000;
  color: #fff;
  font-size: 15px;
  line-height: 1em;
  border-radius: 7px;
  text-align: center;
}
@media screen and (min-width: 769px) and (max-width: 1000px) {
  header .headLinks ul li a.cate {
    font-size: 1.5vw;
    padding: 1vw;
  }
}
@media screen and (max-width: 768px) {
  header .headLinks ul li a.cate {
    font-size: 3vw;
    margin-top: 1vw;
    padding: 2vw 1vw;
    text-align: center;
  }
}
header .headLinks ul li p.cate {
  padding: 8px 10px;
  color: #fff;
  font-size: 15px;
  line-height: 1em;
  border-radius: 7px;
  display: none;
}
@media screen and (min-width: 769px) and (max-width: 1000px) {
  header .headLinks ul li p.cate {
    font-size: 1.5vw;
    padding: 1vw;
  }
}
@media screen and (max-width: 768px) {
  header .headLinks ul li p.cate {
    font-size: 3vw;
    margin-top: 1vw;
    padding: 2vw 1vw;
    text-align: center;
  }
}
header nav {
  background-color: #C49E66;
}
@media screen and (max-width: 768px) {
  header nav {
    position: fixed;
    top: 0;
    right: -65%;
    width: 65%;
    height: 100vh;
    background-color: rgba(196, 158, 102, 0.9);
    padding: 2vw;
    transition: all 0.5s;
  }
}
header nav ul {
  width: 95%;
  margin: auto;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  header nav ul {
    display: block;
    margin-top: 17vw;
  }
}
header nav ul li {
  position: relative;
  flex-grow: 1;
}
header nav ul li.spaced {
  width: 180px;
}
@media screen and (max-width: 768px) {
  header nav ul li.spaced {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  header nav ul li {
    width: 100%;
    border-bottom: 1px dotted #fff;
  }
}
header nav ul li a {
  display: block;
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: 19px;
  padding: 15px 0;
  line-height: 1em;
}
header nav ul li a[href="#"] {
  pointer-events: none;
}
@media screen and (min-width: 769px) and (max-width: 1000px) {
  header nav ul li a {
    font-size: 1.8vw;
    padding: 1.5vw 0;
  }
}
@media screen and (max-width: 768px) {
  header nav ul li a {
    text-align: left;
    font-size: 4vw;
    padding: 5vw 0;
  }
}
header nav ul li ol {
  position: absolute;
  width: 100%;
  height: 0;
  overflow: hidden;
  transition: height .2s;
}
@media screen and (max-width: 768px) {
  header nav ul li ol {
    position: relative;
    width: 100%;
    height: auto;
  }
}
header nav ul li ol li {
  width: 100%;
  margin-bottom: 2px;
  background-color: rgba(255, 255, 255, 0.85);
}
@media screen and (max-width: 768px) {
  header nav ul li ol li {
    background-color: transparent;
    border-bottom: none;
  }
}
header nav ul li ol li a {
  width: 100%;
  color: #C49E66;
  font-size: 15px;
  padding: 15px 0;
}
@media screen and (min-width: 769px) and (max-width: 1000px) {
  header nav ul li ol li a {
    font-size: 1.5vw;
  }
}
@media screen and (max-width: 768px) {
  header nav ul li ol li a {
    color: #fff;
    padding: 2vw;
    font-size: 3.5vw;
  }
}
header nav ul li ol li.active {
  background-color: #e7cba7;
}
@media screen and (max-width: 768px) {
  header nav ul li ol li.active {
    background-color: transparent;
  }
}
header nav ul li ol li.active a {
  color: #fff;
}
@media screen and (max-width: 768px) {
  header nav ul li ol li.active a::before {
    content: "▶︎ ";
  }
}
header nav ul li:hover > ol {
  height: 300px;
}
@media screen and (max-width: 768px) {
  header nav ul li:hover > ol {
    height: auto;
  }
}
header nav ul li.is-current {
  background-color: #e7cba7;
}
@media screen and (max-width: 768px) {
  header nav ul li.is-current {
    background-color: transparent;
  }
  header nav ul li.is-current > a::before {
    content: "▷ ";
  }
}

.menu-btn {
  display: none;
}
@media screen and (max-width: 768px) {
  .menu-btn {
    position: fixed;
    top: 4vw;
    right: 4vw;
    z-index: 100;
    display: flex;
    height: 10vw;
    width: 10vw;
    justify-content: center;
    align-items: center;
    z-index: 90;
  }
  .menu-btn span, .menu-btn span:before, .menu-btn span:after {
    content: '';
    display: block;
    height: 3px;
    width: 10vw;
    border-radius: 3px;
    background-color: #C49E66;
    position: absolute;
    opacity: 1;
    transition: all 0.5s;
  }
  .menu-btn span:before {
    bottom: 2.5vw;
    transition: all 0.5s;
  }
  .menu-btn span:after {
    top: 2.5vw;
    transition: all 0.4s;
  }
}

#menu-btn-check {
  display: none;
}
@media screen and (max-width: 768px) {
  #menu-btn-check:checked ~ .menu-btn span, #menu-btn-check:checked ~ .menu-btn span:before, #menu-btn-check:checked ~ .menu-btn span:after {
    background-color: rgba(0, 0, 0, 0);
  }
  #menu-btn-check:checked ~ .menu-btn span:before {
    bottom: 0;
    transform: rotate(45deg);
    background-color: #fff;
  }
  #menu-btn-check:checked ~ .menu-btn span:after {
    top: 0;
    transform: rotate(-45deg);
    background-color: #fff;
  }
  #menu-btn-check:checked ~ nav {
    right: 0;
  }
}

.contain {
  width: 100%;
  margin-top: 162px;
  background-color: #fff;
  position: relative;
}
@media screen and (min-width: 769px) and (max-width: 1000px) {
  .contain {
    margin-top: 14.4vw;
  }
}
@media screen and (max-width: 768px) {
  .contain {
    margin-top: 19vw;
  }
}

section {
  width: 980px;
  margin: 50px auto;
}
@media screen and (max-width: 768px) {
  section {
    width: 90%;
    margin: 10vw auto;
  }
}
section.mid {
  width: 100%;
  background-color: #C1E0D5;
  padding: 30px 0;
  margin: 0;
}
@media screen and (max-width: 768px) {
  section.mid {
    padding: 2vw 0;
  }
}
section.mid.white {
  background-color: #fff;
}
section.mid .image {
  width: 450px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  section.mid .image {
    width: 70%;
    margin-bottom: 1vw;
  }
  section.mid .image.main {
    width: 85%;
  }
}
section.mid p {
  font-size: 45px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  section.mid p {
    font-size: 5vw;
    line-height: 7vw;
    padding: 0 0;
  }
}
section.mid.main {
  padding: 50px 0;
}
@media screen and (max-width: 768px) {
  section.mid.main {
    padding: 5vw 0;
  }
}
section.mid.main p {
  font-size: 27px;
  margin-bottom: 20px;
  letter-spacing: 5px;
}
@media screen and (max-width: 768px) {
  section.mid.main p {
    font-size: 4vw;
    margin-bottom: 0;
    letter-spacing: 1vw;
  }
}
section.mid.main .image {
  width: 400px;
}
@media screen and (max-width: 768px) {
  section.mid.main .image {
    width: 60%;
  }
}
section .leadTxt {
  font-size: 18px;
  text-align: center;
  line-height: 2em;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  section .leadTxt {
    font-size: 4vw;
    margin-bottom: 6vw;
  }
}
section .leadTxt a {
  color: #000;
  text-decoration: underline;
}
section .map {
  width: 100%;
}
section .map iframe {
  width: 100%;
}
section .opeHours {
  width: 100%;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  padding: 30px 0;
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  section .opeHours {
    padding: 6vw 0;
    margin-top: 10vw;
  }
}
section .opeHours dl {
  width: 50%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 18px;
  line-height: 1em;
}
@media screen and (max-width: 768px) {
  section .opeHours dl {
    width: 100%;
    font-size: 3.5vw;
  }
}
section .opeHours dl dt {
  width: 47%;
  padding: 8px 0;
}
@media screen and (max-width: 768px) {
  section .opeHours dl dt {
    width: 30%;
    padding: 2vw 0;
  }
}
section .opeHours dl dd {
  width: 53%;
  padding: 8px 0;
}
@media screen and (max-width: 768px) {
  section .opeHours dl dd {
    width: 70%;
    padding: 2vw 0;
  }
}
section .layout1 {
  width: 100%;
}
@media screen and (max-width: 768px) {
  section .layout1 {
    margin-top: 3vw;
  }
}
section .layout1 .insect {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  section .layout1 .insect {
    display: block;
  }
}
section .layout1 .insect .leftWrap {
  width: 34%;
}
@media screen and (max-width: 768px) {
  section .layout1 .insect .leftWrap {
    width: 100%;
    margin-bottom: 5vw;
  }
  section .layout1 .insect .leftWrap.ph1 {
    overflow-y: hidden;
    height: 60vw;
    display: flex;
    align-items: center;
  }
  section .layout1 .insect .leftWrap.ph2 {
    overflow-y: hidden;
    height: 60vw;
  }
}
section .layout1 .insect .rightWrap {
  width: 58%;
}
@media screen and (max-width: 768px) {
  section .layout1 .insect .rightWrap {
    width: 100%;
  }
}
section .layout1 .insect .rightWrap .body {
  font-size: 21px;
  line-height: 1.8em;
}
@media screen and (max-width: 768px) {
  section .layout1 .insect .rightWrap .body {
    font-size: 4vw;
    line-height: 1.8em;
    margin: 2vw 0;
    margin-bottom: 5vw;
    text-align: center;
  }
}
section .layout1 .insect .rightWrap .body .cap {
  font-size: 15px;
  line-height: 1.4em;
}
@media screen and (max-width: 768px) {
  section .layout1 .insect .rightWrap .body .cap {
    font-size: 3vw;
  }
}
section .layout1 .insect .rightWrap .bodySml {
  font-size: 18px;
  line-height: 1.6em;
}
@media screen and (max-width: 768px) {
  section .layout1 .insect .rightWrap .bodySml {
    font-size: 3.5vw;
  }
}
section .layout1 .insect .rightWrap .subTitle {
  font-size: 20px;
  line-height: 1.8em;
}
@media screen and (max-width: 768px) {
  section .layout1 .insect .rightWrap .subTitle {
    font-size: 3.5vw;
  }
}
section .layout1 .insect .rightWrap .mainTitle {
  font-size: 30px;
  letter-spacing: 5px;
  margin: 5px 0 15px 0;
}
@media screen and (max-width: 768px) {
  section .layout1 .insect .rightWrap .mainTitle {
    font-size: 8vw;
  }
}
section .layout2 {
  width: 100%;
}
section .layout2 .insect {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  section .layout2 .insect {
    display: block;
  }
}
section .layout2 .insect .leftWrap {
  width: 40%;
}
@media screen and (max-width: 768px) {
  section .layout2 .insect .leftWrap {
    width: 100%;
    margin-bottom: 5vw;
  }
}
section .layout2 .insect .rightWrap {
  width: 55%;
}
@media screen and (max-width: 768px) {
  section .layout2 .insect .rightWrap {
    width: 100%;
  }
}
section .layout2 .insect .rightWrap .body {
  font-size: 21px;
  line-height: 1.8em;
  text-align: left;
}
@media screen and (max-width: 768px) {
  section .layout2 .insect .rightWrap .body {
    font-size: 4vw;
  }
}
section .layout2 .insect .rightWrap .body .cap {
  font-size: 16px;
  line-height: 1.4em;
}
section .layout2 .insect .rightWrap .minList {
  padding: 30px 90px;
  border: 1px solid #000;
}
@media screen and (max-width: 768px) {
  section .layout2 .insect .rightWrap .minList {
    padding: 4vw;
  }
}
section .layout2 .insect .rightWrap .minList li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5px;
}
section .layout2 .insect .rightWrap .minList li:last-of-type {
  margin-bottom: 0;
}
section .layout2 .insect .rightWrap .minList li p {
  font-size: 21px;
}
@media screen and (max-width: 768px) {
  section .layout2 .insect .rightWrap .minList li p {
    font-size: 3.5vw;
  }
}
section .layout3 {
  margin-top: 100px;
}
section .layout3:first-of-type {
  margin-top: 0;
}
section .layout3 .title {
  color: #fff;
  background-color: #000;
  text-align: center;
  font-size: 25px;
  padding: 5px 0;
  border-radius: 30px;
  width: 90%;
  margin: auto;
}
@media screen and (max-width: 768px) {
  section .layout3 .title {
    width: 100%;
    font-size: 4vw;
  }
}
section .layout3 .sepWrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  section .layout3 .sepWrap {
    margin-top: 6vw;
    display: block;
  }
}
section .layout3 .sepWrap.mgLag {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  section .layout3 .sepWrap.mgLag {
    margin-top: 10vw;
  }
}
section .layout3 .sepWrap .leftWrap {
  width: 40%;
}
@media screen and (max-width: 768px) {
  section .layout3 .sepWrap .leftWrap {
    width: 100%;
    margin-bottom: 4vw;
  }
}
section .layout3 .sepWrap .rightWrap {
  width: 55%;
}
@media screen and (max-width: 768px) {
  section .layout3 .sepWrap .rightWrap {
    width: 100%;
  }
}
section .layout3 .sepWrap .rightWrap p.bigBody {
  font-size: 20px;
  line-height: 1.5em;
  font-weight: bold;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro","メイリオ","Meiryo","ＭＳ Ｐゴシック",sans-serif;
  margin-bottom: 25px;
  border-left: 6px solid #000;
  padding-left: 20px;
}
@media screen and (max-width: 768px) {
  section .layout3 .sepWrap .rightWrap p.bigBody {
    font-size: 3.5vw;
    margin-bottom: 5vw;
    border-left: 1.2vw solid #000;
    padding-left: 3vw;
  }
}
section .layout3 .sepWrap .rightWrap p.midBody {
  font-size: 18px;
  line-height: 1.6em;
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
  section .layout3 .sepWrap .rightWrap p.midBody {
    font-size: 3.5vw;
    margin-bottom: 5vw;
  }
}
section .layout3 .sepWrap .rightWrap p.midBody a {
  color: #000;
  text-decoration: underline;
}
section .layout3 .sepWrap .rightWrap p.smlBody {
  font-size: 17px;
  line-height: 1.8em;
}
@media screen and (max-width: 768px) {
  section .layout3 .sepWrap .rightWrap p.smlBody {
    font-size: 3.5vw;
  }
}
section .layout3 .sepWrap .rightWrap ul li {
  font-size: 17px;
  margin-bottom: 5px;
}
@media screen and (max-width: 768px) {
  section .layout3 .sepWrap .rightWrap ul li {
    font-size: 3.5vw;
  }
}
section .layout3 .sepWrap .rightWrap p.resultSq {
  font-size: 17px;
  border: 1px solid #000;
  display: inline-block;
  padding: 10px 30px;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  section .layout3 .sepWrap .rightWrap p.resultSq {
    font-size: 3.5vw;
    padding: 2vw 5vw;
    margin-top: 3vw;
  }
}
section .pastExample {
  margin-top: 70px;
  position: relative;
}
section .pastExample * {
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro","メイリオ","Meiryo","ＭＳ Ｐゴシック",sans-serif;
}
@media screen and (max-width: 768px) {
  section .pastExample {
    margin-top: 14vw;
  }
}
section .pastExample.first {
  margin-top: 0;
}
section .pastExample .name {
  font-size: 23px;
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  section .pastExample .name {
    font-size: 4vw;
    font-weight: bold;
  }
}
section .pastExample .name a {
  color: #000;
}
section .pastExample .desc {
  font-size: 23px;
  line-height: 1.5em;
}
@media screen and (max-width: 768px) {
  section .pastExample .desc {
    font-size: 4vw;
  }
}
section .pastExample .desc .cap {
  font-size: 17px;
}
section .pastExample .desc a {
  font-size: inherit;
  text-decoration: underline;
  color: #000;
}
section .pastExample ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 20px;
}
section .pastExample ul li {
  width: 32.5%;
  border: 1px solid #000;
}
@media screen and (max-width: 768px) {
  section .pastExample ul li {
    width: 49%;
    margin-bottom: 2vw;
  }
}
section .pastExample .peLogo {
  width: 22%;
  position: absolute;
  right: 0;
  top: 0;
}
@media screen and (max-width: 768px) {
  section .pastExample .peLogo {
    width: 40%;
  }
}
section .pastExample .peLogo.sml {
  width: 8%;
}
@media screen and (max-width: 768px) {
  section .pastExample .peLogo.sml {
    width: 17%;
    top: -8vw;
  }
}
section .descRight {
  text-align: right;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro","メイリオ","Meiryo","ＭＳ Ｐゴシック",sans-serif;
  font-size: 25px;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  section .descRight {
    font-size: 4vw;
    margin-top: 0;
  }
}
section .descLeft {
  font-size: 20px;
  margin-top: 70px;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  section .descLeft {
    font-size: 3.5vw;
    margin-top: 7vw;
    margin-bottom: 2vw;
  }
}
section .brdList1 {
  border: 2px solid #000;
  border-radius: 10px;
  padding: 20px 160px;
  margin: 30px 0;
}
@media screen and (max-width: 768px) {
  section .brdList1 {
    border-radius: 2vw;
    padding: 4vw;
    margin: 6vw 0;
  }
}
section .brdList1 li {
  font-size: 19px;
  margin-bottom: 5px;
}
@media screen and (max-width: 768px) {
  section .brdList1 li {
    font-size: 3.5vw;
    margin-bottom: 2vw;
    text-indent: -1em;
    padding-left: 1em;
  }
}
section .brdList1 li:last-of-type {
  margin-bottom: 0;
}
section .brdList1 li a {
  font-size: 19px;
  color: #000;
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  section .brdList1 li a {
    font-size: 3.5vw;
    margin-bottom: 1vw;
  }
}
section .separateList1 {
  display: flex;
  flex-wrap: wrap;
}
section .separateList1 li {
  width: 50%;
}
section .subArticle {
  margin-top: 150px;
}
@media screen and (max-width: 768px) {
  section .subArticle {
    margin-top: 20vw;
  }
}
section .subArticle:first-of-type {
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  section .subArticle:first-of-type {
    margin-top: 10vw;
  }
}
section .subArticle .title {
  color: #fff;
  background-color: #000;
  text-align: center;
  font-size: 23px;
  padding: 10px 0;
  border-radius: 30px;
  width: 90%;
  margin: auto;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  section .subArticle .title {
    margin-bottom: 6vw;
    font-size: 4vw;
    width: 100%;
    padding: 2vw 0;
    border-radius: 3vw;
  }
}
section .subArticle .midashi {
  text-align: center;
  font-size: 30px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  section .subArticle .midashi {
    font-size: 5vw;
    margin-bottom: 4vw;
  }
}
section .subArticle .body {
  text-align: center;
  font-size: 18px;
  line-height: 2em;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  section .subArticle .body {
    font-size: 4vw;
    margin-bottom: 5vw;
  }
}
section .subArticle .body .undLine {
  border-bottom: 3px dotted #C49E66;
}
section .graph1 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 50px;
}
section .graph1 * {
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro","メイリオ","Meiryo","ＭＳ Ｐゴシック",sans-serif;
}
@media screen and (max-width: 768px) {
  section .graph1 {
    margin-bottom: 10vw;
    display: block;
  }
}
section .graph1 .grSect {
  width: 48%;
  position: relative;
}
@media screen and (max-width: 768px) {
  section .graph1 .grSect {
    width: 100%;
    margin-bottom: 10vw;
  }
}
@media screen and (max-width: 768px) {
  section .graph1 .sect1 {
    display: flex;
  }
}
section .graph1 .sect1 .tag {
  background-color: #000;
  color: #fff;
  width: 27%;
  text-align: center;
  margin: auto;
  font-size: 22px;
  line-height: 1em;
  padding: 9px;
}
@media screen and (max-width: 768px) {
  section .graph1 .sect1 .tag {
    margin: 0;
    padding: 1vw 0;
    margin-right: 1vw;
    font-size: 4vw;
    width: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
section .graph1 .sect1 .grpTit {
  text-align: center;
  font-size: 23px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  section .graph1 .sect1 .grpTit {
    font-size: 4vw;
  }
}
section .graph1 .sect2 {
  padding: 20px 30px;
}
@media screen and (max-width: 768px) {
  section .graph1 .sect2 {
    padding: 4vw 4vw;
  }
}
section .graph1 .sect2 .circleList {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  margin: 0 auto;
}
section .graph1 .sect2 .circleList li {
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 125px;
  height: 125px;
  margin-bottom: 15px;
  border-radius: 50%;
  text-align: center;
  line-height: 1.2em;
  font-size: 15px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  section .graph1 .sect2 .circleList li {
    width: 25vw;
    height: 25vw;
    font-size: 3.5vw;
    margin-bottom: 3vw;
    border-radius: 50%;
    text-align: center;
    line-height: 1.2em;
  }
}
section .graph1 .sect2 .lineList {
  width: 100%;
  margin: auto;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  section .graph1 .sect2 .lineList {
    margin-top: 2vw;
  }
}
section .graph1 .sect2 .lineList li {
  font-size: 15px;
  line-height: 1.4em;
  letter-spacing: -1px;
}
@media screen and (max-width: 768px) {
  section .graph1 .sect2 .lineList li {
    font-size: 3.5vw;
    margin-bottom: 1vw;
    text-indent: -1em;
    padding-left: 1em;
  }
}
section .graph1 .sect3 {
  background-color: #C49E66;
  padding: 2px 0;
}
@media screen and (max-width: 768px) {
  section .graph1 .sect3 {
    padding: .5vw 0;
  }
}
section .graph1 .sect3 p {
  text-align: center;
  color: #fff;
  font-size: 24px;
}
@media screen and (max-width: 768px) {
  section .graph1 .sect3 p {
    font-size: 5vw;
  }
}
section .graph1 .leftSect .sect1 {
  background-color: #79958b;
}
section .graph1 .leftSect .sect2 {
  background-color: #aeaeaf;
}
section .graph1 .leftSect::before {
  content: '';
  position: absolute;
  display: block;
  border-style: solid;
  border-color: transparent #000;
  border-width: 60px 0 60px 60px;
  top: 50%;
  right: -45px;
  margin-top: -60px;
  transform: scaleX(0.5);
}
@media screen and (max-width: 768px) {
  section .graph1 .leftSect::before {
    border-color: #000 transparent;
    border-width: 20vw 20vw 0 20vw;
    top: auto;
    bottom: -15vw;
    right: auto;
    left: calc(50% - 20vw);
    margin-top: auto;
    transform: scaley(0.5);
  }
}
section .graph1 .rightSect .sect1 {
  background-color: #87bfaa;
}
section .graph1 .rightSect .sect2 {
  background-color: #b2dacb;
}
section .graph2 {
  width: 100%;
}
@media screen and (max-width: 768px) {
  section .graph2 {
    width: 90%;
    margin: auto;
  }
}
section .graph2 p {
  text-align: center;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro","メイリオ","Meiryo","ＭＳ Ｐゴシック",sans-serif;
  font-size: 22px;
}
section .priceGraph {
  width: 100%;
}
section .priceGraph * {
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro","メイリオ","Meiryo","ＭＳ Ｐゴシック",sans-serif;
}
section .priceGraph .priceLine {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 60px;
}
section .priceGraph .priceLine:first-child .tx2::before {
  content: '';
  position: absolute;
  display: block;
  border-style: solid;
  border-color: #000 transparent;
  border-width: 50px 50px 0 50px;
  left: calc(50% - 50px);
  bottom: -55px;
  transform: scaleY(0.7);
}
section .priceGraph .priceLine .tx1 {
  font-size: 25px;
  margin-right: 20px;
}
section .priceGraph .priceLine .tx2 {
  font-size: 47px;
  font-family: Arial, Helvetica, "sans-serif";
  color: #C49E66;
  border: 3px solid #C49E66;
  padding: 0 30px;
  position: relative;
}
section .priceGraph .priceLine .tx2 .unit {
  font-size: 25px;
  margin-left: 10px;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro","メイリオ","Meiryo","ＭＳ Ｐゴシック",sans-serif;
  color: #000;
}
section .priceGraph .result {
  font-size: 50px;
  text-align: center;
  font-weight: bold;
  color: #C49E66;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
  margin-top: 30px;
  margin-bottom: 50px;
}
section .separateList2 {
  margin-top: 80px;
}
section .separateList2 p {
  text-align: center;
  font-size: 18px;
  line-height: 1.5em;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro","メイリオ","Meiryo","ＭＳ Ｐゴシック",sans-serif;
  margin-bottom: 30px;
}
section .separateList2 ul {
  display: flex;
}
section .gallery {
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  section .gallery {
    margin-top: 2vw;
  }
}
section .gallery p {
  background-color: #C49E66;
  color: #fff;
  text-align: center;
  font-size: 20px;
  line-height: 1.6em;
  padding: 20px 0;
}
@media screen and (max-width: 768px) {
  section .gallery p {
    font-size: 3.5vw;
    padding: 2vw 0;
  }
}
section .gallery ul {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
section .gallery ul li {
  width: 33.33%;
}
section .gallery ul li.lg {
  text-align: center;
}
section .gallery ul li.lg img {
  width: 80%;
}
section .gallery2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  section .gallery2 {
    display: block;
  }
}
section .gallery2 .glCell {
  width: 30%;
}
@media screen and (max-width: 768px) {
  section .gallery2 .glCell {
    width: 100%;
    margin-bottom: 12vw;
  }
}
section .gallery2 .glCell .image {
  width: 100%;
}
section .gallery2 .glCell .texts .tagNam {
  font-size: 20px;
  margin-top: 20px;
  height: 90px;
  line-height: 1.5em;
}
@media screen and (max-width: 768px) {
  section .gallery2 .glCell .texts .tagNam {
    font-size: 3.5vw;
    margin-top: 4vw;
    height: auto;
  }
}
section .gallery2 .glCell .texts .name {
  font-size: 30px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  section .gallery2 .glCell .texts .name {
    font-size: 6vw;
    margin-bottom: 4vw;
  }
}
section .gallery2 .glCell .texts .mainBody {
  font-size: 18px;
  line-height: 1.5em;
  height: 300px;
}
@media screen and (max-width: 768px) {
  section .gallery2 .glCell .texts .mainBody {
    font-size: 3.5vw;
    height: auto;
    margin-bottom: 3vw;
  }
}
section .gallery2 .glCell .texts .subBody {
  font-size: 17px;
  line-height: 1.5em;
}
@media screen and (max-width: 768px) {
  section .gallery2 .glCell .texts .subBody {
    font-size: 3.5vw;
  }
}
section.inq {
  display: none;
}
section.inq * {
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro","メイリオ","Meiryo","ＭＳ Ｐゴシック",sans-serif;
}
section.inq.active {
  display: block;
}
section.inq dl {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px dotted #000;
  padding: 25px 0;
}
@media screen and (max-width: 768px) {
  section.inq dl {
    display: block;
    padding: 5vw 0;
  }
}
section.inq dl:last-of-type {
  border-bottom: none;
}
section.inq dl.required .reqMark {
  display: inline;
}
section.inq dl dt {
  width: 30%;
  font-size: 17px;
  line-height: 27px;
}
@media screen and (max-width: 768px) {
  section.inq dl dt {
    font-size: 3.5vw;
    line-height: 4.5vw;
    width: 100%;
    margin-bottom: 1vw;
  }
  section.inq dl dt br {
    display: none;
  }
}
section.inq dl dt .reqMark {
  display: none;
  color: #C49E66;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  section.inq dl dt .reqMark {
    font-size: 3vw;
  }
}
section.inq dl dt .cap {
  font-size: 13px;
}
@media screen and (max-width: 768px) {
  section.inq dl dt .cap {
    font-size: 3vw;
  }
}
section.inq dl dd {
  width: 70%;
}
@media screen and (max-width: 768px) {
  section.inq dl dd {
    width: 100%;
  }
}
section.inq dl dd ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
section.inq dl dd ul li {
  width: 20%;
}
section.inq dl dd ul li input[type=radio] {
  display: none;
}
section.inq dl dd ul li label {
  position: relative;
  padding-left: 30px;
  font-size: 18px;
  padding-top: 3px;
}
@media screen and (max-width: 768px) {
  section.inq dl dd ul li label {
    padding-left: 6vw;
    font-size: 3.5vw;
    padding-top: 1vw;
  }
}
section.inq dl dd ul li input[type=radio] + label::before {
  position: absolute;
  content: '';
  display: block;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #ddd;
  left: 0;
  top: 0;
}
@media screen and (max-width: 768px) {
  section.inq dl dd ul li input[type=radio] + label::before {
    width: 5vw;
    height: 5vw;
  }
}
section.inq dl dd ul li input[type=radio] + label::after {
  position: absolute;
  content: '';
  display: block;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #000;
  left: 5px;
  top: 5px;
  opacity: 0;
  transition: .3s;
}
@media screen and (max-width: 768px) {
  section.inq dl dd ul li input[type=radio] + label::after {
    width: 3vw;
    height: 3vw;
    left: 1vw;
    top: 1vw;
  }
}
section.inq dl dd ul li input[type=radio]:checked + label::after {
  opacity: 1;
}
section.inq dl dd ul li input[type=text] {
  width: 85%;
  margin-left: 10px;
}
@media screen and (max-width: 768px) {
  section.inq dl dd ul li input[type=text] {
    width: 100%;
    margin-left: 0;
    margin-top: 3vw;
  }
}
section.inq dl dd input[type="tel"], section.inq dl dd input[type="email"], section.inq dl dd input[type="text"], section.inq dl dd textarea, section.inq dl dd select {
  width: 100%;
  font-size: 16px;
  padding: 5px 10px;
  line-height: 27px;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
}
@media screen and (max-width: 768px) {
  section.inq dl dd input[type="tel"], section.inq dl dd input[type="email"], section.inq dl dd input[type="text"], section.inq dl dd textarea, section.inq dl dd select {
    font-size: 3.5vw;
    padding: 1vw 2vw;
    line-height: 5.5vw;
  }
}
section.inq dl dd select {
  color: #555;
  line-height: 27px;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
@media screen and (max-width: 768px) {
  section.inq dl dd select {
    line-height: 5.5vw;
  }
}
section.inq dl dd select option {
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  section.inq dl dd select option {
    margin-bottom: 3vw;
  }
}
section.inq .err {
  font-size: 12px;
  color: #FF0004;
}
@media screen and (max-width: 768px) {
  section.inq .err {
    font-size: 3vw;
  }
}
section.verification {
  display: none;
}
section.verification * {
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro","メイリオ","Meiryo","ＭＳ Ｐゴシック",sans-serif;
}
section.verification.active {
  display: block;
}
section.verification .lead {
  font-size: 18px;
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  section.verification .lead {
    font-size: 4vw;
    margin-bottom: 4vw;
  }
}
section.verification dl {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px dotted #000;
  padding: 25px 0;
}
@media screen and (max-width: 768px) {
  section.verification dl {
    padding: 5vw 0;
    display: block;
  }
}
section.verification dl.desable {
  display: none;
}
section.verification dt {
  font-size: 16px;
  line-height: 27px;
  font-weight: bold;
  width: 27%;
}
@media screen and (max-width: 768px) {
  section.verification dt {
    width: 100%;
    font-size: 3.5vw;
    line-height: 6vw;
  }
}
section.verification dt:before {
  content: "■";
}
section.verification dd {
  width: 73%;
  font-size: 17px;
  line-height: 27px;
}
@media screen and (max-width: 768px) {
  section.verification dd {
    width: 100%;
    font-size: 4vw;
    line-height: 6vw;
  }
}
section.verification .send {
  margin-top: 20px;
}
section.thanks {
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  section.thanks {
    height: 70vh;
  }
}
section.thanks .inner {
  width: 100%;
}
section.thanks .inner .tnkTit {
  font-size: 25px;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 768px) {
  section.thanks .inner .tnkTit {
    font-size: 5vw;
  }
}
section.thanks .inner .tnkBody {
  text-align: center;
  font-size: 18px;
  line-height: 40px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  section.thanks .inner .tnkBody {
    font-size: 3.5vw;
    line-height: 7vw;
  }
}
section.thanks .send {
  justify-content: center;
}
section .send {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  section .send {
    justify-content: space-between;
  }
}
section .send a {
  display: block;
  margin: 0 10px;
  width: 30%;
  background-color: #C49E66;
  text-align: center;
  color: #fff;
  font-size: 22px;
  border-radius: 40px;
}
@media screen and (max-width: 768px) {
  section .send a {
    width: 48%;
    margin: 0;
    font-size: 4vw;
    border-radius: 6vw;
    padding: 2vw 0;
  }
}

footer {
  background-color: #C49E66;
  padding: 30px;
}
@media screen and (max-width: 768px) {
  footer {
    padding: 6vw;
  }
}
footer p {
  color: #fff;
  text-align: right;
}
@media screen and (max-width: 768px) {
  footer p {
    text-align: center;
  }
}
footer p.title {
  font-size: 14px;
  line-height: 24px;
}
@media screen and (max-width: 768px) {
  footer p.title {
    font-size: 3vw;
    line-height: 4vw;
  }
}
footer p.shopName {
  font-size: 30px;
  line-height: 40px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  footer p.shopName {
    font-size: 8vw;
    line-height: 14vw;
  }
}
footer p.addres {
  font-size: 14px;
  line-height: 22px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  footer p.addres {
    font-size: 3vw;
    line-height: 4vw;
  }
}
footer p.copyright {
  font-size: 12px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  footer p.copyright {
    font-size: 3.5vw;
    line-height: 4vw;
    margin-top: 3vw;
  }
}

.formLink {
  margin: 50px 0;
}
@media screen and (max-width: 768px) {
  .formLink {
    margin: 10vw 0;
  }
}
.formLink a {
  display: block;
  background-color: #000;
  color: #fff;
  width: 45%;
  text-align: center;
  margin: auto;
  font-size: 24px;
  padding: 8px 0;
  border-radius: 15px;
}
@media screen and (max-width: 768px) {
  .formLink a {
    width: 80%;
    font-size: 4vw;
    border-radius: 10vw;
    padding: 3vw 0;
  }
}
.formLink a.brown {
  background-color: #C49E66;
  margin-bottom: 20px;
}

a.backTop {
  font-size: 15px;
  display: block;
  position: fixed;
  left: calc(1000px + (100vw - 980px)/2);
  bottom: 20px;
  z-index: 1;
  color: #C49E66;
  font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
  opacity: 0;
}
a.backTop.active {
  opacity: 1;
}
@media screen and (max-width: 768px) {
  a.backTop {
    left: auto;
    right: 0;
    font-size: 3vw;
    background-color: rgba(255, 255, 255, 0.8);
    border-top: 1px solid #C49E66;
    border-bottom: 1px solid #C49E66;
    border-left: 1px solid #C49E66;
    border-top-left-radius: 2vw;
    border-bottom-left-radius: 2vw;
    padding: 3vw;
    line-height: 1em;
    bottom: 2vw;
  }
}
a.backTop.absolute {
  position: absolute;
  bottom: 150px;
}
@media screen and (max-width: 768px) {
  a.backTop.absolute {
    bottom: 30vw;
  }
}

.modalWrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity .5s;
}
.modalWrap.active {
  opacity: 1;
  pointer-events: all;
}
.modalWrap .closeBt {
  z-index: 9994;
  width: 40px;
  height: 40px;
  position: absolute;
  right: 0;
  top: -40px;
  -webkit-appearance: none;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  padding: 0;
  color: #fff;
  font-style: normal;
  font-size: 40px;
  font-family: Arial, Baskerville, monospace;
  line-height: 3vw;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  border: 0;
  background: none;
  outline: none;
  box-shadow: none;
}
@media screen and (max-width: 768px) {
  .modalWrap .closeBt {
    width: 10vw;
    height: 10vw;
    top: -10vw;
  }
}
.modalWrap .closeBt::before, .modalWrap .closeBt::after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background-color: #fff;
  border-radius: 4px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
}
.modalWrap .closeBt::before {
  transform: rotate(45deg);
}
.modalWrap .closeBt::after {
  transform: rotate(-45deg);
}
.modalWrap .modal {
  width: 1000px;
  position: relative;
  top: 50%;
  left: 50%;
  background-color: #fff;
  padding: 15px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .modalWrap .modal {
    width: 90%;
    padding: 3vw;
  }
}
.modalWrap .modal.cancel {
  display: none;
}
.modalWrap .modal.cancel.active {
  display: block;
}
.modalWrap .modal.cancel .title {
  text-align: center;
  font-size: 24px;
  background-color: #C49E66;
  color: #fff;
  padding: 5px 0;
}
@media screen and (max-width: 768px) {
  .modalWrap .modal.cancel .title {
    font-size: 5vw;
    padding: 1vw 0;
  }
}
.modalWrap .modal.cancel .listWrap {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .modalWrap .modal.cancel .listWrap {
    margin-top: 6vw;
  }
}
.modalWrap .modal.cancel .listWrap .listTitle {
  font-weight: bold;
  font-size: 20px;
  border-bottom: 4px double #C49E66;
  margin-bottom: 10px;
  color: #C49E66;
}
@media screen and (max-width: 768px) {
  .modalWrap .modal.cancel .listWrap .listTitle {
    text-align: center;
    font-size: 4vw;
    margin-bottom: 2vw;
  }
}
.modalWrap .modal.cancel .listWrap ul li {
  display: flex;
  margin-bottom: 5px;
}
.modalWrap .modal.cancel .listWrap ul li p {
  font-size: 15px;
}
@media screen and (max-width: 768px) {
  .modalWrap .modal.cancel .listWrap ul li p {
    font-size: 3.5vw;
  }
}
.modalWrap .modal.cancel .listWrap ul li p.ulTit {
  font-weight: bold;
}
.modalWrap .modal.cancel .capWrap {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .modalWrap .modal.cancel .capWrap {
    margin-top: 6vw;
  }
}
.modalWrap .modal.cancel .capWrap .capTitle {
  font-size: 17px;
  font-weight: bold;
  margin-bottom: 5px;
}
@media screen and (max-width: 768px) {
  .modalWrap .modal.cancel .capWrap .capTitle {
    font-size: 3vw;
  }
}
.modalWrap .modal.cancel .capWrap .cap {
  padding-left: 1em;
  text-indent: -1em;
  font-size: 12px;
  margin-bottom: 5px;
  line-height: 17px;
}
@media screen and (max-width: 768px) {
  .modalWrap .modal.cancel .capWrap .cap {
    font-size: 3vw;
    line-height: 4.5vw;
    margin-bottom: 3vw;
  }
}
.modalWrap .modal.yuzuriha1, .modalWrap .modal.yuzuriha2, .modalWrap .modal.yuzuriha3 {
  display: none;
}
.modalWrap .modal.yuzuriha1.active, .modalWrap .modal.yuzuriha2.active, .modalWrap .modal.yuzuriha3.active {
  display: block;
}
