@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap");
.bg-color3 {
  background-color: rgba(239, 233, 222, 0.42);
}

.bg-color4 {
  background-color: rgba(211, 237, 251, 0.8);
}

:root {
  --vw: 1vw;
}

/*
------------------------
用途：個別にhover要素付けたい時用
------------------------
例）
div {
    width:100px;
    height:100px;
    @include hover;
}
*/
/*
------------------------
用途：良く使うflexを1行に短縮
------------------------
例）
div {
    @include flex(b,w);
}
↑これは↓これを一行で書いた例
div {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
*/
/*--------------------------------------------------------------
	reset
---------------------------------------------------------------*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video,
input,
button {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}

sup {
  vertical-align: super;
}

sub {
  vertical-align: sub;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ul,
ol {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  color: inherit;
  text-decoration: none;
  box-sizing: border-box;
  transition: 0.2s;
}

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

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
  font-size: 14px;
}

/*--------------------------------------------------------------
	html/body及び全体
---------------------------------------------------------------*/
* {
  box-sizing: border-box;
}

@media only screen and (min-width: 768px) {
  html {
    font-size: calc(0.8333333333 * var(--vw));
  }
}
@media only screen and (min-width: 1200px) {
  html {
    font-size: 62.5%;
  }
}
@media only screen and (max-width: 767px) {
  html {
    font-size: calc(2.6666666667 * var(--vw));
  }
}

body {
  color: #222;
  line-height: 1.8;
  font-family: "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
  position: relative;
  word-break: break-word;
  width: 100%;
  font-weight: 400;
  font-size: 1.6rem;
}
@media only screen and (max-width: 767px) {
  body {
    font-size: 1.3rem;
  }
}

body {
  background-image: url(../img/common/bg.jpg);
  background-repeat: repeat;
  background-size: 100%;
  background-color: #F7F5ED;
}

