@charset "UTF-8";

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 10px;
  -webkit-tap-highlight-color: transparent;
  font-family: sans-serif;
  line-height: 1.15;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  font-size: 18px;
  color: #070606;
  /*font-family: "小塚ゴシック", "Noto Sans Japanese", "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;*/
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro",
    "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic",
    sans-serif;
  font-weight: 500;
  height: 100%;
  margin: 0;
  padding: 0;
  line-height: 2;
  width: 100%;
  letter-spacing: 0.06em;
}

a {
  color: inherit;
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
  transition: 1s;
  -moz-transition: 1s;
  -webkit-transition: 1s;
  -o-transition: 1s;
  -ms-transition: 1s;
}

a:hover {
  text-decoration: none;
  opacity: 0.65;
}

a:active,
a:hover {
  outline-width: 0;
}

li {
  margin: 0;
  list-style: none;
}

ul,
ol,
dl {
  margin: 0;
  padding: 0;
}

p {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

figure {
  margin: 0;
}

figcaption,
figure,
main {
  display: block;
}

article,
aside,
footer,
header,
nav,
section,
.section {
  display: block;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

audio,
video {
  display: inline-block;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

img {
  border-style: none;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}

button,
input,
optgroup,
select,
textarea {
  font-family: sans-serif;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: none;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

textarea {
  overflow: auto;
}

[type="checkbox"],
[type="radio"] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
}

address {
  font-style: normal;
}

figure {
  margin: 0;
}

dd {
  margin-left: 0;
}

/* form input*/
table {
  border-collapse: collapse;
  table-layout: fixed;
  border-spacing: 0;
  max-width: 100%;
  width: 100%;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select {
  font-size: 16px;
  font-size: 1.6rem;
  background: #fff;
  border: 1px solid #e8e8e8;
  margin: 2px;
  outline: none;
  padding: 0 0.3em;
  width: 100%;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
select:focus {
  border-color: #39b8b8;
}

select {
  font-size: 13px;
  font-size: 1.3rem;
  height: 2.5em;
  padding: 0.5em;
  width: auto;
  min-width: 7em;
}

textarea {
  font-size: 16px;
  font-size: 1.6rem;
  background: #fff;
  border: 1px solid #e8e8e8;
  padding: 0 0.3em;
  outline: none;
  resize: vertical;
  width: 100%;
}

textarea:focus {
  border-color: #39b8b8;
}

.text_a {
  text-align: center;
  font-weight: bold;
  margin: 5rem;
}

input[type="checkbox"],
input[type="radio"] {
  background: #fff;
  cursor: pointer;
  margin-right: 0.5em;
}

/* Grid System width Flex */
.flexbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flex-inline {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

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

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

.flex-col {
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: col;
  flex-direction: col;
}

.flex-col-rev {
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: col-reverse;
  flex-direction: col-reverse;
}

.flex-nowrap {
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
}

.flex-wrap {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse;
  flex-wrap: wrap-reverse;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.flex-content-around {
  -webkit-box-pack: stretch;
  -ms-flex-pack: stretch;
  justify-content: stretch;
}

/*Flex Items*/
.flex {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  padding: 10px;
}

.flex-1 {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 10px;
}

.flex-2 {
  -webkit-box-flex: 2;
  -ms-flex: 2;
  flex: 2;
  padding: 10px;
}

.flex-3 {
  -webkit-box-flex: 3;
  -ms-flex: 3;
  flex: 3;
  padding: 10px;
}

.flex-4 {
  -webkit-box-flex: 4;
  -ms-flex: 4;
  flex: 4;
  padding: 10px;
}

.flex-5 {
  -webkit-box-flex: 5;
  -ms-flex: 5;
  flex: 5;
  padding: 10px;
}

.flex-6 {
  -webkit-box-flex: 6;
  -ms-flex: 6;
  flex: 6;
  padding: 10px;
}

.flex-7 {
  -webkit-box-flex: 7;
  -ms-flex: 7;
  flex: 7;
  padding: 10px;
}

.flex-8 {
  -webkit-box-flex: 8;
  -ms-flex: 8;
  flex: 8;
  padding: 10px;
}

.flex-9 {
  -webkit-box-flex: 9;
  -ms-flex: 9;
  flex: 9;
  padding: 10px;
}

.flex-10 {
  -webkit-box-flex: 10;
  -ms-flex: 10;
  flex: 10;
  padding: 10px;
}

.flex-11 {
  -webkit-box-flex: 11;
  -ms-flex: 11;
  flex: 11;
  padding: 10px;
}

.flex-12 {
  -webkit-box-flex: 12;
  -ms-flex: 12;
  flex: 12;
  padding: 10px;
}

/*margin*/
.m-0 {
  margin: 0;
}

.mt-0 {
  margin-top: 0 !important;
}

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

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

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

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

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

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

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

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

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

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

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

.mb-5 {
  margin-bottom: 5px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-90 {
  margin-bottom: 90px;
}

.mb-100 {
  margin-bottom: 100px;
}

.mb-110 {
  margin-bottom: 110px;
}

.mb-120 {
  margin-bottom: 120px;
}

.mb-130 {
  margin-bottom: 130px;
}

.mb-140 {
  margin-bottom: 140px;
}

.mb-150 {
  margin-bottom: 150px;
}

.mb-160 {
  margin-bottom: 160px;
}

.mb-170 {
  margin-bottom: 170px;
}

.mb-180 {
  margin-bottom: 180px;
}

.mb-190 {
  margin-bottom: 190px;
}

.mb-200 {
  margin-bottom: 200px;
}

.mb-1em {
  margin-bottom: 1em;
}

.mb-2em {
  margin-bottom: 2em;
}

.pt-80 {
  padding-top: 80px;
}

/* toggle button */
.toggle {
  display: none;
}

.toggle[aria-expanded="true"] .toggle__bar {
  background-color: transparent;
}

.toggle[aria-expanded="true"] .toggle__bar::before {
  -webkit-transform: translateY(8px) rotate(45deg);
  transform: translateY(8px) rotate(45deg);
}

.toggle[aria-expanded="true"] .toggle__bar::after {
  -webkit-transform: translateY(-8px) rotate(-45deg);
  transform: translateY(-8px) rotate(-45deg);
}

.toggle[aria-expanded="true"] .toggle__title:before {
  content: "とじる";
}

@media screen and (max-width: 768px) {
  .toggle {
    cursor: pointer;
    display: inline-block;
    background: #fff;
    border: none;
    outline: none;
    position: absolute;
    padding: 13px;
    right: 20px;
    text-align: center;
    top: 25px;
    z-index: 7;
    border-radius: 100%;
    box-shadow: 0 0 10px 0 #dcdcdc;
  }

  .toggle__bar {
    position: relative;
    margin-top: 8px;
    margin-bottom: 8px;
    margin-left: auto;
    margin-right: auto;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: block;
    width: 25px;
    height: 3px;
    background-color: #070606;
    outline: 1px solid transparent;
    -webkit-transition-property: background-color, -webkit-transform;
    transition-property: background-color, -webkit-transform;
    transition-property: background-color, transform;
    transition-property: background-color, transform, -webkit-transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
  }

  .toggle__bar::before,
  .toggle__bar::after {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #070606;
    outline: 1px solid transparent;
    -webkit-transition-property: background-color, -webkit-transform;
    transition-property: background-color, -webkit-transform;
    transition-property: background-color, transform;
    transition-property: background-color, transform, -webkit-transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
  }

  .toggle__bar::before,
  .toggle__bar::after {
    position: absolute;
    content: "";
  }

  .toggle__bar::before {
    top: -8px;
  }

  .toggle__bar::after {
    top: 8px;
  }

  .toggle__title {
    font-size: 10px;
    font-size: 1rem;
    display: block;
    padding-top: 5px;
    width: 4em;
    white-space: nowrap;
  }

  .toggle__title:before {
    content: "メニュー";
    color: #070606;
  }
}

@media screen and (max-width: 550px) {
  .toggle {
    top: 10px;
    right: 10px;
    padding: 10px;
  }
}

.icon-check,
.list-check>li {
  position: relative;
  padding-left: 1.5em;
}

.icon-check:before,
.list-check>li:before {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\f00c";
  position: absolute;
  left: 0;
  top: 0;
  line-height: 2;
}

.icon-come {
  text-indent: -1em;
  margin-left: 1em;
}

.icon-come:before {
  content: "※";
}

.list,
.pagination {
  list-style: none;
  margin-top: 0;
  padding-left: 0;
}

.fade {
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}

.fade.in {
  opacity: 1;
}

/* Hamburger menu */
.collapse {
  display: none;
}

.collapse.in {
  display: block;
}

tr.collapse.in {
  display: table-row;
}

tbody.collapse.in {
  display: table-row-group;
}

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition-property: height, visibility;
  transition-property: height, visibility;
  -webkit-transition-duration: 0.35s;
  transition-duration: header.35s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
}

.gnav {
  line-height: 1.6;
  margin: 0;
}

@media screen and (min-width: 769px) {
  .gnav {
    display: block !important;
    height: inherit !important;
  }
}

@media screen and (max-width: 768px) {
  .gnav {
    transition: height.2s ease-in;
    width: 100%;
    height: 0;
    background: #fff;
    z-index: 6;
    position: absolute;
    top: 0;
  }

  .gnav.in {
    height: 100vh;
  }
}

/*////////////////////////

 user common css

////////////////////////*/

[class^="container"] {
  width: 100%;
  max-width: 1030px;
  margin: 0 auto;
  padding-right: 15px;
  padding-left: 15px;
}

.container-l {
  max-width: 1410px;
}

.container-m {
  max-width: 1230px;
}

.longurl {
  word-break: break-all;
}

.fz-13 {
  font-size: 13px;
}

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

.fz-15 {
  font-size: 15px;
}

.fz-16 {
  font-size: 16px;
}

.fz-22 {
  font-size: 22px;
}

.fz-24 {
  font-size: 24px;
}

.f-bold {
  font-weight: bold;
}

.f-normal {
  font-weight: normal;
}

.f-red {
  color: #ff0000;
}

.f-pink {
  color: #e5635d;
}

.f-blue {
  color: #399fa5;
}

.f-yellow {
  color: #d2d259;
}

.f-underline {
  text-decoration: underline;
}

.f-marker-yellow {
  background: linear-gradient(transparent 70%, #ffff99 70%);
}

.f-underline-yellow {
  border-bottom: 3px solid #d4d459;
}

.t-center {
  text-align: center;
}

.t-left {
  text-align: left;
}

.t-right {
  text-align: right;
}

.lh15 {
  line-height: 1.5;
}

.large__txt {
  font-size: 3.6rem;
  font-weight: bold;
}

.hdg01 {
  /* background: url(img/top/heading_l-bg.jpg); */
  background: #E60B45;
  border-radius: 48px;
  background-repeat: repeat;
  /* border: 2px solid #070606; */
  text-align: center;
  position: relative;
  font-size: 40px;
  font-weight: bold;
  color: #fff;
  line-height: 0.1;
  margin-bottom: 50px;
  /* margin-top: 80px; */
  margin-top: 95px;
  position: relative;
  /* border-radius: 6px; */
}

.hdg01:before {
  content: "";
  position: absolute;
  background: url(img/top/heading_l-star01.png);
  width: 40px;
  height: 41px;
  left: 0;
  bottom: 10px;
}

.hdg01::after {
  content: "";
  position: absolute;
  background: url(img/top/heading_l-star02.png);
  width: 74px;
  height: 56px;
  right: 0;
  /* top: 0; */
}

/* @media screen and (max-width: 550px) {
  .hdg01::after {
    top: -35px;
  }
} */

.hdg01__inner {
  padding: 15px 20px;
  position: relative;
}

.hdg01__inner::after {
  position: absolute;
  content: "";
  background: url(img/top/heading_l-triangle.png);
  width: 31px;
  height: 12px;
  left: calc(50% - 15.5px);
  bottom: -11px;
}

.hdg01 span:not(.hdg01__sub) {
  display: inline-block;
  line-height: 1.2;
  z-index: 2;
  color: #FFF;
  /* text-shadow: 3px 3px 3px #1d95b5, -3px -3px 3px #1d95b5, -3px 3px 3px #1d95b5,
    3px -3px 3px #1d95b5, 3px 0 3px #1d95b5, -3px 0 3px #1d95b5,
    0 3px 3px #1d95b5, 0 -3px 3px #1d95b5; */
  /* text-shadow: rgb(255, 255, 255) 5px 0px 0px,
    rgb(255, 255, 255) 4.90033px 0.993347px 0px,
    rgb(255, 255, 255) 4.60531px 1.94709px 0px,
    rgb(255, 255, 255) 4.12668px 2.82321px 0px,
    rgb(255, 255, 255) 3.48353px 3.58678px 0px,
    rgb(255, 255, 255) 2.70151px 4.20735px 0px,
    rgb(255, 255, 255) 1.81179px 4.6602px 0px,
    rgb(255, 255, 255) 0.849836px 4.92725px 0px,
    rgb(255, 255, 255) -0.145998px 4.99787px 0px,
    rgb(255, 255, 255) -1.13601px 4.86924px 0px,
    rgb(255, 255, 255) -2.08073px 4.54649px 0px,
    rgb(255, 255, 255) -2.94251px 4.04248px 0px,
    rgb(255, 255, 255) -3.68697px 3.37732px 0px,
    rgb(255, 255, 255) -4.28444px 2.57751px 0px,
    rgb(255, 255, 255) -4.71111px 1.67494px 0px,
    rgb(255, 255, 255) -4.94996px 0.7056px 0px,
    rgb(255, 255, 255) -4.99147px -0.291871px 0px,
    rgb(255, 255, 255) -4.83399px -1.27771px 0px,
    rgb(255, 255, 255) -4.48379px -2.2126px 0px,
    rgb(255, 255, 255) -3.95484px -3.05929px 0px,
    rgb(255, 255, 255) -3.26822px -3.78401px 0px,
    rgb(255, 255, 255) -2.4513px -4.35788px 0px,
    rgb(255, 255, 255) -1.53666px -4.75801px 0px,
    rgb(255, 255, 255) -0.560763px -4.96846px 0px,
    rgb(255, 255, 255) 0.437495px -4.98082px 0px,
    rgb(255, 255, 255) 1.41831px -4.79462px 0px,
    rgb(255, 255, 255) 2.34258px -4.41727px 0px,
    rgb(255, 255, 255) 3.17346px -3.86382px 0px,
    rgb(255, 255, 255) 3.87783px -3.15633px 0px,
    rgb(255, 255, 255) 4.4276px -2.32301px 0px,
    rgb(255, 255, 255) 4.80085px -1.39708px 0px,
    rgb(255, 255, 255) 4.98271px -0.415447px 0px; */
  /* filter: drop-shadow(4px 4px 0 #424E58); */
  letter-spacing: 0;
}

.hdg01__sub {
  font-size: 11px;
  background: #fff;
  /* color: #53626E; */
  color: #E60B45;
  display: inline-block;
  line-height: 1.4;
  padding: 0 4px;
  letter-spacing: 0;
  border-radius: 4px;
  position: relative;
  z-index: 2;
}

.hdg02 {
  text-align: center;
  position: relative;
  font-size: 20px;
  font-weight: bold;
}

.hdg02 span {
  background: #fff;
  display: inline-block;
  padding: 0 10px;
  position: relative;
  z-index: 2;
}

.hdg02:before {
  content: "";
  width: 100%;
  height: 2px;
  border-bottom: 1px dotted #070606;
  border-top: 1px dotted #070606;
  position: absolute;
  left: 0;
  top: calc(50% - 2px);
}

.hdg03 {
  font-weight: bold;
  border: 2px solid #070606;
  font-size: 18px;
  text-align: center;
  border-radius: 50px;
  padding: 5px 20px;
  margin-bottom: 20px;
}

.hdg04 {
  text-align: center;
  font-size: 22px;
  background: #f6f6f6;
  border: 1px solid #ddd;
  border-radius: 50px;
  padding: 10px 25px;
  position: relative;
}

.hdg04:after {
  content: "";
  width: 6px;
  height: 6px;
  border-bottom: 1px solid #ddd;
  border-left: 1px solid #ddd;
  background: #f6f6f6;
  position: absolute;
  bottom: -5px;
  left: calc(50% - 3px);
  transform: rotate(-45deg);
}

.hdg05 {
  background: #d4d459;
  border-radius: 5px;
  text-align: center;
  font-size: 18px;
  margin-bottom: 5px;
}

.hdg06 {
  color: #E60B45;
  font-weight: bold;
  font-size: 22px;
  text-align: center;
  border-radius: 50px;
  padding: 5px 20px;
  /* background: url(img/top/heading_s-bg.jpg); */
  background-repeat: repeat;
  margin-bottom: 25px;
  line-height: 1.5;
  /* border: 2px solid #070606; */
  letter-spacing: 0.1em;
  border: 3px solid #E60B45;
  border-radius: 21px;
}

.hdg06__inner {
  padding: 0 25px;
  display: inline-block;
  position: relative;
  color: #E60B45;
}

.hdg06__inner:before,
.hdg06__inner:after {
  content: "";
  width: 1px;
  height: 16px;
  background: #E60B45;
  position: absolute;
  top: calc(50% - 8px);
}

.hdg06__inner:before {
  left: 0;
}

.hdg06__inner:after {
  right: 0;
}

@media screen and (max-width: 550px) {
  .hdg06 {
    font-size: 20px;
    margin-top: 40px;
  }

  .hdg06__inner {
    padding: 0 15px;
  }
}

.is-blue.hdg06 {
  background: #7e98b1;
  color: #fff;
}

.is-blue .hdg06__inner:before,
.is-blue .hdg06__inner:after {
  /* background: #fff; */
  background: #E60B45;
}

.hdg07 {
  background: #E60B45;
  border-radius: 5px;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
  padding: 0 10px;
  display: inline-block;
}

.hdg08 {
  background: #deeb74;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  border-radius: 0 50px 50px 0;
  padding: 0 10px;
}

.link-underline:not(:hover) {
  text-decoration: underline;
}

.btn_round {
  border-radius: 70px;
  border: 2px solid #17388e;
  text-align: center;
  max-width: 480px;
  width: 100%;
  margin: auto;
  padding: 25px 15px;
  display: block;
  position: relative;
  line-height: 1.5;
  box-shadow: 4px 4px 0 rgba(23, 56, 142, 0.15);
}

.btn_round::after {
  content: "\f078";
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  position: absolute;
  top: 37%;
  right: 35px;
  line-height: 1;
}

.btn_round:hover {
  box-shadow: none;
  -ms-transform: translate(6px, 6px);
  -webkit-transform: translate(6px, 6px);
  transform: translate(6px, 6px);
}

.btn01 {
  text-decoration: underline;
  position: relative;
  padding-left: 15px;
}

.btn01:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5.5px 0 5.5px 6px;
  border-color: transparent transparent transparent #070606;
  position: absolute;
  left: 0;
  top: calc(50% - 6px);
}

.btn02 {
  text-align: center;
  color: #fff;
  background: #e4e8f2;
  border-radius: 10px;
  display: inline-block;
  width: 100%;
  max-width: 600px;
  font-size: 22px;
  font-weight: bold;
  line-height: 1.5;
}

.btn02:hover {
  opacity: 1;
}

.btn02:hover .btn02__inner,
.btn02.is-still .btn02__inner {
  transform: translate(0, 0);
}

.btn02__inner {
  background: #070606;
  border-radius: 10px;
  /*box-shadow: 2px 2px 12px -3px rgba(0,0,0,0.6);*/
  padding: 25px 15px;
  transform: translate(-6px, -6px);
  transition: 0.5s;
  position: relative;
}

.btn02__inner:after {
  content: "\f054";
  position: absolute;
  top: calc(50% - 12px);
  right: 25px;
  font-family: Font Awesome\5 Free;
  font-weight: 900;
  line-height: 1;
  color: #fff;
}

.is-blank .btn02__inner:after {
  content: "\f35d";
  font-size: 16px;
  top: calc(50% - 8px);
}

.is-down .btn02__inner:after {
  content: "\f078";
}

.is-download .btn02__inner:after {
  content: "\f381";
}

.btn02.is-yellow {
  background: #f4e9d5;
}

.is-yellow .btn02__inner {
  background: #daa754;
}

.btn02.is-blue {
  background: #dfe4e8;
}

.is-blue .btn02__inner {
  background: #7e98b1;
}

.btn02.is-pink {
  background: #f8d8d6;
}

.is-pink .btn02__inner {
  background: #e5635d;
}

.btn02.is-pink02 {
  background: #f5d4e0;
}

.is-pink02 .btn02__inner {
  background: #d95583;
}

.btn02.is-green {
  background: #cee7e9;
}

.is-green .btn02__inner {
  background: #3a9fa7;
}

.is-red .btn02__inner {
  background: #070606;
}

.is-red .btn02__inner {
  padding: 35px 15px;
}

.btn02.is-pdf .btn02__inner::before {
  content: "";
  width: 22px;
  height: 28px;
  background-repeat: no-repeat;
  background-image: url(img/common/icn_pdf.png);
  background-size: contain;
  display: inline-block;
  margin-right: 15px;
  vertical-align: middle;
}

.btn02.is-walk .btn02__inner:before {
  content: "";
  width: 25px;
  height: 40px;
  background: url(img/common/ico_walkin@2x.png) no-repeat center / contain;
  position: absolute;
  top: calc(50% - 20px);
  left: 45px;
}

.btn02.is-drive .btn02__inner:before {
  content: "";
  width: 49px;
  height: 24px;
  background: url(img/common/ico_drive@2x.png) no-repeat center / contain;
  position: absolute;
  top: calc(50% - 12px);
  left: 35px;
}

.btn02.is-still {
  pointer-events: none;
}

.btn02.is-still .btn02__inner {
  background: #dfdfdf;
}

.btn02.is-100 {
  max-width: 100%;
}

.btn03 {
  font-size: 14px;
  line-height: 1.4;
  background: #fff;
  border: 1px solid #070606;
  border-radius: 50px;
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 220px;
  padding: 17px 15px;
}

.btn03:after {
  content: "\f078";
  position: absolute;
  top: calc(50% - 6px);
  right: 25px;
  font-family: Font Awesome\5 Free;
  font-weight: 900;
  font-size: 12px;
  line-height: 1;
}

.btn_blank {
  text-decoration: underline;
  position: relative;
  padding-right: 25px;
  display: inline-block;
}

.btn_blank:after {
  content: "\f35d";
  font-weight: 900;
  font-family: Font Awesome\5 Free;
  position: absolute;
  right: 0;
  top: calc(50% - 16px);
  font-size: 16px;
}

.hdg_bullet {
  position: relative;
  padding-left: 30px;
  font-size: 20px;
}

.hdg_bullet:before {
  content: "";
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #d4d459;
  position: absolute;
  left: 0;
  top: 8px;
}

.list02 {
  background: #f8f2f2;
  padding: 20px;
  border-radius: 5px;
}

.list02__item {
  position: relative;
  font-size: 16px;
  font-weight: normal;
  padding-left: 30px;
  line-height: 1.8;
}

.list02__item:not(:last-of-type) {
  margin-bottom: 10px;
}

.list02__item:before {
  content: "\f00c";
  position: absolute;
  top: 2px;
  left: 0;
  background: #d4d459;
  font-family: Font Awesome\5 Free;
  font-weight: 900;
  line-height: 24px;
  width: 24px;
  text-align: center;
  border-radius: 50%;
  font-size: 14px;
}

.table01__thead__th {
  color: #fff;
  background: #070606;
  border: 1px solid #070606;
}

.table01__th {
  border: 1px solid #070606;
  background: #f5f5e9;
  text-align: left;
  padding: 10px 20px;
}

.table01__td {
  border: 1px solid #070606;
  font-weight: normal;
  padding: 10px 20px;
}

.dl01 {
  border-top: 1px dotted #070606;
  border-bottom: 1px dotted #070606;
}

.dl01__dt {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  width: 190px;
  padding: 10px 0;
}

.dl01__dd {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  width: calc(100% - 190px);
  padding: 10px 0;
  font-weight: normal;
}

.dl01+.dl01 {
  border-top: none;
}

.flexbox__item2column {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  width: calc(50% - 10px);
}

.flexbox__item2column02 {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  width: calc(50% - 25px);
}

.flexbox__item4column {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  width: calc(25% - 15px);
}

.box01__hdg {
  border: 1px solid #070606;
  /*border-bottom:1px dotted #070606;*/
  border-radius: 10px 10px 0 0;
  text-align: center;
  padding: 20px 15px;
  position: relative;
  line-height: 1.5;
}

.box01__contents {
  border: 1px solid #070606;
  border-top: none;
  border-radius: 0 0 10px 10px;
  font-size: 16px;
  font-weight: normal;
  padding: 10px 20px;
}

.is-yellow .box01__hdg {
  background: #daa754;
  border-color: #daa754;
  border-width: 2px;
  border-bottom: none;
  color: #fff;
}

.is-yellow .box01__contents {
  border-color: #daa754;
  border-width: 2px;
}

.is-blue .box01__hdg {
  background: #7e98b1;
  border-color: #7e98b1;
  border-width: 2px;
  border-bottom: none;
  color: #fff;
}

.is-blue .box01__contents {
  border-color: #7e98b1;
  border-width: 2px;
}

.is-pink .box01__hdg {
  background: #d53065;
  border-color: #d53065;
  border-width: 2px;
  border-bottom: none;
  color: #fff;
}

.is-pink .box01__contents {
  border-color: #d53065;
  border-width: 2px;
  background: #fcf1f4;
}

.is-green .box01__hdg {
  background: #3d9e90;
  border-color: #3d9e90;
  border-width: 2px;
  border-bottom: none;
  color: #fff;
}

.is-green .box01__contents {
  border-color: #3d9e90;
  border-width: 2px;
  background: #f0f9f8;
}

.is-green02 .box01__hdg {
  background: #fff;
  border-color: #3d9e90;
  border-bottom-style: dotted;
  color: #3d9e90;
  border-width: 1px;
}

.is-green02 .box01__contents {
  border-color: #3d9e90;
  border-width: 1px;
  background: #fff;
  color: #3d9e90;
}

.is-white .box01__hdg {
  background: #fff;
  border: none;
  color: #070606;
  font-weight: normal;
  margin-bottom: 1px;
}

.is-white .box01__contents {
  border: none;
  background: #fff;
}

.box02__hdg {
  border: 1px solid #070606;
  border-radius: 10px 10px 0 0;
  text-align: center;
  padding: 10px 15px;
  position: relative;
  line-height: 1.5;
  background: #f5f5e9;
  font-size: 22px;
}

.box02__contents {
  border: 1px solid #070606;
  border-top: none;
  border-radius: 0 0 10px 10px;
  font-size: 18px;
  font-weight: normal;
  padding: 25px 45px;
}

.box03 {
  border: 1px solid #ddd;
  border-radius: 5px;
  background: #f6f6f6;
  padding: 25px;
}

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

  /* body {
    border-left: 10px solid #070606;
    border-right: 10px solid #070606;
  } */
  body:before,
  body:after {
    content: "";
    width: 100%;
    height: 10px;
    /* background: #070606; */
    position: fixed;
    left: 0;
    z-index: 999;
  }

  body:before {
    top: 0;
  }

  body:after {
    bottom: 0;
  }

  .sp-500 {
    display: none;
  }
}

@media screen and (min-width: 769px) {
  .sp {
    display: none;
  }

  [href^="tel:"] {
    pointer-events: none;
  }
}

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

  .btn02__inner {
    padding-right: 50px;
    font-size: 20px;
  }

  .dl01__dt {
    width: 100%;
    padding-bottom: 5px;
  }

  .dl01__dd {
    padding-top: 0;
    width: 100%;
  }

  .flexbox__item2column,
  .flexbox__item2column02 {
    width: 100%;
  }

  .flexbox__item2column:not(last-of-type),
  .flexbox__item2column02:not(last-of-type) {
    margin-bottom: 20px;
  }

  .flexbox__item4column {
    width: calc(50% - 10px);
    margin-bottom: 20px;
  }
}

@media screen and (min-width: 551px) {
  .sp_550 {
    display: none;
  }
}

@media screen and (max-width: 550px) {
  .hdg01 {
    margin-bottom: 30px;
    margin-top: 30px;
    font-size: 28px;
  }
}

@media screen and (max-width: 500px) {
  .flexbox__item4column {
    width: 100%;
  }

  .btn02.is-walk .btn02__inner:before {
    left: 25px;
  }

  .btn02.is-drive .btn02__inner:before {
    left: 15px;
    width: 35px;
    height: 18px;
    top: calc(50% - 9px);
  }

  .hdg01 {
    margin-bottom: 30px;
    margin-top: 30px;
    /* font-size: 30px; */
  }

  .large__txt {
    font-size: 2.6rem;
  }

  .fz-24 {
    font-size: 19px;
  }

  .btn_round::after {
    right: 20px;
  }
}

/*////////////////////////

Main Visual

////////////////////////*/
.mv__block {
  overflow: hidden;
  padding: 15px 0px 0;
  background-color: #f2ec50;
}

.mv__block__inner {
  padding: 0 15px 0;
}

.mv__block__note {
  padding-bottom: 20px;
}

.main__visual {
  margin: 0;
  position: relative;
  bottom: 15px;
}

@media screen and (max-width: 768px) {
  .mv__logo_flexbox {
    width: 87%;
  }

  .mv__block .logo {
    margin-right: 10px;
  }

  .mv__block {
    padding-top: 0;
  }

  .main__visual {
    bottom: 0;
  }
}

@media screen and (max-width: 550px) {
  .mv__logo_flexbox {
    width: 80%;
  }
}

/*////////////////////////

 header

////////////////////////*/
.header {
  position: sticky;
  top: 0;
  z-index: 10;
}

.header__nav__item {
  line-height: 1.1;
  font-size: 16px;
  text-align: center;

  font-weight: 700;
}

@media screen and (min-width: 769px) {
  .header {
    border-bottom: 1px solid #eee;
    background-color: #fff;
    padding: 50px 15px;
  }

  .gnav {
    /* max-width: 1120px; */
    max-width: 1145px;
    width: 100%;
    margin: auto;
  }

  .header__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 18px;
  }

  .header__nav__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
  }
}

@media screen and (max-width: 768px) {
  .header {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
  }

  .header__nav__item:not(:last-child) {
    margin-bottom: 30px;
  }

  .gnav__wrapper {
    background-color: #fff;
  }

  .header__nav {
    position: relative;
    top: 45%;
    -ms-transform: translateY(-45%);
    -webkit-transform: translateY(-45%);
    transform: translateY(-45%);
  }
}

/*////////////////////////

footer

////////////////////////*/
footer {
  padding: 150px 0 0;
}

footer small {
  line-height: 1.5;
  font-size: 10px;
  display: inline-block;
}

footer .totop {
  position: fixed;
  right: 35px;
  bottom: 30px;
  width: 60px;
  height: 60px;
  line-height: 60px;
  font-size: 2rem;
  z-index: 5;
}

footer .totop a {
  display: block;
  border-radius: 100%;
  text-align: center;
  background-color: #070606;
  color: #fff;
}

.footer__bottom {
  background: #f8f8f8;
  padding: 40px 0;
}

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

  .footer__bottom {
    padding: 30px 0 20px;
  }

  footer .totop {
    bottom: 15px;
    right: 15px;
  }
}

/*////////////////////////

top

////////////////////////*/
.basic__table_th {
  background-color: #070606;
  color: #fff;
  text-align: center;
}

.basic__table_th,
[class*="basic__table_td--"] {
  border: 1px solid #415bb8;
  padding: 15px 20px;
  line-height: 1.5;
}

.basic__table_td--hdg {
  background-color: #eef0f7;
  font-weight: bold;
}

.check__list {
  background-color: #f9f2f2;
  border-radius: 5px;
  padding: 20px;
  position: relative;
}

.check__list_item {
  position: relative;
  padding-left: 33px;
  font-size: 1.6rem;
  line-height: 1.5;
}

.check__list_item::before {
  content: url(img/common/icn_circle_check.svg);
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
}

.check__list_item:not(:last-child) {
  margin-bottom: 7px;
}

.is-subpage section:not(:last-of-type) {
  margin-bottom: 170px;
}

.is-result .box01__hdg {
  font-size: 28px;
}

.is-result .box01__contents {
  font-size: 18px;
  font-weight: bold;
}

.intro01 {
  margin-top: 80px;
}

.intro01 .is-result .box01__hdg {
  font-size: 2.6rem;
  border-color: #d95583;
  background-color: #d95583;
  padding: 10px 15px;
}

.intro01 .box01__contents {
  color: #d85383;
  border-color: #d95583;
  background-color: #fff;
}

.intro01 .box01 {
  margin: 0 0 80px;
}

.area_period01 .basic__table_th:first-of-type {
  width: 320px;
}

.flow01 .box01__hdg,
.flow01 .box01__contents {
  border-width: 2px;
}

.flow01 .is-beige .box01__hdg {
  background-color: #f5f5e9;
}

.flow__item {
  border: 1px solid #070606;
  border-radius: 5px;
  position: relative;
}

.flow__item:first-of-type {
  margin-top: 50px;
}

.flow__item:first-of-type .flow__detail {
  background-image: url(img/top/flow_img01.png);
  background-position: 95% center;
  background-repeat: no-repeat;
}

.flow__item:nth-of-type(3) .check__list::after {
  content: url(img/top/flow_img02.png);
  position: absolute;
  right: 0;
  bottom: 15px;
}

.flow__item:not(:last-of-type) {
  margin-bottom: 50px;
}

.flow__item:not(:last-of-type)::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 20px 0 20px;
  border-color: #f2ec50 transparent transparent transparent;
  position: absolute;
  bottom: -35px;
  left: 0;
  right: 0;
  margin: auto;
}

.flow__hdg {
  border-radius: 3px 3px 0 0;

  color: #fff;
  font-size: 2.4rem;
  background-color: #2d4ab3;
  text-align: center;
  padding: 0 15px;
  position: relative;
  font-weight: 500;
  letter-spacing: 0.18em;
  line-height: 1.9;
}

.flow__hdg::before {
  content: "";
  position: absolute;
  left: 30px;
  bottom: -16px;
}

.flow__item:first-of-type .flow__hdg::before {
  content: url(img/top/flow_num01.png);
}

.flow__item:nth-of-type(2) .flow__hdg::before {
  content: url(img/top/flow_num02.png);
}

.flow__item:nth-of-type(3) .flow__hdg::before {
  content: url(img/top/flow_num03.png);
}

.flow__item:nth-of-type(4) .flow__hdg::before {
  content: url(img/top/flow_num04.png);
}

.flow__detail {
  padding: 30px;
  font-weight: 500;
}

.flow__item.is-hotel {
  border-color: #d2d259;
}

.flow__item.is-hotel .flow__hdg {
  background-color: #d2d259;
  color: #992c39;
}

.flow__item.is-hotel .flow__detail {
  background-color: #f5f5e9;
}

.fukidashi__item {
  background-color: #fff;
  padding: 10px 25px;
  position: relative;
  border-radius: 5px;
  line-height: 1.75;
}

.fukidashi__item:not(:last-child) {
  margin-bottom: 10px;
}

.fukidashi__item:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 10px 0 10px;
  border-color: #fff transparent transparent transparent;
  position: absolute;
  left: 11%;
  bottom: -8px;
}

