@charset "UTF-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;
  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: Arial, "Hiragino Sans", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
  position: relative;
  word-break: break-word;
  width: 100%;
  font-weight: 300;
  font-size: 1.6rem;
}
@media only screen and (max-width: 767px) {
  body {
    font-size: 1.3rem;
  }
}

.mainSection {
  margin-top: calc(8.3333333333 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  .mainSection {
    margin-top: 100px;
  }
}
@media only screen and (max-width: 767px) {
  .mainSection {
    margin-top: calc(13.3333333333 * 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: #0a52a9;
  border: 1px solid #0a52a9;
  color: #fff;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}
@media only screen and (min-width: 1200px) {
  .btn {
    width: 220px;
    height: 55px;
  }
}
@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: #0a52a9;
  color: #0a52a9;
}
.btn:hover:after {
  right: calc(1.5 * var(--vw));
  border-color: #0a52a9;
}
@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 span {
  display: block;
}

a img {
  transition: 0.3s;
}

a:hover img {
  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 #0a52a9;
  border-right: 1px solid #0a52a9;
  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;
  appearance: textfield;
}

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

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

@media only screen and (min-width: 768px) {
  a[href*="tel:"] {
    color: #0a52a9;
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
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 {
  position: relative;
  margin-bottom: calc(6.6666666667 * var(--vw));
  padding-bottom: 10px;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-size: 4rem;
  color: #0a52a9;
}
.sec_ttl::before {
  content: "";
  width: 150px;
  height: 3px;
  background: #0a52a9;
  position: absolute;
  left: 0;
  bottom: 0;
}
.sec_ttl::after {
  content: "";
  width: calc(100% - 150px);
  height: 3px;
  background: #ccc;
  position: absolute;
  left: 150px;
  bottom: 0;
}
@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;
  }
}

.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: 100px;
  }
}
@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;
  flex-wrap: nowrap;
  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 .logo a {
  font-weight: 700;
  font-size: clamp(2.1rem, 1.75 * var(--vw), 3rem);
  color: #0a52a9;
}
@media only screen and (max-width: 767px) {
  .header .header_in .logo {
    top: calc(3.3333333333 * var(--vw));
  }
  .header .header_in .logo a {
    font-size: calc(2.8 * var(--vw));
  }
}
.header .header_in .logo img {
  display: block;
  top: 0;
}
.header .header_in nav {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.header .header_in nav .tel {
  order: 1;
  width: 100%;
  text-align: right;
  margin-bottom: 10px;
}
.header .header_in nav .tel p {
  padding: 8px 10px 5px;
  margin-bottom: 5px;
  border-radius: 5px;
  color: #fff;
  background: #0a52a9;
  text-align: right;
  line-height: 1;
  display: inline-block;
}
.header .header_in nav .tel p a {
  display: inline;
  color: #fff;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .header .header_in nav .tel {
    order: 2;
    background: none;
    text-align: center;
    margin: 20px 0 0;
  }
  .header .header_in nav .tel p {
    padding: 10px;
  }
  .header .header_in nav .tel p a {
    margin-left: 10px;
  }
}
@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;
    display: none;
    height: 100vh;
    background: #222;
  }
}
.header .header_in nav ul {
  order: 2;
  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 {
    gap: 0;
    width: 100%;
    display: block;
    order: 1;
  }
}
.header .header_in nav ul li {
  position: relative;
}
.header .header_in nav ul li:not(:first-child)::before {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(-1.25 * var(--vw));
  transform: translateY(-50%);
  display: block;
  width: calc(0.0833333333 * var(--vw));
  height: calc(1.1666666667 * var(--vw));
  background-color: #aaa;
}
@media only screen and (min-width: 1200px) {
  .header .header_in nav ul li:not(:first-child)::before {
    width: 1px;
    height: 14px;
    left: -15px;
  }
}
@media only screen and (max-width: 767px) {
  .header .header_in nav ul li:not(:first-child)::before {
    content: none;
  }
}
.header .header_in nav ul li a {
  font-weight: 600;
  transition: 0.2s;
  text-align: center;
}
@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;
    text-align: left;
  }
  .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);
  }
}