.mainSection {
  margin-top: calc(7.5 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  .mainSection {
    margin-top: 90px;
  }
}
@media only screen and (max-width: 767px) {
  .mainSection {
    margin-top: calc(13.3333333333 * var(--vw));
  }
}
.mainSection__under {
  margin-top: calc(13.3333333333 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  .mainSection__under {
    margin-top: 160px;
  }
}
@media only screen and (max-width: 767px) {
  .mainSection__under {
    margin-top: calc(40 * var(--vw));
  }
}

.wrapper {
  max-width: calc(93.3333333333 * var(--vw));
  width: 100%;
  margin: 0 auto;
}

.wrapper-out {
  width: 100%;
  margin: 0 auto;
}

.container {
  overflow: hidden;
}

@media (min-width: 767px) {
  a[href^="tel:"] {
    pointer-events: none;
    cursor: default;
  }
}
.pc {
  display: block;
}
@media only screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media only screen and (max-width: 767px) {
  .sp {
    display: block;
  }
}

.btn {
  display: inline-block;
  width: calc(18.3333333333 * var(--vw));
  height: calc(4.5833333333 * var(--vw));
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  outline: none;
  transition: all 0.3s;
  background-color: #333;
  border: 1px solid #333;
  color: #fff;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: calc(3.3333333333 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  .btn {
    width: 220px;
    height: 55px;
    margin-top: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .btn {
    width: 60%;
    height: calc(13.3333333333 * var(--vw));
    margin: calc(8 * var(--vw)) auto 0;
  }
}
.btn:after {
  content: "";
  display: inline-block;
  width: calc(0.6666666667 * var(--vw));
  height: calc(0.6666666667 * var(--vw));
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
  right: calc(1.6666666667 * var(--vw));
  position: absolute;
  transition: 0.3s;
}
@media only screen and (min-width: 1200px) {
  .btn:after {
    width: 8px;
    height: 8px;
    right: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .btn:after {
    width: calc(1.8666666667 * var(--vw));
    height: calc(1.8666666667 * var(--vw));
    right: calc(4 * var(--vw));
  }
}
.btn:hover {
  background-color: #fff;
  border-color: #333;
  color: #333;
}
.btn:hover:after {
  right: calc(1.5 * var(--vw));
  border-color: #333;
}
@media only screen and (min-width: 1200px) {
  .btn:hover:after {
    right: 18px;
  }
}
@media only screen and (max-width: 767px) {
  .btn:hover:after {
    right: calc(4.2666666667 * var(--vw));
  }
}
.btn--center {
  margin: calc(3.3333333333 * var(--vw)) auto 0;
}
@media only screen and (min-width: 1200px) {
  .btn--center {
    margin: 40px auto 0;
  }
}
@media only screen and (max-width: 767px) {
  .btn--center {
    margin: calc(8 * var(--vw)) auto 0;
  }
}

.grn-btn {
  font-size: calc(1.3333333333 * var(--vw));
  line-height: calc(2.6666666667 * var(--vw));
  border: solid 1px #77BD48;
  border-radius: calc(1.3333333333 * var(--vw));
  padding-left: calc(1.3333333333 * var(--vw));
  padding-right: calc(1.3333333333 * var(--vw));
}
.grn-btn .info {
  font-size: calc(1.1666666667 * var(--vw));
}
@media only screen and (max-width: 767px) {
  .grn-btn .info {
    font-size: calc(3.2 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  .grn-btn {
    font-size: calc(3.2 * var(--vw));
    line-height: calc(7.4666666667 * var(--vw));
    border-radius: calc(5.3333333333 * var(--vw));
    padding-left: calc(1.8666666667 * var(--vw));
    padding-right: calc(1.8666666667 * var(--vw));
  }
}
.grn-btn:hover {
  background-color: #77BD48;
  color: #fff;
}

a img {
  transition: 0.3s;
}

a img:hover {
  opacity: 0.6;
}

.sec_in {
  max-width: calc(91.6666666667 * var(--vw) + 2.5 * var(--vw) * 2);
  width: 100%;
  margin: 0 auto;
  padding: 0 calc(2.5 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  .sec_in {
    padding: 0 30px;
    max-width: 1160px;
  }
}
@media only screen and (max-width: 767px) {
  .sec_in {
    width: 100%;
    padding: 0 calc(5.3333333333 * var(--vw));
  }
}
.sec_in.sec_in_bg {
  padding: calc(10 * var(--vw)) calc(2.5 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  .sec_in.sec_in_bg {
    padding: 120px 30px;
  }
}
@media only screen and (max-width: 767px) {
  .sec_in.sec_in_bg {
    padding: calc(16 * var(--vw)) calc(5.3333333333 * var(--vw));
  }
}

.sec_in_np {
  max-width: calc(91.6666666667 * var(--vw) + 2.5 * var(--vw) * 2);
  width: 100%;
  margin: 0 auto;
  padding: 0 calc(2.5 * var(--vw));
}
@media only screen and (max-width: 767px) {
  .sec_in_np {
    width: 100%;
    padding: 0 calc(2.6666666667 * var(--vw));
  }
}
.sec_in_np.sec_in_bg {
  padding: calc(10 * var(--vw)) calc(2.5 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  .sec_in_np.sec_in_bg {
    padding: 120px 30px;
  }
}
@media only screen and (max-width: 767px) {
  .sec_in_np.sec_in_bg {
    padding: calc(16 * var(--vw)) calc(5.3333333333 * var(--vw));
  }
}

.sec_in_np_sp {
  width: 100%;
  margin: 0 auto;
}
@media only screen and (min-width: 768px) {
  .sec_in_np_sp {
    display: none;
  }
}
@media only screen and (min-width: 1200px) {
  .sec_in_np_sp {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .sec_in_np_sp {
    width: 100%;
    padding: 0 calc(2.6666666667 * var(--vw));
  }
}
.sec_in_np_sp.sec_in_bg {
  padding: calc(10 * var(--vw)) calc(2.5 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  .sec_in_np_sp.sec_in_bg {
    padding: 120px 30px;
  }
}
@media only screen and (max-width: 767px) {
  .sec_in_np_sp.sec_in_bg {
    padding: calc(16 * var(--vw)) calc(5.3333333333 * var(--vw));
  }
}

.sec_in_npn {
  max-width: calc(91.6666666667 * var(--vw) + 2.5 * var(--vw) * 2);
  width: 100%;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .sec_in_npn {
    width: 100%;
  }
}
.sec_in_npn.sec_in_bg {
  padding: calc(10 * var(--vw)) calc(2.5 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  .sec_in_npn.sec_in_bg {
    padding: 120px 30px;
  }
}
@media only screen and (max-width: 767px) {
  .sec_in_npn.sec_in_bg {
    padding: calc(16 * var(--vw)) calc(5.3333333333 * var(--vw));
  }
}

.sec_in_pd {
  max-width: calc(91.6666666667 * var(--vw) + 2.5 * var(--vw) * 2);
  width: 100%;
  margin: 0 auto;
  padding: 0 calc(5 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  .sec_in_pd {
    padding: 0 60px;
  }
}
@media only screen and (max-width: 767px) {
  .sec_in_pd {
    width: 100%;
    padding: 0 calc(2.6666666667 * var(--vw));
  }
}
.sec_in_pd.sec_in_bg {
  padding: calc(10 * var(--vw)) calc(2.5 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  .sec_in_pd.sec_in_bg {
    padding: 120px 30px;
  }
}
@media only screen and (max-width: 767px) {
  .sec_in_pd.sec_in_bg {
    padding: calc(16 * var(--vw)) calc(5.3333333333 * var(--vw));
  }
}

.sec_in_flex {
  display: flex;
  justify-content: center;
  width: 100%;
}

.sec_in_flex__column {
  display: flex;
  justify-content: center;
  width: 100%;
  flex-direction: column;
  align-items: center;
}

@media only screen and (max-width: 767px) {
  .sec_in_sp {
    width: 100%;
    padding: 0 calc(5.3333333333 * var(--vw));
  }
}

@media only screen and (max-width: 767px) {
  .sec_in_pd0 {
    padding: 0 !important;
  }
}

.topic_path {
  display: flex;
  flex-wrap: wrap;
  margin: calc(0.8333333333 * var(--vw)) auto calc(4.1666666667 * var(--vw));
  width: calc(91.6666666667 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  .topic_path {
    width: 1100px;
    margin: 10px auto 50px;
  }
}
@media only screen and (max-width: 767px) {
  .topic_path {
    width: 100%;
    display: none;
  }
}
.topic_path li {
  margin-right: calc(0.8333333333 * var(--vw));
  font-size: 1.2rem;
  padding-left: calc(1.25 * var(--vw));
  box-sizing: border-box;
  position: relative;
}
@media only screen and (min-width: 1200px) {
  .topic_path li {
    padding-left: 15px;
    margin-right: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .topic_path li {
    padding-left: calc(4 * var(--vw));
    margin-right: calc(2.6666666667 * var(--vw));
  }
}
.topic_path li:before {
  content: "";
  display: block;
  width: calc(0.4166666667 * var(--vw));
  height: calc(0.4166666667 * var(--vw));
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  transform: rotate(45deg);
  position: absolute;
  top: calc(50% - 0.4166666667 * var(--vw) / 2);
  left: 0;
}
@media only screen and (min-width: 1200px) {
  .topic_path li:before {
    top: calc(50% - 2.5px);
    width: 5px;
    height: 5px;
  }
}
@media only screen and (max-width: 767px) {
  .topic_path li:before {
    top: calc(50% - 0.8333333333 * var(--vw) / 2);
    width: calc(1.3333333333 * var(--vw));
    height: calc(1.3333333333 * var(--vw));
  }
}
.topic_path li:first-child {
  padding-left: 0;
}
.topic_path li:first-child:before {
  display: none;
}
.topic_path li a {
  display: block;
}
.topic_path li a:hover {
  text-decoration: underline;
}

.inview {
  opacity: 0;
  position: relative;
}
.inview.animate {
  -webkit-animation: inview_slide_up 1.3s cubic-bezier(0.165, 0.84, 0.44, 1) forwards 0.2s;
  animation: inview_slide_up 1.3s cubic-bezier(0.165, 0.84, 0.44, 1) forwards 0.2s;
}

.inview-group .inview-list {
  opacity: 0;
  position: relative;
}
.inview-group .inview-list.animate {
  -webkit-animation: inview_slide_up 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards 0.2s;
  animation: inview_slide_up 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards 0.2s;
}

@-webkit-keyframes inview_slide_up {
  0% {
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes inview_slide_up {
  0% {
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

input[type=submit] {
  -webkit-appearance: none;
}

textarea {
  resize: none;
  width: auto;
  height: auto;
}

section.sec {
  margin-bottom: calc(10 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  section.sec {
    margin-bottom: 120px;
  }
}
@media only screen and (max-width: 767px) {
  section.sec {
    margin-bottom: calc(16 * var(--vw));
  }
}

section.sec2 {
  margin-bottom: calc(7.9166666667 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  section.sec2 {
    margin-bottom: 95px;
  }
}
@media only screen and (max-width: 767px) {
  section.sec2 {
    margin-bottom: calc(12.6666666667 * var(--vw));
  }
}

.sec_ttl {
  font-size: calc(2.6666666667 * var(--vw));
  text-align: center;
  line-height: 1.4;
  margin-bottom: calc(6.6666666667 * var(--vw));
  letter-spacing: 0.05em;
}
@media only screen and (min-width: 1200px) {
  .sec_ttl {
    margin-bottom: 80px;
  }
}
@media only screen and (max-width: 767px) {
  .sec_ttl {
    font-size: calc(5.3333333333 * var(--vw));
    margin-bottom: calc(5.3333333333 * var(--vw));
  }
}
.sec_ttl span {
  display: block;
  font-size: 2rem;
}
@media only screen and (max-width: 767px) {
  .sec_ttl span {
    font-size: 1.4rem;
  }
}
.sec_ttl .ttl-p {
  position: relative;
  width: 27.9%;
}
@media only screen and (max-width: 767px) {
  .sec_ttl .ttl-p {
    width: 45%;
  }
}
.sec_ttl .ttl-p2 {
  position: relative;
  width: 45%;
}
@media only screen and (max-width: 767px) {
  .sec_ttl .ttl-p2 {
    width: 52%;
  }
}
.sec_ttl .tt-box1 {
  position: absolute;
  top: calc(-3.8 * var(--vw));
  right: 0;
  width: calc(10.4166666667 * var(--vw));
}
@media only screen and (max-width: 767px) {
  .sec_ttl .tt-box1 {
    width: calc(16.6666666667 * var(--vw));
    top: calc(-6.08 * var(--vw));
  }
}
.sec_ttl .tt-box2 {
  position: absolute;
  top: calc(-4.5 * var(--vw));
  left: 0;
  width: calc(9.4166666667 * var(--vw));
}
@media only screen and (max-width: 767px) {
  .sec_ttl .tt-box2 {
    width: calc(15.0666666667 * var(--vw));
    top: calc(-7.2 * var(--vw));
  }
}

.sec_ttl_box {
  font-size: calc(2.6666666667 * var(--vw));
  text-align: center;
  line-height: 1.4;
  margin: 0 auto;
  margin-bottom: calc(1.6666666667 * var(--vw));
  letter-spacing: 0.05em;
  width: calc(19.1666666667 * var(--vw));
  height: calc(7.75 * var(--vw));
  display: flex;
  justify-content: center;
  align-items: center;
  border: solid 4px #77BD48;
  border-radius: calc(1.6666666667 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  .sec_ttl_box {
    margin-bottom: 20px;
    width: 230px;
    height: 93px;
    border: solid 4px #77BD48;
    border-radius: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .sec_ttl_box {
    font-size: calc(5.3333333333 * var(--vw));
    margin-bottom: calc(4 * var(--vw));
    width: calc(30.6666666667 * var(--vw));
    height: calc(12.4 * var(--vw));
    border-radius: calc(4 * var(--vw));
  }
}
.sec_ttl_box span {
  display: block;
  font-size: 2rem;
}
@media only screen and (max-width: 767px) {
  .sec_ttl_box span {
    font-size: 1.4rem;
  }
}
.sec_ttl_box .ttl-p {
  position: relative;
  width: 27.9%;
}
@media only screen and (max-width: 767px) {
  .sec_ttl_box .ttl-p {
    width: 45%;
  }
}
.sec_ttl_box .ttl-p2 {
  position: relative;
  width: 45%;
}
@media only screen and (max-width: 767px) {
  .sec_ttl_box .ttl-p2 {
    width: 52%;
  }
}
.sec_ttl_box .tt-box1 {
  position: absolute;
  top: calc(-3.8 * var(--vw));
  right: 0;
  width: calc(10.4166666667 * var(--vw));
}
@media only screen and (max-width: 767px) {
  .sec_ttl_box .tt-box1 {
    width: calc(16.6666666667 * var(--vw));
    top: calc(-6.08 * var(--vw));
  }
}
.sec_ttl_box .tt-box2 {
  position: absolute;
  top: calc(-4.5 * var(--vw));
  left: 0;
  width: calc(9.4166666667 * var(--vw));
}
@media only screen and (max-width: 767px) {
  .sec_ttl_box .tt-box2 {
    width: calc(15.0666666667 * var(--vw));
    top: calc(-7.2 * var(--vw));
  }
}

.sec_ttl-nmb {
  font-size: calc(2.6666666667 * var(--vw));
  text-align: center;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 767px) {
  .sec_ttl-nmb {
    font-size: calc(5.3333333333 * var(--vw));
  }
}
.sec_ttl-nmb span {
  display: block;
  font-size: 2rem;
}
@media only screen and (max-width: 767px) {
  .sec_ttl-nmb span {
    font-size: 1.4rem;
  }
}
.sec_ttl-nmb .ttl-p {
  position: relative;
  width: 25%;
}
@media only screen and (max-width: 767px) {
  .sec_ttl-nmb .ttl-p {
    width: 45%;
  }
}
.sec_ttl-nmb .ttl-p2 {
  position: relative;
  width: 45%;
}
@media only screen and (max-width: 767px) {
  .sec_ttl-nmb .ttl-p2 {
    width: 52%;
  }
}
.sec_ttl-nmb .tt-box1 {
  position: absolute;
  top: calc(-3.8 * var(--vw));
  right: 0;
  width: calc(10.4166666667 * var(--vw));
}
@media only screen and (max-width: 767px) {
  .sec_ttl-nmb .tt-box1 {
    width: calc(16.6666666667 * var(--vw));
    top: calc(-6.08 * var(--vw));
  }
}
.sec_ttl-nmb .tt-box2 {
  position: absolute;
  top: calc(-4.5 * var(--vw));
  left: 0;
  width: calc(9.4166666667 * var(--vw));
}
@media only screen and (max-width: 767px) {
  .sec_ttl-nmb .tt-box2 {
    width: calc(15.0666666667 * var(--vw));
    top: calc(-7.2 * var(--vw));
  }
}

.sec_ttl_footer {
  font-size: calc(2.6666666667 * var(--vw));
  text-align: center;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 767px) {
  .sec_ttl_footer {
    font-size: calc(5.3333333333 * var(--vw));
  }
}
.sec_ttl_footer span {
  display: block;
  font-size: 2rem;
}
@media only screen and (max-width: 767px) {
  .sec_ttl_footer span {
    font-size: 1.4rem;
  }
}
.sec_ttl_footer .ttl-p {
  position: relative;
  width: 27.9%;
}
@media only screen and (max-width: 767px) {
  .sec_ttl_footer .ttl-p {
    width: 45%;
  }
}
.sec_ttl_footer .ttl-p2 {
  position: relative;
  width: 45%;
}
@media only screen and (max-width: 767px) {
  .sec_ttl_footer .ttl-p2 {
    width: 52%;
  }
}
.sec_ttl_footer .tt-box1 {
  position: absolute;
  top: calc(-3.8 * var(--vw));
  right: 0;
  width: calc(10.4166666667 * var(--vw));
}
@media only screen and (max-width: 767px) {
  .sec_ttl_footer .tt-box1 {
    width: calc(16.6666666667 * var(--vw));
    top: calc(-6.08 * var(--vw));
  }
}
.sec_ttl_footer .tt-box2 {
  position: absolute;
  top: calc(-4.5 * var(--vw));
  left: 0;
  width: calc(9.4166666667 * var(--vw));
}
@media only screen and (max-width: 767px) {
  .sec_ttl_footer .tt-box2 {
    width: calc(15.0666666667 * var(--vw));
    top: calc(-7.2 * var(--vw));
  }
}

.tt-dflex {
  display: flex;
  justify-content: center;
}

.bg_green {
  background-image: url(/assets/img/common/footer-bg.png);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 1px;
}
@media only screen and (max-width: 767px) {
  .bg_green {
    background-image: url(/assets/img/common/footer-bg_sp.png);
    background-position: bottom center;
  }
}

.w-brg-box {
  border: solid 1px #77BD48;
  border-radius: calc(2 * var(--vw));
  background-color: #fff;
  padding: calc(5 * var(--vw)) calc(4 * var(--vw));
}
.w-brg-box .table1 {
  width: 100%;
}
.w-brg-box .table1 th {
  background: #e7f7db;
  border-right: 1px solid #c4c4c4;
  width: 20%;
  padding: calc(1.6666666667 * var(--vw));
  text-align: left;
  vertical-align: middle;
}
@media only screen and (max-width: 767px) {
  .w-brg-box .table1 th {
    width: 25%;
  }
}
.w-brg-box .table1 tr {
  border-top: 1px solid #c4c4c4;
  border-bottom: 1px solid #c4c4c4;
  border-collapse: collapse;
}
.w-brg-box .table1 td {
  width: 80%;
  padding: calc(1.6666666667 * var(--vw));
  vertical-align: middle;
}
@media only screen and (max-width: 767px) {
  .w-brg-box .table1 td {
    width: 75%;
  }
}
.w-brg-box .table1 .table-info {
  text-align: center;
}
.w-brg-box .table2 {
  width: 100%;
}
.w-brg-box .table2 th {
  background: #e7f7db;
  border-right: 1px solid #c4c4c4;
  width: 20%;
  padding: calc(1.6666666667 * var(--vw));
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .w-brg-box .table2 th {
    width: 25%;
  }
}
.w-brg-box .table2 tr {
  border-top: 1px solid #c4c4c4;
  border-bottom: 1px solid #c4c4c4;
  border-collapse: collapse;
}
.w-brg-box .table2 td {
  width: 80%;
  padding: calc(1.6666666667 * var(--vw));
  vertical-align: middle;
}
@media only screen and (max-width: 767px) {
  .w-brg-box .table2 td {
    width: 75%;
  }
}
.w-brg-box .td-box {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  gap: getwPc(10);
}
@media only screen and (max-width: 767px) {
  .w-brg-box .td-box {
    gap: getw(20);
  }
}
.w-brg-box .td-box .td-txt {
  width: 48%;
}
@media only screen and (max-width: 767px) {
  .w-brg-box .td-box .td-txt {
    width: 100%;
  }
}
.w-brg-box .td-box .td-btn {
  width: 48%;
}
@media only screen and (max-width: 767px) {
  .w-brg-box .td-box .td-btn {
    width: 100%;
  }
}
.w-brg-box .table-info {
  text-align: center;
}

.w-brg-box-store {
  border: solid 1px #77BD48;
  border-radius: calc(2 * var(--vw));
  background-color: #fff;
  padding: calc(2.9166666667 * var(--vw)) calc(2.5 * var(--vw));
}
@media only screen and (max-width: 767px) {
  .w-brg-box-store {
    padding: calc(5.3333333333 * var(--vw)) calc(4 * var(--vw));
    width: 95%;
    margin: 0 auto;
  }
}
.w-brg-box-store .table1 {
  width: 100%;
}
.w-brg-box-store .table1 th {
  background: #92F265;
  border-right: 1px solid #c4c4c4;
  width: 20%;
  padding: calc(1.6666666667 * var(--vw));
  text-align: left;
  vertical-align: middle;
}
@media only screen and (max-width: 767px) {
  .w-brg-box-store .table1 th {
    width: 25%;
  }
}
.w-brg-box-store .table1 tr {
  border-top: 1px solid #c4c4c4;
  border-bottom: 1px solid #c4c4c4;
  border-collapse: collapse;
}
.w-brg-box-store .table1 td {
  width: 80%;
  padding: calc(1.6666666667 * var(--vw));
  vertical-align: middle;
}
@media only screen and (max-width: 767px) {
  .w-brg-box-store .table1 td {
    width: 75%;
  }
}
.w-brg-box-store .table1 .table-info {
  text-align: center;
}
.w-brg-box-store .table2 {
  width: 100%;
}
.w-brg-box-store .table2 th {
  background: #92F265;
  border-right: 1px solid #c4c4c4;
  width: 20%;
  padding: calc(1.6666666667 * var(--vw));
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .w-brg-box-store .table2 th {
    width: 25%;
  }
}
.w-brg-box-store .table2 tr {
  border-top: 1px solid #c4c4c4;
  border-bottom: 1px solid #c4c4c4;
  border-collapse: collapse;
}
.w-brg-box-store .table2 td {
  width: 80%;
  padding: calc(1.6666666667 * var(--vw));
  vertical-align: middle;
}
@media only screen and (max-width: 767px) {
  .w-brg-box-store .table2 td {
    width: 75%;
  }
}
.w-brg-box-store .td-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: calc(0.8333333333 * var(--vw));
}
@media only screen and (max-width: 767px) {
  .w-brg-box-store .td-box {
    gap: calc(2.6666666667 * var(--vw));
  }
}
.w-brg-box-store .td-box .td-img {
  width: 48%;
}
.w-brg-box-store .td-box .td-img iframe {
  width: calc(40 * var(--vw));
  aspect-ratio: 480/360;
  border-radius: calc(2 * var(--vw));
}
@media only screen and (max-width: 767px) {
  .w-brg-box-store .td-box .td-img iframe {
    width: 100%;
    border-radius: calc(4 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  .w-brg-box-store .td-box .td-img {
    width: 100%;
  }
}
.w-brg-box-store .td-box .td-txt {
  width: 48%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .w-brg-box-store .td-box .td-txt {
    width: 100%;
  }
}
.w-brg-box-store .td-box .td-txt .txt-ttl {
  width: 100%;
  text-align: center;
  font-size: calc(2 * var(--vw));
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  .w-brg-box-store .td-box .td-txt .txt-ttl {
    font-size: calc(4.8 * var(--vw));
  }
}
.w-brg-box-store .td-box .td-txt .txt-info {
  width: 100%;
  text-align: left;
}
.w-brg-box-store .td-box .td-txt .img {
  width: 100% calc(46.1666666667 * var(--vw));
}
@media only screen and (max-width: 767px) {
  .w-brg-box-store .td-box .td-txt .img {
    width: 100%;
  }
}
.w-brg-box-store .table-info {
  text-align: center;
}

.brg-box-store {
  padding: 0 calc(5 * var(--vw));
}
@media only screen and (max-width: 767px) {
  .brg-box-store {
    padding: 0 calc(8 * var(--vw));
    width: 95%;
    margin: 0 auto;
  }
}
.brg-box-store .td-box {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  gap: calc(2.9166666667 * var(--vw));
}
@media only screen and (max-width: 767px) {
  .brg-box-store .td-box {
    gap: calc(2.6666666667 * var(--vw));
  }
}
.brg-box-store .td-box .td-img {
  width: calc(35.3333333333 * var(--vw));
}
@media only screen and (max-width: 767px) {
  .brg-box-store .td-box .td-img {
    width: 100%;
  }
}
.brg-box-store .td-box .td-txt {
  width: 48%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .brg-box-store .td-box .td-txt {
    width: 100%;
  }
}
.brg-box-store .td-box .td-txt .txt-ttl {
  width: 100%;
  text-align: center;
  font-size: calc(2 * var(--vw));
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  .brg-box-store .td-box .td-txt .txt-ttl {
    font-size: calc(4.8 * var(--vw));
  }
}
.brg-box-store .td-box .td-txt .txt-info {
  width: 100%;
  text-align: left;
}
.brg-box-store .td-box .td-txt .img {
  width: 100% calc(46.1666666667 * var(--vw));
}
@media only screen and (max-width: 767px) {
  .brg-box-store .td-box .td-txt .img {
    width: 100%;
  }
}
.brg-box-store .table-info {
  text-align: center;
}

.w-brg-box-nb {
  border-radius: calc(2 * var(--vw));
  background-color: #fff;
  padding: calc(5 * var(--vw)) calc(2 * var(--vw));
  max-width: calc(75 * var(--vw));
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .w-brg-box-nb {
    border-radius: calc(4.2666666667 * var(--vw));
    padding: calc(10.6666666667 * var(--vw)) calc(4 * var(--vw));
    max-width: initial;
    width: 95%;
  }
}
.w-brg-box-nb .table1 {
  width: 100%;
}
.w-brg-box-nb .table1 th {
  background: #92F265;
  border-right: 1px solid #c4c4c4;
  width: 20%;
  padding: calc(1.6666666667 * var(--vw));
  text-align: left;
  vertical-align: middle;
}
@media only screen and (max-width: 767px) {
  .w-brg-box-nb .table1 th {
    width: 25%;
  }
}
.w-brg-box-nb .table1 tr {
  border-top: 1px solid #c4c4c4;
  border-bottom: 1px solid #c4c4c4;
  border-collapse: collapse;
}
.w-brg-box-nb .table1 td {
  width: 80%;
  padding: calc(1.6666666667 * var(--vw));
  vertical-align: middle;
}
@media only screen and (max-width: 767px) {
  .w-brg-box-nb .table1 td {
    width: 75%;
  }
}
.w-brg-box-nb .table1 .table-info {
  text-align: center;
}
.w-brg-box-nb .table2 {
  width: 100%;
}
.w-brg-box-nb .table2 th {
  background: #92F265;
  border-right: 1px solid #c4c4c4;
  width: 20%;
  padding: calc(1.6666666667 * var(--vw));
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .w-brg-box-nb .table2 th {
    width: 25%;
  }
}
.w-brg-box-nb .table2 tr {
  border-top: 1px solid #c4c4c4;
  border-bottom: 1px solid #c4c4c4;
  border-collapse: collapse;
}
.w-brg-box-nb .table2 td {
  width: 80%;
  padding: calc(1.6666666667 * var(--vw));
  vertical-align: middle;
}
@media only screen and (max-width: 767px) {
  .w-brg-box-nb .table2 td {
    width: 75%;
  }
}
.w-brg-box-nb .td-box {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  gap: getwPc(10);
}
@media only screen and (max-width: 767px) {
  .w-brg-box-nb .td-box {
    gap: getw(20);
  }
}
.w-brg-box-nb .td-box .td-txt {
  width: 48%;
}
@media only screen and (max-width: 767px) {
  .w-brg-box-nb .td-box .td-txt {
    width: 100%;
  }
}
.w-brg-box-nb .td-box .td-btn {
  width: 48%;
}
@media only screen and (max-width: 767px) {
  .w-brg-box-nb .td-box .td-btn {
    width: 100%;
  }
}
.w-brg-box-nb .table-info {
  text-align: center;
}

.w-brg-box-nbg {
  padding: calc(5 * var(--vw)) calc(4 * var(--vw));
}
.w-brg-box-nbg .table1 {
  width: 100%;
}
.w-brg-box-nbg .table1 th {
  background: #92F265;
  border-right: 1px solid #c4c4c4;
  width: 20%;
  padding: calc(1.6666666667 * var(--vw));
  text-align: left;
  vertical-align: middle;
}
@media only screen and (max-width: 767px) {
  .w-brg-box-nbg .table1 th {
    width: 25%;
  }
}
.w-brg-box-nbg .table1 tr {
  border-top: 1px solid #c4c4c4;
  border-bottom: 1px solid #c4c4c4;
  border-collapse: collapse;
}
.w-brg-box-nbg .table1 td {
  width: 80%;
  padding: calc(1.6666666667 * var(--vw));
  vertical-align: middle;
}
@media only screen and (max-width: 767px) {
  .w-brg-box-nbg .table1 td {
    width: 75%;
  }
}
.w-brg-box-nbg .table1 .table-info {
  text-align: center;
}
.w-brg-box-nbg .table2 {
  width: 100%;
}
.w-brg-box-nbg .table2 th {
  background: #92F265;
  border-right: 1px solid #c4c4c4;
  width: 20%;
  padding: calc(1.6666666667 * var(--vw));
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .w-brg-box-nbg .table2 th {
    width: 25%;
  }
}
.w-brg-box-nbg .table2 tr {
  border-top: 1px solid #c4c4c4;
  border-bottom: 1px solid #c4c4c4;
  border-collapse: collapse;
}
.w-brg-box-nbg .table2 td {
  width: 80%;
  padding: calc(1.6666666667 * var(--vw));
  vertical-align: middle;
}
@media only screen and (max-width: 767px) {
  .w-brg-box-nbg .table2 td {
    width: 75%;
  }
}
.w-brg-box-nbg .td-box {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  gap: getwPc(10);
}
@media only screen and (max-width: 767px) {
  .w-brg-box-nbg .td-box {
    gap: getw(20);
  }
}
.w-brg-box-nbg .td-box .td-txt {
  width: 48%;
}
@media only screen and (max-width: 767px) {
  .w-brg-box-nbg .td-box .td-txt {
    width: 100%;
  }
}
.w-brg-box-nbg .td-box .td-btn {
  width: 48%;
}
@media only screen and (max-width: 767px) {
  .w-brg-box-nbg .td-box .td-btn {
    width: 100%;
  }
}
.w-brg-box-nbg .table-info {
  text-align: center;
}

.tbl-scroll {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .tbl-scroll {
    display: block;
    overflow-x: scroll;
  }
  .tbl-scroll::-webkit-scrollbar {
    width: calc(1.3333333333 * var(--vw));
    height: calc(1.6 * var(--vw));
  }
  .tbl-scroll::-webkit-scrollbar-thumb {
    border-radius: 25px !important;
    background: #34A02C;
  }
  .tbl-scroll::-webkit-scrollbar-track {
    background: #E6EAF0;
  }
}
.tbl-scroll img {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .tbl-scroll img {
    width: 180%;
    table-layout: fixed;
    margin-bottom: calc(4.2666666667 * var(--vw));
  }
}

.tab_list {
  display: flex;
  justify-content: space-between;
  margin-bottom: calc(5 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  .tab_list {
    margin-bottom: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .tab_list {
    margin-bottom: calc(8 * var(--vw));
  }
}
.tab_list li {
  width: 33.3333333%;
  line-height: 1;
  text-align: center;
  z-index: 3;
  -ms-flex: 1 1 0%;
  -webkit-flex: 1 1 0%;
  flex: 1 1 0%;
  color: #000;
  display: block;
  border: 1px solid #ccc;
  height: calc(5.8333333333 * var(--vw));
  line-height: calc(5.8333333333 * var(--vw));
  border-right: none;
  cursor: pointer;
  transition: 0.3s;
}
@media only screen and (min-width: 1200px) {
  .tab_list li {
    height: 70px;
    line-height: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .tab_list li {
    height: calc(11.6666666667 * var(--vw));
    line-height: calc(11.6666666667 * var(--vw));
  }
}
.tab_list li:last-child {
  border-right: 1px solid #ddd;
}
.tab_list li:hover {
  background: #f2f2f2;
}
.tab_list li.active {
  background: #f2f2f2;
}

.panel_group {
  width: 100% !important;
}
.panel_group .panel {
  display: none;
  position: relative;
}
.panel_group .panel.show {
  display: block;
  -webkit-animation: news_list_animation 1s cubic-bezier(0.22, 1, 0.36, 1) 0s;
  animation: news_list_animation 1s cubic-bezier(0.22, 1, 0.36, 1) 0s;
}
@keyframes news_list_animation {
  0% {
    opacity: 0;
    bottom: -20px;
  }
  100% {
    opacity: 1;
    bottom: 0;
  }
}

.g-map {
  position: relative;
  width: 55%;
  /* 548:327のアスペクト比 */
}
@media only screen and (max-width: 767px) {
  .g-map {
    width: 100%;
    padding-top: 59.67%;
  }
}

.g-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: calc(2 * var(--vw));
}
@media only screen and (max-width: 767px) {
  .g-map iframe {
    border-radius: calc(4 * var(--vw));
  }
}

.indent {
  text-indent: -1em;
  padding-left: 1em;
  display: inline-block;
}

.indent2 {
  text-indent: -2em;
  padding-left: 2em;
  display: inline-block;
}

.font-w600 {
  font-weight: 600;
}

.g-rnd {
  color: #C0E3A8;
  font-size: calc(1.3333333333 * var(--vw));
}
@media only screen and (max-width: 767px) {
  .g-rnd {
    font-size: calc(1.8666666667 * var(--vw));
  }
}

.g-link {
  color: #34A02C;
  text-decoration: underline #34A02C;
}

@media only screen and (max-width: 767px) {
  .lt-spc-08sp {
    letter-spacing: calc(-0.2133333333 * var(--vw));
  }
}

.pl-16 {
  padding-left: calc(1.3333333333 * var(--vw)) !important;
}
@media only screen and (max-width: 767px) {
  .pl-16 {
    padding-left: calc(4.2666666667 * var(--vw)) !important;
  }
}

@media only screen and (min-width: 768px) {
  .p-55-fordis {
    padding-top: calc(4.5833333333 * var(--vw)) !important;
  }
}
@media only screen and (max-width: 767px) {
  .p-55-fordis {
    padding-top: initial !important;
  }
}

@media only screen and (min-width: 768px) {
  .p-55-fordis2 {
    padding-top: calc(4.5833333333 * var(--vw)) !important;
    padding-bottom: calc(4.5833333333 * var(--vw)) !important;
  }
}
@media only screen and (max-width: 767px) {
  .p-55-fordis2 {
    padding-top: calc(12 * var(--vw)) !important;
    padding-bottom: calc(12 * var(--vw)) !important;
  }
}

@media only screen and (min-width: 768px) {
  .p-55-fortop {
    padding-top: calc(4.5833333333 * var(--vw)) !important;
  }
}
@media only screen and (max-width: 767px) {
  .p-55-fortop {
    padding-top: calc(2.6666666667 * var(--vw)) !important;
    padding-bottom: calc(2.2666666667 * var(--vw)) !important;
    margin-bottom: calc(5.3333333333 * var(--vw)) !important;
  }
}

@media only screen and (min-width: 768px) {
  .p-55-forpro {
    padding-top: calc(4.5833333333 * var(--vw)) !important;
    margin-bottom: calc(8.3333333333 * var(--vw)) !important;
  }
}
@media only screen and (max-width: 767px) {
  .p-55-forpro {
    padding-top: calc(2.6666666667 * var(--vw)) !important;
    padding-bottom: calc(2.2666666667 * var(--vw)) !important;
    margin-bottom: calc(5.3333333333 * var(--vw)) !important;
  }
}

@media only screen and (min-width: 768px) {
  .p-55-forpro2 {
    padding-top: calc(4.5833333333 * var(--vw)) !important;
    margin-bottom: calc(4.1666666667 * var(--vw)) !important;
  }
}
@media only screen and (max-width: 767px) {
  .p-55-forpro2 {
    padding-top: calc(2.6666666667 * var(--vw)) !important;
    padding-bottom: calc(2.2666666667 * var(--vw)) !important;
    margin-bottom: calc(5.3333333333 * var(--vw)) !important;
  }
}

.p-15 {
  padding: calc(1.25 * var(--vw)) !important;
}
@media only screen and (max-width: 767px) {
  .p-15 {
    padding: calc(4 * var(--vw)) !important;
  }
}

.p-25 {
  padding: calc(2.0833333333 * var(--vw)) !important;
}
@media only screen and (max-width: 767px) {
  .p-25 {
    padding: calc(6.6666666667 * var(--vw)) !important;
  }
}

.p-25-0 {
  padding: calc(2.0833333333 * var(--vw)) !important;
}
@media only screen and (max-width: 767px) {
  .p-25-0 {
    padding: calc(6.6666666667 * var(--vw)) 0 !important;
  }
}

@media only screen and (min-width: 768px) {
  .plr-70pc {
    padding-left: calc(5.8333333333 * var(--vw)) !important;
    padding-right: calc(5.8333333333 * var(--vw)) !important;
  }
}

.pt-16 {
  padding-top: calc(1.3333333333 * var(--vw)) !important;
}
@media only screen and (max-width: 767px) {
  .pt-16 {
    padding-top: calc(4.2666666667 * var(--vw)) !important;
  }
}

.pt-20 {
  padding-top: calc(1.6666666667 * var(--vw)) !important;
}
@media only screen and (max-width: 767px) {
  .pt-20 {
    padding-top: calc(5.3333333333 * var(--vw)) !important;
  }
}

.pt-25 {
  padding-top: calc(2.0833333333 * var(--vw)) !important;
}
@media only screen and (max-width: 767px) {
  .pt-25 {
    padding-top: calc(6.6666666667 * var(--vw)) !important;
  }
}

.pt-40 {
  padding-top: calc(3.3333333333 * var(--vw)) !important;
}
@media only screen and (max-width: 767px) {
  .pt-40 {
    padding-top: calc(8 * var(--vw)) !important;
  }
}

.pb-60 {
  padding-bottom: calc(5 * var(--vw)) !important;
}
@media only screen and (max-width: 767px) {
  .pb-60 {
    padding-bottom: calc(10.6666666667 * var(--vw)) !important;
  }
}

.pb-80 {
  padding-bottom: calc(6.6666666667 * var(--vw)) !important;
}
@media only screen and (max-width: 767px) {
  .pb-80 {
    padding-bottom: calc(10.6666666667 * var(--vw)) !important;
  }
}

.pb-120 {
  padding-bottom: calc(10 * var(--vw)) !important;
}
@media only screen and (max-width: 767px) {
  .pb-120 {
    padding-bottom: calc(13.3333333333 * var(--vw)) !important;
  }
}

.pt-130 {
  padding-top: calc(10.8333333333 * var(--vw)) !important;
}
@media only screen and (max-width: 767px) {
  .pt-130 {
    padding-top: calc(17.3333333333 * var(--vw)) !important;
  }
}

.pt-130sp100 {
  padding-top: calc(10.8333333333 * var(--vw)) !important;
}
@media only screen and (max-width: 767px) {
  .pt-130sp100 {
    padding-top: calc(26.6666666667 * var(--vw)) !important;
  }
}

.ml-16 {
  margin-left: calc(1.3333333333 * var(--vw)) !important;
}
@media only screen and (max-width: 767px) {
  .ml-16 {
    margin-left: calc(4.2666666667 * var(--vw)) !important;
  }
}

@media only screen and (min-width: 768px) {
  .ml-16pc8sp {
    margin-left: calc(1.3333333333 * var(--vw)) !important;
  }
}
@media only screen and (max-width: 767px) {
  .ml-16pc8sp {
    margin-left: calc(5.3333333333 * var(--vw)) !important;
  }
}

.mb-1 {
  margin-bottom: 1px !important;
}

.mt-24 {
  margin-top: calc(2 * var(--vw)) !important;
}
@media only screen and (max-width: 767px) {
  .mt-24 {
    margin-top: calc(6.4 * var(--vw)) !important;
  }
}

.mt-30 {
  margin-top: calc(2.5 * var(--vw)) !important;
}
@media only screen and (max-width: 767px) {
  .mt-30 {
    margin-top: calc(5.3333333333 * var(--vw)) !important;
  }
}

@media only screen and (max-width: 767px) {
  .mt-20sp {
    margin-top: calc(5.3333333333 * var(--vw)) !important;
  }
}

.mt-40 {
  margin-top: calc(3.3333333333 * var(--vw)) !important;
}
@media only screen and (max-width: 767px) {
  .mt-40 {
    margin-top: calc(10.6666666667 * var(--vw)) !important;
  }
}

.mt-45 {
  margin-top: calc(3.75 * var(--vw)) !important;
}
@media only screen and (max-width: 767px) {
  .mt-45 {
    margin-top: calc(6 * var(--vw)) !important;
  }
}

.mt-50 {
  margin-top: calc(4.1666666667 * var(--vw)) !important;
}
@media only screen and (max-width: 767px) {
  .mt-50 {
    margin-top: calc(10.6666666667 * var(--vw)) !important;
  }
}

.mt-55 {
  margin-top: calc(4.5833333333 * var(--vw)) !important;
}
@media only screen and (max-width: 767px) {
  .mt-55 {
    margin-top: calc(12 * var(--vw)) !important;
  }
}

.mt-60 {
  margin-top: calc(5 * var(--vw)) !important;
}
@media only screen and (max-width: 767px) {
  .mt-60 {
    margin-top: calc(10.6666666667 * var(--vw)) !important;
  }
}

.mt-100 {
  margin-top: calc(8.3333333333 * var(--vw)) !important;
}
@media only screen and (max-width: 767px) {
  .mt-100 {
    margin-top: calc(13.3333333333 * var(--vw)) !important;
  }
}

.mb-45 {
  margin-bottom: calc(3.75 * var(--vw)) !important;
}
@media only screen and (max-width: 767px) {
  .mb-45 {
    margin-bottom: calc(5.3333333333 * var(--vw)) !important;
  }
}

.mb-65 {
  margin-bottom: calc(5.4166666667 * var(--vw)) !important;
}
@media only screen and (max-width: 767px) {
  .mb-65 {
    margin-bottom: calc(8.6666666667 * var(--vw)) !important;
  }
}

.mb-80 {
  margin-bottom: calc(6.6666666667 * var(--vw)) !important;
}
@media only screen and (max-width: 767px) {
  .mb-80 {
    margin-bottom: calc(10.6666666667 * var(--vw)) !important;
  }
}

.mb-60-tc {
  margin-bottom: calc(5 * var(--vw)) !important;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .mb-60-tc {
    margin-bottom: calc(8 * var(--vw)) !important;
  }
}

.mb-10 {
  margin-bottom: calc(0.8333333333 * var(--vw)) !important;
}
@media only screen and (max-width: 767px) {
  .mb-10 {
    margin-bottom: calc(2.6666666667 * var(--vw)) !important;
  }
}

.mb-12 {
  margin-bottom: calc(1 * var(--vw)) !important;
}
@media only screen and (max-width: 767px) {
  .mb-12 {
    margin-bottom: calc(3.2 * var(--vw)) !important;
  }
}

.mb-15 {
  margin-bottom: calc(1.25 * var(--vw)) !important;
}
@media only screen and (max-width: 767px) {
  .mb-15 {
    margin-bottom: calc(4 * var(--vw)) !important;
  }
}

.mb-20 {
  margin-bottom: calc(1.6666666667 * var(--vw)) !important;
}
@media only screen and (max-width: 767px) {
  .mb-20 {
    margin-bottom: calc(5.3333333333 * var(--vw)) !important;
  }
}

.mb-30 {
  margin-bottom: calc(2.5 * var(--vw)) !important;
}
@media only screen and (max-width: 767px) {
  .mb-30 {
    margin-bottom: calc(8 * var(--vw)) !important;
  }
}

.mb-80sp60 {
  margin-bottom: calc(6.6666666667 * var(--vw)) !important;
}
@media only screen and (max-width: 767px) {
  .mb-80sp60 {
    margin-bottom: calc(16 * var(--vw)) !important;
  }
}

@media only screen and (min-width: 768px) {
  #TOP .menu-uline0 {
    border-bottom: solid 2px #34A02C;
  }
  #DISPENSING .menu-uline1 {
    border-bottom: solid 2px #34A02C;
  }
  #STOREINFO .menu-uline2 {
    border-bottom: solid 2px #34A02C;
  }
  #COMPANY .menu-uline3 {
    border-bottom: solid 2px #34A02C;
  }
  #POSTINFO .menu-uline4 {
    border-bottom: solid 2px #34A02C;
  }
}
.header {
  height: calc(7.5 * var(--vw));
  width: 100%;
  top: 0;
  z-index: 10;
  background: #fff;
  position: fixed;
}
@media only screen and (min-width: 1200px) {
  .header {
    height: 90px;
  }
}
@media only screen and (max-width: 767px) {
  .header {
    height: calc(13.3333333333 * var(--vw));
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
}
.header .header_in {
  margin: 0 auto;
  padding: 0 calc(2.5 * var(--vw));
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  border-bottom: solid 1px #34A02C;
  box-shadow: 0px 1px 5px 0px #ccc;
}
@media only screen and (min-width: 1200px) {
  .header .header_in {
    padding: 0 30px;
  }
}
@media only screen and (max-width: 767px) {
  .header .header_in {
    width: 100%;
    padding: 0 calc(3.3333333333 * var(--vw));
  }
}
.header .header_in h1 {
  width: calc(18.5 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  .header .header_in h1 {
    width: 222px;
  }
}
@media only screen and (max-width: 767px) {
  .header .header_in h1 {
    width: calc(21.3333333333 * var(--vw));
    top: calc(3.3333333333 * var(--vw));
  }
}
.header .header_in h1 img {
  display: block;
  top: 0;
}
@media only screen and (max-width: 767px) {
  .header .header_in h1 img {
    width: calc(32 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  .header .header_in nav {
    width: 100%;
    position: absolute;
    top: calc(13.3333333333 * var(--vw));
    left: 0;
    right: 0;
  }
}
.header .header_in nav ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 calc(2.5 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  .header .header_in nav ul {
    gap: 0 30px;
  }
}
@media only screen and (max-width: 767px) {
  .header .header_in nav ul {
    display: none;
    background: #00956E;
    height: 100vh;
    gap: 0;
  }
}
.header .header_in nav ul li {
  position: relative;
}
.header .header_in nav ul li a {
  font-weight: 600;
  transition: 0.2s;
}
@media only screen and (max-width: 767px) {
  .header .header_in nav ul li a {
    border-bottom: 1px solid #005740;
    color: #fff;
    padding: calc(4.2666666667 * var(--vw));
    position: relative;
    display: block;
  }
  .header .header_in nav ul li a::after {
    content: "";
    width: calc(2.1333333333 * var(--vw));
    height: calc(2.1333333333 * var(--vw));
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
    position: absolute;
    top: calc(50% - 2.1333333333 * var(--vw) / 2);
    right: calc(6.6666666667 * var(--vw));
  }
}
.header .header_in nav ul li a:hover {
  opacity: 0.6;
}
.header .header_in .c-btn {
  width: calc(14.5 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  .header .header_in .c-btn {
    width: 174px;
  }
}
.header .nav_toggle {
  display: none;
}
@media only screen and (max-width: 767px) {
  .header .nav_toggle {
    display: block;
    width: 26px;
    height: 20px;
    position: absolute;
    top: calc(50% - 10px);
    z-index: 100;
    right: 17px;
    transition: 0.2s;
  }
  .header .nav_toggle span {
    display: block;
    height: 3px;
    background: #005740;
    position: absolute;
    width: 100%;
    left: 0;
    transition: 0.3s ease-in-out;
  }
  .header .nav_toggle span:nth-child(1) {
    top: 0;
  }
  .header .nav_toggle span:nth-child(2) {
    top: 8px;
  }
  .header .nav_toggle span:nth-child(3) {
    top: 16px;
  }
  .header .nav_toggle {
    /*開閉ボタンopen時*/
  }
  .header .nav_toggle.open span:nth-child(1) {
    top: 12px;
    transform: rotate(135deg);
  }
  .header .nav_toggle.open span:nth-child(2) {
    width: 0;
    left: 50%;
  }
  .header .nav_toggle.open span:nth-child(3) {
    top: 12px;
    transform: rotate(-135deg);
  }
}

.footer {
  background: #fff;
  padding: calc(1.25 * var(--vw)) 0;
}
@media only screen and (max-width: 767px) {
  .footer {
    padding: calc(4 * var(--vw)) 0;
  }
}
@media only screen and (min-width: 1200px) {
  .footer {
    padding: 15px 0;
  }
}
.footer {
  color: #1C4660;
  position: relative;
}
.footer .footer_in {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 calc(5.3333333333 * var(--vw)) calc(3.3333333333 * var(--vw));
}
@media only screen and (max-width: 767px) {
  .footer .footer_in {
    padding: 0 calc(8.5333333333 * var(--vw)) calc(5.3333333333 * var(--vw));
    justify-content: center;
  }
}
@media only screen and (min-width: 1200px) {
  .footer .footer_in {
    padding: 0 64px 40px;
  }
}
.footer .footer_in nav ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0 25px;
}
@media only screen and (max-width: 767px) {
  .footer .footer_in nav ul {
    display: none;
  }
}
.footer .footer_in nav ul li {
  position: relative;
}
.footer .footer_in nav ul li a {
  transition: 0.2s;
}
.footer .footer_in nav ul li a:hover {
  opacity: 0.4;
}
.footer .footer_in .logo {
  width: calc(18.9166666667 * var(--vw));
}
@media only screen and (max-width: 767px) {
  .footer .footer_in .logo {
    width: 60%;
  }
}
@media only screen and (min-width: 1200px) {
  .footer .footer_in .logo {
    width: 227px;
  }
}
.footer .footer_in .c_right {
  font-size: 10px;
  color: #fff;
  text-align: center;
  line-height: 1.4;
}
.footer .copy {
  font-size: calc(1 * var(--vw));
  color: #888;
  width: 100%;
  text-align: right;
  padding: calc(1.25 * var(--vw)) calc(2.3333333333 * var(--vw));
  border-top: solid 1px #D9D9D9;
}
@media only screen and (min-width: 1200px) {
  .footer .copy {
    font-size: 12px;
  }
}
@media only screen and (max-width: 767px) {
  .footer .copy {
    font-size: calc(2.6666666667 * var(--vw));
  }
}

.btn_top {
  width: 60px;
  height: 60px;
  background: #34A02C;
  position: fixed;
  display: none;
  right: 25px;
  bottom: 110px;
  border-radius: 100%;
  cursor: pointer;
  z-index: 9;
}
@media only screen and (max-width: 767px) {
  .btn_top {
    width: 45px;
    height: 45px;
    right: 10px;
  }
}
.btn_top:after {
  content: "";
  display: block;
  width: 17px;
  height: 17px;
  border-top: 4px solid #fff;
  border-right: 4px solid #fff;
  transform: rotate(-45deg);
  position: absolute;
  top: 24px;
  left: 19px;
}
@media only screen and (max-width: 767px) {
  .btn_top:after {
    width: 12px;
    height: 12px;
    top: 18px;
    left: 15px;
  }
}

#TOP .kv {
  margin-bottom: calc(8.3333333333 * var(--vw));
  position: relative;
  width: calc(76 * var(--vw));
  padding-bottom: calc(3.3333333333 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  #TOP .kv {
    margin-bottom: 100;
  }
}
@media only screen and (max-width: 767px) {
  #TOP .kv {
    width: 81%;
    margin-bottom: 0;
    padding-bottom: calc(7.6 * var(--vw));
  }
}
#TOP .kv .kv-in {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}
#TOP .flw-in {
  width: 100%;
  display: flex;
  justify-content: center;
}
#TOP .kv-box {
  position: relative;
  max-width: calc(91.25 * var(--vw));
  width: 100%;
  margin: 0 auto;
}
#TOP .kv-box .right-box {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  width: calc(19.5833333333 * var(--vw));
}
@media only screen and (max-width: 767px) {
  #TOP .kv-box .right-box {
    width: calc(31.3333333333 * var(--vw));
  }
}
#TOP .flw-box {
  display: flex;
  flex-wrap: wrap;
  width: calc(81.5 * var(--vw));
  justify-content: center;
  align-items: center;
}
#TOP .flw-box .flw-cobox {
  width: calc(12.8333333333 * var(--vw));
}
#TOP .flw-box .flw-cobox-w {
  width: calc(4.3333333333 * var(--vw));
}
#TOP .o-time {
  width: calc(93.3333333333 * var(--vw));
  position: relative;
  display: flex;
  flex-wrap: wrap;
}
@media only screen and (min-width: 768px) {
  #TOP .o-time {
    height: calc(32 * var(--vw));
    background-image: url(/assets/img/top/open-time.svg);
    background-size: contain;
    background-position: top center;
    background-repeat: no-repeat;
  }
}
@media only screen and (max-width: 767px) {
  #TOP .o-time {
    max-width: calc(100 * var(--vw));
    width: 100%;
  }
}
#TOP .o-time-info {
  padding: calc(2.5 * var(--vw));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
@media only screen and (max-width: 767px) {
  #TOP .o-time-info {
    padding: calc(2.6666666667 * var(--vw));
    background-color: #F9D5CE;
    width: 100%;
  }
}
#TOP .o-time-info__ttl {
  font-size: calc(2 * var(--vw));
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  #TOP .o-time-info__ttl {
    font-size: calc(5.3333333333 * var(--vw));
    width: 100%;
    text-align: center;
  }
}
#TOP .o-time-info__add {
  font-size: calc(1.5 * var(--vw));
  line-height: calc(2.2 * var(--vw));
}
@media only screen and (max-width: 767px) {
  #TOP .o-time-info__add {
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(4.8 * var(--vw));
  }
}
#TOP .o-time-info__infotxt {
  font-size: calc(1.3333333333 * var(--vw));
  padding-left: calc(0.6666666667 * var(--vw));
  text-decoration: underline;
}
@media only screen and (max-width: 767px) {
  #TOP .o-time-info__infotxt {
    font-size: calc(3.2 * var(--vw));
    padding-left: calc(2.1333333333 * var(--vw));
  }
}
#TOP .o-time__img {
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 767px) {
  #TOP .o-time__img {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
}
#TOP .o-time .tel-fax {
  width: calc(12.75 * var(--vw));
}
@media only screen and (max-width: 767px) {
  #TOP .o-time .tel-fax {
    width: calc(33.3333333333 * var(--vw));
  }
}
#TOP .o-time .g-btn {
  width: calc(14 * var(--vw));
}
@media only screen and (max-width: 767px) {
  #TOP .o-time .g-btn {
    width: calc(26.6666666667 * var(--vw));
  }
}
@media only screen and (min-width: 768px) {
  #TOP .o-time-sp {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  #TOP .o-time-sp {
    display: block;
  }
}
#TOP .pay-box {
  width: calc(81.4166666667 * var(--vw));
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  #TOP .pay-box {
    flex-direction: column;
  }
}
#TOP .pay-box__left {
  width: calc(52.6666666667 * var(--vw));
}
@media only screen and (max-width: 767px) {
  #TOP .pay-box__left {
    max-width: calc(100 * var(--vw));
    width: 100%;
  }
}
#TOP .pay-box__right {
  width: calc(25.5833333333 * var(--vw));
}
@media only screen and (max-width: 767px) {
  #TOP .pay-box__right {
    max-width: calc(100 * var(--vw));
    width: 80%;
    margin: 0 auto;
  }
}
#TOP .pay-how {
  width: calc(52.6666666667 * var(--vw));
}
@media only screen and (max-width: 767px) {
  #TOP .pay-how {
    max-width: calc(84.2666666667 * var(--vw));
    width: 100%;
  }
}
#TOP .p-book {
  display: flex;
  width: calc(81.8333333333 * var(--vw));
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  #TOP .p-book {
    justify-content: flex-start;
    gap: calc(2.6666666667 * var(--vw));
    margin-bottom: calc(2.6666666667 * var(--vw));
  }
}
#TOP .p-book-box {
  display: flex;
  justify-content: center;
}
#TOP .p-book__left {
  width: calc(30 * var(--vw));
}
@media only screen and (max-width: 767px) {
  #TOP .p-book__left {
    width: 31%;
  }
}
#TOP .p-book__right {
  width: calc(48.1666666667 * var(--vw));
}
@media only screen and (max-width: 767px) {
  #TOP .p-book__right {
    width: 64%;
  }
}
#TOP .p-book__title {
  text-align: left;
}
#TOP .p-book__title .t-sub {
  font-size: calc(2 * var(--vw));
  line-height: calc(4 * var(--vw));
}
@media only screen and (max-width: 767px) {
  #TOP .p-book__title .t-sub {
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(7.2 * var(--vw));
  }
}
#TOP .p-book__title .t-main {
  font-size: calc(5.3333333333 * var(--vw));
  font-weight: 600;
  line-height: calc(5.3333333333 * var(--vw));
}
@media only screen and (max-width: 767px) {
  #TOP .p-book__title .t-main {
    font-size: calc(7.2 * var(--vw));
  }
}
@media only screen and (min-width: 768px) {
  #TOP .p-book__catch_pc {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
  }
  #TOP .p-book__catch_pc .p-ch-img {
    width: calc(15 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  #TOP .p-book__catch_pc {
    display: none;
  }
}
@media only screen and (min-width: 768px) {
  #TOP .p-book__catch_sp {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  #TOP .p-book__catch_sp {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
  }
  #TOP .p-book__catch_sp .p-ch-img {
    width: 31%;
  }
}
#TOP .p-book__lnk {
  width: 100%;
  display: flex;
  justify-content: center;
  padding-top: calc(0.4166666667 * var(--vw));
}
@media only screen and (max-width: 767px) {
  #TOP .p-book__lnk {
    padding-top: calc(8 * var(--vw));
  }
}
#TOP .p-book__btn {
  width: calc(16.6666666667 * var(--vw));
}
@media only screen and (max-width: 767px) {
  #TOP .p-book__btn {
    width: 65%;
  }
}
#TOP .tel-box {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
}
#TOP .tel-box .tel-info-txt {
  font-size: calc(1.3333333333 * var(--vw));
  line-height: calc(2 * var(--vw));
  text-align: center;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  #TOP .tel-box .tel-info-txt {
    width: 90%;
    font-size: calc(4.2666666667 * var(--vw));
    line-height: calc(6.4 * var(--vw));
  }
}
#TOP .tel-box__lnk {
  width: 100%;
  display: flex;
  justify-content: center;
  padding-top: calc(2.0833333333 * var(--vw));
}
@media only screen and (max-width: 767px) {
  #TOP .tel-box__lnk {
    padding-top: calc(3.3333333333 * var(--vw));
  }
}
#TOP .tel-box__btn {
  width: calc(16.6666666667 * var(--vw));
}
@media only screen and (max-width: 767px) {
  #TOP .tel-box__btn {
    width: 50%;
  }
}
#TOP .tel-cobox {
  width: calc(50 * var(--vw));
}
@media only screen and (max-width: 767px) {
  #TOP .tel-cobox {
    width: 90%;
  }
}
#TOP .sec01 .box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#TOP .sec01 .box:not(:last-of-type) {
  margin-bottom: calc(6.6666666667 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  #TOP .sec01 .box:not(:last-of-type) {
    margin-bottom: 80;
  }
}
@media only screen and (max-width: 767px) {
  #TOP .sec01 .box:not(:last-of-type) {
    margin-bottom: calc(10.6666666667 * var(--vw));
  }
}
#TOP .sec01 .box .img_area,
#TOP .sec01 .box .info_area {
  width: 47%;
}
#TOP .sec01 .box h3 {
  font-size: 2.6rem;
  margin-bottom: calc(1.6666666667 * var(--vw));
  line-height: 1.4;
}
@media only screen and (min-width: 1200px) {
  #TOP .sec01 .box h3 {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 767px) {
  #TOP .sec01 .box h3 {
    font-size: 1.8rem;
    margin-bottom: calc(2.6666666667 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  #TOP .sec01 .box .img_area,
  #TOP .sec01 .box .info_area {
    width: 100%;
  }
  #TOP .sec01 .box .img_area {
    order: 1;
    margin-bottom: calc(1.6666666667 * var(--vw));
  }
}
@media only screen and (max-width: 767px) and (min-width: 1200px) {
  #TOP .sec01 .box .img_area {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 767px) and (max-width: 767px) {
  #TOP .sec01 .box .img_area {
    margin-bottom: calc(2.6666666667 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  #TOP .sec01 .box .info_area {
    order: 2;
  }
}
#TOP .sec02 ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media only screen and (max-width: 767px) {
  #TOP .sec02 ul {
    gap: calc(6.6666666667 * var(--vw)) 0;
  }
}
#TOP .sec02 ul li {
  width: 30%;
}
@media only screen and (max-width: 767px) {
  #TOP .sec02 ul li {
    width: 100%;
  }
}
#TOP .sec02 ul li h3 {
  font-size: 2.2rem;
  margin-bottom: calc(0.8333333333 * var(--vw));
  line-height: 1.4;
}
@media only screen and (min-width: 1200px) {
  #TOP .sec02 ul li h3 {
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 767px) {
  #TOP .sec02 ul li h3 {
    font-size: 1.6rem;
    margin-bottom: calc(2.6666666667 * var(--vw));
  }
}
#TOP .sec02 ul li img {
  margin-bottom: calc(1.6666666667 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  #TOP .sec02 ul li img {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 767px) {
  #TOP .sec02 ul li img {
    margin-bottom: calc(5.3333333333 * var(--vw));
  }
}
#TOP .sec03 .panel_group .panel.box1 {
  overflow: hidden;
}
#TOP .sec03 .panel_group .panel.box1 dl {
  display: flex;
  border-bottom: 1px solid #ddd;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-bottom: calc(2.3333333333 * var(--vw));
  margin-bottom: calc(2.3333333333 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  #TOP .sec03 .panel_group .panel.box1 dl {
    padding-bottom: 28px;
    margin-bottom: 28px;
  }
}
@media only screen and (max-width: 767px) {
  #TOP .sec03 .panel_group .panel.box1 dl {
    padding-bottom: calc(5.3333333333 * var(--vw));
    margin-bottom: calc(5.3333333333 * var(--vw));
  }
}
#TOP .sec03 .panel_group .panel.box1 dl:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
}
#TOP .sec03 .panel_group .panel.box1 dl dt {
  width: 15%;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  #TOP .sec03 .panel_group .panel.box1 dl dt {
    margin-bottom: calc(1.3333333333 * var(--vw));
    width: 100%;
  }
}
#TOP .sec03 .panel_group .panel.box1 dl dd {
  width: 80%;
}
@media only screen and (max-width: 767px) {
  #TOP .sec03 .panel_group .panel.box1 dl dd {
    width: 100%;
  }
}
#TOP .sec03 .panel_group .panel.box1 iframe {
  width: 100%;
  height: calc(33.3333333333 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  #TOP .sec03 .panel_group .panel.box1 iframe {
    height: 400px;
  }
}
@media only screen and (max-width: 767px) {
  #TOP .sec03 .panel_group .panel.box1 iframe {
    height: calc(66.6666666667 * var(--vw));
  }
}
#TOP .sec03 .panel_group .panel.box2 dl {
  display: flex;
}
#TOP .sec03 .panel_group .panel.box2 dl:not(:last-child) dd {
  padding-bottom: calc(3.3333333333 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  #TOP .sec03 .panel_group .panel.box2 dl:not(:last-child) dd {
    padding-bottom: 40px;
  }
}
@media only screen and (max-width: 767px) {
  #TOP .sec03 .panel_group .panel.box2 dl:not(:last-child) dd {
    padding-bottom: calc(8 * var(--vw));
  }
}
#TOP .sec03 .panel_group .panel.box2 dl dt {
  width: calc(9.1666666667 * var(--vw));
  float: left;
  clear: both;
  line-height: 1em;
}
@media only screen and (min-width: 1200px) {
  #TOP .sec03 .panel_group .panel.box2 dl dt {
    width: 110px;
  }
}
@media only screen and (max-width: 767px) {
  #TOP .sec03 .panel_group .panel.box2 dl dt {
    width: calc(26.6666666667 * var(--vw));
  }
}
#TOP .sec03 .panel_group .panel.box2 dl dd {
  width: calc(100% - 9.1666666667 * var(--vw));
  float: left;
  border-left: 2px #f2f2f2 solid;
  position: relative;
  padding-left: calc(2.5 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  #TOP .sec03 .panel_group .panel.box2 dl dd {
    padding-left: 30px;
    width: calc(100% - 110px);
  }
}
@media only screen and (max-width: 767px) {
  #TOP .sec03 .panel_group .panel.box2 dl dd {
    padding-left: calc(8 * var(--vw));
    width: calc(100% - 26.6666666667 * var(--vw));
  }
}
#TOP .sec03 .panel_group .panel.box2 dl dd:before {
  content: "";
  width: calc(0.8333333333 * var(--vw));
  height: calc(0.8333333333 * var(--vw));
  background: #333;
  position: absolute;
  left: calc(-0.5 * var(--vw));
  top: 0;
  border-radius: 100%;
}
@media only screen and (min-width: 1200px) {
  #TOP .sec03 .panel_group .panel.box2 dl dd:before {
    width: 10px;
    height: 10px;
    left: -6px;
  }
}
@media only screen and (max-width: 767px) {
  #TOP .sec03 .panel_group .panel.box2 dl dd:before {
    width: calc(2.6666666667 * var(--vw));
    height: calc(2.6666666667 * var(--vw));
    left: calc(-1.5 * var(--vw));
  }
}
#TOP .sec03 .panel_group .panel.box2 dl dd .ttl {
  margin: calc(-0.6666666667 * var(--vw)) 0 calc(1.6666666667 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  #TOP .sec03 .panel_group .panel.box2 dl dd .ttl {
    margin: -8px 0 20px;
  }
}
@media only screen and (max-width: 767px) {
  #TOP .sec03 .panel_group .panel.box2 dl dd .ttl {
    margin: calc(-1.0666666667 * var(--vw)) 0 calc(2.6666666667 * var(--vw));
  }
}
#TOP .sec03 .panel_group .panel.box2 dl dd p {
  margin-top: calc(-0.6666666667 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  #TOP .sec03 .panel_group .panel.box2 dl dd p {
    margin-top: -8px;
  }
}
@media only screen and (max-width: 767px) {
  #TOP .sec03 .panel_group .panel.box2 dl dd p {
    margin-top: calc(-2.1333333333 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  #TOP .sec03 .panel_group .panel.box2 dl dd {
    width: 100%;
  }
}
#TOP .sec03 .panel_group .panel.box3 ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#TOP .sec03 .panel_group .panel.box3 ul li {
  width: 30%;
}
@media only screen and (max-width: 767px) {
  #TOP .sec03 .panel_group .panel.box3 ul li {
    width: 100%;
    margin-bottom: calc(6.6666666667 * var(--vw));
  }
}
#TOP .sec03 .panel_group .panel.box3 ul li img {
  margin-bottom: calc(1.6666666667 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  #TOP .sec03 .panel_group .panel.box3 ul li img {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 767px) {
  #TOP .sec03 .panel_group .panel.box3 ul li img {
    margin-bottom: calc(5.3333333333 * var(--vw));
  }
}
#TOP .sec03 .panel_group .panel.box3 ul li h3 {
  font-size: 2.2rem;
  margin-bottom: calc(0.8333333333 * var(--vw));
  line-height: 1.4;
}
@media only screen and (min-width: 1200px) {
  #TOP .sec03 .panel_group .panel.box3 ul li h3 {
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 767px) {
  #TOP .sec03 .panel_group .panel.box3 ul li h3 {
    font-size: 1.6rem;
    margin-bottom: calc(2.6666666667 * var(--vw));
  }
}
#TOP .sec04 dl {
  margin-bottom: 2px;
  cursor: pointer;
}
#TOP .sec04 dl dt,
#TOP .sec04 dl dd {
  padding: calc(1.6666666667 * var(--vw)) calc(1.6666666667 * var(--vw)) calc(1.6666666667 * var(--vw)) calc(2.5 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  #TOP .sec04 dl dt,
  #TOP .sec04 dl dd {
    padding: 20px 20px 20px 30px;
  }
}
@media only screen and (max-width: 767px) {
  #TOP .sec04 dl dt,
  #TOP .sec04 dl dd {
    padding: calc(4 * var(--vw)) calc(10.6666666667 * var(--vw)) calc(4 * var(--vw)) calc(4 * var(--vw));
  }
}
#TOP .sec04 dl dt {
  background: #fff;
  position: relative;
}
#TOP .sec04 dl dt:after {
  content: "+";
  display: block;
  position: absolute;
  font-size: 3.2rem;
  font-weight: 100;
  vertical-align: middle;
  right: calc(2.5 * var(--vw));
  top: calc(1.6666666667 * var(--vw));
  line-height: 1;
  color: #333;
  transition: 0.2s;
}
@media only screen and (min-width: 1200px) {
  #TOP .sec04 dl dt:after {
    right: 30px;
    top: 20px;
  }
}
@media only screen and (max-width: 767px) {
  #TOP .sec04 dl dt:after {
    right: calc(5 * var(--vw));
    top: calc(4.1666666667 * var(--vw));
    font-size: 2.4rem;
  }
}
#TOP .sec04 dl dt.open:after {
  top: calc(1.6666666667 * var(--vw));
  transform: rotate(45deg);
}
@media only screen and (min-width: 1200px) {
  #TOP .sec04 dl dt.open:after {
    top: 20px;
  }
}
@media only screen and (max-width: 767px) {
  #TOP .sec04 dl dt.open:after {
    top: calc(4.2666666667 * var(--vw));
  }
}
#TOP .sec04 dl dd {
  display: none;
}
@media only screen and (max-width: 767px) {
  #TOP .sec04 dl dd {
    padding: calc(4 * var(--vw)) 0 calc(4 * var(--vw)) calc(4 * var(--vw));
  }
}
#TOP .sec05 ul li {
  border-top: 1px solid #c4c4c4;
}
#TOP .sec05 ul li:last-child {
  border-bottom: 1px solid #c4c4c4;
}
#TOP .sec05 ul li a {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: calc(2.0833333333 * var(--vw)) 0;
  gap: 0 2%;
}
@media only screen and (min-width: 1200px) {
  #TOP .sec05 ul li a {
    padding: 25px 0;
  }
}
@media only screen and (max-width: 767px) {
  #TOP .sec05 ul li a {
    padding: calc(6.6666666667 * var(--vw)) 0;
  }
}
#TOP .sec05 ul li a:hover {
  opacity: 0.6;
}
#TOP .sec05 ul li a .time {
  vertical-align: middle;
  line-height: 1.4;
}
#TOP .sec05 ul li a .cat {
  background: #333;
  font-size: 1.1rem;
  table-layout: initial;
  width: auto;
  height: calc(1.6666666667 * var(--vw));
  padding: 0 calc(0.8333333333 * var(--vw));
  line-height: calc(1.6666666667 * var(--vw));
  text-align: center;
  color: #fff;
}
@media only screen and (min-width: 1200px) {
  #TOP .sec05 ul li a .cat {
    height: 20px;
    line-height: 20px;
    padding: 0 10px;
  }
}
@media only screen and (max-width: 767px) {
  #TOP .sec05 ul li a .cat {
    font-size: 1rem;
    width: auto;
    height: calc(4.1666666667 * var(--vw));
    padding: 0 calc(1.3333333333 * var(--vw));
    line-height: calc(4.5833333333 * var(--vw));
  }
}
#TOP .sec05 ul li a .txt {
  width: 78%;
  vertical-align: middle;
  display: inline-table;
  line-height: 1.6;
}
@media only screen and (max-width: 767px) {
  #TOP .sec05 ul li a .txt {
    width: 100%;
    margin-top: calc(2.6666666667 * var(--vw));
  }
}
#TOP .sec05 ul dl {
  display: flex;
  align-items: center;
  padding: calc(2.5 * var(--vw));
  gap: calc(2.5 * var(--vw));
}
@media only screen and (max-width: 767px) {
  #TOP .sec05 ul dl {
    padding: calc(4 * var(--vw));
    gap: calc(4 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  #TOP .sec05 ul dt {
    width: 35%;
  }
}
#TOP .sec06 .sec_in {
  width: calc(75 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  #TOP .sec06 .sec_in {
    width: 900px;
  }
}
@media only screen and (max-width: 767px) {
  #TOP .sec06 .sec_in {
    width: 100%;
  }
}
#TOP .sec06 .input_area dl {
  border-bottom: 1px solid #ddd;
  padding-bottom: calc(2.5 * var(--vw));
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
@media only screen and (min-width: 1200px) {
  #TOP .sec06 .input_area dl {
    padding-bottom: 30px;
  }
}
@media only screen and (max-width: 767px) {
  #TOP .sec06 .input_area dl {
    padding-bottom: calc(5.3333333333 * var(--vw));
  }
}
#TOP .sec06 .input_area dl:not(:last-of-type) {
  margin-bottom: calc(2.5 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  #TOP .sec06 .input_area dl:not(:last-of-type) {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 767px) {
  #TOP .sec06 .input_area dl:not(:last-of-type) {
    margin-bottom: calc(5.3333333333 * var(--vw));
  }
}
#TOP .sec06 .input_area dl dt {
  width: calc(18.3333333333 * var(--vw));
  line-height: 1.5;
  font-weight: bold;
  position: relative;
}
@media only screen and (min-width: 1200px) {
  #TOP .sec06 .input_area dl dt {
    width: 220px;
  }
}
@media only screen and (max-width: 767px) {
  #TOP .sec06 .input_area dl dt {
    width: auto;
    margin-bottom: calc(2.6666666667 * var(--vw));
  }
}
#TOP .sec06 .input_area dl dt.required::before {
  content: "必須";
  display: inline-block;
  position: absolute;
  display: flex;
  align-items: center;
  width: auto;
  font-size: 1.2rem;
  height: calc(2.0833333333 * var(--vw));
  font-weight: normal;
  padding: 0 calc(0.4166666667 * var(--vw));
  color: #fff;
  top: calc(50% - 2.0833333333 * var(--vw) / 2);
  right: 0;
  background-color: #333;
}
@media only screen and (min-width: 1200px) {
  #TOP .sec06 .input_area dl dt.required::before {
    height: 25px;
    top: calc(50% - 12.5px);
  }
}
@media only screen and (max-width: 767px) {
  #TOP .sec06 .input_area dl dt.required::before {
    height: calc(4 * var(--vw));
    right: calc(-10.6666666667 * var(--vw));
    top: calc(50% - 4 * var(--vw) / 2);
    font-size: 1rem;
    padding: 0 calc(1.3333333333 * var(--vw));
  }
}
#TOP .sec06 .input_area dl dd {
  width: calc(100% - 18.3333333333 * var(--vw) - 5 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  #TOP .sec06 .input_area dl dd {
    width: calc(100% - 220px - 60px);
  }
}
@media only screen and (max-width: 767px) {
  #TOP .sec06 .input_area dl dd {
    width: 100%;
  }
}
#TOP .sec06 .input_area input[type=text], #TOP .sec06 .input_area input[type=email], #TOP .sec06 .input_area input[type=tel], #TOP .sec06 .input_area input[type=number], #TOP .sec06 .input_area input[name=zip] {
  width: 100%;
  height: calc(4.1666666667 * var(--vw));
  line-height: calc(4.1666666667 * var(--vw));
  background: #fff;
  border: 0;
  box-sizing: border-box;
  padding: 0 calc(1.25 * var(--vw));
  outline: none;
  font-size: 1.6rem;
  border: 1px solid #ccc;
}
@media only screen and (min-width: 1200px) {
  #TOP .sec06 .input_area input[type=text], #TOP .sec06 .input_area input[type=email], #TOP .sec06 .input_area input[type=tel], #TOP .sec06 .input_area input[type=number], #TOP .sec06 .input_area input[name=zip] {
    height: 50px;
    line-height: 50px;
    padding: 0 15px;
  }
}
@media only screen and (max-width: 767px) {
  #TOP .sec06 .input_area input[type=text], #TOP .sec06 .input_area input[type=email], #TOP .sec06 .input_area input[type=tel], #TOP .sec06 .input_area input[type=number], #TOP .sec06 .input_area input[name=zip] {
    height: calc(12 * var(--vw));
    line-height: calc(12 * var(--vw));
    padding: 0 calc(4 * var(--vw));
  }
}
#TOP .sec06 .input_area textarea {
  width: 100%;
  height: 160px;
  background: #fff;
  border: 1px solid #ccc;
  line-height: 1.4;
  font-size: 1.6rem;
  padding: calc(1.25 * var(--vw));
  outline: none;
}
#TOP .sec06 .input_area textarea:focus {
  outline: 2px #333 solid;
}
@media only screen and (min-width: 1200px) {
  #TOP .sec06 .input_area textarea {
    padding: 15px;
  }
}
@media only screen and (max-width: 767px) {
  #TOP .sec06 .input_area textarea {
    padding: calc(4 * var(--vw));
  }
}
#TOP .sec06 .input_area input,
#TOP .sec06 .input_area textarea {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}
#TOP .sec06 .input_area input::placeholder,
#TOP .sec06 .input_area textarea::placeholder {
  color: #bbb;
  font-weight: normal;
  font-size: 1.6rem;
}
@media only screen and (max-width: 767px) {
  #TOP .sec06 .input_area input::placeholder,
  #TOP .sec06 .input_area textarea::placeholder {
    font-size: 1.3rem;
  }
}
#TOP .sec06 .input_area input:focus,
#TOP .sec06 .input_area textarea:focus {
  outline: 1px #333 solid;
}
#TOP .sec06 .input_area .select_box {
  width: auto;
  background: #fff;
  border: 1px solid #ccc;
  overflow: hidden;
  text-align: center;
  position: relative;
}
#TOP .sec06 .input_area .select_box::before {
  position: absolute;
  top: calc(50% - 6px);
  right: 20px;
  content: "";
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 12px solid #000;
  pointer-events: none;
}
#TOP .sec06 .input_area .select_box select {
  height: calc(4.1666666667 * var(--vw));
  font-size: 1.6rem;
  line-height: calc(4.5 * var(--vw));
  width: 100%;
  padding-right: 1em;
  cursor: pointer;
  text-overflow: ellipsis;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  box-shadow: none;
  appearance: none;
  padding: 0 calc(3.1666666667 * var(--vw)) 0 calc(1.6666666667 * var(--vw));
  color: #333;
}
@media only screen and (min-width: 1200px) {
  #TOP .sec06 .input_area .select_box select {
    height: 50px;
    line-height: 54px;
    padding: 0 38px 0 20px;
  }
}
@media only screen and (max-width: 767px) {
  #TOP .sec06 .input_area .select_box select {
    height: calc(12 * var(--vw));
    line-height: calc(12 * var(--vw));
    padding: 0 calc(6.6666666667 * var(--vw)) 0 calc(4 * var(--vw));
    font-size: 1.3rem;
  }
}
#TOP .sec06 .input_area .select_box select::-ms-expand {
  display: none;
}
#TOP .sec06 .input_area ::placeholder {
  color: #bbb;
  font-weight: normal;
  font-size: 1.6rem;
}
@media only screen and (max-width: 767px) {
  #TOP .sec06 .input_area ::placeholder {
    font-size: 1.3rem;
  }
}
#TOP .sec06 .input_area :focus {
  outline: 1px #333 solid;
}
#TOP .sec06 .input_area .flex-list {
  display: flex;
  flex-wrap: wrap;
  gap: calc(1.25 * var(--vw)) calc(1.6666666667 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  #TOP .sec06 .input_area .flex-list {
    gap: 15px 20px;
  }
}
@media only screen and (max-width: 767px) {
  #TOP .sec06 .input_area .flex-list {
    gap: calc(2.6666666667 * var(--vw)) calc(4 * var(--vw));
  }
}
#TOP .sec06 .input_area .radio label {
  position: relative;
  cursor: pointer;
  display: inline-block;
  padding-left: calc(2.1666666667 * var(--vw));
  line-height: 1.4;
}
@media only screen and (min-width: 1200px) {
  #TOP .sec06 .input_area .radio label {
    padding-left: 26px;
  }
}
@media only screen and (max-width: 767px) {
  #TOP .sec06 .input_area .radio label {
    padding-left: calc(6.6666666667 * var(--vw));
  }
}
#TOP .sec06 .input_area .radio label::before, #TOP .sec06 .input_area .radio label::after {
  content: "";
  display: block;
  border-radius: 50%;
  position: absolute;
  transform: translateY(-50%);
  top: calc(0.9166666667 * var(--vw));
  left: 0;
}
@media only screen and (min-width: 1200px) {
  #TOP .sec06 .input_area .radio label::before, #TOP .sec06 .input_area .radio label::after {
    top: 11px;
  }
}
@media only screen and (max-width: 767px) {
  #TOP .sec06 .input_area .radio label::before, #TOP .sec06 .input_area .radio label::after {
    top: calc(2.2666666667 * var(--vw));
  }
}
#TOP .sec06 .input_area .radio label::before {
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 50%;
  width: calc(1.5 * var(--vw));
  height: calc(1.5 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  #TOP .sec06 .input_area .radio label::before {
    width: 18px;
    height: 18px;
  }
}
@media only screen and (max-width: 767px) {
  #TOP .sec06 .input_area .radio label::before {
    width: calc(4 * var(--vw));
    height: calc(4 * var(--vw));
  }
}
#TOP .sec06 .input_area .radio label::after {
  background-color: #333;
  border-radius: 50%;
  opacity: 0;
  width: calc(1 * var(--vw));
  height: calc(1 * var(--vw));
  left: calc(1 * var(--vw) / 3);
}
@media only screen and (min-width: 1200px) {
  #TOP .sec06 .input_area .radio label::after {
    width: 12px;
    height: 12px;
    left: 4px;
  }
}
@media only screen and (max-width: 767px) {
  #TOP .sec06 .input_area .radio label::after {
    width: calc(2.6666666667 * var(--vw));
    height: calc(2.6666666667 * var(--vw));
    left: calc(2.6666666667 * var(--vw) / 3);
  }
}
#TOP .sec06 .input_area .radio input:checked + label::after {
  opacity: 1;
}
#TOP .sec06 .input_area .radio .radio_input {
  position: absolute;
  white-space: nowrap;
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  overflow: hidden;
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
}
#TOP .sec06 .check-box label {
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
  padding-left: calc(2 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  #TOP .sec06 .check-box label {
    padding-left: 24px;
  }
}
@media only screen and (max-width: 767px) {
  #TOP .sec06 .check-box label {
    padding-left: calc(6.1333333333 * var(--vw));
  }
}
#TOP .sec06 .check-box__input {
  margin: 0;
  width: 0;
  opacity: 0;
}
#TOP .sec06 .check-box__input:checked + .check-box__dummy {
  background: #333;
  border: 1px solid #333;
}
#TOP .sec06 .check-box__input:checked + .check-box__dummy::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: contain;
  background: url("../../assets/img/common/icon_check.svg") no-repeat center;
}
#TOP .sec06 .check-box__dummy {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  background-color: #fff;
  border: 1px solid #ccc;
  width: calc(1.6666666667 * var(--vw));
  height: calc(1.6666666667 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  #TOP .sec06 .check-box__dummy {
    width: 20px;
    height: 20px;
  }
}
@media only screen and (max-width: 767px) {
  #TOP .sec06 .check-box__dummy {
    width: calc(4.5333333333 * var(--vw));
    height: calc(4.5333333333 * var(--vw));
  }
}
#TOP .sec06 .check-box__txt {
  margin-left: calc(0.4166666667 * var(--vw));
  display: block;
  line-height: 1.4;
}
@media only screen and (min-width: 1200px) {
  #TOP .sec06 .check-box__txt {
    margin-left: 5px;
  }
}
@media only screen and (max-width: 767px) {
  #TOP .sec06 .check-box__txt {
    margin-left: calc(0.6666666667 * var(--vw));
  }
}
#TOP .sec06 .half {
  width: 50%;
}
@media only screen and (max-width: 767px) {
  #TOP .sec06 .half {
    width: 100%;
  }
}
#TOP .sec06 .privacy {
  height: calc(25 * var(--vw));
  border: 1px solid #ccc;
  background-color: #fff;
  padding: calc(3.3333333333 * var(--vw));
  overflow-y: scroll;
  line-height: 1.6em;
  margin: calc(5.4166666667 * var(--vw)) 0 calc(3.3333333333 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  #TOP .sec06 .privacy {
    height: 300px;
    padding: 40px;
    margin: 65px 0 40px;
  }
}
@media only screen and (max-width: 767px) {
  #TOP .sec06 .privacy {
    padding: calc(5.3333333333 * var(--vw));
    height: calc(40 * var(--vw));
    margin: calc(8.6666666667 * var(--vw)) 0 calc(5.3333333333 * var(--vw));
  }
}
#TOP .sec06 .privacy::-webkit-scrollbar {
  width: 7px;
}
#TOP .sec06 .privacy::-webkit-scrollbar-track {
  background-color: #f2f2f2;
}
#TOP .sec06 .privacy::-webkit-scrollbar-thumb {
  background-color: #333;
  border-radius: 50px;
}
#TOP .sec06 .privacy h4 {
  font-size: 22px;
  margin-bottom: 15px;
}
#TOP .sec06 .privacy dt {
  font-weight: bold;
  margin-top: 1em;
}
#TOP .sec06 .privacy dd {
  margin-top: 0.5em;
}
#TOP .sec06 .privacy .establishment {
  text-align: right;
  margin-top: 50px;
}
#TOP .sec06 .agree_check {
  text-align: center;
  margin: 0 auto;
  width: max-content;
}
#TOP .sec06 .btn {
  margin: calc(5 * var(--vw)) auto 0;
  color: #fff;
}
@media only screen and (min-width: 1200px) {
  #TOP .sec06 .btn {
    margin: 60px auto 0;
  }
}
@media only screen and (max-width: 767px) {
  #TOP .sec06 .btn {
    margin: calc(10.6666666667 * var(--vw)) auto 0;
  }
}
#TOP .sec06 .btn input[type=submit] {
  color: #fff;
  width: 100%;
  height: 100%;
}
#TOP .sec06 .btn:hover input[type=submit] {
  color: #333;
}