.fukidashi__ttl {
  font-weight: bold;
  font-size: 2rem;
  text-align: center;
}

.flow__result__tel {
  background: #fff;
  padding: 15px;
  text-align: center;
  border-radius: 10px;
  font-size: 50px;

  line-height: 1.5;
}

.flow__result__after {
  position: relative;
  border: 4px solid #d53065;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}

.flow__result__after__hdg {
  background: #d53065;
  color: #fff;
  font-size: 22px;
  line-height: 1.5;
  text-align: center;
  padding: 10px 15px 15px;
}

.flow__result__after__contents {
  padding: 25px;
  line-height: 1.5;
  font-size: 22px;
  font-weight: bold;
  color: #d53065;
}

.is-result .is-white .box01__hdg {
  font-size: 18px;
}

.is-result .is-white .box01__contents {
  font-size: 22px;
}

.is-result .is-green02 .box01__hdg {
  font-size: 22px;
}

.is-result .is-green02 .box01__contents {
  font-size: 18px;
  font-weight: normal;
}

.top07__hdg {
  position: relative;
  padding-left: 25px;
  font-size: 18px;
  margin-bottom: 10px;
}

.top07__hdg:before {
  content: "";
  background: #fff;
  border: 1px solid #070606;
  height: 17px;
  width: 17px;
  position: absolute;
  left: 0;
  top: 8px;
}

.callcenter__tel {
  font-size: 48px;
  font-weight: bold;
  line-height: 1;
}

.callcenter__tel__ico {
  font-size: 22px;
}

@media screen and (min-width: 501px) {
  .is-result .box01__contents {
    padding: 30px 45px;
  }
}

@media screen and (min-width: 769px) {
  .flow__result__after {
    padding-left: 190px;
  }

  .flow__result__after__hdg {
    width: 190px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .callcenter__tel {
    border-right: 2px dotted #070606;
    padding-right: 20px;
    margin-right: 20px;
  }
}

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

  .callcenter__tel {
    width: 100%;
    margin-bottom: 15px;
  }

  .callcenter__tel {
    font-size: 28px;
  }

  .callcenter__tel__ico {
    font-size: 18px;
  }
}

@media screen and (max-width: 500px) {
  .is-result .box01__hdg {
    font-size: 20px;
  }
}

.faq01__dl {
  position: relative;
  border: 1px solid #070606;
  border-radius: 10px;
}

.faq01__dl:before,
.faq01__dl:after {
  content: "";
  background: #070606;
  width: 20px;
  height: 2px;
  position: absolute;
  right: 15px;
  top: 33px;
  z-index: 1;
  transform-origin: 50% 50%;
  transition: 0.5s;
  -moz-transition: 0.5s;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -ms-transition: 0.5s;
}

.faq01__dl:not(.is-open):after {
  transform: rotate(-90deg);
}

.faq01__dl.is-open:before,
.faq01__dl.is-open:after {
  background: #fff;
}

.faq01__dl__dt {
  position: relative;
  padding: 15px 40px 15px 65px;
  background: #f0f2f9;
  color: #070606;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
}

.faq01__dl__dt:before {
  content: "Q";

  color: #e7d112;
  font-size: 38px;
  font-weight: 500;
  width: 36px;
  line-height: 36px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  position: absolute;
  left: 15px;
  top: 15px;
}

.is-open .faq01__dl__dt {
  background: #070606;
  color: #fff;
  border-radius: 5px 5px 0 0;
}

.faq01__dl__dd {
  position: relative;
  padding: 15px 15px 15px 65px;
  background: #fff;
  font-weight: normal;
  border-radius: 0 0 10px 10px;
}

.faq01__dl__dd:before {
  content: "A";

  background: #fff;
  font-size: 20px;
  font-weight: bold;
  width: 36px;
  line-height: 36px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  position: absolute;
  left: 15px;
  top: 15px;
}

.faq01__dl+.faq01__dl {
  margin-top: 15px;
}

.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
  border: none;
}

