@charset "UTF-8";
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[type=text], input[type=tel], input[type=email], input[type=url], input[type=password], textarea, a {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
  list-style-type: none;
}

table {
  border-collapse: collapse;
}

@media screen and (max-width: 480px) {
  body {
    -webkit-text-size-adjust: none;
  }
}
html {
  font-size: 16px;
  letter-spacing: 0;
}
html.stop {
  overflow: hidden;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  margin: 0;
  font-size: 1rem;
  color: #000;
}

main {
  display: block;
}

.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 1000;
}

.container {
  max-width: calc(1200px + 20px * 2);
  width: 100%;
  margin: auto;
  padding: 0 20px;
}

a.btn {
  text-decoration: none;
  transition: opacity 0.3s;
}
@media screen and (min-width: 769px) {
  a.btn:hover {
    opacity: 0.7;
  }
}

@media screen and (min-width: 769px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
  }
}
.h_title {
  text-align: center;
  font-weight: 700;
  margin-bottom: 50px;
}
@media screen and (max-width: 1240px) {
  .h_title {
    margin-bottom: 35px;
  }
}
@media screen and (max-width: 1240px) {
  .h_title img {
    transform: scale(0.9);
  }
}
@media screen and (max-width: 768px) {
  .h_title img {
    transform: none;
  }
}
.h_title span {
  display: block;
  font-size: 3.125rem;
  margin-top: 40px;
}
@media screen and (max-width: 1240px) {
  .h_title span {
    margin-top: 20px;
    font-size: 2.25rem;
  }
}
@media screen and (max-width: 768px) {
  .h_title span {
    font-size: 1.5rem;
  }
}

p {
  text-align: justify;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
}

@media screen and (max-width: 890px) {
  br.pc_pre_md {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  br.pc_md {
    display: none;
  }
}
@media screen and (max-width: 600px) {
  br.pc_pre_sm {
    display: none;
  }
}
br.md {
  display: none;
}
@media screen and (max-width: 768px) {
  br.md {
    display: block;
  }
}
br.pre_sm {
  display: none;
}
@media screen and (max-width: 600px) {
  br.pre_sm {
    display: block;
  }
}
br.sm {
  display: none;
}
@media screen and (max-width: 400px) {
  br.sm {
    display: block;
  }
}
br.xs {
  display: none;
}
@media screen and (max-width: 360px) {
  br.xs {
    display: block;
  }
}

.alignleft {
  display: block;
  float: left;
  margin-right: 10px;
  margin-bottom: 1em;
}

.aligncenter {
  display: block;
  margin: 0 auto;
}

.alignright {
  display: block;
  float: right;
  margin-left: 10px;
  margin-bottom: 1em;
}

.clear {
  clear: both;
}

.space1em {
  clear: both;
  height: 1em;
}

.space2em {
  clear: both;
  height: 2em;
}

input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
}
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}
input[type=submit]::focus,
input[type=button]::focus {
  outline-offset: -2px;
}