.confirm-area {
  max-width: calc(58.3333333333 * var(--vw));
  margin: calc(10 * var(--vw)) auto;
}
@media only screen and (min-width: 1200px) {
  .confirm-area {
    margin: 120px auto;
    max-width: 700px;
  }
}
@media only screen and (max-width: 767px) {
  .confirm-area {
    width: 100%;
    max-width: 100%;
    margin: calc(16 * var(--vw)) 0;
    padding: 0 calc(5.3333333333 * var(--vw));
  }
}
.confirm-area h3 {
  font-size: 2.6rem;
  text-align: center;
  margin-bottom: calc(1.6666666667 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  .confirm-area h3 {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .confirm-area h3 {
    font-size: 2rem;
    margin-bottom: calc(4 * var(--vw));
  }
}
.confirm-area .formTable {
  width: 100%;
  margin: calc(3.3333333333 * var(--vw)) auto 0;
  border-collapse: collapse;
}
@media only screen and (min-width: 1200px) {
  .confirm-area .formTable {
    margin: 40px auto 0;
  }
}
@media only screen and (max-width: 767px) {
  .confirm-area .formTable {
    margin: calc(5.3333333333 * var(--vw)) auto 0;
  }
}
@media only screen and (max-width: 767px) {
  .confirm-area .formTable tr:first-of-type th {
    border-top: 1px solid #ccc;
  }
}
.confirm-area .formTable td,
.confirm-area .formTable th {
  border-bottom: 1px solid #ccc;
  padding: calc(1.25 * var(--vw));
  text-align: left;
}
@media only screen and (min-width: 1200px) {
  .confirm-area .formTable td,
  .confirm-area .formTable th {
    padding: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .confirm-area .formTable td,
  .confirm-area .formTable th {
    padding: calc(4 * var(--vw));
    display: block;
    width: 100%;
  }
}
.confirm-area .formTable th {
  width: 30%;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .confirm-area .formTable th {
    background-color: #f6f6f6;
  }
}
.confirm-area .btn {
  margin: calc(5 * var(--vw)) auto 0;
  color: #fff;
}
@media only screen and (min-width: 1200px) {
  .confirm-area .btn {
    margin: 60px auto 0;
  }
}
@media only screen and (max-width: 767px) {
  .confirm-area .btn {
    margin: calc(10.6666666667 * var(--vw)) auto 0;
  }
}
.confirm-area .btn input[type=submit],
.confirm-area .btn input[type=button] {
  color: #fff;
  width: 100%;
  height: 100%;
}
.confirm-area .btn:hover input[type=submit],
.confirm-area .btn:hover input[type=button] {
  color: #333;
}
.confirm-area .btn:last-of-type {
  margin-top: 15px;
}

@media only screen and (min-width: 768px) {
  .line-box_pc {
    align-items: center;
    background-color: #fff;
  }
}
@media only screen and (max-width: 767px) {
  .line-box_pc {
    display: none !important;
  }
}
@media only screen and (min-width: 768px) {
  .line-box_sp {
    display: none !important;
  }
}
@media only screen and (max-width: 767px) {
  .line-box_sp {
    align-items: center;
    flex-wrap: wrap;
    background-color: #fff;
  }
}
.line-ttl-box {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .line-ttl-box {
    gap: calc(5.3333333333 * var(--vw));
  }
}
.line-ttl-box .t-org {
  color: #F29700;
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  .line-ttl-box .t-org {
    font-size: calc(6.4 * var(--vw));
  }
}
.line-logo {
  width: calc(10.6666666667 * var(--vw));
}
@media only screen and (max-width: 767px) {
  .line-logo {
    width: calc(17.0666666667 * var(--vw));
  }
}
.line-text {
  width: calc(49.5833333333 * var(--vw));
  margin-left: calc(1.25 * var(--vw));
}
@media only screen and (max-width: 767px) {
  .line-text {
    width: 100%;
    margin-top: calc(5.3333333333 * var(--vw));
    margin-left: calc(4 * var(--vw));
  }
}
.line-text .t-org {
  color: #F29700;
  font-weight: 600;
  font-size: calc(2 * var(--vw));
}
@media only screen and (max-width: 767px) {
  .line-text .t-org {
    font-size: calc(6.4 * var(--vw));
  }
}
.line-text .t-blk {
  font-size: calc(1.6666666667 * var(--vw));
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  .line-text .t-blk {
    font-size: calc(3.2 * var(--vw));
  }
}
.line-text .t-grn {
  color: #8BC565;
  font-size: calc(1.6666666667 * var(--vw));
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  .line-text .t-grn {
    font-size: calc(3.2 * var(--vw));
  }
}
.line-qr {
  width: calc(10.8333333333 * var(--vw));
}
@media only screen and (max-width: 767px) {
  .line-qr {
    width: calc(34.6666666667 * var(--vw));
    margin-top: calc(5.3333333333 * var(--vw));
  }
}

.thanks-sec {
  text-align: center;
  height: 70vh;
}
.thanks-sec .sec-in {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  transform: translate(-50%, -100%);
}
.thanks-sec h2 {
  margin-bottom: calc(2.5 * var(--vw));
  font-size: 2.6rem;
  line-height: 1.4;
}
@media only screen and (min-width: 1200px) {
  .thanks-sec h2 {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .thanks-sec h2 {
    margin-bottom: calc(5.3333333333 * var(--vw));
    font-size: 2rem;
  }
}
.thanks-sec .btn {
  margin: calc(5 * var(--vw)) auto 0;
}
@media only screen and (min-width: 1200px) {
  .thanks-sec .btn {
    margin: 60px auto 0;
  }
}
@media only screen and (max-width: 767px) {
  .thanks-sec .btn {
    margin: calc(8 * var(--vw)) auto 0;
  }
}

.swiper-pagination-bullet {
  width: calc(0.6666666667 * var(--vw));
  height: calc(0.6666666667 * var(--vw));
}
@media only screen and (max-width: 767px) {
  .swiper-pagination-bullet {
    width: calc(1.0666666667 * var(--vw));
    height: calc(1.0666666667 * var(--vw));
  }
}

.swiper-pagination-bullet {
  margin: 0 calc(0.4166666667 * var(--vw)) !important;
}
@media only screen and (max-width: 767px) {
  .swiper-pagination-bullet {
    margin: 0 calc(0.6666666667 * var(--vw)) !important;
  }
}

.swiper-pagination-bullet-active {
  background-color: #C0E3A8;
}

.swiper-pagination {
  z-index: 1 !important;
}

#PRODUCT .kv-box {
  position: relative;
  max-width: calc(91.25 * var(--vw));
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#PRODUCT .kv-box .kv_1 {
  width: calc(46.5 * var(--vw));
  height: calc(20 * var(--vw));
  background-image: url(/assets/img/product/kv-postinfo.png);
  background-position: left top;
  background-repeat: no-repeat;
  background-size: contain;
}
@media only screen and (max-width: 767px) {
  #PRODUCT .kv-box .kv_1 {
    width: 100%;
    height: initial;
    aspect-ratio: 68/24;
    margin-bottom: calc(5.3333333333 * var(--vw));
  }
}
#PRODUCT .kv-box .kv_ttl {
  font-size: calc(3.3333333333 * var(--vw));
  line-height: calc(3.3333333333 * var(--vw));
  font-weight: 600;
  padding: calc(3.3333333333 * var(--vw));
}
@media only screen and (max-width: 767px) {
  #PRODUCT .kv-box .kv_ttl {
    font-size: calc(7.4666666667 * var(--vw));
    line-height: calc(7.4666666667 * var(--vw));
    padding: calc(5.3333333333 * var(--vw));
  }
}
#PRODUCT .kv-box .right-box_1 {
  width: calc(32.0833333333 * var(--vw));
  display: flex;
  align-items: flex-end;
}
@media only screen and (max-width: 767px) {
  #PRODUCT .kv-box .right-box_1 {
    width: 100%;
  }
}
#PRODUCT .kv-box-c {
  position: relative;
  max-width: calc(81.6666666667 * var(--vw));
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  #PRODUCT .kv-box-c {
    padding: 0 calc(2.6666666667 * var(--vw));
    max-width: initial;
  }
}
#PRODUCT .kv-box-c .kv_1 {
  width: calc(46.5 * var(--vw));
  height: calc(12.5 * var(--vw));
  background-image: url(/assets/img/product/kv-postinfo.png);
  background-position: left top;
  background-repeat: no-repeat;
  background-size: contain;
}
@media only screen and (max-width: 767px) {
  #PRODUCT .kv-box-c .kv_1 {
    width: 100%;
    height: initial;
    aspect-ratio: 68/24;
    margin-bottom: calc(5.3333333333 * var(--vw));
  }
}
#PRODUCT .kv-box-c .kv_2 {
  width: calc(81.6666666667 * var(--vw));
  height: calc(15 * var(--vw));
  background-image: url(/assets/img/product/kv-company.png);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: contain;
}
@media only screen and (max-width: 767px) {
  #PRODUCT .kv-box-c .kv_2 {
    width: 100%;
    height: initial;
    aspect-ratio: 98/18;
    margin-bottom: calc(5.3333333333 * var(--vw));
  }
}
#PRODUCT .kv-box-c .kv_ttl {
  font-size: calc(3.3333333333 * var(--vw));
  line-height: calc(3.3333333333 * var(--vw));
  font-weight: 600;
  padding: calc(3.3333333333 * var(--vw));
}
@media only screen and (max-width: 767px) {
  #PRODUCT .kv-box-c .kv_ttl {
    font-size: calc(7.4666666667 * var(--vw));
    line-height: calc(7.4666666667 * var(--vw));
    padding: calc(5.3333333333 * var(--vw));
  }
}
#PRODUCT .kv-box-c .right-box_1 {
  width: calc(32.0833333333 * var(--vw));
  display: flex;
  align-items: flex-end;
}
@media only screen and (max-width: 767px) {
  #PRODUCT .kv-box-c .right-box_1 {
    width: 100%;
  }
}
#PRODUCT .kv-box-sb {
  position: relative;
  max-width: calc(81.6666666667 * var(--vw));
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  #PRODUCT .kv-box-sb {
    padding: 0 calc(2.6666666667 * var(--vw));
    max-width: initial;
  }
}
#PRODUCT .kv-box-sb .kv_1 {
  width: calc(46.5 * var(--vw));
  height: calc(12.5 * var(--vw));
  background-image: url(/assets/img/product/kv-postinfo.png);
  background-position: left top;
  background-repeat: no-repeat;
  background-size: contain;
}
@media only screen and (max-width: 767px) {
  #PRODUCT .kv-box-sb .kv_1 {
    width: 100%;
    height: initial;
    aspect-ratio: 68/24;
  }
}
#PRODUCT .kv-box-sb .kv_2 {
  width: calc(81.6666666667 * var(--vw));
  height: calc(15 * var(--vw));
  background-image: url(/assets/img/product/kv-company.png);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: contain;
}
@media only screen and (max-width: 767px) {
  #PRODUCT .kv-box-sb .kv_2 {
    width: 100%;
    height: initial;
    aspect-ratio: 98/18;
    margin-bottom: calc(5.3333333333 * var(--vw));
  }
}
#PRODUCT .kv-box-sb .kv_ttl {
  font-size: calc(3.3333333333 * var(--vw));
  line-height: calc(3.3333333333 * var(--vw));
  font-weight: 600;
  padding: calc(3.3333333333 * var(--vw));
}
@media only screen and (max-width: 767px) {
  #PRODUCT .kv-box-sb .kv_ttl {
    font-size: calc(7.4666666667 * var(--vw));
    line-height: calc(7.4666666667 * var(--vw));
    padding: calc(5.3333333333 * var(--vw));
  }
}
#PRODUCT .kv-box-sb .right-box_1 {
  width: calc(32.0833333333 * var(--vw));
  display: flex;
  align-items: flex-end;
}
@media only screen and (max-width: 767px) {
  #PRODUCT .kv-box-sb .right-box_1 {
    width: 100%;
  }
}
#PRODUCT .kv-box-sb1 {
  position: relative;
  max-width: calc(93.3333333333 * var(--vw));
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
@media only screen and (min-width: 768px) {
  #PRODUCT .kv-box-sb1 {
    gap: calc(8.3333333333 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  #PRODUCT .kv-box-sb1 {
    padding: 0 calc(2.6666666667 * var(--vw));
    max-width: initial;
  }
}
#PRODUCT .kv-box-sb1 .kv_1 {
  width: calc(46.5 * var(--vw));
  height: calc(12.5 * var(--vw));
  background-image: url(/assets/img/product/kv-postinfo.png);
  background-position: left top;
  background-repeat: no-repeat;
  background-size: contain;
}
@media only screen and (max-width: 767px) {
  #PRODUCT .kv-box-sb1 .kv_1 {
    width: 100%;
    height: initial;
    aspect-ratio: 68/24;
  }
}
#PRODUCT .kv-box-sb1 .kv_2 {
  width: calc(81.6666666667 * var(--vw));
  height: calc(15 * var(--vw));
  background-image: url(/assets/img/product/kv-company.png);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: contain;
}
@media only screen and (max-width: 767px) {
  #PRODUCT .kv-box-sb1 .kv_2 {
    width: 100%;
    height: initial;
    aspect-ratio: 98/18;
    margin-bottom: calc(5.3333333333 * var(--vw));
  }
}
#PRODUCT .kv-box-sb1 .kv_3 {
  width: calc(29.3333333333 * var(--vw));
  height: calc(11.6666666667 * var(--vw));
  background-color: #C0E3A8;
  border: solid 1px #77BD48;
  border-radius: calc(1.6666666667 * var(--vw));
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  #PRODUCT .kv-box-sb1 .kv_3 {
    width: 100%;
    height: initial;
    aspect-ratio: 68/14;
    border-radius: calc(2.5 * var(--vw));
  }
}
#PRODUCT .kv-box-sb1 .kv_ttl {
  font-size: calc(3.3333333333 * var(--vw));
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  #PRODUCT .kv-box-sb1 .kv_ttl {
    font-size: calc(7.4666666667 * var(--vw));
  }
}
#PRODUCT .kv-box-sb1 .right-box_1 {
  width: calc(32.0833333333 * var(--vw));
  display: flex;
  align-items: flex-end;
}
@media only screen and (max-width: 767px) {
  #PRODUCT .kv-box-sb1 .right-box_1 {
    width: 100%;
  }
}
#PRODUCT .kv-box-sb1 .right-box_2 {
  width: calc(49.8333333333 * var(--vw));
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  #PRODUCT .kv-box-sb1 .right-box_2 {
    width: 100%;
  }
}
#PRODUCT .kv-box-sb1 .right-box_2 img {
  width: calc(49.5 * var(--vw));
}
@media only screen and (max-width: 767px) {
  #PRODUCT .kv-box-sb1 .right-box_2 img {
    width: 95%;
  }
}
#PRODUCT .kv-box-sb1-bg {
  position: relative;
  max-width: calc(81.6666666667 * var(--vw));
  width: 100%;
  height: calc(22.5 * var(--vw));
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  background-image: url(/assets/img/product/dis_img2.png);
  background-position: right top;
  background-repeat: no-repeat;
  background-size: 93.5714285714%;
}
@media only screen and (min-width: 768px) {
  #PRODUCT .kv-box-sb1-bg {
    height: calc(22.5 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  #PRODUCT .kv-box-sb1-bg {
    padding: 0 calc(2.6666666667 * var(--vw));
    max-width: initial;
    height: initial;
    background-size: 93.5%;
    background-position: right bottom;
  }
}
#PRODUCT .kv-box-sb1-bg .kv_1 {
  width: calc(46.5 * var(--vw));
  height: calc(12.5 * var(--vw));
  background-image: url(/assets/img/product/kv-postinfo.png);
  background-position: left top;
  background-repeat: no-repeat;
  background-size: contain;
}
@media only screen and (max-width: 767px) {
  #PRODUCT .kv-box-sb1-bg .kv_1 {
    width: 100%;
    height: initial;
    aspect-ratio: 68/24;
  }
}
#PRODUCT .kv-box-sb1-bg .kv_2 {
  width: calc(81.6666666667 * var(--vw));
  height: calc(15 * var(--vw));
  background-image: url(/assets/img/product/kv-company.png);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: contain;
}
@media only screen and (max-width: 767px) {
  #PRODUCT .kv-box-sb1-bg .kv_2 {
    width: 100%;
    height: initial;
    aspect-ratio: 98/18;
    margin-bottom: calc(5.3333333333 * var(--vw));
  }
}
#PRODUCT .kv-box-sb1-bg .kv_3 {
  width: calc(53.8333333333 * var(--vw));
  height: calc(14 * var(--vw));
}
@media only screen and (max-width: 767px) {
  #PRODUCT .kv-box-sb1-bg .kv_3 {
    width: 100%;
    height: initial;
    aspect-ratio: 646/168;
  }
}
#PRODUCT .kv-box-sb1-bg .right-box_1 {
  width: calc(32.0833333333 * var(--vw));
  display: flex;
  align-items: flex-end;
}
@media only screen and (max-width: 767px) {
  #PRODUCT .kv-box-sb1-bg .right-box_1 {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  #PRODUCT .kv-box-sb1-bg .right-box_2 {
    width: 100%;
    height: calc(10.6666666667 * var(--vw));
  }
}
#PRODUCT .sec_in-flex {
  display: flex;
  justify-content: center;
}
#PRODUCT .sec_box_white {
  background-color: #fff;
  border-radius: calc(2 * var(--vw));
  max-width: calc(81.6666666667 * var(--vw));
  width: 100%;
  padding: calc(5 * var(--vw)) calc(4.1666666667 * var(--vw));
}
@media only screen and (max-width: 767px) {
  #PRODUCT .sec_box_white {
    border-radius: calc(4.2666666667 * var(--vw));
    padding: calc(5.3333333333 * var(--vw)) calc(5.3333333333 * var(--vw));
    max-width: initial;
    width: 95%;
  }
}
#PRODUCT .sec_box_white .sex_text {
  font-size: calc(1.3333333333 * var(--vw));
  line-height: calc(2.6666666667 * var(--vw));
}
#PRODUCT .sec_ttl {
  font-size: calc(2.6666666667 * var(--vw));
  text-align: center;
  line-height: 1.4;
  margin-bottom: calc(6.6666666667 * var(--vw));
  letter-spacing: 0.05em;
}
@media only screen and (min-width: 1200px) {
  #PRODUCT .sec_ttl {
    margin-bottom: 80px;
  }
}
@media only screen and (max-width: 767px) {
  #PRODUCT .sec_ttl {
    font-size: calc(5.3333333333 * var(--vw));
    margin-bottom: calc(5.3333333333 * var(--vw));
  }
}
#PRODUCT .sec_ttl span {
  display: block;
  font-size: 2rem;
}
@media only screen and (max-width: 767px) {
  #PRODUCT .sec_ttl span {
    font-size: 1.4rem;
  }
}
#PRODUCT .sec_ttl .ttl-p {
  position: relative;
  width: 27.9%;
}
@media only screen and (max-width: 767px) {
  #PRODUCT .sec_ttl .ttl-p {
    width: 45%;
  }
}
#PRODUCT .sec_ttl .ttl-p2 {
  position: relative;
  width: 45%;
}
@media only screen and (max-width: 767px) {
  #PRODUCT .sec_ttl .ttl-p2 {
    width: 52%;
  }
}
#PRODUCT .sec_ttl .tt-box1 {
  position: absolute;
  top: calc(-3.8 * var(--vw));
  right: 0;
  width: calc(10.4166666667 * var(--vw));
}
@media only screen and (max-width: 767px) {
  #PRODUCT .sec_ttl .tt-box1 {
    width: calc(16.6666666667 * var(--vw));
    top: calc(-6.08 * var(--vw));
  }
}
#PRODUCT .sec_ttl .tt-box2 {
  position: absolute;
  top: calc(-4.5 * var(--vw));
  left: 0;
  width: calc(9.4166666667 * var(--vw));
}
@media only screen and (max-width: 767px) {
  #PRODUCT .sec_ttl .tt-box2 {
    width: calc(15.0666666667 * var(--vw));
    top: calc(-7.2 * var(--vw));
  }
}
#PRODUCT .sec_ttl-ba {
  font-size: calc(2.6666666667 * var(--vw));
  text-align: center;
  line-height: 1.4;
  margin-bottom: calc(5 * var(--vw));
  letter-spacing: 0.05em;
}
#PRODUCT .sec_ttl-ba p {
  position: relative;
  width: auto;
  display: inline-block;
}
#PRODUCT .sec_ttl-ba p::before {
  left: calc(-3.3333333333 * var(--vw));
  top: 0;
  bottom: 0;
  margin: auto 0;
}
@media only screen and (max-width: 767px) {
  #PRODUCT .sec_ttl-ba p::before {
    left: calc(-5.3333333333 * var(--vw));
  }
}
#PRODUCT .sec_ttl-ba p::after {
  right: calc(-3.3333333333 * var(--vw));
  top: 0;
  bottom: 0;
  margin: auto 0;
}
@media only screen and (max-width: 767px) {
  #PRODUCT .sec_ttl-ba p::after {
    right: calc(-5.3333333333 * var(--vw));
  }
}
#PRODUCT .sec_ttl-ba p::before, #PRODUCT .sec_ttl-ba p::after {
  position: absolute;
  content: "";
  display: block;
  border: 1px solid #77BD48;
  width: calc(1.3333333333 * var(--vw));
  height: calc(1.3333333333 * var(--vw));
  background-color: #77BD48;
  border-radius: 50%;
}
@media only screen and (max-width: 767px) {
  #PRODUCT .sec_ttl-ba p::before, #PRODUCT .sec_ttl-ba p::after {
    width: calc(1.6 * var(--vw));
    height: calc(1.6 * var(--vw));
  }
}
@media only screen and (min-width: 1200px) {
  #PRODUCT .sec_ttl-ba {
    margin-bottom: 60px;
  }
}
@media only screen and (max-width: 767px) {
  #PRODUCT .sec_ttl-ba {
    font-size: calc(5.3333333333 * var(--vw));
    margin-bottom: calc(5.3333333333 * var(--vw));
  }
}
#PRODUCT .sec_ttl-ba span {
  display: block;
  font-size: 2rem;
}
@media only screen and (max-width: 767px) {
  #PRODUCT .sec_ttl-ba span {
    font-size: 1.4rem;
  }
}
#PRODUCT .sec_ttl-ba .ttl-p {
  position: relative;
  width: 27.9%;
}
@media only screen and (max-width: 767px) {
  #PRODUCT .sec_ttl-ba .ttl-p {
    width: 45%;
  }
}
#PRODUCT .sec_ttl-ba .ttl-p2 {
  position: relative;
  width: 45%;
}
@media only screen and (max-width: 767px) {
  #PRODUCT .sec_ttl-ba .ttl-p2 {
    width: 52%;
  }
}
#PRODUCT .sec_ttl-ba .tt-box1 {
  position: absolute;
  top: calc(-3.8 * var(--vw));
  right: 0;
  width: calc(10.4166666667 * var(--vw));
}
@media only screen and (max-width: 767px) {
  #PRODUCT .sec_ttl-ba .tt-box1 {
    width: calc(16.6666666667 * var(--vw));
    top: calc(-6.08 * var(--vw));
  }
}
#PRODUCT .sec_ttl-ba .tt-box2 {
  position: absolute;
  top: calc(-4.5 * var(--vw));
  left: 0;
  width: calc(9.4166666667 * var(--vw));
}
@media only screen and (max-width: 767px) {
  #PRODUCT .sec_ttl-ba .tt-box2 {
    width: calc(15.0666666667 * var(--vw));
    top: calc(-7.2 * var(--vw));
  }
}
#PRODUCT .sec_ttl-ba-aleft {
  font-size: calc(2.6666666667 * var(--vw));
  text-align: left;
  line-height: 1.4;
  margin-bottom: calc(1.6666666667 * var(--vw));
  letter-spacing: 0.05em;
  padding-left: calc(3.3333333333 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  #PRODUCT .sec_ttl-ba-aleft {
    margin-bottom: 20px;
    padding-left: 40px;
  }
}
@media only screen and (max-width: 767px) {
  #PRODUCT .sec_ttl-ba-aleft {
    font-size: calc(5.3333333333 * var(--vw));
    margin-bottom: calc(4 * var(--vw));
    padding-left: calc(5.3333333333 * var(--vw));
  }
}
#PRODUCT .sec_ttl-ba-aleft p {
  position: relative;
  width: auto;
  display: inline-block;
}
#PRODUCT .sec_ttl-ba-aleft p::before {
  left: calc(-3.3333333333 * var(--vw));
  top: 0;
  bottom: 0;
  margin: auto 0;
}
@media only screen and (max-width: 767px) {
  #PRODUCT .sec_ttl-ba-aleft p::before {
    left: calc(-5.3333333333 * var(--vw));
  }
}
#PRODUCT .sec_ttl-ba-aleft p::after {
  right: calc(-3.3333333333 * var(--vw));
  top: 0;
  bottom: 0;
  margin: auto 0;
}
@media only screen and (max-width: 767px) {
  #PRODUCT .sec_ttl-ba-aleft p::after {
    right: calc(-5.3333333333 * var(--vw));
  }
}
#PRODUCT .sec_ttl-ba-aleft p::before, #PRODUCT .sec_ttl-ba-aleft p::after {
  position: absolute;
  content: "";
  display: block;
  border: 1px solid #77BD48;
  width: calc(1.3333333333 * var(--vw));
  height: calc(1.3333333333 * var(--vw));
  background-color: #77BD48;
  border-radius: 50%;
}
@media only screen and (max-width: 767px) {
  #PRODUCT .sec_ttl-ba-aleft p::before, #PRODUCT .sec_ttl-ba-aleft p::after {
    width: calc(1.6 * var(--vw));
    height: calc(1.6 * var(--vw));
  }
}
#PRODUCT .sec_ttl-ba-aleft span {
  display: block;
  font-size: 2rem;
}
@media only screen and (max-width: 767px) {
  #PRODUCT .sec_ttl-ba-aleft span {
    font-size: 1.4rem;
  }
}
#PRODUCT .sec_ttl-ba-aleft .ttl-p {
  position: relative;
  width: 27.9%;
}
@media only screen and (max-width: 767px) {
  #PRODUCT .sec_ttl-ba-aleft .ttl-p {
    width: 45%;
  }
}
#PRODUCT .sec_ttl-ba-aleft .ttl-p2 {
  position: relative;
  width: 45%;
}
@media only screen and (max-width: 767px) {
  #PRODUCT .sec_ttl-ba-aleft .ttl-p2 {
    width: 52%;
  }
}
#PRODUCT .sec_ttl-ba-aleft .tt-box1 {
  position: absolute;
  top: calc(-3.8 * var(--vw));
  right: 0;
  width: calc(10.4166666667 * var(--vw));
}
@media only screen and (max-width: 767px) {
  #PRODUCT .sec_ttl-ba-aleft .tt-box1 {
    width: calc(16.6666666667 * var(--vw));
    top: calc(-6.08 * var(--vw));
  }
}
#PRODUCT .sec_ttl-ba-aleft .tt-box2 {
  position: absolute;
  top: calc(-4.5 * var(--vw));
  left: 0;
  width: calc(9.4166666667 * var(--vw));
}
@media only screen and (max-width: 767px) {
  #PRODUCT .sec_ttl-ba-aleft .tt-box2 {
    width: calc(15.0666666667 * var(--vw));
    top: calc(-7.2 * var(--vw));
  }
}
#PRODUCT .sec_ttl-ba-nmb {
  font-size: calc(2.6666666667 * var(--vw));
  text-align: center;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
