@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap");
:root {
  --vw: 1vw;
  --swiper-theme-color: #fff;
}

/*
------------------------
用途：個別に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;
  display: block;
  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;
}

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

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

.container {
  overflow: hidden;
}

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

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

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

.sec_ttl {
  font-size: 5.6rem;
  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: 3rem;
    margin-bottom: calc(10.6666666667 * var(--vw));
  }
}
.sec_ttl span {
  display: block;
  font-size: 2rem;
}
@media only screen and (max-width: 767px) {
  .sec_ttl span {
    font-size: 1.4rem;
  }
}

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

.header {
  height: calc(7.5 * var(--vw));
  width: 100%;
  top: 0;
  z-index: 100;
  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%;
}
@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(30 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  .header .header_in h1 {
    width: 300px;
  }
}
@media only screen and (max-width: 767px) {
  .header .header_in h1 {
    width: calc(64 * 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: 70%;
  }
}
@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;
  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: #222;
    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 #000;
    color: #fff;
    padding: calc(4.2666666667 * var(--vw));
    position: relative;
  }
  .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 .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;
    /*開閉ボタンopen時*/
  }
  .header .nav_toggle span {
    display: block;
    height: 3px;
    background: #222;
    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 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: #333;
  padding: clamp(40px, 40px + (100vw - 768px) * (60 - 40) / (1100 - 768), 60px) 0;
  color: #fff;
  position: relative;
}
.footer .footer_in nav {
  margin-bottom: 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: 120px; */
  width: 240px;
  margin: 0 auto 40px;
}
.footer .footer_in .c_right {
  font-size: 10px;
  color: #fff;
  text-align: center;
  line-height: 1.4;
}

.btn_top {
  width: 60px;
  height: 60px;
  background: #333;
  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;
}
@media only screen and (min-width: 1200px) {
  #TOP .kv {
    margin-bottom: 100;
  }
}
@media only screen and (max-width: 767px) {
  #TOP .kv {
    margin-bottom: calc(16 * var(--vw));
  }
}
#TOP .kv .kv-in {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}
#TOP .txtbox {
  position: absolute;
  z-index: 10;
  top: calc(16.6666666667 * var(--vw));
  left: calc(5.8333333333 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  #TOP .txtbox {
    top: 200px;
    left: 70px;
  }
}
@media only screen and (max-width: 767px) {
  #TOP .txtbox {
    top: calc(2.6666666667 * var(--vw));
    left: calc(2.6666666667 * var(--vw));
  }
}
#TOP .txtbox h1 {
  font-size: calc(4.3333333333 * var(--vw));
  color: #fff;
}
@media only screen and (min-width: 1200px) {
  #TOP .txtbox h1 {
    font-size: 52px;
  }
}
@media only screen and (max-width: 767px) {
  #TOP .txtbox h1 {
    font-size: calc(5.3333333333 * var(--vw));
  }
}
#TOP .txtbox p {
  font-size: calc(2.3333333333 * var(--vw));
  color: #fff;
}
@media only screen and (min-width: 1200px) {
  #TOP .txtbox p {
    font-size: 28px;
  }
}
@media only screen and (max-width: 767px) {
  #TOP .txtbox p {
    font-size: calc(2.9333333333 * var(--vw));
  }
}
#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 {
  background: #f6f6f6;
}
#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 {
  background: #f6f6f6;
}
#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-bottom: 1px solid #dddad8;
}
#TOP .sec05 ul li:first-child {
  border-top: 1px solid #dddad8;
}
#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 .sec06 {
  background-color: #f6f6f6;
}
#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;
}

.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;
  }
}
.thanks-sec .sw-color {
  color: #fff !important;
}
.thanks-sec .swiper-pagination-bullet-active {
  background-color: #fff !important;
}

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

#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));
}/*# sourceMappingURL=style.css.map */