ol.list li,
ul.list li {
  line-height: 1.6;
  position: relative;
  padding-left: 1.1em;
}
ol.list li:before,
ul.list li:before {
  position: absolute;
  left: 0;
}
ol.list.num,
ul.list.num {
  counter-reset: num_cnt;
}
ol.list.num > li,
ul.list.num > li {
  counter-increment: num_cnt;
  padding-left: 1.1em;
}
ol.list.num > li:before,
ul.list.num > li:before {
  content: counter(num_cnt);
}
ol.list.num_dot,
ul.list.num_dot {
  counter-reset: num_dot_cnt;
}
ol.list.num_dot > li,
ul.list.num_dot > li {
  counter-increment: num_dot_cnt;
  padding-left: 1.3em;
}
ol.list.num_dot > li:before,
ul.list.num_dot > li:before {
  content: counter(num_dot_cnt) "．";
}
ol.list.num_colon,
ul.list.num_colon {
  counter-reset: num_colon_cnt;
}
ol.list.num_colon > li,
ul.list.num_colon > li {
  counter-increment: num_colon_cnt;
  padding-left: 1.6em;
}
ol.list.num_colon > li:before,
ul.list.num_colon > li:before {
  content: counter(num_colon_cnt) "：";
}
ol.list.num_paren,
ul.list.num_paren {
  counter-reset: paren_cnt;
}
ol.list.num_paren > li,
ul.list.num_paren > li {
  counter-increment: paren_cnt;
  padding-left: 1.3em;
}
ol.list.num_paren > li:before,
ul.list.num_paren > li:before {
  content: "(" counter(paren_cnt) ")";
}
ol.list.num_circle,
ul.list.num_circle {
  counter-reset: circle_cnt;
}
ol.list.num_circle > li,
ul.list.num_circle > li {
  counter-increment: circle_cnt;
  padding-left: 1.4em;
}
ol.list.num_circle > li:nth-child(1):before,
ul.list.num_circle > li:nth-child(1):before {
  content: "①";
}
ol.list.num_circle > li:nth-child(2):before,
ul.list.num_circle > li:nth-child(2):before {
  content: "②";
}
ol.list.num_circle > li:nth-child(3):before,
ul.list.num_circle > li:nth-child(3):before {
  content: "③";
}
ol.list.num_circle > li:nth-child(4):before,
ul.list.num_circle > li:nth-child(4):before {
  content: "④";
}
ol.list.num_circle > li:nth-child(5):before,
ul.list.num_circle > li:nth-child(5):before {
  content: "⑤";
}
ol.list.num_circle > li:nth-child(6):before,
ul.list.num_circle > li:nth-child(6):before {
  content: "⑥";
}
ol.list.num_circle > li:nth-child(7):before,
ul.list.num_circle > li:nth-child(7):before {
  content: "⑦";
}
ol.list.num_circle > li:nth-child(8):before,
ul.list.num_circle > li:nth-child(8):before {
  content: "⑧";
}
ol.list.num_circle > li:nth-child(9):before,
ul.list.num_circle > li:nth-child(9):before {
  content: "⑨";
}
ol.list.num_circle > li:nth-child(10):before,
ul.list.num_circle > li:nth-child(10):before {
  content: "⑩";
}
ol.list.num_circle > li:nth-child(11):before,
ul.list.num_circle > li:nth-child(11):before {
  content: "⑪";
}
ol.list.num_circle > li:nth-child(12):before,
ul.list.num_circle > li:nth-child(12):before {
  content: "⑫";
}
ol.list.num_circle > li:nth-child(13):before,
ul.list.num_circle > li:nth-child(13):before {
  content: "⑬";
}
ol.list.num_circle > li:nth-child(14):before,
ul.list.num_circle > li:nth-child(14):before {
  content: "⑭";
}
ol.list.num_circle > li:nth-child(15):before,
ul.list.num_circle > li:nth-child(15):before {
  content: "⑮";
}
ol.list.num_circle > li:nth-child(16):before,
ul.list.num_circle > li:nth-child(16):before {
  content: "⑯";
}
ol.list.num_circle > li:nth-child(17):before,
ul.list.num_circle > li:nth-child(17):before {
  content: "⑰";
}
ol.list.num_circle > li:nth-child(18):before,
ul.list.num_circle > li:nth-child(18):before {
  content: "⑱";
}
ol.list.num_circle > li:nth-child(19):before,
ul.list.num_circle > li:nth-child(19):before {
  content: "⑲";
}
ol.list.num_circle > li:nth-child(20):before,
ul.list.num_circle > li:nth-child(20):before {
  content: "⑳";
}
ol.list.square > li:before,
ul.list.square > li:before {
  content: "◇";
}
ol.list.line > li:before,
ul.list.line > li:before {
  content: "－";
}
ol.list.dot > li:before,
ul.list.dot > li:before {
  content: "・";
}
ol.list.kome > li:before,
ul.list.kome > li:before {
  content: "※";
}

.txtL {
  text-align: left;
}

.txtC {
  text-align: center;
}

.txtR {
  text-align: right;
}