#PRODUCT .sec_ttl-ba-nmb p {
  position: relative;
  width: auto;
  display: inline-block;
}
#PRODUCT .sec_ttl-ba-nmb p::before {
  left: calc(-3.3333333333 * var(--vw));
  top: 0;
  bottom: 0;
  margin: auto 0;
}
@media only screen and (max-width: 767px) {
  #PRODUCT .sec_ttl-ba-nmb p::before {
    left: calc(-5.3333333333 * var(--vw));
  }
}
#PRODUCT .sec_ttl-ba-nmb p::after {
  right: calc(-3.3333333333 * var(--vw));
  top: 0;
  bottom: 0;
  margin: auto 0;
}
@media only screen and (max-width: 767px) {
  #PRODUCT .sec_ttl-ba-nmb p::after {
    right: calc(-5.3333333333 * var(--vw));
  }
}
#PRODUCT .sec_ttl-ba-nmb p::before, #PRODUCT .sec_ttl-ba-nmb p::after {
  position: absolute;
  content: "";
  display: block;
  border: 1px solid #77BD48;
  width: calc(1.3333333333 * var(--vw));
  height: calc(1.3333333333 * var(--vw));
  background-color: #77BD48;
  border-radius: 50%;
}
@media only screen and (max-width: 767px) {
  #PRODUCT .sec_ttl-ba-nmb p::before, #PRODUCT .sec_ttl-ba-nmb p::after {
    width: calc(1.6 * var(--vw));
    height: calc(1.6 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  #PRODUCT .sec_ttl-ba-nmb {
    font-size: calc(5.3333333333 * var(--vw));
  }
}
#PRODUCT .sec_ttl-ba-nmb span {
  display: block;
  font-size: 2rem;
}
@media only screen and (max-width: 767px) {
  #PRODUCT .sec_ttl-ba-nmb span {
    font-size: 1.4rem;
  }
}
#PRODUCT .sec_ttl-ba-nmb .ttl-p {
  position: relative;
  width: 27.9%;
}
@media only screen and (max-width: 767px) {
  #PRODUCT .sec_ttl-ba-nmb .ttl-p {
    width: 45%;
  }
}
#PRODUCT .sec_ttl-ba-nmb .ttl-p2 {
  position: relative;
  width: 45%;
}
@media only screen and (max-width: 767px) {
  #PRODUCT .sec_ttl-ba-nmb .ttl-p2 {
    width: 52%;
  }
}
#PRODUCT .sec_ttl-ba-nmb .tt-box1 {
  position: absolute;
  top: calc(-3.8 * var(--vw));
  right: 0;
  width: calc(10.4166666667 * var(--vw));
}
@media only screen and (max-width: 767px) {
  #PRODUCT .sec_ttl-ba-nmb .tt-box1 {
    width: calc(16.6666666667 * var(--vw));
    top: calc(-6.08 * var(--vw));
  }
}
#PRODUCT .sec_ttl-ba-nmb .tt-box2 {
  position: absolute;
  top: calc(-4.5 * var(--vw));
  left: 0;
  width: calc(9.4166666667 * var(--vw));
}
@media only screen and (max-width: 767px) {
  #PRODUCT .sec_ttl-ba-nmb .tt-box2 {
    width: calc(15.0666666667 * var(--vw));
    top: calc(-7.2 * var(--vw));
  }
}
#PRODUCT .sec_ttl-nmb {
  font-size: calc(1.3333333333 * var(--vw));
  text-align: left;
  line-height: calc(4 * var(--vw));
  background-color: #C0E3A8;
  padding-left: calc(1.3333333333 * var(--vw));
}
@media only screen and (max-width: 767px) {
  #PRODUCT .sec_ttl-nmb {
    font-size: calc(4.2666666667 * var(--vw));
    padding: calc(3.2 * var(--vw));
    line-height: calc(6 * var(--vw));
  }
}
#PRODUCT .sec_ttl-nmb span {
  display: block;
  font-size: 2rem;
}
@media only screen and (max-width: 767px) {
  #PRODUCT .sec_ttl-nmb span {
    font-size: 1.4rem;
  }
}
#PRODUCT .sec_ttl-nmb .ttl-p {
  position: relative;
  width: 25%;
}
@media only screen and (max-width: 767px) {
  #PRODUCT .sec_ttl-nmb .ttl-p {
    width: 45%;
  }
}
#PRODUCT .sec_ttl-nmb .ttl-p2 {
  position: relative;
  width: 45%;
}
@media only screen and (max-width: 767px) {
  #PRODUCT .sec_ttl-nmb .ttl-p2 {
    width: 52%;
  }
}
#PRODUCT .sec_ttl-nmb .tt-box1 {
  position: absolute;
  top: calc(-3.8 * var(--vw));
  right: 0;
  width: calc(10.4166666667 * var(--vw));
}
@media only screen and (max-width: 767px) {
  #PRODUCT .sec_ttl-nmb .tt-box1 {
    width: calc(16.6666666667 * var(--vw));
    top: calc(-6.08 * var(--vw));
  }
}
#PRODUCT .sec_ttl-nmb .tt-box2 {
  position: absolute;
  top: calc(-4.5 * var(--vw));
  left: 0;
  width: calc(9.4166666667 * var(--vw));
}
@media only screen and (max-width: 767px) {
  #PRODUCT .sec_ttl-nmb .tt-box2 {
    width: calc(15.0666666667 * var(--vw));
    top: calc(-7.2 * var(--vw));
  }
}
#PRODUCT .sec_ttl-nmb2 {
  font-size: calc(1.3333333333 * var(--vw));
  text-align: left;
  line-height: calc(2 * var(--vw));
  background-color: #C0E3A8;
  padding-left: calc(1.3333333333 * var(--vw));
  padding: calc(1 * var(--vw)) 0 calc(1 * var(--vw)) calc(1.3333333333 * var(--vw));
}
@media only screen and (max-width: 767px) {
  #PRODUCT .sec_ttl-nmb2 {
    font-size: calc(4.2666666667 * var(--vw));
    padding: calc(3.2 * var(--vw));
    line-height: calc(6 * var(--vw));
  }
}
#PRODUCT .sec_ttl-nmb2 span {
  display: block;
  font-size: 2rem;
}
@media only screen and (max-width: 767px) {
  #PRODUCT .sec_ttl-nmb2 span {
    font-size: 1.4rem;
  }
}
#PRODUCT .sec_ttl-nmb2 .ttl-p {
  position: relative;
  width: 25%;
}
@media only screen and (max-width: 767px) {
  #PRODUCT .sec_ttl-nmb2 .ttl-p {
    width: 45%;
  }
}
#PRODUCT .sec_ttl-nmb2 .ttl-p2 {
  position: relative;
  width: 45%;
}
@media only screen and (max-width: 767px) {
  #PRODUCT .sec_ttl-nmb2 .ttl-p2 {
    width: 52%;
  }
}
#PRODUCT .sec_ttl-nmb2 .tt-box1 {
  position: absolute;
  top: calc(-3.8 * var(--vw));
  right: 0;
  width: calc(10.4166666667 * var(--vw));
}
@media only screen and (max-width: 767px) {
  #PRODUCT .sec_ttl-nmb2 .tt-box1 {
    width: calc(16.6666666667 * var(--vw));
    top: calc(-6.08 * var(--vw));
  }
}
#PRODUCT .sec_ttl-nmb2 .tt-box2 {
  position: absolute;
  top: calc(-4.5 * var(--vw));
  left: 0;
  width: calc(9.4166666667 * var(--vw));
}
@media only screen and (max-width: 767px) {
  #PRODUCT .sec_ttl-nmb2 .tt-box2 {
    width: calc(15.0666666667 * var(--vw));
    top: calc(-7.2 * var(--vw));
  }
}
#PRODUCT .sec01__list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: calc(3.3333333333 * var(--vw)) 0;
}
#PRODUCT .sec01__list::after {
  content: "";
  display: block;
  width: 30%;
  height: 0;
}
@media only screen and (min-width: 1200px) {
  #PRODUCT .sec01__list {
    gap: 40px 0;
  }
}
@media only screen and (max-width: 767px) {
  #PRODUCT .sec01__list {
    gap: calc(6.6666666667 * var(--vw)) 0;
  }
}
#PRODUCT .sec01__list li {
  width: 30%;
}
@media only screen and (max-width: 767px) {
  #PRODUCT .sec01__list li {
    width: 100%;
  }
}
#PRODUCT .sec01__list li h3 {
  font-size: 2.2rem;
  margin-bottom: calc(0.8333333333 * var(--vw));
  line-height: 1.4;
}
@media only screen and (min-width: 1200px) {
  #PRODUCT .sec01__list li h3 {
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 767px) {
  #PRODUCT .sec01__list li h3 {
    font-size: 1.6rem;
    margin-bottom: calc(2.6666666667 * var(--vw));
  }
}
#PRODUCT .sec01__list li img {
  margin-bottom: calc(1.6666666667 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  #PRODUCT .sec01__list li img {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 767px) {
  #PRODUCT .sec01__list li img {
    margin-bottom: calc(5.3333333333 * var(--vw));
  }
}
#PRODUCT .sec03-img1 {
  text-align: center;
  width: 100%;
}
#PRODUCT .sec03-img1 img {
  width: calc(66.6666666667 * var(--vw));
}
@media only screen and (max-width: 767px) {
  #PRODUCT .sec03-img1 img {
    width: 95%;
  }
}
#PRODUCT .sec03-img2 {
  text-align: center;
  width: 100%;
}
#PRODUCT .sec03-img2 img {
  width: calc(55.9166666667 * var(--vw));
}
@media only screen and (max-width: 767px) {
  #PRODUCT .sec03-img2 img {
    width: 95%;
  }
}
#PRODUCT .sec04 {
  max-width: calc(93.3333333333 * var(--vw));
  margin: 0 auto;
}
#PRODUCT .dis_img_1 {
  width: calc(70 * var(--vw));
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  #PRODUCT .dis_img_1 {
    width: 100%;
  }
}
#PRODUCT .dis_img_2 {
  width: calc(73.4166666667 * var(--vw));
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  #PRODUCT .dis_img_2 {
    display: none;
  }
}
#PRODUCT .dis_img_4 {
  width: calc(70.75 * var(--vw));
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  #PRODUCT .dis_img_4 {
    width: 100%;
  }
}
#PRODUCT .dis_img_5 {
  width: calc(75 * var(--vw));
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  #PRODUCT .dis_img_5 {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  #PRODUCT .dis_img_5_1 {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  #PRODUCT .dis_img_5_2 {
    width: 100%;
  }
}
#PRODUCT .dis_img_6 {
  width: calc(75 * var(--vw));
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  #PRODUCT .dis_img_6 {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  #PRODUCT .dis_img_6_1 {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  #PRODUCT .dis_img_6_2 {
    width: 88%;
  }
}
#PRODUCT .dis_img_7 {
  width: calc(75 * var(--vw));
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  #PRODUCT .dis_img_7 {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  #PRODUCT .dis_img_7_1 {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  #PRODUCT .dis_img_7_2 {
    width: 88%;
  }
}
#PRODUCT .dis_img_8 {
  width: calc(70.75 * var(--vw));
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  #PRODUCT .dis_img_8 {
    width: 100%;
  }
}
#PRODUCT .dis_img_9 {
  width: calc(75 * var(--vw));
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  #PRODUCT .dis_img_9 {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  #PRODUCT .dis_img_9_1 {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  #PRODUCT .dis_img_9_2 {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  #PRODUCT .dis_img_9_3 {
    display: flex;
    justify-content: center;
    margin: calc(8 * var(--vw));
  }
  #PRODUCT .dis_img_9_3 img {
    width: 75%;
  }
}
@media only screen and (max-width: 767px) {
  #PRODUCT .dis_img_9_4 {
    width: 80%;
  }
}
#PRODUCT .dis_img_10 {
  width: calc(70.75 * var(--vw));
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  #PRODUCT .dis_img_10 {
    width: 100%;
  }
}
#PRODUCT .dis_img_11 {
  width: calc(75 * var(--vw));
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  #PRODUCT .dis_img_11 {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  #PRODUCT .dis_img_11_1 {
    width: 100%;
  }
}
#PRODUCT .dis_img_11_2 {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  #PRODUCT .dis_img_11_2 {
    width: 90%;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 767px) {
  #PRODUCT .dis_img_box {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
@media only screen and (max-width: 767px) {
  #PRODUCT .dis_img_box_c {
    width: 95%;
    display: flex;
    justify-content: center;
  }
}
#PRODUCT .dis_img_box_c .line_1 {
  width: calc(30.1333333333 * var(--vw));
  transform: rotate(90deg);
}
#PRODUCT .dis_img_box_c .line_2 {
  width: calc(41.0666666667 * var(--vw));
  transform: rotate(270deg);
}
#PRODUCT .dis_img_box_c .line_3 {
  width: calc(55.2 * var(--vw));
  transform: rotate(106deg);
}
#PRODUCT .dis_img_box_c .line_4 {
  width: calc(54.4 * var(--vw));
  transform: rotate(311deg) translateX(20px) translateY(-30px);
}
#PRODUCT .dis_img_box_c .line_5 {
  width: calc(45.0666666667 * var(--vw));
  transform: rotate(39deg) translateX(-20px) translateY(-10px);
}
#PRODUCT .dis_img_box_c .line_6 {
  width: calc(45.8666666667 * var(--vw));
  transform: rotate(88deg) translateX(30px) translateY(10px);
}
#PRODUCT .white-bg-sp {
  background-color: #fff;
  border-radius: calc(4 * var(--vw));
  padding: calc(5.3333333333 * var(--vw));
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
#PRODUCT .faq-box {
  max-width: calc(75 * var(--vw));
  background-color: #fff;
  border-radius: calc(2 * var(--vw));
  padding: calc(2 * var(--vw));
}
@media only screen and (max-width: 767px) {
  #PRODUCT .faq-box {
    border-radius: calc(4 * var(--vw));
    padding: calc(4 * var(--vw));
    max-width: initial;
    width: 95%;
  }
}
#PRODUCT .faq-box .faq-cobox {
  border-bottom: 2px dashed #C0E3A8;
  padding-bottom: calc(1.3333333333 * var(--vw));
  margin-bottom: calc(1.3333333333 * var(--vw));
}
@media only screen and (max-width: 767px) {
  #PRODUCT .faq-box .faq-cobox {
    padding-bottom: calc(3.7333333333 * var(--vw));
    margin-bottom: calc(3.7333333333 * var(--vw));
  }
}
#PRODUCT .faq-box .faq-cobox .faq-cobox-q {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
#PRODUCT .faq-box .faq-cobox .faq-cobox-q .q-num {
  color: #77BD48;
  font-size: calc(2 * var(--vw));
  font-weight: 600;
  width: 6%;
}
@media only screen and (max-width: 767px) {
  #PRODUCT .faq-box .faq-cobox .faq-cobox-q .q-num {
    width: 12%;
    font-size: calc(4.2666666667 * var(--vw));
  }
}
#PRODUCT .faq-box .faq-cobox .faq-cobox-q .q-txt {
  font-size: calc(1.75 * var(--vw));
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  #PRODUCT .faq-box .faq-cobox .faq-cobox-q .q-txt {
    font-size: calc(3.7333333333 * var(--vw));
  }
}
#PRODUCT .faq-box .faq-cobox .faq-cobox-a {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
#PRODUCT .faq-box .faq-cobox .faq-cobox-a .a-num {
  color: #e25a5a;
  font-size: calc(1.6666666667 * var(--vw));
  font-weight: 600;
  width: 5%;
}
@media only screen and (max-width: 767px) {
  #PRODUCT .faq-box .faq-cobox .faq-cobox-a .a-num {
    width: 10%;
    font-size: calc(3.7333333333 * var(--vw));
  }
}
#PRODUCT .faq-box .faq-cobox .faq-cobox-a .a-txt {
  font-size: calc(1.3333333333 * var(--vw));
  line-height: calc(2.6666666667 * var(--vw));
  width: 94%;
}
@media only screen and (max-width: 767px) {
  #PRODUCT .faq-box .faq-cobox .faq-cobox-a .a-txt {
    width: 89%;
    font-size: calc(3.4666666667 * var(--vw));
    line-height: calc(6.4 * var(--vw));
  }
}
#PRODUCT .flw-in {
  width: 100%;
  display: flex;
  justify-content: center;
}
#PRODUCT .o-time {
  width: calc(93.3333333333 * var(--vw));
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  #PRODUCT .o-time {
    max-width: calc(100 * var(--vw));
    width: 100%;
  }
}
#PRODUCT .o-time-info {
  padding: 0 calc(2.5 * var(--vw)) calc(5 * var(--vw));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