.monitoring01 {
  padding: 100px 0;
  background-color: #f5e0e7;
}

.monitoring01 .border__box {
  border-radius: 10px;
  background-color: #fff;
  border: 3px solid #d95583;
  padding: 80px 7%;
}

.monitoring01__dl__dt,
.monitoring01__dl__dd {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  background: #fff;
  border-bottom: 1px dotted #070606;
  padding: 15px 20px;
}

.monitoring01__dl__dt {
  width: 145px;
  border-left: 1px solid #070606;
  border-right: 1px dotted #070606;
  font-weight: bold;
}

.monitoring01__dl__dd {
  width: calc(100% - 145px);
  border-right: 1px solid #070606;
}

.monitoring01__dl__dd .btn02 {
  font-size: 18px;
}

.monitoring01__dl__dd__place__item:not(:last-of-type) {
  margin-bottom: 20px;
}

.monitoring01__dl__dd__place__item__hdg__num {
  width: 32px;
  line-height: 32px;
  text-align: center;
  color: #d4d459;
  background: #070606;
  border-radius: 50%;
  display: inline-block;

  font-weight: bold;
}

@media screen and (min-width: 769px) {
  .monitoring01__dl__dt:first-of-type {
    border-top: 1px solid #070606;
    border-radius: 5px 0 0 0;
  }

  .monitoring01__dl__dd:first-of-type {
    border-top: 1px solid #070606;
    border-radius: 0 5px 0 0;
  }

  .monitoring01__dl__dt:last-of-type {
    border-bottom: 1px solid #070606;
    border-radius: 0 0 0 5px;
  }

  .monitoring01__dl__dd:last-of-type {
    border-bottom: 1px solid #070606;
    border-radius: 0 0 5px 0;
  }
}