.mt10 {
  margin-top: 10px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.mt60 {
  margin-top: 60px !important;
}

.mt70 {
  margin-top: 70px !important;
}

.mt80 {
  margin-top: 80px !important;
}

.mt90 {
  margin-top: 90px !important;
}

.mt100 {
  margin-top: 100px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}

.mb70 {
  margin-bottom: 70px !important;
}

.mb80 {
  margin-bottom: 80px !important;
}

.mb90 {
  margin-bottom: 90px !important;
}

.mb100 {
  margin-bottom: 100px !important;
}

.pt10 {
  padding-top: 10px !important;
}

.pt20 {
  padding-top: 20px !important;
}

.pt30 {
  padding-top: 30px !important;
}

.pt40 {
  padding-top: 40px !important;
}

.pt50 {
  padding-top: 50px !important;
}

.pt60 {
  padding-top: 60px !important;
}

.pt70 {
  padding-top: 70px !important;
}

.pt80 {
  padding-top: 80px !important;
}

.pt90 {
  padding-top: 90px !important;
}

.pt100 {
  padding-top: 100px !important;
}

.pb10 {
  padding-bottom: 10px !important;
}

.pb20 {
  padding-bottom: 20px !important;
}

.pb30 {
  padding-bottom: 30px !important;
}

.pb40 {
  padding-bottom: 40px !important;
}

.pb50 {
  padding-bottom: 50px !important;
}

.pb60 {
  padding-bottom: 60px !important;
}

.pb70 {
  padding-bottom: 70px !important;
}

.pb80 {
  padding-bottom: 80px !important;
}

.pb90 {
  padding-bottom: 90px !important;
}

.pb100 {
  padding-bottom: 100px !important;
}

.frame_wrap {
  position: relative;
  padding-bottom: 56.25%; /*縦横比*/
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}

.frame_wrap .map_canvas,
.frame_wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.fb_iframe_widget,
.fb_iframe_widget span,
.fb_iframe_widget iframe[style] {
  width: 100% !important;
  max-width: 498px !important;
  margin: auto;
}

.anim_init,
.anim_init_r,
.anim_init_b {
  visibility: hidden;
  backface-visibility: hidden;
}

.anim_common, .fade_in_center_anim, .fade_in_left_anim, .fade_in_right_anim, .fade_in_bottom_anim, .fade_in_top_anim {
  -webkit-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 0.6s !important;
  -ms-animation-duration: 0.6s !important;
  animation-duration: 0.6 !important;
  visibility: visible !important;
}

.fade_in_top_anim {
  -webkit-animation-name: fade_in_top_anim;
  animation-name: fade_in_top_anim;
}

@-webkit-keyframes fade_in_top_anim {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fade_in_top_anim {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade_in_bottom_anim {
  -webkit-animation-name: fade_in_bottom_anim;
  animation-name: fade_in_bottom_anim;
}

@-webkit-keyframes fade_in_bottom_anim {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fade_in_bottom_anim {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade_in_right_anim {
  -webkit-animation-name: fade_in_right_anim;
  animation-name: fade_in_right_anim;
}

@-webkit-keyframes fade_in_right_anim {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fade_in_right_anim {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fade_in_left_anim {
  -webkit-animation-name: fade_in_left_anim;
  animation-name: fade_in_left_anim;
}

@-webkit-keyframes fade_in_left_anim {
  0% {
    opacity: 0;
    transform: translateX(-40px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fade_in_left_anim {
  0% {
    opacity: 0;
    transform: translateX(-40px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fade_in_center_anim {
  -webkit-animation-name: fade_in_center_anim;
  animation-name: fade_in_center_anim;
}
.fade_in_center_anim.late {
  -webkit-animation-duration: 2s !important;
  -ms-animation-duration: 2s !important;
  animation-duration: 2 !important;
}

@-webkit-keyframes fade_in_center_anim {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade_in_center_anim {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  display: flex;
  align-items: center;
  padding-top: 30px;
  padding-left: 30px;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  header {
    padding-top: 0;
    padding-left: 10px;
    height: 80px;
  }
}
header > * {
  pointer-events: all;
}
header.pre_fixed {
  opacity: 0;
  pointer-events: none;
}
header.pre_fixed > * {
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  header.pre_fixed {
    background: #fdd23c;
    box-shadow: 0 0 5px #aaa;
  }
}
header.fixed {
  position: fixed;
  transition: opacity 0.3s;
  opacity: 1;
}
header.fixed > * {
  pointer-events: all;
}
@media screen and (min-width: 769px) {
  header.fixed .logo_wrap {
    box-shadow: 0 0 5px #aaa;
    padding: 10px;
    background: #fff;
    border-radius: 10px;
  }
  header.fixed .logo_wrap img {
    filter: drop-shadow(0 0 1px #aaa);
  }
}
header .menu_btn_wrap {
  display: none;
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  margin: auto;
  width: 25px;
  height: 17px;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  header .menu_btn_wrap {
    display: block;
  }
}
header .menu_btn_wrap .menu_btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
  text-decoration: none;
}
header .menu_btn_wrap .menu_btn .lines {
  position: relative;
  height: 100%;
  width: 100%;
}
header .menu_btn_wrap .menu_btn .lines span {
  height: 1px;
  width: 100%;
  background: #000;
  display: block;
  position: absolute;
  margin: auto;
  right: 0;
  left: 0;
  transform-origin: 50% 50%;
  transition: all, 0.5s;
}
header .menu_btn_wrap .menu_btn .lines span:nth-child(1) {
  top: 0;
}
header .menu_btn_wrap .menu_btn .lines span:nth-child(2) {
  top: 0;
  bottom: 0;
}
header .menu_btn_wrap .menu_btn .lines span:nth-child(3) {
  bottom: 0;
}
header .menu_btn_wrap .menu_btn .lines.open span {
  top: 0;
  bottom: 0;
}
header .menu_btn_wrap .menu_btn .lines.open span:nth-child(1) {
  transform: rotate(-135deg);
}
header .menu_btn_wrap .menu_btn .lines.open span:nth-child(2) {
  width: 0;
}
header .menu_btn_wrap .menu_btn .lines.open span:nth-child(3) {
  transform: rotate(135deg);
}
header .logo_wrap {
  display: flex;
  align-items: center;
}
header .logo {
  display: block;
  margin-right: 10px;
  width: 120px;
  height: 120px;
}
@media screen and (max-width: 768px) {
  header .logo {
    width: 60px;
    height: 60px;
    position: relative;
    z-index: 10;
  }
}
@media screen and (max-width: 768px) {
  header nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: #fdd23c;
    opacity: 0;
    pointer-events: none;
    padding-top: 80px;
  }
  header nav.sp {
    transition: opacity 0.3s;
  }
  header nav.open {
    opacity: 1;
    pointer-events: all;
  }
}
@media screen and (max-width: 768px) {
  header nav ul {
    padding: 0 20px;
  }
}
header nav ul li {
  display: flex;
  align-items: center;
  margin-top: 10px;
}
header nav ul li:first-child {
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  header nav ul li {
    margin-top: 0;
    display: block;
    border-bottom: 1px solid #000;
  }
  header nav ul li:last-child {
    border-bottom: 0;
  }
}
header nav ul li:before {
  content: "";
  width: 5px;
  height: 5px;
  background: url(../images/arrow.svg) no-repeat center/contain;
  margin-right: 5px;
  position: relative;
  top: 1px;
}
@media screen and (max-width: 768px) {
  header nav ul li:before {
    content: none;
  }
}
header nav ul li.sp {
  display: none;
}
@media screen and (max-width: 768px) {
  header nav ul li.sp {
    display: block;
  }
}
header nav ul li a {
  color: #000;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  header nav ul li a {
    padding: 25px 0;
    text-align: center;
    display: block;
    font-weight: 500;
    font-size: 1.125rem;
  }
}
header nav ul li a.sns {
  max-width: 300px;
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: #fff;
  margin: 30px auto;
  border-radius: 30px;
}
header nav ul li a.sns:after {
  content: "";
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  margin: auto;
  width: 32px;
  height: 5px;
  background: url(../images/arrow02.png) no-repeat center/contain;
}
header nav ul li a.sns img {
  margin-right: 10px;
}

footer .to_top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  display: none;
}
@media screen and (min-width: 769px) {
  footer .to_top:hover img {
    opacity: 0.7;
  }
}
@media screen and (max-width: 768px) {
  footer .to_top {
    right: 20px;
  }
}
footer .to_top img {
  transition: opacity 0.3s;
}
footer .copyright {
  text-align: center;
  padding: 20px 0;
  font-weight: 500;
}

.top_main_visual {
  height: max(var(--vh) * 100, 768px);
  background: url(../images/top_main_visual_bg.jpg) no-repeat center/cover;
  padding-top: max(var(--vh) * 18.5, 180px);
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .top_main_visual {
    height: 450px;
    padding-top: 155px;
    background-position: calc(50% - 7px) calc(50% + 38px);
    background-size: auto 531px;
  }
}
.top_main_visual:after {
  content: "";
  display: block;
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: max(var(--vh) * 30, 230px);
  background: url(../images/top_main_visual_image02.svg) no-repeat center top/auto 100%;
}
@media screen and (max-width: 768px) {
  .top_main_visual:after {
    height: 90px;
    background-position: center bottom;
    background-size: contain;
  }
}
.top_main_visual h1 {
  margin-bottom: max(var(--vh) * 4.5, 35px);
}
@media screen and (max-width: 768px) {
  .top_main_visual h1 {
    margin-bottom: 30px;
  }
}
.top_main_visual h1 img {
  display: block;
  margin: auto;
}
.top_main_visual h1 img.img01 {
  margin-bottom: max(var(--vh) * 5.6, 43px);
  height: max(var(--vh) * 8.33, 64px);
}
@media screen and (max-width: 768px) {
  .top_main_visual h1 img.img01 {
    margin-bottom: 13px;
    height: auto;
  }
}
.top_main_visual h1 img.img02 {
  height: max(var(--vh) * 3.33, 26px);
}
@media screen and (max-width: 768px) {
  .top_main_visual h1 img.img02 {
    height: auto;
  }
}
.top_main_visual .image {
  text-align: center;
}
.top_main_visual .image img {
  height: max(var(--vh) * 24, 165px);
}
@media screen and (max-width: 768px) {
  .top_main_visual .image img {
    height: 87px;
  }
}

@media screen and (max-width: 768px) {
  .sec_top.sec01 {
    padding-top: 55px;
  }
}
.sec_top.sec01 .content {
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .sec_top.sec01 .content {
    margin-bottom: 75px;
  }
}
.sec_top.sec01 .image_text {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .sec_top.sec01 .image_text {
    flex-direction: column;
  }
}
.sec_top.sec01 .image_text > div:first-child {
  margin-right: 50px;
}
@media screen and (max-width: 1040px) {
  .sec_top.sec01 .image_text > div:first-child {
    margin-right: 30px;
  }
}
@media screen and (max-width: 768px) {
  .sec_top.sec01 .image_text > div:first-child {
    margin-right: 0;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1240px) {
  .sec_top.sec01 .image_text .image {
    max-width: 300px;
  }
}
@media screen and (max-width: 1040px) {
  .sec_top.sec01 .image_text .image {
    max-width: 215px;
  }
}
@media screen and (max-width: 768px) {
  .sec_top.sec01 .image_text .image {
    max-width: 320px;
  }
}
.sec_top.sec01 .image_text .text {
  flex: 1;
}
@media screen and (max-width: 1240px) {
  .sec_top.sec01 .image_text .text {
    flex: none;
  }
}
@media screen and (max-width: 768px) {
  .sec_top.sec01 .image_text .text {
    order: 2;
  }
}
.sec_top.sec01 .image_text .text p {
  font-size: 1.875rem;
  font-weight: 500;
}
@media screen and (max-width: 1240px) {
  .sec_top.sec01 .image_text .text p {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 1040px) {
  .sec_top.sec01 .image_text .text p {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 768px) {
  .sec_top.sec01 .image_text .text p {
    font-size: 1rem;
  }
}
.sec_top.sec02 {
  padding: 100px 0 40px;
  background: #f6f7f7;
}
@media screen and (max-width: 768px) {
  .sec_top.sec02 {
    padding: 75px 0 20px;
  }
}
.sec_top.sec02 h2 {
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .sec_top.sec02 h2 {
    margin-bottom: 60px;
  }
}
.sec_top.sec02 ol {
  counter-reset: cnt;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .sec_top.sec02 ol {
    max-width: 430px;
    margin: auto;
  }
}
.sec_top.sec02 ol li {
  counter-increment: cnt;
  position: relative;
  width: calc((100% - 81px) / 4);
  margin-left: 27px;
  margin-bottom: 50px;
}
.sec_top.sec02 ol li:nth-child(4n+1) {
  margin-left: 0;
}
@media screen and (max-width: 768px) {
  .sec_top.sec02 ol li {
    width: calc((100% - 20px) / 2);
    margin-left: 20px;
    margin-bottom: 30px;
  }
  .sec_top.sec02 ol li:nth-child(2n+1) {
    margin-left: 0;
  }
}
.sec_top.sec02 ol li:before {
  content: counter(cnt);
  font-family: "Train One", sans-serif;
  font-style: italic;
  position: absolute;
  top: -26px;
  left: 15px;
  font-size: 3.75rem;
  color: #fdd23c;
}
@media screen and (max-width: 1040px) {
  .sec_top.sec02 ol li:before {
    font-size: 2.875rem;
  }
}
@media screen and (max-width: 768px) {
  .sec_top.sec02 ol li:before {
    font-size: 2rem;
    top: -16px;
    left: 8px;
  }
}
.sec_top.sec02 ol li .box {
  height: 240px;
  background: #fff;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .sec_top.sec02 ol li .box {
    height: 130px;
    margin-bottom: 10px;
  }
}
.sec_top.sec02 ol li .box h3 {
  font-size: 1.875rem;
  font-weight: 700;
}
@media screen and (max-width: 1040px) {
  .sec_top.sec02 ol li .box h3 {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 768px) {
  .sec_top.sec02 ol li .box h3 {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 360px) {
  .sec_top.sec02 ol li .box h3 {
    font-size: 1rem;
  }
}
.sec_top.sec02 ol li .box .image {
  height: 132px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .sec_top.sec02 ol li .box .image {
    height: 72px;
  }
}
.sec_top.sec02 ol li .box .image img {
  zoom: 0.5;
}
@media screen and (max-width: 768px) {
  .sec_top.sec02 ol li .box .image img {
    zoom: 0.282;
  }
}
.sec_top.sec02 ol li h4 {
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 5px;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .sec_top.sec02 ol li h4 {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 360px) {
  .sec_top.sec02 ol li h4 {
    font-size: 1rem;
  }
}
.sec_top.sec02 ol li p {
  font-weight: 500;
}
@media screen and (max-width: 360px) {
  .sec_top.sec02 ol li p {
    font-size: 0.875rem;
  }
}
.sec_top.sec03 {
  padding: 100px 0 20px;
}
@media screen and (max-width: 768px) {
  .sec_top.sec03 {
    padding: 80px 0 35px;
  }
}
.sec_top.sec03 h2 {
  margin-bottom: 75px;
}
@media screen and (max-width: 768px) {
  .sec_top.sec03 h2 {
    margin-bottom: 35px;
  }
}
.sec_top.sec03 ul {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .sec_top.sec03 ul {
    max-width: 360px;
    margin: auto;
  }
}
.sec_top.sec03 ul li {
  width: calc((100% - 120px) / 3);
  margin-left: 60px;
  margin-bottom: 80px;
}
.sec_top.sec03 ul li:nth-child(3n+1) {
  margin-left: 0;
}
@media screen and (max-width: 768px) {
  .sec_top.sec03 ul li {
    width: 100%;
    margin-left: 0;
    margin-bottom: 40px;
  }
}
.sec_top.sec03 ul li.t01 {
  --base_color: #8ff03a;
}
.sec_top.sec03 ul li.t02 {
  --base_color: #fdd23c;
}
.sec_top.sec03 ul li.t03 {
  --base_color: #f8a412;
}
.sec_top.sec03 ul li.t04 {
  --base_color: #f3599b;
}
.sec_top.sec03 ul li.t05 {
  --base_color: #3c85fd;
}
.sec_top.sec03 ul li .image {
  position: relative;
  margin-bottom: 25px;
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .sec_top.sec03 ul li .image {
    margin-bottom: 15px;
  }
}
.sec_top.sec03 ul li .image:before {
  content: "";
  display: block;
  padding-top: 116.7%;
}
.sec_top.sec03 ul li .image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.sec_top.sec03 ul li .image h3 {
  position: absolute;
  right: 0;
  bottom: 0;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  font-weight: 500;
  font-size: 1.875rem;
  width: 80px;
  height: 200px;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1040px) {
  .sec_top.sec03 ul li .image h3 {
    width: 70px;
    height: 177px;
    font-size: 1.625rem;
  }
}
.sec_top.sec03 ul li .image h3 span {
  font-size: 1rem;
  color: var(--base_color);
  display: block;
  margin-left: 10px;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 1040px) {
  .sec_top.sec03 ul li .image h3 span {
    font-size: 0.875rem;
  }
}
.sec_top.sec03 ul li p {
  font-weight: 500;
  margin-bottom: 10px;
}
.sec_top.sec03 ul li h4 {
  background: var(--base_color);
  color: #fff;
  font-weight: 700;
  font-size: 1.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 35px;
  margin-bottom: 10px;
}
.sec_top.sec03 ul li .sns {
  padding-top: 10px;
  display: flex;
}
.sec_top.sec03 ul li .sns a {
  display: block;
  margin-left: 18px;
}
.sec_top.sec03 ul li .sns a:first-child {
  margin-left: 0;
}
.sec_top.sec04 {
  padding: 100px 0;
  background: #f6f7f7;
}
@media screen and (max-width: 768px) {
  .sec_top.sec04 {
    padding: 75px 0;
  }
}
.sec_top.sec04 h2 {
  text-align: left;
}
@media screen and (max-width: 768px) {
  .sec_top.sec04 h2 {
    text-align: center;
  }
}
.sec_top.sec04 .contents {
  display: flex;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .sec_top.sec04 .contents {
    flex-direction: column;
    max-width: 400px;
    margin: auto;
  }
}
.sec_top.sec04 .contents .content {
  flex: 1;
  margin-left: 120px;
}
.sec_top.sec04 .contents .content:first-child {
  margin-left: 0;
}
@media screen and (max-width: 1040px) {
  .sec_top.sec04 .contents .content {
    margin-left: 60px;
  }
}
@media screen and (max-width: 768px) {
  .sec_top.sec04 .contents .content {
    flex: none;
    width: 100%;
    margin-left: 0;
  }
  .sec_top.sec04 .contents .content:first-child {
    margin-bottom: 75px;
  }
}
.sec_top.sec04 .contents .content .fb-page {
  margin: auto;
  display: block !important;
}
@media screen and (max-width: 768px) {
  .sec_top.sec04 .contents .content .fb-page span {
    height: 320px !important;
  }
  .sec_top.sec04 .contents .content .fb-page span iframe {
    height: 320px !important;
  }
}
.sec_top.sec04 .contents .content .link_wrap {
  margin-top: 45px;
}
.sec_top.sec04 .contents .content .link_wrap:first-child {
  margin-top: 0;
}
.sec_top.sec04 .contents .content .link_wrap a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.875rem;
  width: 100%;
  height: 86px;
  margin-bottom: 23px;
  color: #fff;
  position: relative;
  border-radius: 10px;
}
@media screen and (max-width: 1040px) {
  .sec_top.sec04 .contents .content .link_wrap a {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  .sec_top.sec04 .contents .content .link_wrap a {
    font-size: 1.25rem;
  }
}
.sec_top.sec04 .contents .content .link_wrap a.btn01 {
  background: #f5c10d;
}
.sec_top.sec04 .contents .content .link_wrap a.btn02 {
  background: #298cad;
}
.sec_top.sec04 .contents .content .link_wrap a:after {
  content: "";
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  margin: auto;
  width: 33px;
  height: 12px;
  background: url(../images/arrow03.svg) no-repeat center/contain;
}
.sec_top.sec04 .contents .content .link_wrap p {
  font-weight: 500;
}

.sec_supporter {
  padding: 250px 0 100px;
  background: #f6f7f7;
}
@media screen and (max-width: 768px) {
  .sec_supporter {
    padding-top: 160px;
  }
}
.sec_supporter h1 {
  margin-bottom: 60px;
}
.sec_supporter .lead {
  margin-bottom: 40px;
  line-height: 1.6;
}
.sec_supporter .require {
  font-weight: 700;
  font-size: 0.75rem;
  color: #fff;
  background: #eb2e0f;
  display: inline-block;
  padding: 5px 13px;
  margin-left: 10px;
}
.sec_supporter .error {
  display: block;
  color: #c91a1e;
  margin-top: 10px;
  font-weight: 400;
}
.sec_supporter form input[type=text],
.sec_supporter form input[type=email],
.sec_supporter form input[type=tel],
.sec_supporter form input[type=url],
.sec_supporter form textarea {
  font-family: "Noto Sans JP", sans-serif;
  width: 100%;
  padding: 10px;
  font-size: 1rem;
  outline: none;
  background: #fff;
}
.sec_supporter form input[type=text]:placeholder-shown,
.sec_supporter form input[type=email]:placeholder-shown,
.sec_supporter form input[type=tel]:placeholder-shown,
.sec_supporter form input[type=url]:placeholder-shown,
.sec_supporter form textarea:placeholder-shown {
  color: #666666;
}
.sec_supporter form input[type=text]::-webkit-input-placeholder,
.sec_supporter form input[type=email]::-webkit-input-placeholder,
.sec_supporter form input[type=tel]::-webkit-input-placeholder,
.sec_supporter form input[type=url]::-webkit-input-placeholder,
.sec_supporter form textarea::-webkit-input-placeholder {
  color: #666666;
}
.sec_supporter form input[type=text]:-moz-placeholder,
.sec_supporter form input[type=email]:-moz-placeholder,
.sec_supporter form input[type=tel]:-moz-placeholder,
.sec_supporter form input[type=url]:-moz-placeholder,
.sec_supporter form textarea:-moz-placeholder {
  opacity: 1;
  color: #666666;
}
.sec_supporter form input[type=text]::-moz-placeholder,
.sec_supporter form input[type=email]::-moz-placeholder,
.sec_supporter form input[type=tel]::-moz-placeholder,
.sec_supporter form input[type=url]::-moz-placeholder,
.sec_supporter form textarea::-moz-placeholder {
  opacity: 1;
  color: #666666;
}
.sec_supporter form input[type=text]:-ms-input-placeholder,
.sec_supporter form input[type=email]:-ms-input-placeholder,
.sec_supporter form input[type=tel]:-ms-input-placeholder,
.sec_supporter form input[type=url]:-ms-input-placeholder,
.sec_supporter form textarea:-ms-input-placeholder {
  color: #666666;
}
.sec_supporter form input[type=text].w01,
.sec_supporter form input[type=email].w01,
.sec_supporter form input[type=tel].w01,
.sec_supporter form input[type=url].w01,
.sec_supporter form textarea.w01 {
  max-width: 425px;
}
.sec_supporter form input[type=text].w02,
.sec_supporter form input[type=email].w02,
.sec_supporter form input[type=tel].w02,
.sec_supporter form input[type=url].w02,
.sec_supporter form textarea.w02 {
  max-width: 120px;
}
.sec_supporter form input[type=text].w03,
.sec_supporter form input[type=email].w03,
.sec_supporter form input[type=tel].w03,
.sec_supporter form input[type=url].w03,
.sec_supporter form textarea.w03 {
  max-width: 600px;
}
.sec_supporter form textarea {
  resize: none;
}
.sec_supporter form .dl_list dl {
  display: flex;
  border-bottom: 1px solid #cccccc;
}
.sec_supporter form .dl_list dl:first-child {
  border-top: 1px solid #cccccc;
}
@media screen and (max-width: 768px) {
  .sec_supporter form .dl_list dl {
    flex-direction: column;
  }
}
.sec_supporter form .dl_list dl dt, .sec_supporter form .dl_list dl dd {
  padding: 20px;
}
@media screen and (max-width: 768px) {
  .sec_supporter form .dl_list dl dt, .sec_supporter form .dl_list dl dd {
    padding: 20px 0;
  }
}
.sec_supporter form .dl_list dl dt {
  display: flex;
  align-items: center;
  font-weight: 700;
  border-right: 1px solid #cccccc;
  width: 300px;
}
@media screen and (max-width: 768px) {
  .sec_supporter form .dl_list dl dt {
    width: 100%;
    padding-bottom: 0;
    border-right: 0;
  }
}
.sec_supporter form .dl_list dl dd {
  flex: 1;
}
@media screen and (max-width: 768px) {
  .sec_supporter form .dl_list dl dd {
    flex: none;
    width: 100%;
    padding-top: 10px;
  }
}
.sec_supporter form .dl_list dl dd .wrap {
  display: flex;
  align-items: center;
  margin-top: 10px;
}
.sec_supporter form .dl_list dl dd .wrap:first-child {
  margin-top: 0;
}
.sec_supporter form .dl_list dl dd .wrap span {
  display: flex;
  align-items: center;
}
.sec_supporter form .dl_list dl dd span.t {
  font-weight: 500;
  margin: 0 10px;
}
.sec_supporter form .dl_list dl dd span.t:first-child {
  margin-left: 0;
}
.sec_supporter form .btns {
  text-align: center;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .sec_supporter form .btns {
    padding-top: 40px;
  }
}
.sec_supporter form .btns .send {
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  outline: none;
  border: 0;
  width: 300px;
  height: 60px;
  border-radius: 30px;
  background: #fdd23c;
  position: relative;
  margin-bottom: 10px;
}
.sec_supporter form .btns .send:after {
  content: "";
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  margin: auto;
  width: 33px;
  height: 5px;
  background: url(../images/arrow04.svg) no-repeat center/contain;
}
.sec_supporter .pricasy_policy {
  margin-top: 60px;
}
.sec_supporter .pricasy_policy h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.sec_supporter .pricasy_policy .text {
  overflow: auto;
  height: 262px;
  padding: 20px 30px;
  background: #fff;
}
.sec_supporter .pricasy_policy .text .block {
  margin-bottom: 25px;
}
.sec_supporter .pricasy_policy .text .block:last-child {
  margin-bottom: 0;
}
.sec_supporter .pricasy_policy .text h3 {
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.33;
  margin-bottom: 10px;
}
.sec_supporter .pricasy_policy .text .list {
  line-height: 1.6;
  padding-left: 1em;
  margin: 0.6em 0;
}

.wpcf7-form p{
  margin-top: 20px;
}