@media only screen and (max-width: 767px) {
  #PRODUCT .o-time-info {
    padding: 0 calc(2.6666666667 * var(--vw)) calc(8 * var(--vw));
    width: 100%;
  }
}
#PRODUCT .o-time-info__ttl {
  font-size: calc(2 * var(--vw));
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  #PRODUCT .o-time-info__ttl {
    font-size: calc(5.3333333333 * var(--vw));
    width: 100%;
    text-align: center;
  }
}
#PRODUCT .o-time-info__add {
  font-size: calc(1.5 * var(--vw));
  line-height: calc(2.2 * var(--vw));
}
@media only screen and (max-width: 767px) {
  #PRODUCT .o-time-info__add {
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(4.8 * var(--vw));
  }
}
#PRODUCT .o-time-info__infotxt {
  font-size: calc(1.3333333333 * var(--vw));
  padding-left: calc(0.6666666667 * var(--vw));
  text-decoration: underline;
}
@media only screen and (max-width: 767px) {
  #PRODUCT .o-time-info__infotxt {
    font-size: calc(3.2 * var(--vw));
    padding-left: calc(2.1333333333 * var(--vw));
  }
}
#PRODUCT .o-time__img {
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 767px) {
  #PRODUCT .o-time__img {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
}
#PRODUCT .o-time .tel-fax {
  width: calc(12.75 * var(--vw));
}
@media only screen and (max-width: 767px) {
  #PRODUCT .o-time .tel-fax {
    width: calc(33.3333333333 * var(--vw));
  }
}
#PRODUCT .o-time .g-btn {
  width: calc(14 * var(--vw));
}
@media only screen and (max-width: 767px) {
  #PRODUCT .o-time .g-btn {
    width: calc(26.6666666667 * var(--vw));
  }
}
@media only screen and (min-width: 768px) {
  #PRODUCT .o-time-pc {
    margin-right: calc(2.5 * var(--vw));
  }
}
@media only screen and (min-width: 768px) {
  #PRODUCT .o-time-sp {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  #PRODUCT .o-time-sp {
    display: none;
  }
}