@media screen and (max-width: 768px) {
  .flow__hdg {
    padding: 25px 15px 15px;
  }

  .flow__hdg::before {
    left: 0;
    top: -20px;
    bottom: auto;
    transform: scale(0.6) translate(-10px, -30px);
  }

  .monitoring01__dl__dt {
    width: 100%;
    border-right: 1px solid #070606;
    border-bottom: none;
    padding-bottom: 0;
  }

  .monitoring01__dl__dd {
    width: 100%;
    border-left: 1px solid #070606;
    padding-top: 10px;
  }

  .monitoring01__dl__dt:first-of-type {
    border-top: 1px solid #070606;
    border-radius: 5px 5px 0 0;
  }

  .monitoring01__dl__dd:last-of-type {
    border-bottom: 1px solid #070606;
    border-radius: 0 0 5px 5px;
  }
}

@media screen and (min-width: 551px) {
  .flow__item:first-of-type .flow__detail {
    padding-right: 120px;
  }

  .flow__item:nth-of-type(3) .check__list {
    padding-right: 80px;
  }

  .fukidashi__ttl {
    width: 160px;
  }

  .fukidashi__detail {
    border-left: 2px dotted #992c39;
    width: calc(100% - 160px);
    padding: 8px 0 8px 20px;
    margin-left: 20px;
  }
}