@media only screen and (min-width: 768px) {
  .page-footer {
    padding: 32px max(0px, 50% - 540px);
    background-color: #2b2b2b;
    color: #fff;
  }
  .page-footer nav ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
  }
  .page-footer nav ul li {
    margin: 0;
    padding: 0;
  }
  .page-footer nav:nth-of-type(1) ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px 30px;
  }
  .page-footer nav:nth-of-type(1) ul a {
    font-weight: 500;
    font-size: 14px;
    color: #fff;
    text-decoration: none;
  }
  .page-footer nav:nth-of-type(1) ul a:hover, .page-footer nav:nth-of-type(1) ul a:active {
    text-decoration: underline;
  }
  .page-footer nav:nth-of-type(2) {
    display: flex;
    justify-content: space-between;
    margin-bottom: 120px;
    font-size: 1.4rem;
  }
  .page-footer nav:nth-of-type(2) h2 {
    font-weight: bold;
    font-size: 1.4rem;
    color: #808080;
  }
  .page-footer nav:nth-of-type(2) h2:empty::before {
    content: "　";
  }
  .page-footer nav:nth-of-type(2) ul:not(:last-of-type) {
    margin-bottom: 2rem;
  }
  .page-footer nav:nth-of-type(2) li, .page-footer nav:nth-of-type(2) p {
    margin-top: 14px;
  }
  .page-footer nav:nth-of-type(2) li span, .page-footer nav:nth-of-type(2) p span {
    font-size: 1.2rem;
  }
  .page-footer nav:nth-of-type(2) a {
    color: inherit;
    text-decoration: none;
  }
  .page-footer nav:nth-of-type(2) a:hover, .page-footer nav:nth-of-type(2) a:active {
    text-decoration: underline;
  }
  .page-footer hr {
    margin: 36px 0;
    height: 2px;
    border: none;
    background-color: #6f6f6f;
  }
  .page-footer hr:nth-of-type(n+2) {
    display: none;
  }
  .page-footer > p {
    margin-bottom: 44px;
    text-align: center;
  }
  .page-footer > p img {
    max-width: 170px;
  }
  .page-footer > p a {
    opacity: 1;
    transition: opacity 0.3s;
  }
  .page-footer > p a:hover, .page-footer > p a:active {
    opacity: 0.7;
  }
  .page-footer address {
    display: block;
    font-style: normal;
    text-align: center;
    font-size: 1.2rem;
  }
  .page-footer button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    aspect-ratio: 1;
    padding: 0;
    border: 3px solid #c0c0c0;
    border-radius: 50%;
    background-color: #0a52a9;
    font-family: inherit;
    font-size: 1.6rem;
    color: #fff;
    transition: background-color 0.3s;
  }
  .page-footer button:hover, .page-footer button:active {
    cursor: pointer;
  }
  .page-footer button span {
    width: 40px;
    text-align: center;
  }
  .page-footer button span::before {
    content: "";
    position: relative;
    transform: rotate(-45deg);
    margin: 15px auto -5px;
    display: block;
    width: 50%;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    aspect-ratio: 1;
  }
  .page-footer button:hover, .page-footer button:active {
    opacity: 0.8;
  }
}
@media only screen and (max-width: 767px) {
  .page-footer {
    padding: 32px 4% 16px;
    background-color: #2b2b2b;
    color: #fff;
  }
  .page-footer img {
    max-width: 100px;
  }
  .page-footer nav ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
  }
  .page-footer nav ul li {
    margin: 0;
    padding: 0;
  }
  .page-footer nav:nth-of-type(1) ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px 0;
  }
}
@media only screen and (max-width: 767px) and (min-width: 641px) {
  .page-footer nav:nth-of-type(1) ul {
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: row;
    gap: 5px 30px;
  }
}
@media only screen and (max-width: 767px) {
  .page-footer nav:nth-of-type(1) ul a {
    font-weight: 500;
    font-size: 14px;
    color: #fff;
    text-decoration: none;
  }
  .page-footer nav:nth-of-type(1) ul a:hover, .page-footer nav:nth-of-type(1) ul a:active {
    text-decoration: underline;
  }
  .page-footer nav:nth-of-type(2) {
    margin-top: -32px;
    font-size: 1.8rem;
  }
}
@media only screen and (max-width: 767px) and (min-width: 641px) {
  .page-footer nav:nth-of-type(2) {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px 2%;
  }
  .page-footer nav:nth-of-type(2) div {
    width: 49%;
  }
}
@media only screen and (max-width: 767px) {
  .page-footer nav:nth-of-type(2) h2 {
    padding: 20px 10px;
    border-bottom: 1px solid #6f6f6f;
    font-weight: bold;
    font-size: 100%;
    color: #808080;
  }
  .page-footer nav:nth-of-type(2) h2:empty {
    display: none;
  }
}
@media only screen and (max-width: 767px) and (min-width: 641px) {
  .page-footer nav:nth-of-type(2) h2:empty {
    display: block;
    font-size: 1.8rem;
  }
  .page-footer nav:nth-of-type(2) h2:empty::before {
    content: "　";
  }
}
@media only screen and (max-width: 767px) {
  .page-footer nav:nth-of-type(2) li {
    padding: 16px 0 16px 32px;
    border-bottom: 1px solid #6f6f6f;
  }
  .page-footer nav:nth-of-type(2) li span {
    font-size: 1.6rem;
  }
  .page-footer nav:nth-of-type(2) a {
    font-weight: 500;
    color: inherit;
    text-decoration: none;
  }
  .page-footer nav:nth-of-type(2) a:hover, .page-footer nav:nth-of-type(2) a:active {
    text-decoration: underline;
  }
  .page-footer nav:nth-of-type(2) div:nth-of-type(4) {
    margin-bottom: -32px;
    padding: 32px 0;
    text-align: center;
    font-size: 3.2rem;
    font-weight: 700;
  }
}
@media only screen and (max-width: 767px) and (min-width: 641px) {
  .page-footer nav:nth-of-type(2) div:nth-of-type(4) {
    padding: 0;
  }
}
@media only screen and (max-width: 767px) {
  .page-footer nav:nth-of-type(2) div:nth-of-type(4) h2 {
    border-bottom: none;
  }
  .page-footer nav:nth-of-type(2) div:nth-of-type(4) p > br {
    display: none;
  }
  .page-footer nav:nth-of-type(2) div:nth-of-type(4) span {
    display: block;
    margin-bottom: 24px;
    font-size: 1.6rem;
    font-weight: 500;
  }
  .page-footer hr {
    margin: 32px 0;
    height: 1px;
    border: none;
    background-color: #6f6f6f;
  }
  .page-footer > p {
    text-align: center;
  }
  .page-footer > p a {
    opacity: 1;
    transition: opacity 0.3s;
  }
  .page-footer > p a:hover, .page-footer > p a:active {
    opacity: 0.7;
  }
  .page-footer address {
    display: block;
    font-style: normal;
    text-align: center;
    font-size: 1.2rem;
  }
  .page-footer button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    align-items: center;
    width: 40px;
    aspect-ratio: 1;
    padding: 0;
    border: 3px solid #c0c0c0;
    border-radius: 50%;
    background-color: #0a52a9;
    font-family: inherit;
    font-size: 1.4rem;
    color: #3f3f3f;
    transition: background-color 0.3s;
  }
  .page-footer button:hover, .page-footer button:active {
    cursor: pointer;
  }
  .page-footer button::before {
    content: "";
    position: relative;
    transform: rotate(-45deg);
    margin: 5px 0 0;
    display: block;
    width: 10px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    aspect-ratio: 1;
  }
  .page-footer button span {
    display: none;
  }
  .page-footer button:hover, .page-footer button:active {
    opacity: 0.8;
  }
}
main .kv {
  margin-bottom: calc(8.3333333333 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  main .kv {
    margin-bottom: 100;
  }
}
@media only screen and (max-width: 767px) {
  main .kv {
    margin-bottom: calc(16 * var(--vw));
  }
}
main .kv .kv-in {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}
main .kv .slick-arrow {
  position: absolute;
  top: calc(50% - 25px);
  z-index: 5;
  text-indent: -9999px;
  background: #0a52a9;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}
main .kv .slick-arrow:hover {
  opacity: 0.7;
}
main .kv .slick-arrow::before {
  content: "";
  position: absolute;
  top: 18px;
  width: 10px;
  height: 10px;
  border-left: solid 3px #fff;
  border-top: solid 3px #fff;
}
main .kv .slick-prev {
  left: 30px;
}
main .kv .slick-prev::before {
  left: 20px;
  transform: rotate(-45deg);
}
main .kv .slick-next {
  right: 30px;
}
main .kv .slick-next::before {
  right: 20px;
  transform: rotate(135deg);
}
main .kv .slick-dots {
  position: absolute;
  bottom: 20px;
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 20px;
}
main .kv .slick-dots button {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #fff;
  font-size: 0;
}
main .kv .slick-dots .slick-active button {
  background: #0a52a9;
}
main .ttl {
  background: #D8EAF5;
}
main .ttl h1 {
  text-align: center;
  font-size: 5rem;
  padding: calc(2.5 * var(--vw));
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 767px) {
  main .ttl h1 {
    font-size: 3.4rem;
    padding: calc(5.3333333333 * var(--vw));
  }
}
main .sec01 .box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
main .sec01 .box:not(:last-of-type) {
  margin-bottom: calc(6.6666666667 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  main .sec01 .box:not(:last-of-type) {
    margin-bottom: 80;
  }
}
@media only screen and (max-width: 767px) {
  main .sec01 .box:not(:last-of-type) {
    margin-bottom: calc(10.6666666667 * var(--vw));
  }
}
main .sec01 .box .img_area,
main .sec01 .box .info_area {
  width: 47%;
}
main .sec01 .box h3 {
  font-size: 2.6rem;
  margin-bottom: calc(1.6666666667 * var(--vw));
  line-height: 1.4;
  position: relative;
  padding-left: 20px;
}
main .sec01 .box h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: 100%;
  background: #0a52a9;
}
@media only screen and (min-width: 1200px) {
  main .sec01 .box h3 {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 767px) {
  main .sec01 .box h3 {
    font-size: 1.8rem;
    margin-bottom: calc(2.6666666667 * var(--vw));
    padding-left: calc(2.6666666667 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  main .sec01 .box .img_area,
  main .sec01 .box .info_area {
    width: 100%;
  }
  main .sec01 .box .img_area {
    order: 1;
    margin-bottom: calc(1.6666666667 * var(--vw));
  }
}
@media only screen and (max-width: 767px) and (min-width: 1200px) {
  main .sec01 .box .img_area {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 767px) and (max-width: 767px) {
  main .sec01 .box .img_area {
    margin-bottom: calc(2.6666666667 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  main .sec01 .box .info_area {
    order: 2;
  }
}
main .sec02 .car_list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px 3.5%;
}
@media only screen and (max-width: 767px) {
  main .sec02 .car_list {
    gap: calc(6.6666666667 * var(--vw)) 0;
  }
}
main .sec02 .car_list li {
  width: 31%;
}
@media only screen and (max-width: 767px) {
  main .sec02 .car_list li {
    width: 100%;
  }
}
main .sec02 .car_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) {
  main .sec02 .car_list li h3 {
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 767px) {
  main .sec02 .car_list li h3 {
    font-size: 1.6rem;
    margin-bottom: calc(2.6666666667 * var(--vw));
  }
}
main .sec02 .car_list li .car-image {
  width: 100%;
  aspect-ratio: 1.4;
  overflow: hidden;
  margin-bottom: calc(1.6666666667 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  main .sec02 .car_list li .car-image {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 767px) {
  main .sec02 .car_list li .car-image {
    margin-bottom: calc(5.3333333333 * var(--vw));
  }
}
main .sec02 .car_list li .car-image img {
  height: 100%;
  object-fit: cover;
}
main .sec03 .text {
  margin: calc(2.3333333333 * var(--vw)) 0;
}
@media only screen and (max-width: 767px) {
  main .sec03 .text {
    margin: calc(5.3333333333 * var(--vw)) 0;
  }
}
main .sec03 iframe {
  width: 100%;
}
main .sec03 .panel {
  margin-bottom: calc(2.3333333333 * var(--vw));
}
@media only screen and (max-width: 767px) {
  main .sec03 .panel {
    margin-bottom: calc(5.3333333333 * var(--vw)) 0;
  }
}
main .sec03 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) {
  main .sec03 dl {
    padding-bottom: 28px;
    margin-bottom: 28px;
  }
}
@media only screen and (max-width: 767px) {
  main .sec03 dl {
    padding-bottom: calc(5.3333333333 * var(--vw));
    margin-bottom: calc(5.3333333333 * var(--vw));
  }
}
main .sec03 dl:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
}
main .sec03 dl dt {
  width: 15%;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  main .sec03 dl dt {
    margin-bottom: calc(1.3333333333 * var(--vw));
    width: 100%;
  }
}
main .sec03 dl dd {
  width: 80%;
}
@media only screen and (max-width: 767px) {
  main .sec03 dl dd {
    width: 100%;
  }
}
main .sec04 dl {
  margin-bottom: 20px;
  cursor: pointer;
}
main .sec04 dl dt, main .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) {
  main .sec04 dl dt, main .sec04 dl dd {
    padding: 20px 20px 20px 30px;
  }
}
@media only screen and (max-width: 767px) {
  main .sec04 dl dt, main .sec04 dl dd {
    padding: calc(4 * var(--vw)) calc(10.6666666667 * var(--vw)) calc(4 * var(--vw)) calc(4 * var(--vw));
  }
}
main .sec04 dl dt {
  background: #fff;
  position: relative;
  border: solid 1px #0a52a9;
}
main .sec04 dl dt:after {
  content: "+";
  display: block;
  position: absolute;
  font-size: 3.2rem;
  font-weight: 100;
  right: calc(2.5 * var(--vw));
  top: calc(1.6666666667 * var(--vw));
  line-height: 1;
  color: #0a52a9;
  transition: 0.2s;
}
@media only screen and (min-width: 1200px) {
  main .sec04 dl dt:after {
    right: 30px;
    top: 20px;
  }
}
@media only screen and (max-width: 767px) {
  main .sec04 dl dt:after {
    right: calc(5 * var(--vw));
    top: calc(4.1666666667 * var(--vw));
    font-size: 2.4rem;
  }
}
main .sec04 dl dt.active:after {
  top: calc(1.6666666667 * var(--vw));
  transform: rotate(45deg);
}
@media only screen and (min-width: 1200px) {
  main .sec04 dl dt.active:after {
    top: 20px;
  }
}
@media only screen and (max-width: 767px) {
  main .sec04 dl dt.active:after {
    top: calc(4.2666666667 * var(--vw));
  }
}
main .sec04 dl dd {
  display: none;
}
@media only screen and (max-width: 767px) {
  main .sec04 dl dd {
    padding: calc(4 * var(--vw)) 0 calc(4 * var(--vw)) calc(4 * var(--vw));
  }
}
main .sec06 .sec_in {
  width: calc(75 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  main .sec06 .sec_in {
    width: 900px;
  }
}
@media only screen and (max-width: 767px) {
  main .sec06 .sec_in {
    width: 100%;
  }
}
main .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) {
  main .sec06 .input_area dl {
    padding-bottom: 30px;
  }
}
@media only screen and (max-width: 767px) {
  main .sec06 .input_area dl {
    padding-bottom: calc(5.3333333333 * var(--vw));
  }
}
main .sec06 .input_area dl:not(:last-of-type) {
  margin-bottom: calc(2.5 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  main .sec06 .input_area dl:not(:last-of-type) {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 767px) {
  main .sec06 .input_area dl:not(:last-of-type) {
    margin-bottom: calc(5.3333333333 * var(--vw));
  }
}
main .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) {
  main .sec06 .input_area dl dt {
    width: 220px;
  }
}
@media only screen and (max-width: 767px) {
  main .sec06 .input_area dl dt {
    width: auto;
    margin-bottom: calc(2.6666666667 * var(--vw));
  }
}
main .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: #0a52a9;
}
@media only screen and (min-width: 1200px) {
  main .sec06 .input_area dl dt.required::before {
    height: 25px;
    top: calc(50% - 12.5px);
  }
}
@media only screen and (max-width: 767px) {
  main .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));
  }
}
main .sec06 .input_area dl dd {
  width: calc(100% - 18.3333333333 * var(--vw) - 5 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  main .sec06 .input_area dl dd {
    width: calc(100% - 220px - 60px);
  }
}
@media only screen and (max-width: 767px) {
  main .sec06 .input_area dl dd {
    width: 100%;
  }
}
main .sec06 .input_area input[type=text], main .sec06 .input_area input[type=email], main .sec06 .input_area input[type=tel], main .sec06 .input_area input[type=number], main .sec06 .input_area input[name=zip], main .sec06 .input_area input[name=address] {
  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) {
  main .sec06 .input_area input[type=text], main .sec06 .input_area input[type=email], main .sec06 .input_area input[type=tel], main .sec06 .input_area input[type=number], main .sec06 .input_area input[name=zip], main .sec06 .input_area input[name=address] {
    height: 50px;
    line-height: 50px;
    padding: 0 15px;
  }
}
@media only screen and (max-width: 767px) {
  main .sec06 .input_area input[type=text], main .sec06 .input_area input[type=email], main .sec06 .input_area input[type=tel], main .sec06 .input_area input[type=number], main .sec06 .input_area input[name=zip], main .sec06 .input_area input[name=address] {
    height: calc(12 * var(--vw));
    line-height: calc(12 * var(--vw));
    padding: 0 calc(4 * var(--vw));
  }
}
main .sec06 .input_area input[name=zip] {
  width: 30%;
  margin-right: 4%;
}
@media only screen and (max-width: 767px) {
  main .sec06 .input_area input[name=zip] {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
}
main .sec06 .input_area input[name=address] {
  width: 65%;
}
@media only screen and (max-width: 767px) {
  main .sec06 .input_area input[name=address] {
    width: 100%;
  }
}
main .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;
}
main .sec06 .input_area textarea:focus {
  outline: 2px #0a52a9 solid;
}
@media only screen and (min-width: 1200px) {
  main .sec06 .input_area textarea {
    padding: 15px;
  }
}
@media only screen and (max-width: 767px) {
  main .sec06 .input_area textarea {
    padding: calc(4 * var(--vw));
  }
}
main .sec06 .input_area input,
main .sec06 .input_area textarea {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}
main .sec06 .input_area input::placeholder,
main .sec06 .input_area textarea::placeholder {
  color: #bbb;
  font-weight: normal;
  font-size: 1.6rem;
}
@media only screen and (max-width: 767px) {
  main .sec06 .input_area input::placeholder,
  main .sec06 .input_area textarea::placeholder {
    font-size: 1.3rem;
  }
}
main .sec06 .input_area input:focus,
main .sec06 .input_area textarea:focus {
  outline: 1px #0a52a9 solid;
}
main .sec06 .input_area .select_box {
  width: auto;
  background: #fff;
  border: 1px solid #ccc;
  overflow: hidden;
  text-align: center;
  position: relative;
}
main .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;
}
main .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) {
  main .sec06 .input_area .select_box select {
    height: 50px;
    line-height: 54px;
    padding: 0 38px 0 20px;
  }
}
@media only screen and (max-width: 767px) {
  main .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;
  }
}
main .sec06 .input_area .select_box select::-ms-expand {
  display: none;
}
main .sec06 .input_area ::placeholder {
  color: #bbb;
  font-weight: normal;
  font-size: 1.6rem;
}
@media only screen and (max-width: 767px) {
  main .sec06 .input_area ::placeholder {
    font-size: 1.3rem;
  }
}
main .sec06 .input_area :focus {
  outline: 1px #0a52a9 solid;
}
main .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) {
  main .sec06 .input_area .flex-list {
    gap: 15px 20px;
  }
}
@media only screen and (max-width: 767px) {
  main .sec06 .input_area .flex-list {
    gap: calc(2.6666666667 * var(--vw)) calc(4 * var(--vw));
  }
}
main .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) {
  main .sec06 .input_area .radio label {
    padding-left: 26px;
  }
}
@media only screen and (max-width: 767px) {
  main .sec06 .input_area .radio label {
    padding-left: calc(6.6666666667 * var(--vw));
  }
}
main .sec06 .input_area .radio label::before, main .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) {
  main .sec06 .input_area .radio label::before, main .sec06 .input_area .radio label::after {
    top: 11px;
  }
}
@media only screen and (max-width: 767px) {
  main .sec06 .input_area .radio label::before, main .sec06 .input_area .radio label::after {
    top: calc(2.2666666667 * var(--vw));
  }
}
main .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) {
  main .sec06 .input_area .radio label::before {
    width: 18px;
    height: 18px;
  }
}
@media only screen and (max-width: 767px) {
  main .sec06 .input_area .radio label::before {
    width: calc(4 * var(--vw));
    height: calc(4 * var(--vw));
  }
}
main .sec06 .input_area .radio label::after {
  background-color: #0a52a9;
  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) {
  main .sec06 .input_area .radio label::after {
    width: 12px;
    height: 12px;
    left: 4px;
  }
}
@media only screen and (max-width: 767px) {
  main .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);
  }
}
main .sec06 .input_area .radio input:checked + label::after {
  opacity: 1;
}
main .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;
}
main .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) {
  main .sec06 .check-box label {
    padding-left: 24px;
  }
}
@media only screen and (max-width: 767px) {
  main .sec06 .check-box label {
    padding-left: calc(6.1333333333 * var(--vw));
  }
}
main .sec06 .check-box__input {
  margin: 0;
  width: 0;
  opacity: 0;
}
main .sec06 .check-box__input:checked + .check-box__dummy {
  background: #0a52a9;
  border: 1px solid #0a52a9;
}
main .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;
}
main .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) {
  main .sec06 .check-box__dummy {
    width: 20px;
    height: 20px;
  }
}
@media only screen and (max-width: 767px) {
  main .sec06 .check-box__dummy {
    width: calc(4.5333333333 * var(--vw));
    height: calc(4.5333333333 * var(--vw));
  }
}
main .sec06 .check-box__txt {
  margin-left: calc(0.4166666667 * var(--vw));
  display: block;
  line-height: 1.4;
}
@media only screen and (min-width: 1200px) {
  main .sec06 .check-box__txt {
    margin-left: 5px;
  }
}
@media only screen and (max-width: 767px) {
  main .sec06 .check-box__txt {
    margin-left: calc(0.6666666667 * var(--vw));
  }
}
main .sec06 .half {
  width: 50%;
}
@media only screen and (max-width: 767px) {
  main .sec06 .half {
    width: 100%;
  }
}
main .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) {
  main .sec06 .privacy {
    height: 300px;
    padding: 40px;
    margin: 65px 0 40px;
  }
}
@media only screen and (max-width: 767px) {
  main .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));
  }
}
main .sec06 .privacy::-webkit-scrollbar {
  width: 7px;
}
main .sec06 .privacy::-webkit-scrollbar-track {
  background-color: #f2f2f2;
}
main .sec06 .privacy::-webkit-scrollbar-thumb {
  background-color: #0a52a9;
  border-radius: 50px;
}
main .sec06 .privacy h4 {
  font-size: 22px;
  margin-bottom: 15px;
}
main .sec06 .privacy dt {
  font-weight: bold;
  margin-top: 1em;
}
main .sec06 .privacy dd {
  margin-top: 0.5em;
}
main .sec06 .privacy .establishment {
  text-align: right;
  margin-top: 50px;
}
main .sec06 .agree_check {
  text-align: center;
  margin: 0 auto;
  width: max-content;
}
main .sec06 .btn {
  margin: calc(5 * var(--vw)) auto 0;
  color: #fff;
}
@media only screen and (min-width: 1200px) {
  main .sec06 .btn {
    margin: 60px auto 0;
  }
}
@media only screen and (max-width: 767px) {
  main .sec06 .btn {
    margin: calc(10.6666666667 * var(--vw)) auto 0;
  }
}
main .sec06 .btn input[type=submit] {
  color: #fff;
  width: 100%;
  height: 100%;
}
main .sec06 .btn:hover input[type=submit] {
  color: #333;
}
main .news_list {
  display: flex;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  main .news_list {
    flex-wrap: wrap;
    gap: 30px 2%;
  }
}
@media only screen and (max-width: 767px) {
  main .news_list {
    flex-direction: column;
    row-gap: 20px;
  }
}
main .news_list li {
  background-color: #fff;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
}
@media only screen and (min-width: 768px) {
  main .news_list li {
    width: 32%;
    padding: 20px;
  }
}
@media only screen and (max-width: 767px) {
  main .news_list li {
    width: 100%;
    padding: 10px;
  }
}
main .news_list li figure {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}
main .news_list li figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
main .news_list li figure + time {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #555;
}
@media only screen and (max-width: 767px) {
  main .news_list li figure + time {
    margin-top: 10px;
    padding-top: 10px;
  }
}
main .news_list li time {
  display: block;
  line-height: 1.4;
  font-weight: bold;
}
main .news_sec {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  main .news_sec {
    flex-direction: column;
    row-gap: calc(5.3333333333 * var(--vw));
  }
}
main .news_main {
  width: 70%;
}
@media only screen and (max-width: 767px) {
  main .news_main {
    width: 100%;
  }
}
main .news_main figure {
  margin-bottom: calc(2.5 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  main .news_main figure {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 767px) {
  main .news_main figure {
    margin-bottom: calc(4 * var(--vw));
  }
}
main .news_content > *:not(:last-child) {
  margin-bottom: calc(2.5 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  main .news_content > *:not(:last-child) {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 767px) {
  main .news_content > *:not(:last-child) {
    margin-bottom: calc(4 * var(--vw));
  }
}
main .news_content ul {
  display: block;
  padding-left: 2.4rem;
  list-style-type: disc;
}
main .news_content ul ul {
  list-style-type: circle;
}
main .news_content ul ul ul {
  list-style-type: square;
}
main .news_content ul li {
  width: 100%;
}
main .news_content ol {
  padding-left: 2.4rem;
  list-style-type: decimal;
}
main .news_content a {
  text-decoration: underline;
}
main .news_content a:hover, main .news_content a:active {
  text-decoration: none;
}
main .news_content blockquote {
  position: relative;
  padding: calc(1.6666666667 * var(--vw));
  border-radius: calc(0.8333333333 * var(--vw));
  background-color: #ccc;
  color: inherit;
}
@media only screen and (min-width: 1200px) {
  main .news_content blockquote {
    padding: 20px;
    border-radius: 10px;
  }
}
@media only screen and (max-width: 767px) {
  main .news_content blockquote {
    padding: calc(2.6666666667 * var(--vw));
    border-radius: calc(1.3333333333 * var(--vw));
  }
}
main .news_content blockquote::before {
  content: "引用:";
  position: absolute;
  top: 0;
  right: calc(1.6666666667 * var(--vw));
  transform: translateY(-50%);
  font-weight: 700;
}
@media only screen and (min-width: 1200px) {
  main .news_content blockquote::before {
    right: 20px;
  }
}
@media only screen and (max-width: 767px) {
  main .news_content blockquote::before {
    right: calc(2.6666666667 * var(--vw));
  }
}
main .news_content blockquote > *:not(:last-child) {
  margin-bottom: calc(1.6666666667 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  main .news_content blockquote > *:not(:last-child) {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 767px) {
  main .news_content blockquote > *:not(:last-child) {
    margin-bottom: calc(2.6666666667 * var(--vw));
  }
}
main .news_header {
  margin-bottom: calc(3.3333333333 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  main .news_header {
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 767px) {
  main .news_header {
    margin-bottom: calc(5.3333333333 * var(--vw));
  }
}
main .news_header h2 {
  margin-bottom: calc(0.8333333333 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  main .news_header h2 {
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 767px) {
  main .news_header h2 {
    margin-bottom: calc(1.3333333333 * var(--vw));
  }
}
main .news_side {
  width: 25%;
}
@media only screen and (max-width: 767px) {
  main .news_side {
    width: 100%;
  }
}
main .news_side h3 {
  margin-bottom: calc(3.3333333333 * var(--vw));
  letter-spacing: 0.04em;
  font-size: 3.2rem;
}
@media only screen and (min-width: 1200px) {
  main .news_side h3 {
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 767px) {
  main .news_side h3 {
    margin-bottom: calc(5.3333333333 * var(--vw));
    font-size: 2.4rem;
  }
}
main .news_side h3::before {
  width: 100px;
}
main .news_side h3::after {
  left: 100px;
  width: calc(100% - 100px);
}
main .news_side ul {
  flex-direction: column;
  padding-left: 2.4rem;
  list-style-type: disc;
}
main .news_side li {
  width: 100% !important;
}
main .news_side li a {
  display: inline;
}
main .news_side li a:hover, main .news_side li a:active {
  text-decoration: underline;
}
main .news_pagenav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: calc(0.8333333333 * var(--vw));
  margin-top: calc(3.3333333333 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  main .news_pagenav {
    gap: 10px;
    margin-top: 40px;
  }
}
@media only screen and (max-width: 767px) {
  main .news_pagenav {
    gap: calc(1.3333333333 * var(--vw));
    margin-top: calc(5.3333333333 * var(--vw));
  }
}
main .news_pagenav a {
  min-width: 4rem;
  padding: 0.7rem;
  border: 1px solid #0a52a9;
  background-color: #0a52a9;
  line-height: 1.5;
  text-align: center;
  color: #fff;
  transition: background-color 0.5s;
}
@media only screen and (max-width: 767px) {
  main .news_pagenav a {
    min-width: 3rem;
    padding: 0.4rem;
    line-height: 2rem;
  }
}
main .news_pagenav a.current, main .news_pagenav a:hover, main .news_pagenav a:active {
  background-color: #fff;
  color: #0a52a9;
}

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