#OTHER .sec01 ul li {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
#OTHER .sec01 ul li:not(:last-of-type) {
  margin-bottom: calc(3.3333333333 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  #OTHER .sec01 ul li:not(:last-of-type) {
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 767px) {
  #OTHER .sec01 ul li:not(:last-of-type) {
    margin-bottom: calc(8 * var(--vw));
  }
}
#OTHER .sec01 ul li img {
  width: 18%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  #OTHER .sec01 ul li img {
    width: 45%;
    margin: 0 auto calc(4 * var(--vw));
    order: 1;
    position: relative;
    z-index: 1;
  }
}
#OTHER .sec01 ul li .voice-area {
  width: 75%;
  background-color: #f6f6f6;
  position: relative;
  padding: calc(2.5 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  #OTHER .sec01 ul li .voice-area {
    padding: 30px;
  }
}
@media only screen and (max-width: 767px) {
  #OTHER .sec01 ul li .voice-area {
    width: 100%;
    order: 2;
    margin-top: calc(-21.3333333333 * var(--vw));
    padding: calc(21.6666666667 * var(--vw)) calc(5 * var(--vw)) calc(5 * var(--vw));
  }
}
#OTHER .sec01 ul li .voice-area:before {
  content: "";
  position: absolute;
  display: inline-block;
  top: calc(50% - 3.25 * var(--vw) / 2);
  left: calc(-2.75 * var(--vw));
  width: 0;
  height: 0;
  border-style: solid;
  border-width: calc(1.6666666667 * var(--vw)) calc(2.75 * var(--vw)) calc(1.6666666667 * var(--vw)) 0;
  border-color: transparent #f6f6f6 transparent transparent;
}
@media only screen and (min-width: 1200px) {
  #OTHER .sec01 ul li .voice-area:before {
    top: calc(50% - 19.5px);
    left: -33px;
    border-width: 20px 33px 20px 0;
  }
}
@media only screen and (max-width: 767px) {
  #OTHER .sec01 ul li .voice-area:before {
    content: none;
  }
}
#OTHER .sec01 ul li .voice-area h3 {
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: calc(1.25 * var(--vw));
  font-size: 2rem;
  position: relative;
}
@media only screen and (min-width: 1200px) {
  #OTHER .sec01 ul li .voice-area h3 {
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 767px) {
  #OTHER .sec01 ul li .voice-area h3 {
    margin-bottom: calc(4 * var(--vw));
    font-size: 1.6rem;
  }
}
#OTHER .sec01 ul li .voice-area h3 + p {
  font-size: 15px;
  line-height: 1.6em;
}
@media only screen and (max-width: 767px) {
  #OTHER .sec01 ul li .voice-area h3 + p {
    font-size: 1.3rem;
  }
}
#OTHER .sec01 ul li:nth-child(even) .voice-area:before {
  content: "";
  position: absolute;
  display: inline-block;
  top: calc(50% - 3.25 * var(--vw) / 2);
  left: auto;
  right: calc(-2.75 * var(--vw));
  width: 0;
  height: 0;
  border-style: solid;
  border-width: calc(1.6666666667 * var(--vw)) 0 calc(1.6666666667 * var(--vw)) calc(2.75 * var(--vw));
  border-color: transparent transparent transparent #f6f6f6;
}
@media only screen and (min-width: 1200px) {
  #OTHER .sec01 ul li:nth-child(even) .voice-area:before {
    right: -33px;
    top: calc(50% - 19.5px);
    border-width: 20px 0 20px 33px;
  }
}
@media only screen and (max-width: 767px) {
  #OTHER .sec01 ul li:nth-child(even) .voice-area:before {
    content: none;
  }
}
#OTHER .sec02 .list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media only screen and (max-width: 767px) {
  #OTHER .sec02 .list {
    gap: calc(10.6666666667 * var(--vw)) 0;
  }
}
#OTHER .sec02 .list__item {
  width: 21%;
  border: 1px solid #ddd;
  padding: calc(1.6666666667 * var(--vw));
  position: relative;
}
@media only screen and (min-width: 1200px) {
  #OTHER .sec02 .list__item {
    padding: 20px;
  }
}
@media only screen and (max-width: 767px) {
  #OTHER .sec02 .list__item {
    padding: calc(5.3333333333 * var(--vw));
    width: 65%;
    margin: 0 auto;
  }
}
#OTHER .sec02 .list__item:not(:last-child)::after {
  content: "";
  display: inline-block;
  position: absolute;
  width: calc(0.8333333333 * var(--vw));
  height: calc(0.8333333333 * var(--vw));
  top: calc(50% - 0.8333333333 * var(--vw) / 2);
  right: calc(-2.9166666667 * var(--vw));
  background-size: contain;
  vertical-align: middle;
  border-top: 4px solid #222;
  border-right: 4px solid #222;
  transform: rotate(45deg);
}
@media only screen and (min-width: 1200px) {
  #OTHER .sec02 .list__item:not(:last-child)::after {
    width: 10px;
    height: 10px;
    right: -35px;
    top: calc(50% - 5px);
  }
}
@media only screen and (max-width: 767px) {
  #OTHER .sec02 .list__item:not(:last-child)::after {
    width: calc(2.6666666667 * var(--vw));
    height: calc(2.6666666667 * var(--vw));
    transform: rotate(135deg);
    right: calc(50% - 2.6666666667 * var(--vw) / 2);
    top: auto;
    bottom: calc(-6.4 * var(--vw));
  }
}
#OTHER .sec02 .list__num {
  text-align: center;
  display: block;
  font-weight: bold;
  color: #888;
  margin-bottom: calc(0.4166666667 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  #OTHER .sec02 .list__num {
    margin-bottom: 5px;
  }
}
@media only screen and (max-width: 767px) {
  #OTHER .sec02 .list__num {
    margin-bottom: calc(1.3333333333 * var(--vw));
  }
}
#OTHER .sec02 .list__ttl {
  margin-bottom: calc(0.8333333333 * var(--vw));
  line-height: 1.4;
  text-align: center;
}
@media only screen and (min-width: 1200px) {
  #OTHER .sec02 .list__ttl {
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 767px) {
  #OTHER .sec02 .list__ttl {
    margin-bottom: calc(2.6666666667 * var(--vw));
  }
}
#OTHER .sec03__table {
  overflow: auto;
  white-space: nowrap;
}
#OTHER .sec03__table table {
  width: 100%;
  border-collapse: collapse;
}
@media only screen and (max-width: 767px) {
  #OTHER .sec03__table table {
    width: 1100px;
  }
}
#OTHER .sec03__table table th,
#OTHER .sec03__table table td {
  border: 1px solid #ddd;
  padding: 15px;
}
#OTHER .sec03__table table th {
  background: #eee;
  width: 25%;
}
#OTHER .sec03__table table td {
  width: 25%;
}
#OTHER .sec03 .scroll-txt {
  font-size: 1.2rem;
  text-align: right;
  margin-top: calc(2.6666666667 * var(--vw));
}