@media screen and (max-width: 550px) {
  .is-subpage section:not(:last-of-type) {
    margin-bottom: 70px;
  }

  .intro01 {
    margin-top: 40px;
  }

  .flow__detail {
    padding: 30px 15px;
  }

  .flow__item:first-of-type .flow__detail {
    background-position: 95% 95%;
    padding-bottom: 80px;
  }

  .flow__item:nth-of-type(3) .check__list {
    margin: 80px 0 0;
  }

  .flow__item:nth-of-type(3) .check__list::after {
    bottom: auto;
    top: -90px;
    transform: scale(0.7);
  }

  .fukidashi__item {
    display: block;
  }

  .fukidashi__detail {
    border-top: 2px dotted #992c39;
    padding: 15px 0 0;
    margin: 5px 0 0;
  }

  .fukidashi__item:not(:last-child)::after {
    left: 0;
    right: 0;
    margin: auto;
  }

  .flow__result__tel {
    font-size: 7.5vw;
  }

  .faq01__dl__dt:before {
    font-size: 28px;
  }

  .monitoring01 {
    padding: 50px 0;
  }

  .area_period01 .basic__table_th:first-of-type {
    width: 120px;
  }

  .monitoring01 .border__box {
    padding: 50px 15px;
  }

  .monitoring__hdg {
    margin: 0 0 30px;
  }
}