/*
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
*/
:root {
  --primary-color: #333;
}

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


.pc {
	display: block;

	@include media(sp) {
		display: none;
	}
}

.sp {
	display: none;

	@include media(sp) {
		display: block;
	}
}
*/
#CONTACT {
  margin: calc(10 * var(--vw)) 0 0;
  line-height: 1.8;
  font-size: 16px;
}
@media only screen and (max-width: 767px) {
  #CONTACT {
    font-size: 12px;
    margin: calc(16 * var(--vw)) 0 0;
  }
}
#CONTACT .contents-f {
  display: flex;
  flex-direction: column;
}
#CONTACT .footer-f {
  position: sticky;
  top: 100vh;
}
#CONTACT .empty-fields-count {
  background-color: #f2f2f2;
  position: fixed;
  right: 20px;
  top: 100px;
  line-height: 1.4;
  padding: 16px;
  display: none;
  z-index: 3;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  #CONTACT .empty-fields-count {
    top: auto;
    bottom: 10px;
    right: 10px;
    padding: 10px;
  }
}
#CONTACT .empty-fields-count::before {
  content: "";
  position: absolute;
  left: -24px;
  bottom: 24px;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent transparent #f2f2f2 transparent;
  border-width: 0px 0px 24px 24px;
}
@media only screen and (max-width: 767px) {
  #CONTACT .empty-fields-count::before {
    left: -18px;
    border-style: solid;
    border-color: transparent #f2f2f2 transparent transparent;
    border-width: 0px 18px 18px 0px;
  }
}
#CONTACT .empty-fields-count__number {
  font-size: 24px;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  #CONTACT .empty-fields-count__number {
    font-size: 18px;
  }
}
#CONTACT .tel-area {
  background-color: #fff;
  border-radius: calc(0.8333333333 * var(--vw));
  padding: 32px;
  margin-bottom: 40px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  #CONTACT .tel-area {
    margin-bottom: 32px;
    border-radius: calc(2.6666666667 * var(--vw));
  }
}
#CONTACT .tel-area__num {
  position: relative;
  font-weight: bold;
  font-size: 48px;
  line-height: 1;
  display: block;
  margin-top: 16px;
  color: #34A02C;
}
@media only screen and (max-width: 767px) {
  #CONTACT .tel-area__num {
    font-size: 24px;
    margin-top: 8px;
  }
}
#CONTACT .tel-area__num::before {
  content: "";
  display: inline-block;
  height: 1cap;
  width: 1cap;
  background-size: contain;
  background-image: url("../../assets/img/contact/icon_phone.svg");
  background-repeat: no-repeat;
  margin: 0 8px 0 0;
  transition: 0.3s;
}
#CONTACT .notes {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  display: inline-block;
  margin-top: 8px;
}
@media only screen and (max-width: 767px) {
  #CONTACT .notes {
    font-size: 12px;
  }
}
#CONTACT .notes::before {
  content: "※";
  position: absolute;
  left: 0;
}
#CONTACT .progress-bar {
  position: relative;
  display: flex;
  justify-content: center;
  margin: 40px 0;
}
#CONTACT .progress-bar__item {
  position: relative;
  text-align: center;
  width: 24%;
  color: #999;
  font-weight: bold;
  counter-increment: steps;
}
@media only screen and (max-width: 767px) {
  #CONTACT .progress-bar__item {
    width: 33.33333%;
  }
}
#CONTACT .progress-bar__item:before {
  content: "";
  width: 40px;
  height: 40px;
  margin: 0 auto 8px auto;
  border-radius: 50%;
  background-color: #fff;
  content: counter(steps);
  display: grid;
  place-content: center;
}
#CONTACT .progress-bar__item:not(:first-child):after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 20px;
  left: -50%;
  width: 100%;
  height: 2px;
  background-color: #fff;
}
#CONTACT .progress-bar__item.current {
  color: var(--primary-color);
}
#CONTACT .progress-bar__item.current::before, #CONTACT .progress-bar__item.current::after {
  background-color: var(--primary-color);
  color: #fff;
}
#CONTACT .form-sec .sec-in {
  max-width: 948px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
}
@media only screen and (max-width: 767px) {
  #CONTACT .form-sec .sec-in {
    width: 100%;
  }
}
#CONTACT .form-sec__box {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  padding: 32px 0;
  border-bottom: 1px solid #eee;
}
@media only screen and (max-width: 767px) {
  #CONTACT .form-sec__box {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px 0;
  }
}
#CONTACT .form-sec__item {
  font-weight: bold;
  position: relative;
  padding-top: 10px;
}
@media only screen and (max-width: 767px) {
  #CONTACT .form-sec__item {
    padding-top: 0;
  }
}
#CONTACT .form-sec__item .icon-required {
  position: absolute;
  right: 0;
  top: 15px;
  display: inline-block;
  font-size: 12px;
  height: 20px;
  line-height: 20px;
  font-weight: normal;
  padding: 0 5px;
  color: #fff;
  background-color: #df0000;
  border-radius: 4px;
}
@media only screen and (max-width: 767px) {
  #CONTACT .form-sec__item .icon-required {
    position: static;
    margin-left: 8px;
    font-size: 10px;
  }
}
#CONTACT .form-sec fieldset legend {
  width: 220px;
  float: left;
}
@media only screen and (max-width: 767px) {
  #CONTACT .form-sec fieldset legend {
    width: 100%;
  }
}
#CONTACT .form-sec__field--zip {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  column-gap: 16px;
}
#CONTACT .form-sec__field--zip input[type=number] {
  width: 25%;
}
@media only screen and (max-width: 767px) {
  #CONTACT .form-sec__field--zip input[type=number] {
    width: calc(50% - 8px);
  }
}
#CONTACT .form-sec__field--zip .btn-zip {
  width: 148px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  cursor: pointer;
  line-height: 1.3;
  align-items: center;
  padding: 0 24px;
  min-height: 50px;
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
  color: #fff;
  font-weight: bold;
  position: relative;
  border-radius: 4px;
}
@media only screen and (max-width: 767px) {
  #CONTACT .form-sec__field--zip .btn-zip {
    width: calc(50% - 8px);
  }
}
#CONTACT .form-sec__field--zip .btn-zip::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  margin: -2px 6px 0 0;
  transition: 0.3s;
  background-image: url("../../assets/img/contact/icon_search.svg");
}
#CONTACT .form-sec .w-75 {
  width: 75%;
}
#CONTACT .form-sec .w-50 {
  width: 50%;
}
#CONTACT .form-sec .w-25 {
  width: 25%;
}
@media only screen and (max-width: 767px) {
  #CONTACT .form-sec .w-75,
  #CONTACT .form-sec .w-50,
  #CONTACT .form-sec .w-25 {
    width: 100%;
  }
}
#CONTACT input[type=text], #CONTACT input[type=email], #CONTACT input[type=tel], #CONTACT input[type=number], #CONTACT input[type=zip], #CONTACT input[type=url], #CONTACT input[type=date] {
  width: 100%;
  height: 50px;
  border: 1px solid #888;
  border-radius: 4px;
  padding: 0 15px;
  outline: none;
  position: relative;
  background-color: #fff;
}
#CONTACT input::-webkit-calendar-picker-indicator {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
}
#CONTACT textarea {
  width: 100%;
  height: 240px;
  border: 1px solid #888;
  border-radius: 4px;
  line-height: 1.4;
  padding: 16px;
  outline: none;
  resize: none;
}
#CONTACT input,
#CONTACT textarea {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
}
@media only screen and (max-width: 767px) {
  #CONTACT input,
  #CONTACT textarea {
    font-size: 12px;
  }
}
#CONTACT input::placeholder,
#CONTACT textarea::placeholder {
  font-family: "Noto Sans JP", sans-serif;
  color: #bbb;
  font-size: 16px;
}
@media only screen and (max-width: 767px) {
  #CONTACT input::placeholder,
  #CONTACT textarea::placeholder {
    font-size: 13px;
  }
}
#CONTACT input:focus,
#CONTACT textarea:focus {
  border: 2px #005fcc solid;
}
#CONTACT input.error,
#CONTACT textarea.error {
  background: #fbe9e8;
  border-color: red;
}
#CONTACT .select-box {
  overflow: hidden;
  position: relative;
  border: 1px solid #888;
  border-radius: 4px;
}
#CONTACT .select-box::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 7px;
  height: 7px;
  top: 50%;
  right: 24px;
  border-top: 2px solid var(--primary-color);
  border-right: 2px solid var(--primary-color);
  transform: translateY(-50%) rotate(135deg);
}
#CONTACT .select-box select {
  font-size: 16px;
  height: 50px;
  width: 100%;
  padding-right: 1em;
  cursor: pointer;
  text-overflow: ellipsis;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  box-shadow: none;
  appearance: none;
  padding: 0 32px 0 15px;
  color: var(--primary-color);
  background-color: #fff;
}
#CONTACT .select-box select.error {
  background: #fbe9e8;
  border: 1px solid red;
}
@media only screen and (max-width: 767px) {
  #CONTACT .select-box select {
    font-size: 13px;
  }
}
#CONTACT .select-box select::-ms-expand {
  display: none;
}
#CONTACT .select-box select:focus {
  border: 2px #005fcc solid;
}
#CONTACT .flex-sel {
  display: flex;
  justify-content: flex-start;
  gap: calc(1.6666666667 * var(--vw));
}
@media only screen and (max-width: 767px) {
  #CONTACT .flex-sel {
    gap: calc(4 * var(--vw));
  }
}
#CONTACT .radio:not(:last-of-type) {
  margin-bottom: 8px;
}
#CONTACT .radio label {
  position: relative;
  cursor: pointer;
  display: inline-block;
  padding-left: 32px;
}
#CONTACT .radio label::before, #CONTACT .radio label::after {
  content: "";
  border-radius: 50%;
  position: absolute;
  transform: translateY(-50%);
  top: 15px;
  left: 0;
}
@media only screen and (max-width: 768px) {
  #CONTACT .radio label::before, #CONTACT .radio label::after {
    top: 13px;
  }
}
#CONTACT .radio label::before {
  background-color: #fff;
  border: 1px solid #888;
  width: 20px;
  height: 20px;
}
#CONTACT .radio label:has(.error)::before {
  background: #fbe9e8;
  border-color: red;
}
#CONTACT .radio label::after {
  background-color: var(--primary-color);
  opacity: 0;
  width: 12px;
  height: 12px;
  left: 5px;
}
#CONTACT .radio label:has(input:checked)::after {
  opacity: 1;
}
#CONTACT .radio__input {
  position: absolute;
  white-space: nowrap;
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  overflow: hidden;
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
}
#CONTACT .check-box:not(:last-of-type) {
  margin-bottom: 8px;
}
#CONTACT .check-box label {
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
  padding-left: 32px;
}
#CONTACT .check-box__input {
  margin: 0;
  width: 0;
  opacity: 0;
}
#CONTACT .check-box__input.error + .check-box__border {
  background: #fbe9e8;
  border-color: red;
}
#CONTACT .check-box__input:checked + .check-box__border {
  background: var(--primary-color);
  border: 2px solid var(--primary-color);
}
#CONTACT .check-box__input:checked + .check-box__border::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: contain;
  background: url("../../assets/img/contact/icon_check.svg") no-repeat center;
}
#CONTACT .check-box__border {
  position: absolute;
  top: 5px;
  left: 0;
  border: 1px solid #888;
  width: 20px;
  height: 20px;
  border-radius: 4px;
}
@media only screen and (max-width: 767px) {
  #CONTACT .check-box__border {
    top: 2px;
  }
}
#CONTACT input[type=file] {
  display: block;
  margin-top: 8px;
  padding-right: 8px;
}
#CONTACT input[type=file]:not(:last-of-type) {
  margin-bottom: 16px;
}
@media only screen and (max-width: 767px) {
  #CONTACT input[type=file] {
    margin-top: 0;
    width: 100%;
  }
}
#CONTACT .file-btn::file-selector-button {
  font-weight: bold;
  background-color: var(--primary-color);
  color: #fff;
  border: 0;
  border-radius: 4px;
  padding: 8px 16px;
  cursor: pointer;
  margin-right: 16px;
  transition: 0.3s;
}
#CONTACT .file-btn::file-selector-button:hover {
  opacity: 0.6;
}
#CONTACT span.error {
  color: red;
  margin-top: 4px;
  display: block;
  width: 100%;
}
#CONTACT .remarks {
  font-weight: normal;
  font-size: 14px;
}
#CONTACT .agree-check {
  display: flex;
  justify-content: center;
}
#CONTACT .agree-check + .error {
  text-align: center;
}
#CONTACT .agree-check a {
  text-decoration: underline;
  color: #1558d6;
}
#CONTACT .agree-check a:hover {
  text-decoration: none;
}
#CONTACT .privacy {
  background-color: #fff;
  margin: 65px 0 40px;
}
#CONTACT .privacy__in {
  border: 40px solid #fff;
  overflow-y: scroll;
  height: 300px;
  padding-right: 40px;
}
@media only screen and (max-width: 767px) {
  #CONTACT .privacy__in {
    border: 24px solid #fff;
    padding-right: 24px;
  }
}
#CONTACT .privacy__in::-webkit-scrollbar {
  width: 3px;
}
#CONTACT .privacy__in::-webkit-scrollbar-track {
  background-color: #ccc;
}
#CONTACT .privacy__in::-webkit-scrollbar-thumb {
  background-color: var(--primary-color);
  border-radius: 50px;
}
#CONTACT .privacy__ttl {
  font-size: 22px;
  margin-bottom: 15px;
}
@media only screen and (max-width: 767px) {
  #CONTACT .privacy__ttl {
    font-size: 18px;
  }
}
#CONTACT .privacy__sub-ttl {
  font-weight: bold;
  margin: 32px 0 16px;
}
#CONTACT .privacy__sub-txt {
  margin-top: 0.5em;
}
#CONTACT .privacy__enactment {
  text-align: right;
  margin-top: 40px;
}
#CONTACT .btn {
  cursor: pointer;
  line-height: 1.3;
  width: 256px;
  height: 50px;
  line-height: 49px;
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
  color: #fff;
  position: relative;
  transition: 0.3s;
  font-size: 16px;
  font-weight: bold;
  display: grid;
  place-content: center;
  margin: 32px auto 0;
}
#CONTACT .btn::after {
  content: "";
  transition: 0.3s;
  position: absolute;
  width: 6px;
  height: 6px;
  top: calc(50% - 3px);
  right: 16px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}