/*/////////////////////////////

portal

/////////////////////////////*/

.portalLinks {
  background: #eee;
}

.portalLinks__list__item {
  text-decoration: underline;
}

.portalLinks__list__item:hover {
  text-decoration: none;
}

/*/////////////////////////////

organization

/////////////////////////////*/
.is-organization .flow__item .flow__hdg::before {
  content: none;
}

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

/*.main__visual img.pc*/
.main__visual img {
  width: 100%;
}

/*/////////////////////////////

210916更新

/////////////////////////////*/
.mv__block {
  background-color: #fff;
}

.box04 {
  margin-top: 2rem;
  border-radius: 3px 3px 0 0;

  color: #d53065;
  font-size: 2.4rem;
  background-color: #fcf1f4;
  border: solid 2px #d53065;
  text-align: center;
  padding: 0 15px;
  font-weight: 500;
  letter-spacing: 0.18em;
  line-height: 1.9;
}

.img-top {
  margin-top: 50px;
}

.ma-30 {
  margin: 30px 0;
}

.txt-bg {
  background-color: #f2ec50;
}

.fz-15 {
  font-size: 15px;
}

.fz-27 {
  font-size: 27px;
}


.fz-30 {
  font-size: 30px;
}

.green {
  color: #49B233;
}


/*/////////////////////////////

230502更新

/////////////////////////////*/
.redBox {
  border: 2px solid red;
  padding: 20px;
  font-size: 28px;
  color: red;
  font-weight: bold;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .redBox {
    text-align: left;
  }
}

/* 230508 */
.box05 {
  background: #f2f3f7;
  padding: 20px 25px;
  border-radius: 5px;
}

.info__box {
  border-top: 1px solid #17388e;
  border-bottom: 1px solid #17388e;
  overflow-y: scroll;
  max-height: 360px;
}

.info__box .dl01:nth-of-type(1) {
  border-top: none;
}

.info__box .dl01:last-of-type {
  border-bottom: none;
}

.info__box .dl01__dd a {
  display: block;
}

/* ---- 230511 ---- */
@media screen and (min-width: 381px) {
  .sp380 {
    display: none;
  }
}

.accent {
  font-weight: bold;
  color: #e40115;
}

.textbox-dark {
  background-color: #54626F;
  color: #fff;
  padding: 0.3em 1em;
  font-weight: bold;
  margin-right: 1em;
  border-radius: 10px;
}

.textbox-dark-num {
  display: inline-block;
  text-align: center;
  background-color: #54626F;
  color: #fff;
  width: 2em;
  min-width: 2em;
  height: 2em;
  line-height: 2;
  border-radius: 50%;
  margin-right: 0.5em;
}

.present-num {
  display: inline-block;
  margin-right: 0.5em;
  min-width: 76px;
}

.fz-18 {
  font-size: 18px;
}

.fz-20 {
  font-size: 20px;
}

.ls05 {
  letter-spacing: 0.5em;
}

.lh16 {
  line-height: 1.6;
}

.ml-05em {
  margin-left: 0.5em;
}

.ml-1em {
  margin-left: 1em;
}

.ml-2em {
  margin-left: 2em;
}

.list-disc li::before {
  content: "●";
}

.list-square li::before {
  content: "■";
}

.list-small_disc li::before {
  content: "・";
}

.break-word {
  word-wrap: break-word;
}

.break-word .fa-solid {
  font-size: 14px;
  margin-left: 0.1em;
  color: #1f1b1b;
}

.btn-style01 {
  display: inline-block;
  width: 230px;
  font-size: 18px;
  font-weight: bold;
  border: 2px solid #070606;
  padding: 18px 0;
  border-radius: 999px;
}

.btn-style01 .fa-solid {
  font-size: 16px;
  margin-left: 0.5em;
}

.icon-pdf {
  width: 20px;
  margin-right: 20px;
  margin-bottom: 5px;
}

.info-list {
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.exhibitor-list{
  gap: 40px 10px;
}
.exhibitor-item {
  width: calc(50% - 15px);
  border: 2px solid #54626F;
  border-radius: 50px;
  background-color: #fff;
  /* padding: 40px 45px; */
  padding: 15px 20px;
  /* margin-bottom: 40px; */
  box-shadow: 5px 5px 0;
  color: #000;
  box-shadow: 5px 5px 0 #54626F;
  display: flex;
  align-items: center;
}

.exhibitor-item:last-child {
  margin-bottom: 0;
}

.exhibitor-item__dt {
  width: 112px;
}

.exhibitor-item__dd {
  width: calc(100% - 112px);
}

.presentInfo-item {
  width: calc(50% - 15px);
}

/* .exhibitor-item:last-child {
  width: 100%;
} */

/* .exhibitor-item-wide {
  width: 100%;
} */

.presentInfo-item:first-child,
.presentInfo-item:nth-child(2) {
  margin-bottom: 60px;
}

.presentInfo-item-text {
  margin-left: 86px;
}

.kitchen-item-text {
  width: 60%;
}

.kitchen-item-text .flexbox {
  gap: 50px;
}

.kitchen-item-imgbox {
  width: calc(40% - 30px);
}

.kitchen-item .dl01__dt {
  width: 100px;
}

.kitchen-item .dl01__dd {
  width: calc(100% - 100px);
}

.testDrive-content {
  gap: 30px;
}

.testDrive-imgbox {
  min-width: 331px;
}

.dl02__dt {
  width: 190px;
}

.dl02__dd {
  width: calc(100% - 190px);
}

.workshop-item-text {
  width: 100%;
}

.workshop-item-imgbox {
  display: flex;
  justify-content: space-around;
}


@media screen and (max-width: 1024px) {
  .info-list {
    font-size: 26px;
  }

  .testDrive-content {
    gap: 20px;
  }



  .access-text {
    margin-top: 20px;
  }
}

@media screen and (max-width: 768px) {
  .info-item span:last-child {
    display: block;
    margin-top: 5px;
  }

  .dl02__dt {
    width: 100%;
  }

  .dl02__dd {
    width: 100%;
    padding-top: 0;
    margin-left: 1em;
  }

  .exhibitor-item {
    padding: 30px;
  }

  .exhibitor-item-row {
    display: block;
  }

  .exhibitor-item__dt,
  .exhibitor-item__dd {
    width: auto;
  }

  .presentInfo-item {
    width: auto;
  }

  .presentInfo-item:first-child,
  .presentInfo-item:nth-child(2),
  .presentInfo-item:nth-child(3) {
    margin-bottom: 40px;
  }

  .testDrive-imgbox {
    min-width: 300px;
  }

  .testDrive-content {
    gap: 0;
  }

}

@media screen and (max-width: 600px) {
  .exhibitor-item {
    width: 100%;
  }

  .kitchen-item {
    display: block;
  }

  .kitchen-item-text {
    width: auto;
    margin-bottom: 10px;
  }

  .kitchen-item-imgbox {
    width: auto;
    text-align: center;
  }

  .kitchen-item .dl01__dd {
    padding-top: 10px;
  }
}

@media screen and (max-width: 550px) {
  .info-list {
    font-size: 20px;
  }

  /* .exhibitor-item {
    margin-bottom: 30px;
  }

  .exhibitor-item:nth-last-child(2) {
    margin-bottom: 30px;
  } */

  .textbox-dark-num {
    margin-right: 0.3em;
  }

  .kitchen-item-title {
    font-size: 20px;
  }

  .testDrive-content {
    display: block;
  }

  .testDrive-imgbox {
    min-width: 0;
    margin-top: 10px;
  }
}


/* 230531 追加_honda */
.hdg06 {
  color: #000;
}

.hdg06__inner:before,
.hdg06__inner:after {
  background-color: #000;
}

.kitchen-item-text {
  width: 100%;
}

.hdg01:before {
  content: "";
  position: absolute;
  background: url(img/top/heading_l-parts01.png) no-repeat;
  width: 239px;
  /* height: 207px; */
  height: 143px;
  left: -11px;
  /* bottom: -19px; */
  bottom: 5px;
}

.hdg01::after {
  content: "";
  position: absolute;
  background: url(img/top/heading_l-parts02.png) no-repeat;
  width: 239px;
  /* height: 208px; */
  height: 143px;
  right: -11px;
  /* bottom: -19px; */
  bottom: 5px;
}

@media screen and (min-width: 1024px) {
  .hdg01:before {
    bottom: -19px;
  }

  .hdg01::after {
    bottom: -19px;
  }
}

.kitchen-item-imgbox img,
.workshop-item-imgbox img {
  object-fit: cover;
  height: 320px;
  width: 430px;
}


.kitchen-item-imgbox {
  width: 100%;
  justify-content: space-around;
  gap: 10px;
}

.kitchen-item-text {
  margin-bottom: 2rem;
}

.present {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  margin-top: 2rem;

  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box
}

.present .img-ttl {
  font-size: 16px;
  line-height: 1.2em;
  margin-top: 1rem;
}

.present li {
  width: 180px;
}

/* .present::after {
  content: "";
  display: block;
  width: 180px;
  height: 0;
} */




.chance-grid {
  display: flex;
  /* grid-template-columns: 1fr 1fr; */
  gap: 30px;
  text-align: left;
  margin-top: 2rem;
}

.chance-grid li {
  width: 100%;
  max-width: 550px;
  margin-bottom: 2rem;

  position: relative;
}

@media screen and (max-width: 950px) {
  .chance-grid {
    display: block;
  }

  .chance-grid li {
    margin: 0 auto 2rem;
  }
}

.chance-grid .text {
  padding-left: 3rem;
}

.chance-grid .quo {
  position: absolute;
  top: -70px;
  right: 25px;
}

.chance-grid .quo img {
  width: 100%;
  max-width: 95px;
}

.c-list {
  margin-top: 10px;
}

.c-bold {
  color: #9d5e5e;
  border: solid 1px #54626F;
  display: inline-block;
  font-weight: bold;
  border-radius: 10px;
  font-size: 21px;
}

.c-bold .bg-brown {
  background: #54626F;
  padding: 5px 15px;
  display: inline-block;
  color: #fff;
  border-radius: 10px 0 0 10px;
}

.c-bold .bg-white {
  padding-left: 1rem;
  color: #000;
}

.hdg01__inner {
  z-index: 2;
}

.sp-br01 {
  display: none;
}



/* 231127 NEW CSS */
.hdg01__inner::after {
  background-repeat: no-repeat;
}

/* .hdg01:before,
.hdg01::after {
  width: 210px;
} */

.hdg06 {
  color: #fff;
  background-repeat: no-repeat;
  background-size: cover;
}

.hdg06__inner:before,
.hdg06__inner:after {
  /* background-color: #fff; */
  background-color: #E60B45;
}

.c-bold {
  color: #222;
  border: solid 1px #49B233;
  margin-top: 20px;
}

.c-bold .bg-brown {
  background: #49B233;
}

.present li {
  width: 170px;
}

.new_bg-red {
  color: #ffffff;
  background-color: #C19B62;
  display: inline-block;
  padding: 0 10px;
}

@media screen and (max-width: 1024px) {
  .hdg01:before {
    background-size: 60% auto;
    background-position: left bottom;
  }

  .hdg01::after {
    background-size: 60% auto;
    background-position: right bottom;
  }
}

@media screen and (max-width: 900px) {
  .workshop-item-imgbox {
    display: block;
    margin: 0 auto;
    text-align: center;
  }

  .workshop-item-imgbox figure {
    margin-bottom: 2rem;
  }

  .kitchen-item-imgbox {
    display: block;
    text-align: center;
  }

  .kitchen-item-imgbox figure {
    margin-bottom: 2rem;
  }

  .kitchen-item {
    display: block;
  }

  .access-content {
    display: block;
    text-align: center;
  }

}

@media screen and (max-width: 768px) {
  .chance-grid {
    grid-template-columns: 1fr;
  }

  .chance-grid li {
    max-width: 100%;
  }
}

@media screen and (max-width: 550px) {
  .hdg01__inner {
    padding: 7px 20px;
  }

  .hdg01:before {
    background-size: 45% auto;
  }

  .hdg01::after {
    background-size: 45% auto;
  }


  .sp-br01 {
    display: block;
  }
}

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

  .kitchen-item-imgbox img,
  .workshop-item-imgbox img {
    height: 220px;
    width: 350px;
  }

  .present {
    gap: 10px;
  }

  .chance-h3 {
    font-size: 16px;
  }

  .chance-grid .quo {
    right: 10px;
    top: -45px;
  }

  .chance-grid .quo img {
    max-width: 70px;
  }

  .chance-grid li {
    margin-bottom: 3rem;
  }

}