#CONTACT .btn:hover {
  background-color: #fff;
  color: var(--primary-color);
}
#CONTACT .btn:hover::after {
  border-color: var(--primary-color);
}
#CONTACT .btn--back {
  background-color: #fff;
  color: var(--primary-color);
}
#CONTACT .btn--back::after {
  right: auto;
  left: 16px;
  transform: rotate(-135deg);
  border-color: var(--primary-color);
}
#CONTACT .btn--back:hover {
  background-color: var(--primary-color);
  color: #fff;
}
#CONTACT .btn--back:hover::after {
  border-color: #fff;
}
#CONTACT .icon-arrow {
  position: relative;
  display: flex;
  text-align: center;
  width: fit-content;
  margin: 0 auto;
}
#CONTACT .icon-arrow::after {
  content: "";
  transition: 0.3s;
  position: absolute;
  width: 6px;
  height: 6px;
  top: calc(50% - 3px);
  right: 16px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}
#CONTACT .icon-arrow:has(.btn) {
  margin-top: 40px;
}
#CONTACT .icon-arrow:has(.btn):hover::after {
  border-top: 2px solid var(--primary-color);
  border-right: 2px solid var(--primary-color);
}
#CONTACT .icon-arrow .btn {
  margin: 0;
}
#CONTACT .icon-arrow.no-link {
  opacity: 0.5;
  pointer-events: none;
}
@media (min-width: 1024px) {
  #CONTACT a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
#CONTACT input[type=number]::-webkit-outer-spin-button,
#CONTACT input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
#CONTACT input[type=number] {
  -moz-appearance: textfield;
}
#CONTACT input[type=submit] {
  -webkit-appearance: none;
}
#CONTACT textarea {
  resize: none;
}
#CONTACT.confirm .form-sec__item {
  padding-top: 0;
}
#CONTACT.confirm .form-sec__item .icon-required {
  top: 4px;
}
#CONTACT.confirm .form-sec .btn-column {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 48px;
}
#CONTACT.confirm .form-sec .btn-column .icon-arrow {
  margin: 0;
}
#CONTACT.confirm .form-sec .btn-column .btn {
  margin: 0;
}
#CONTACT.thanks {
  text-align: center;
}
#CONTACT.thanks .thanks-ttl {
  font-size: 26px;
  margin-bottom: 24px;
}
@media only screen and (max-width: 767px) {
  #CONTACT.thanks .thanks-ttl {
    font-size: 20px;
  }
}/*# sourceMappingURL=style.css.map */