@media screen and (max-width: 375px) {
  .present {
    justify-content: center;
  }

  .present li {
    max-width: 100%;
  }

  .chance-grid .quo img {
    max-width: 60px;
  }

  .chance-grid .quo {
    top: -25px;
  }
}

.sat-num {
  display: block;
  background: #1D9AD6;
  width: auto;
  height: 46px;
  line-height: 17px;
  position: relative;
  bottom: 6px;
  font-size: 25px;
  border-radius: 7px;
  padding: 15px 0 5px 10px;
}

.sun-num {
  display: block;
  background-color: #EF4023;
  width: auto;
  height: 46px;
  line-height: 17px;
  position: relative;
  bottom: 6px;
  font-size: 25px;
  border-radius: 7px;
  padding: 15px 0 5px 10px;
}

.comment {
  text-align: right;
  font-size: 15px;
}

.sp-br03 {
  display: none;
}

@media screen and (max-width: 440px) {
  .sp-br03 {
    display: block;
  }

  .lh-15em {
    line-height: 1.5em;
  }
}

.ennichi img {
  object-fit: contain;
  height: auto;
  width: 367px;
}

.ennichi {
  text-align: center;
  width: 70%;
  margin: 0 auto;
}

.access-content {
  width: 100%;
  gap: 20px;
}

.access-content .access-map,
.access-content .access-text {
  width: 48%;
}

.access-text p {
  margin-bottom: 1.5rem;
}

.img-ttl {
  font-weight: bold;
}

.fw-bold {
  font-weight: bold;
}

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

  .access-content .access-map,
  .access-content .access-text {
    width: 100%;
  }

  .access-content .access-text {
    text-align: left;
    max-width: 550px;
    margin: 0 auto;
    margin-top: 20px;

  }

  .access-content .access-text p {
    margin-bottom: 1rem;
  }
}

.paid {
  position: relative;
}

/* .paid::after {
  content: "";
  display: block;
  background-image: url(img/common/paid.png);
  width: 90px;
  height: 90px;
  background-repeat: no-repeat;
  position: absolute;
  right: -20px;
  top: -10px;
  background-size: 100%;
} */

.paid {
  position: relative;
}

.paid-img {
  width: 60px;
  height: 60px;
  position: absolute;
  top: -33px;
  transform: rotate(10deg);
}

@media screen and (max-width: 900px) {
  .paid {
    margin: 7rem auto 4rem auto;
  }

  .paid-img {
    top: -60px;
    right: 10px;
  }
}

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

  .kitchen-item-title {
    font-size: 18px;
  }

  .sat-num,
  .sun-num {
    width: 125px;
    font-size: 18px;
  }

  .c-bold {
    font-size: 16px;
  }

  .ennichi,
  .ennichi img {
    width: 100%;
    height: auto;
  }
}

/* 251110 */
.stage_event_wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

@media screen and (min-width: 760px) {
  .stage_event_wrap {
    display: flex;
    flex-direction: row;
    align-items: center;
  }
}

.stage_event_img {
  width: 100%;
  max-width: 300px;
}

@media screen and (min-width: 760px) {
  .stage_event_img {
    width: 100%;
    max-width: 250px;
  }
}

.special_stage_title_wrap {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  margin-top: 40px;
}

/* .special_stage_title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px 20px;
  flex-wrap: wrap;
} */



.special_stage_title {
  font-size: 28px;
}

.special_stage_mc {
  display: block;
  text-align: right;
}

.stage_event_guest_list {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

.special_event_list {
  display: grid;
  grid-template-columns: 135px 1fr;
  align-items: flex-start;
  margin-top: 10px;
}

.special_event_list .textbox-dark {
  display: inline-block;
}

.circle_wrap {
  background: #E60B45;
  color: #fff;
  border-radius: 10px;
  padding: 5px 10px;
}

.special_stage_wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.circle_wrap.--type02 {
  border: 3px solid #E60B45;
  background: transparent;
  color: #070606;
  border-radius: 10px;
  padding: 20px 20px;
}

.accordion-content {
  display: none;
}

.accordion-content.--first {
  display: block;
}


.accordion-title {
  position: relative;
}

.accordion-title {
  cursor: pointer;
}

.accordion-title .fa-chevron-down {
  color: #E60B45;
  position: absolute;
  top: 10px;
  right: 10px;
}

.accordion-title.open .fa-chevron-down {
  transform: scale(1, -1);
}

.stage_event_deco_wrap {
  display: flex;
  justify-content: space-between;
  gap: 5px;

  text-align: center;
  margin: 0 auto;
  width: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;

}
.stage_event_head_wrap {
  position: relative;
  margin-top: 60px;
}

 .stage_event_deco_wrap li {
    width: 100%;
    max-width: 20%;
  }

@media screen and (min-width: 760px) {
  .stage_event_deco_wrap {
    width: 100%;
    /* max-width: 25%; */
  }
}
.stage_event_list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-direction: column;
}

@media screen and (min-width: 760px) {
  .stage_event_list {
    align-items: flex-start;
    flex-direction: row;
  }
}

.stage_event_list .textbox-dark {
  display: inline-block;
}

.special_stage_title {
  font-size: 28px;
}
.special_stage_text.--type02 {
  position: relative;
}

@media screen and (min-width: 540px) {
  .special_stage_text.--type02 {
    text-align: center;
  }
}
.special_stage_mc {
  display: block;
  text-align: right;
  border: 2px solid #aaa;
  padding: 0 5px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}

.stage_event_guest_list {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

.special_event_list {
  display: grid;
  grid-template-columns: 135px 1fr;
  align-items: flex-start;
  margin-top: 10px;
}

.special_event_list .textbox-dark {
  display: inline-block;
}

.circle_wrap {
  background: #E60B45;
  color: #fff;
  border-radius: 10px;
  padding: 5px 10px;
}

.special_stage_wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.circle_wrap.--type02 {
  border: 3px solid #E60B45;
  background: transparent;
  color: #070606;
  border-radius: 10px;
  padding: 20px 20px;
}

.accordion-content {
  display: none;
}

.accordion-content.--first {
  display: block;
}


.accordion-title {
  position: relative;
}

.accordion-title {
  cursor: pointer;
}

.accordion-title .fa-chevron-down {
  color: #E60B45;
  position: absolute;
  top: 10px;
  right: 10px;
}

.accordion-title.open .fa-chevron-down {
  transform: scale(1, -1);
}

.stage_event_list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-direction: column;
}

@media screen and (min-width: 760px) {
  .stage_event_list {
    align-items: flex-start;
    flex-direction: row;
  }
}

.stage_date{
  display: flex;
  align-items: center;
  gap: 5px;
}

.stage_date li{
  background: #014fa2;
  padding: 0 5px;
  border-radius: 5px;
  color: #fff;
}
.stage_date li.--sunday{
  background: #e60b45;
}