@keyframes line-repetition {
  0% {
    height: 0px;
    top: 0;
  }
  50% {
    height: 63px;
    top: 37px;
  }
  100% {
    height: 0px;
    top: 100%;
  }
}

.animate-fadeup {
  /* blur + opacity + transition */
  opacity: 1;
  filter: blur(0px) brightness(1);
  transform: translate3d(0, 0%, 0);
  transition: opacity 0.6s, filter 0.6s cubic-bezier(0.5, 1, 0.89, 1),
    transform 0.6s cubic-bezier(0.5, 1, 0.89, 1);
  will-change: opacity, filter, transform;
}

.animate-fadeup.effect,
.animate-fadeup.delayed_effect {
  opacity: 0;
  filter: blur(15px) brightness(1.25);
  transform: translate3d(0, 100px, 0);
}

.animate-fadeup2 {
  /* opacity + transition */
  opacity: 1;
  transform: translate3d(0, 0%, 0);
  transition: opacity 0.6s, transform 0.6s cubic-bezier(0.5, 1, 0.89, 1);
  will-change: opacity, transform;
}

.animate-fadeup2.effect,
.animate-fadeup2.delayed_effect {
  opacity: 0;
  transform: translate3d(0, 100px, 0);
}

.animate-fadeup3 {
  /* opacity */
  opacity: 1;
  transition: opacity 0.8s cubic-bezier(0.5, 1, 0.89, 1);
  will-change: opacity;
}

.animate-fadeup3.effect,
.animate-fadeup3.delayed_effect {
  opacity: 0;
}

@keyframes flowing {
  100% {
    transform: translate(-100%, -50%);
  }
}

.mt_1 {
  margin-top: 1px;
}

.mb_1 {
  margin-bottom: 1px;
}

.ml_1 {
  margin-left: 1px;
}

.mr_1 {
  margin-right: 1px;
}

.my_1 {
  margin-top: 1px;
  margin-bottom: 1px;
}

.mx_1 {
  margin-left: 1px;
  margin-right: 1px;
}

.pt_1 {
  padding-top: 1px;
}

.pb_1 {
  padding-bottom: 1px;
}

.pl_1 {
  padding-left: 1px;
}

.pr_1 {
  padding-right: 1px;
}

.py_1 {
  padding-top: 1px;
  padding-bottom: 1px;
}

.px_1 {
  padding-left: 1px;
  padding-right: 1px;
}

.fs_1 {
  font-size: 1px !important;
}

.mt_2 {
  margin-top: 2px;
}

.mb_2 {
  margin-bottom: 2px;
}

.ml_2 {
  margin-left: 2px;
}

.mr_2 {
  margin-right: 2px;
}

.my_2 {
  margin-top: 2px;
  margin-bottom: 2px;
}

.mx_2 {
  margin-left: 2px;
  margin-right: 2px;
}

.pt_2 {
  padding-top: 2px;
}

.pb_2 {
  padding-bottom: 2px;
}

.pl_2 {
  padding-left: 2px;
}

.pr_2 {
  padding-right: 2px;
}

.py_2 {
  padding-top: 2px;
  padding-bottom: 2px;
}

.px_2 {
  padding-left: 2px;
  padding-right: 2px;
}

.fs_2 {
  font-size: 2px !important;
}

.mt_3 {
  margin-top: 3px;
}

.mb_3 {
  margin-bottom: 3px;
}

.ml_3 {
  margin-left: 3px;
}

.mr_3 {
  margin-right: 3px;
}

.my_3 {
  margin-top: 3px;
  margin-bottom: 3px;
}

.mx_3 {
  margin-left: 3px;
  margin-right: 3px;
}

.pt_3 {
  padding-top: 3px;
}

.pb_3 {
  padding-bottom: 3px;
}

.pl_3 {
  padding-left: 3px;
}

.pr_3 {
  padding-right: 3px;
}

.py_3 {
  padding-top: 3px;
  padding-bottom: 3px;
}

.px_3 {
  padding-left: 3px;
  padding-right: 3px;
}

.fs_3 {
  font-size: 3px !important;
}

.mt_4 {
  margin-top: 4px;
}

.mb_4 {
  margin-bottom: 4px;
}

.ml_4 {
  margin-left: 4px;
}

.mr_4 {
  margin-right: 4px;
}

.my_4 {
  margin-top: 4px;
  margin-bottom: 4px;
}

.mx_4 {
  margin-left: 4px;
  margin-right: 4px;
}

.pt_4 {
  padding-top: 4px;
}

.pb_4 {
  padding-bottom: 4px;
}

.pl_4 {
  padding-left: 4px;
}

.pr_4 {
  padding-right: 4px;
}

.py_4 {
  padding-top: 4px;
  padding-bottom: 4px;
}

.px_4 {
  padding-left: 4px;
  padding-right: 4px;
}

.fs_4 {
  font-size: 4px !important;
}

.mt_5 {
  margin-top: 5px;
}

.mb_5 {
  margin-bottom: 5px;
}

.ml_5 {
  margin-left: 5px;
}

.mr_5 {
  margin-right: 5px;
}

.my_5 {
  margin-top: 5px;
  margin-bottom: 5px;
}

.mx_5 {
  margin-left: 5px;
  margin-right: 5px;
}

.pt_5 {
  padding-top: 5px;
}

.pb_5 {
  padding-bottom: 5px;
}

.pl_5 {
  padding-left: 5px;
}

.pr_5 {
  padding-right: 5px;
}

.py_5 {
  padding-top: 5px;
  padding-bottom: 5px;
}

.px_5 {
  padding-left: 5px;
  padding-right: 5px;
}

.fs_5 {
  font-size: 5px !important;
}

.mt_6 {
  margin-top: 6px;
}

.mb_6 {
  margin-bottom: 6px;
}

.ml_6 {
  margin-left: 6px;
}

.mr_6 {
  margin-right: 6px;
}

.my_6 {
  margin-top: 6px;
  margin-bottom: 6px;
}

.mx_6 {
  margin-left: 6px;
  margin-right: 6px;
}

.pt_6 {
  padding-top: 6px;
}

.pb_6 {
  padding-bottom: 6px;
}

.pl_6 {
  padding-left: 6px;
}

.pr_6 {
  padding-right: 6px;
}

.py_6 {
  padding-top: 6px;
  padding-bottom: 6px;
}

.px_6 {
  padding-left: 6px;
  padding-right: 6px;
}

.fs_6 {
  font-size: 6px !important;
}

.mt_7 {
  margin-top: 7px;
}

.mb_7 {
  margin-bottom: 7px;
}

.ml_7 {
  margin-left: 7px;
}

.mr_7 {
  margin-right: 7px;
}

.my_7 {
  margin-top: 7px;
  margin-bottom: 7px;
}

.mx_7 {
  margin-left: 7px;
  margin-right: 7px;
}

.pt_7 {
  padding-top: 7px;
}

.pb_7 {
  padding-bottom: 7px;
}

.pl_7 {
  padding-left: 7px;
}

.pr_7 {
  padding-right: 7px;
}

.py_7 {
  padding-top: 7px;
  padding-bottom: 7px;
}

.px_7 {
  padding-left: 7px;
  padding-right: 7px;
}

.fs_7 {
  font-size: 7px !important;
}

.mt_8 {
  margin-top: 8px;
}

.mb_8 {
  margin-bottom: 8px;
}

.ml_8 {
  margin-left: 8px;
}

.mr_8 {
  margin-right: 8px;
}

.my_8 {
  margin-top: 8px;
  margin-bottom: 8px;
}

.mx_8 {
  margin-left: 8px;
  margin-right: 8px;
}

.pt_8 {
  padding-top: 8px;
}

.pb_8 {
  padding-bottom: 8px;
}

.pl_8 {
  padding-left: 8px;
}

.pr_8 {
  padding-right: 8px;
}

.py_8 {
  padding-top: 8px;
  padding-bottom: 8px;
}

.px_8 {
  padding-left: 8px;
  padding-right: 8px;
}

.fs_8 {
  font-size: 8px !important;
}

.mt_9 {
  margin-top: 9px;
}

.mb_9 {
  margin-bottom: 9px;
}

.ml_9 {
  margin-left: 9px;
}

.mr_9 {
  margin-right: 9px;
}

.my_9 {
  margin-top: 9px;
  margin-bottom: 9px;
}

.mx_9 {
  margin-left: 9px;
  margin-right: 9px;
}

.pt_9 {
  padding-top: 9px;
}

.pb_9 {
  padding-bottom: 9px;
}

.pl_9 {
  padding-left: 9px;
}

.pr_9 {
  padding-right: 9px;
}

.py_9 {
  padding-top: 9px;
  padding-bottom: 9px;
}

.px_9 {
  padding-left: 9px;
  padding-right: 9px;
}

.fs_9 {
  font-size: 9px !important;
}

.mt_10 {
  margin-top: 10px;
}

.mb_10 {
  margin-bottom: 10px;
}

.ml_10 {
  margin-left: 10px;
}

.mr_10 {
  margin-right: 10px;
}

.my_10 {
  margin-top: 10px;
  margin-bottom: 10px;
}

.mx_10 {
  margin-left: 10px;
  margin-right: 10px;
}

.pt_10 {
  padding-top: 10px;
}

.pb_10 {
  padding-bottom: 10px;
}

.pl_10 {
  padding-left: 10px;
}

.pr_10 {
  padding-right: 10px;
}

.py_10 {
  padding-top: 10px;
  padding-bottom: 10px;
}

.px_10 {
  padding-left: 10px;
  padding-right: 10px;
}

.fs_10 {
  font-size: 10px !important;
}

:root {
  --coral: #fe882f;
}

.bg_coral {
  background: #fe882f !important;
}

.text_coral {
  color: #fe882f !important;
}

.border_coral {
  border-color: #fe882f !important;
}

* {
  box-sizing: border-box;
  color: #333333;
}

@font-face {
  font-family: "ZenMaruGothic-Regular";
  src: url(../font/ZenMaruGothic-Regular.ttf);
}

@font-face {
  font-family: "ZenMaruGothic-Bold";
  src: url(../font/ZenMaruGothic-Bold.ttf);
}

@font-face {
  font-family: "ZenMaruGothic-Black";
  src: url(../font/ZenMaruGothic-Black.ttf);
}

html {
  scroll-behavior: smooth;
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

html body {
  margin: 0;
  width: 100%;
  overflow-x: hidden;
}

html body main {
  width: 100%;
}

html body main section {
  width: 100%;
  margin: 0, auto;
}

html body main .common_wrap {
  padding-left: 165px;
  padding-right: 165px;
}

@media only screen and (max-width: 768px) {
  html body main .common_wrap {
    padding-left: 65px;
    padding-right: 65px;
  }
}

@media print, screen and (max-width: 969px) {
  html body main .common_wrap {
    padding-left: 45px;
    padding-right: 45px;
  }
}

@media only screen and (max-width: 426px) {
  html body main .common_wrap {
    padding-left: 15px;
    padding-right: 15px;
  }
}

html body main .common_wrap_02 {
  background-color: #fffee5;
}

html body main .common_wrap_02 .inner {
  background-color: white;
}

html body main .common_wrap_03 {
  padding-left: 363px;
  padding-right: 337px;
  background-color: #fffee5;
}

@media print, screen and (max-width: 1114px) {
  html body main .common_wrap_03 {
    padding-left: 100px;
    padding-right: 100px;
  }
}

@media print, screen and (max-width: 969px) {
  html body main .common_wrap_03 {
    padding-left: 60px;
    padding-right: 60px;
  }
}

@media only screen and (max-width: 426px) {
  html body main .common_wrap_03 {
    padding-left: 20px;
    padding-right: 20px;
  }
}

html body main .common_wrap_03 .inner {
  background-color: #fe882f;
}

html body main .common_wrap_04 {
  padding-left: 197px;
  padding-right: 203px;
  padding-top: 54px;
  padding-bottom: 65.2px;
  background-color: #fffee5;
}

@media only screen and (max-width: 768px) {
  html body main .common_wrap_04 {
    padding-left: 100px;
    padding-right: 100px;
  }
}

@media print, screen and (max-width: 969px) {
  html body main .common_wrap_04 {
    padding-left: 60px;
    padding-right: 60px;
  }
}

@media only screen and (max-width: 426px) {
  html body main .common_wrap_04 {
    padding-left: 20px;
    padding-right: 20px;
  }
}

html body main .common_wrap_04 .inner {
  background-color: white;
}

html body .dis_sp {
  display: none;
}

@media only screen and (max-width: 768px) {
  html body .dis_sp {
    display: block;
  }
}

html body .dis_cst_hd_nav {
  display: none;
}

@media print, screen and (max-width: 1370px) {
  html body .dis_cst_hd_nav {
    display: block;
  }
}

html body .dis_tb {
  display: none;
}

@media print, screen and (max-width: 991px) {
  html body .dis_tb {
    display: block;
  }
}

html body .dis_tb {
  display: none;
}

@media print, screen and (max-width: 991px) {
  html body .dis_tb {
    display: block;
  }
}

html body .dis_lc {
  display: none;
}

@media print, screen and (min-width: 1281px) {
  html body .dis_lc {
    display: block;
  }
}

html body .d_pc {
  display: block;
}

@media print, screen and (max-width: 1399px) {
  html body .d_pc {
    display: none;
  }
}

html body .ndis_lc {
  display: block;
}

@media print, screen and (min-width: 1281px) {
  html body .ndis_lc {
    display: none;
  }
}

html body .s_114 {
  display: block;
}

@media print, screen and (max-width: 1114px) {
  html body .s_114 {
    display: none;
  }
}

html body .d_s_114 {
  display: none;
}

@media print, screen and (max-width: 1114px) {
  html body .d_s_114 {
    display: block;
  }
}

html body .s_real_sp {
  display: none;
}

@media only screen and (max-width: 768px) {
  html body .s_real_sp {
    display: block;
  }
}

html body .s_sp {
  display: none;
}

@media only screen and (max-width: 426px) {
  html body .s_sp {
    display: block;
  }
}

html body .n_sp {
  display: block;
}

@media only screen and (max-width: 426px) {
  html body .n_sp {
    display: none;
  }
}

html body .d_500 {
  display: block;
}

@media only screen and (max-width: 500px) {
  html body .d_500 {
    display: none;
  }
}

html body .n_d_500 {
  display: none;
}

@media only screen and (max-width: 500px) {
  html body .n_d_500 {
    display: block;
  }
}

html body .no_bm {
  margin-bottom: 0px;
}

html body .no_dis_img {
  display: flex;
}

@media print, screen and (min-width: 1400px) {
  html body .no_dis_img {
    display: none;
  }
}

body {
  font-family: "ZenMaruGothic-Bold";
  font-size: 18px;
  margin: 0;
}

header,
main {
  width: 100%;
}

img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.wrap {
  max-width: 1400px;
  margin: 0 auto;
}

.pc {
  display: block !important;
}

.sp {
  display: none !important;
}

.tc {
  display: block !important;
}

.sm-none {
  display: block;
}

.tb {
  display: none !important;
}

.lc {
  display: none !important;
}

.lb {
  display: none !important;
}

.sm {
  display: none;
}

@media only screen and (max-width: 560px) {
  .sm {
    display: block;
  }
}

@media print, screen and (max-width: 1280px) {
  .lb {
    display: block !important;
  }
}

@media print, screen and (min-width: 1281px) {
  .lc {
    display: block !important;
  }
}

@media only screen and (max-width: 560px) {
  .sm {
    display: block !important;
  }
  .sm-none {
    display: none;
  }
}

@media print, screen and (max-width: 991px) {
  .tc {
    display: none !important;
  }
  .tb {
    display: block !important;
  }
}

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

@media print, screen and (min-width: 769px) {
  .pc-hide {
    display: none !important;
  }
}

@media only screen and (max-width: 768px) {
  .sp-hide {
    display: none !important;
  }
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

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

[tabindex="-1"]:focus:not(:focus-visible) {
  outline: 0 !important;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

h1,
h2 {
  line-height: 1.2;
}

h3,
h4 {
  line-height: 1.5;
}

h5,
h6 {
  line-height: inherit;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

b,
strong {
  font-weight: bolder;
}

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

a:not([href]):not([class]) {
  color: inherit;
  text-decoration: none !important;
}

a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none !important;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

img {
  vertical-align: middle;
  border-style: none;
}

svg {
  overflow: hidden;
  vertical-align: middle;
}

[role="button"] {
  cursor: pointer;
}

button:not(:disabled),
[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled) {
  cursor: pointer;
}

button {
  outline: none;
  border: none;
  cursor: pointer;
}

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

textarea {
  overflow: auto;
  resize: none;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

[hidden] {
  display: none !important;
}

*:focus {
  outline: none;
}

.clearfix::after {
  content: "";
  visibility: hidden;
  height: 0;
  display: block;
  font-size: 0;
  clear: both;
}

* html .clearfix {
  zoom: 1;
}

*:first-child + html .clearfix {
  zoom: 1;
}

header {
  width: 100%;
  z-index: 9999;
  font-family: "ZenMaruGothic-Bold";
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-items: flex-start;
}

header .wrap {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 15px 15px 15px 40px;
  position: relative;
}

@media only screen and (max-width: 768px) {
  header .wrap {
    padding: 15px 20px;
  }
}

@media only screen and (max-width: 560px) {
  header .wrap {
    padding: 10px 15px;
  }
}

header .wrap .left {
  display: flex;
  justify-content: flex-start;
  gap: 40px;
}

@media print, screen and (max-width: 991px) {
  header .wrap .left {
    flex-direction: column;
    gap: 15px;
  }
}

header .wrap .left .home {
  display: flex;
  position: relative;
}

header .wrap .left .home .logo {
  width: 60px;
  margin-right: 17px;
}

@media only screen and (max-width: 650px) {
  header .wrap .left .home .logo {
    width: 45px;
  }
}

@media only screen and (max-width: 480px) {
  header .wrap .left .home .logo {
    width: 35px;
  }
}

header .wrap .left .home .logo_letter .demand {
  font-size: 14px;
  color: #333;
}

@media only screen and (max-width: 650px) {
  header .wrap .left .home .logo_letter .demand {
    font-size: 10px;
  }
}

@media only screen and (max-width: 480px) {
  header .wrap .left .home .logo_letter .demand {
    font-size: 10px;
  }
}

header .wrap .left .home .logo_letter .name {
  width: 375px;
}

@media print, screen and (max-width: 991px) {
  header .wrap .left .home .logo_letter .name {
    width: 320px;
  }
}

@media only screen and (max-width: 650px) {
  header .wrap .left .home .logo_letter .name {
    width: 250px;
  }
}

@media only screen and (max-width: 480px) {
  header .wrap .left .home .logo_letter .name {
    width: 200px;
  }
}

header .wrap .left .home::after {
  width: 1px;
  background-color: #cccccc;
  height: 55px;
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -20px;
}

@media print, screen and (max-width: 991px) {
  header .wrap .left .home::after {
    content: unset;
  }
}

header .wrap .left .description p {
  font-size: 18px;
  color: #333333;
}

@media only screen and (max-width: 650px) {
  header .wrap .left .description p {
    font-size: 14px;
  }
}

@media only screen and (max-width: 480px) {
  header .wrap .left .description p {
    font-size: 12px;
  }
}

header .wrap .sodan {
  width: 380px;
  height: 60px;
  border-radius: 10px;
  color: white;
  background-color: #fe882f;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 27px;
}

@media (max-width: 1350px) {
  header .wrap .sodan {
    width: 320px;
    font-size: 25px;
  }
}

@media print, screen and (max-width: 1280px) {
  header .wrap .sodan {
    width: 70px;
  }
}

@media print, screen and (max-width: 991px) {
  header .wrap .sodan {
    width: 300px;
    font-size: 22px;
  }
}

@media only screen and (max-width: 768px) {
  header .wrap .sodan {
    display: none;
  }
}

header .wrap .sodan ._sodan {
  display: flex;
  align-items: center;
  gap: 17.5px;
}

header .wrap .sodan ._sodan .sodan_logo {
  width: 38px;
}

header .wrap .sodan ._sodan .sodan_text span {
  color: white;
}

@media print, screen and (max-width: 1280px) {
  header .wrap .sodan ._sodan .sodan_text {
    display: none;
  }
}

@media print, screen and (max-width: 991px) {
  header .wrap .sodan ._sodan .sodan_text {
    display: block;
  }
}

header .wrap .invisalign {
  position: absolute;
  right: 0;
  top: -20px;
  width: 200px;
}

@media only screen and (max-width: 650px) {
  header .wrap .invisalign {
    width: 150px;
    top: -10px;
  }
}

@media only screen and (max-width: 480px) {
  header .wrap .invisalign {
    width: 30vw;
  }
}

.no_margin_bottom {
  margin-bottom: 0px;
}

main section {
  margin: 0 auto;
}

main section .wrap {
  max-width: 1400px;
}

main #fv {
  margin-bottom: 45px;
}

@media only screen and (max-width: 768px) {
  main #fv {
    margin-bottom: 35px;
  }
}

main #fv .wrap {
  background-color: #f8f8f8;
  background-image: url("../img/banner.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom right;
  padding: 80px 14.5px 20px 98px;
  position: relative;
  border-radius: 100px;
  margin: 0 auto;
  width: calc(100% - 100px);
}

@media only screen and (max-width: 768px) {
  main #fv .wrap {
    width: 100%;
    padding-left: 49px;
    padding-top: 40px;
    padding-right: 49px;
    margin: 15px 20px 20px 20px;
    width: calc(100% - 40px);
    border-radius: 60px;
    background-image: url("../img/fv_sm_bk.png");
    background-size: cover;
    height: 100%;
  }
}

@media only screen and (max-width: 426px) {
  main #fv .wrap {
    margin: 15px 12px 20px 12px;
  }
}

@media print, screen and (max-width: 991px) {
  main #fv .wrap {
    padding-left: 36px;
    padding-top: 30px;
    padding-right: 36px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 500px) {
  main #fv .wrap {
    padding-left: 14px;
    padding-right: 14px;
    border-radius: 20px;
  }
}

main #fv .wrap .fv_01 {
  font-size: 38px;
  font-weight: bold;
  color: #ff6e00;
  display: flex;
  font-family: "ZenMaruGothic-Black";
}

@media print, screen and (max-width: 991px) {
  main #fv .wrap .fv_01 {
    font-size: 28px;
    align-items: flex-start;
  }
}

@media only screen and (max-width: 426px) {
  main #fv .wrap .fv_01 {
    font-size: 15px;
    letter-spacing: -2px;
  }
}

main #fv .wrap .fv_01 div {
  color: #fe882f;
}

@media print, screen and (max-width: 991px) {
  main #fv .wrap .fv_01 div {
    font-size: 23px;
  }
}

@media only screen and (max-width: 768px) {
  main #fv .wrap .fv_01 div {
    font-size: 20px;
  }
}

@media only screen and (max-width: 426px) {
  main #fv .wrap .fv_01 div {
    font-size: 15px;
  }
}

main #fv .wrap .fv_01 div.goods {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "ZenMaruGothic-Black";
}

@media print, screen and (max-width: 991px) {
  main #fv .wrap .fv_01 div.goods {
    margin-left: 11px;
    justify-content: space-around;
  }
}

main #fv .wrap .fv_01 div.goods .good {
  background-color: #333333;
  height: 41px;
  border-radius: 25px;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 96px;
  font-size: 23px;
  margin-left: 33px;
}

@media print, screen and (max-width: 991px) {
  main #fv .wrap .fv_01 div.goods .good {
    margin-left: 0px;
    font-size: 19px;
    width: 89px;
    height: 35px;
  }
}

@media only screen and (max-width: 426px) {
  main #fv .wrap .fv_01 div.goods .good {
    margin-left: 11px;
    font-size: 11px;
    width: 41px;
    height: 18px;
  }
}

main #fv .wrap .fv_01 div.goods .good:last-child {
  width: 150px;
  font-size: 23px;
  margin-left: 11px;
}

@media print, screen and (max-width: 991px) {
  main #fv .wrap .fv_01 div.goods .good:last-child {
    font-size: 19px;
    width: 129px;
    height: 35px;
  }
}

@media only screen and (max-width: 426px) {
  main #fv .wrap .fv_01 div.goods .good:last-child {
    margin-left: 4px;
    font-size: 11px;
    width: 60px;
    height: 18px;
  }
}

@media print, screen and (max-width: 991px) {
  main #fv .wrap .fv_01 div.goods {
    font-size: 24px;
  }
}

@media only screen and (max-width: 500px) {
  main #fv .wrap .fv_01 div.goods {
    font-size: 19px;
  }
}

main #fv .wrap .fv_02 {
  font-size: 60px;
  font-weight: bold;
  color: #ff6e00;
  font-family: "ZenMaruGothic-Black";
}

@media print, screen and (max-width: 991px) {
  main #fv .wrap .fv_02 {
    font-size: 45px;
  }
}

@media only screen and (max-width: 768px) {
  main #fv .wrap .fv_02 {
    font-size: 25px;
  }
}

@media only screen and (max-width: 426px) {
  main #fv .wrap .fv_02 {
    font-size: 24px;
  }
}

main #fv .wrap .bottom {
  margin-bottom: 22px;
}

@media print, screen and (max-width: 991px) {
  main #fv .wrap .bottom {
    margin-bottom: 0px;
  }
}

@media only screen and (max-width: 768px) {
  main #fv .wrap .bottom {
    margin-bottom: 10px;
  }
}

@media only screen and (max-width: 768px) {
  main #fv .wrap .date {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
}

main #fv .wrap .date .year {
  font-size: 32px;
  font-family: "ZenMaruGothic-Black";
  line-height: 0.8;
}

@media print, screen and (max-width: 991px) {
  main #fv .wrap .date .year {
    display: flex;
    flex-direction: column;
    margin-bottom: 5px;
  }
}

@media only screen and (max-width: 768px) {
  main #fv .wrap .date .year {
    font-size: 13px;
    margin-bottom: 0px;
  }
}

main #fv .wrap .date .other {
  display: flex;
  margin-bottom: 39.5px;
}

@media print, screen and (max-width: 991px) {
  main #fv .wrap .date .other {
    justify-content: space-around;
  }
}

@media only screen and (max-width: 768px) {
  main #fv .wrap .date .other {
    flex-direction: column;
  }
}

main #fv .wrap .date .other .start {
  margin-right: 30.5px;
  position: relative;
}

@media print, screen and (max-width: 991px) {
  main #fv .wrap .date .other .start {
    margin-right: 30px;
  }
}

main #fv .wrap .date .other .start .start_date {
  display: flex;
  align-items: flex-end;
}

@media print, screen and (max-width: 991px) {
  main #fv .wrap .date .other .start .start_date {
    justify-content: flex-start;
  }
}

main #fv .wrap .date .other .start .start_date .start_day {
  font-size: 72px;
  font-family: "ZenMaruGothic-Black";
  line-height: 1;
  font-weight: bold;
  margin-right: 15px;
}

@media print, screen and (max-width: 991px) {
  main #fv .wrap .date .other .start .start_date .start_day {
    font-size: 54px;
  }
}

@media only screen and (max-width: 768px) {
  main #fv .wrap .date .other .start .start_date .start_day {
    font-size: 30px;
  }
}

main #fv .wrap .date .other .start .start_date .start_youbi {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #41ced3;
  font-family: "ZenMaruGothic-Black";
  color: #fff;
  border-radius: 50%;
  font-size: 25px;
  width: 47px;
  height: 47px;
  margin-bottom: -6px;
}

@media print, screen and (max-width: 991px) {
  main #fv .wrap .date .other .start .start_date .start_youbi {
    font-size: 18px;
    width: 35px;
    height: 35px;
  }
}

@media only screen and (max-width: 768px) {
  main #fv .wrap .date .other .start .start_date .start_youbi {
    font-size: 10px;
    width: 20px;
    height: 20px;
  }
}

main #fv .wrap .date .other .start .start_time,
main #fv .wrap .date .other .start .start_location {
  margin-top: 14px;
  font-family: "ZenMaruGothic-Bold";
  font-weight: bold;
  font-size: 32px;
}

@media only screen and (max-width: 768px) {
  main #fv .wrap .date .other .start .start_time,
  main #fv .wrap .date .other .start .start_location {
    margin-top: 0px;
    font-size: 13px;
  }
}

main #fv .wrap .date .other .gap {
  width: 2px;
  height: 118px;
  border-left: dashed #999999 2px;
  border-style: dashed;
}

@media only screen and (max-width: 768px) {
  main #fv .wrap .date .other .gap {
    margin-top: 15px;
    margin-bottom: 15px;
    height: 2px;
    width: 98px;
    border-top: dashed #999999 2px;
  }
}

main #fv .wrap .date .other .end {
  margin-left: 25.5px;
  position: relative;
}

@media only screen and (max-width: 768px) {
  main #fv .wrap .date .other .end {
    margin-left: 0px;
  }
}

@media print, screen and (max-width: 991px) {
  main #fv .wrap .date .other .end {
    margin-right: 0px;
  }
}

main #fv .wrap .date .other .end .end_date {
  display: flex;
  align-items: flex-end;
}

@media print, screen and (max-width: 991px) {
  main #fv .wrap .date .other .end .end_date {
    justify-content: flex-start;
  }
}

main #fv .wrap .date .other .end .end_date .end_day {
  font-size: 72px;
  font-family: "ZenMaruGothic-Black";
  line-height: 1;
  font-weight: bold;
  margin-right: 15px;
}

@media print, screen and (max-width: 991px) {
  main #fv .wrap .date .other .end .end_date .end_day {
    font-size: 54px;
  }
}

@media only screen and (max-width: 768px) {
  main #fv .wrap .date .other .end .end_date .end_day {
    font-size: 50px;
  }
}

main #fv .wrap .date .other .end .end_date .end_youbi {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ff7b7e;
  font-family: "ZenMaruGothic-Black";
  border-radius: 50%;
  font-size: 25px;
  width: 47px;
  height: 47px;
  color: #fff;
  margin-bottom: -6px;
  text-shadow: 0 0;
}

@media print, screen and (max-width: 991px) {
  main #fv .wrap .date .other .end .end_date .end_youbi {
    font-size: 18px;
    width: 35px;
    height: 35px;
  }
}

@media only screen and (max-width: 768px) {
  main #fv .wrap .date .other .end .end_date .end_youbi {
    font-size: 10px;
    width: 20px;
    height: 20px;
  }
}

main #fv .wrap .date .other .end .end_time {
  margin-top: 14px;
  font-family: "ZenMaruGothic-Bold";
  font-weight: bold;
  font-size: 32px;
}

@media only screen and (max-width: 768px) {
  main #fv .wrap .date .other .end .end_time {
    margin-top: 0px;
    font-size: 13px;
  }
}

main #fv .wrap .benefit {
  margin-bottom: 36px;
}

@media print, screen and (max-width: 991px) {
  main #fv .wrap .benefit {
    margin-top: auto;
  }
}

@media only screen and (max-width: 768px) {
  main #fv .wrap .benefit .benefit_content {
    text-align: left;
  }
}

main #fv .wrap .benefit .benefit_content p {
  font-size: 20px;
  color: #666666;
}

@media only screen and (max-width: 560px) {
  main #fv .wrap .benefit .benefit_content p {
    font-size: 14px;
    line-height: 1.8;
  }
}
@media only screen and (max-width: 768px) {
  main #fv .wrap .benefit .benefit_content p {
    display: flex;
  }
}

main #fv .wrap .benefit .benefit_content div {
  color: #ffb221;
}

main #fv .wrap .fv_left_foot {
  margin-top: auto;
}

@media print, screen and (max-width: 991px) {
  main #fv .wrap .fv_left_foot {
    margin-top: 85px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

@media only screen and (max-width: 560px) {
  main #fv .wrap .fv_left_foot {
    display: none;
  }
}

main #fv .wrap .fv_left_foot .slogon {
  color: #fe882f;
  font-size: 21px;
  font-weight: "ZenMaruGothic-Black";
  letter-spacing: -1.5px;
  margin-left: 24px;
  margin-bottom: 14px;
}

@media print, screen and (max-width: 991px) {
  main #fv .wrap .fv_left_foot .slogon {
    margin-left: 0px;
  }
}

@media only screen and (max-width: 768px) {
  main #fv .wrap .fv_left_foot .slogon {
    font-size: 15px;
  }
}

main #fv .wrap .fv_left_foot .reser_btn {
  height: 92px;
  width: 480px;
  background-color: #fe882f;
  font-size: 36px;
  font-weight: bold;
  font-weight: "ZenMaruGothic-Black";
  color: #fff;
  border-radius: 10px;
  padding: 21px 42px 20.2px 44px;
  display: flex;
  align-items: center;
}

@media only screen and (max-width: 768px) {
  main #fv .wrap .fv_left_foot .reser_btn {
    height: 72px;
    width: 450px;
  }
}

main #fv .wrap .fv_left_foot .reser_btn figure img {
  width: 48.2px;
  margin-right: 21.8px;
}

@media print, screen and (max-width: 991px) {
  main #fv .wrap .fv_left_foot .reser_btn figure img {
    width: 36.05px;
    margin-right: 10.1px;
  }
}

@media only screen and (max-width: 768px) {
  main #fv .wrap .fv_left_foot .reser_btn figure img {
    width: 36.05px;
    margin-right: 10.1px;
  }
}

main #fv .wrap .fv_left_foot .reser_btn .reser_text {
  color: white;
}

@media print, screen and (max-width: 991px) {
  main #fv .wrap .fv_left_foot .reser_btn .reser_text {
    font-size: 23px;
  }
}

@media print, screen and (max-width: 991px) {
  main #fv .wrap .fv_left_foot .reser_btn {
    height: 45px;
    font-size: 24px;
    padding: 10px 20px;
    width: 300px;
    display: flex;
    justify-content: space-around;
  }
}

main #fv .wrap .fv_right_foot {
  position: absolute;
  bottom: 20px;
  right: 14.6px;
}

@media print, screen and (max-width: 1114px) {
  main #fv .wrap .fv_right_foot {
    position: relative;
    top: -653px;
  }
}

main #fv .wrap .fv_right_foot figure {
  width: 280px;
  height: 280px;
}

main #fv .wrap .fv_right_foot figure img {
  width: 100%;
  height: 100%;
}

main #pictures {
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  display: flex;
  white-space: nowrap;
  height: 209px;
  width: 1500px;
  margin-bottom: 80px;
}

@media print, screen and (max-width: 991px) {
  main #pictures {
    margin-bottom: 30px;
  }
}

main #pictures img {
  display: inline-block;
  scroll-snap-align: start;
  width: 100%;
  height: auto;
}

main #child .child_blog {
  border: solid #f4f4f4 10px;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  padding: 35px 45px 35px 60px;
  max-width: 1070px;
  margin: 80px auto;
  position: relative;
  width: calc(100% - 80px);
  box-sizing: border-box;
}

@media print, screen and (max-width: 1280px) {
  main #child .child_blog {
    padding: 35px;
    padding-right: 15px;
  }
}

@media print, screen and (max-width: 991px) {
  main #child .child_blog {
    flex-direction: column;
    padding: 35px;
    gap: 30px;
  }
}

@media only screen and (max-width: 768px) {
  main #child .child_blog {
    width: calc(100% - 40px);
    padding: 15px;
    margin: 40px auto;
    border-width: 5px;
  }
}

main #child .child_blog .txt .s_title {
  font-family: "ZenMaruGothic-Black";
  font-size: 20px;
  line-height: 1.9;
  color: #70b859;
}

@media only screen and (max-width: 560px) {
  main #child .child_blog .txt .s_title {
    font-size: 16px;
  }
}

@media only screen and (max-width: 480px) {
  main #child .child_blog .txt .s_title {
    font-size: 12px;
  }
}

main #child .child_blog .txt .m_title {
  font-family: "ZenMaruGothic-Black";
  line-height: 1;
  color: #339314;
  font-size: 48px;
  letter-spacing: -1px;
  margin-bottom: 22px;
}

@media print, screen and (max-width: 1280px) {
  main #child .child_blog .txt .m_title {
    font-size: 40px;
  }
}

@media print, screen and (max-width: 991px) {
  main #child .child_blog .txt .m_title {
    font-size: 36px;
  }
}

@media only screen and (max-width: 768px) {
  main #child .child_blog .txt .m_title {
    font-size: 34px;
    text-align: left;
  }
}

@media only screen and (max-width: 560px) {
  main #child .child_blog .txt .m_title {
    font-size: 30px;
  }
}

main #child .child_blog .txt .content {
  color: #333333;
  font-size: 18px;
  line-height: 1.9;
  text-align: left;
}

@media only screen and (max-width: 426px) {
  main #child .child_blog .txt .content {
    letter-spacing: -1px;
    font-size: 14px;
    text-align: left;
  }
}

main #child .child_blog .txt .content:last-child {
  margin-bottom: 15px;
}

@media only screen and (max-width: 426px) {
  main #child .child_blog .txt .content:last-child {
    margin-bottom: 8px;
  }
}

main #child .child_blog .txt .foot {
  color: #666666;
  font-size: 14px;
  font-family: "ZenMaruGothic-Bold";
  text-align: left;
}

@media only screen and (max-width: 426px) {
  main #child .child_blog .txt .foot {
    font-size: 10px;
  }
}

main #child .child_blog .txt p:last-child {
  margin-top: 9px;
}

main #child .child_blog .img {
  border-radius: 60px;
}

@media print, screen and (min-width: 1281px) {
  main #child .child_blog .img {
    position: absolute;
    top: 50px;
    right: 45px;
    width: 435px;
  }
}

@media print, screen and (max-width: 1280px) {
  main #child .child_blog .img {
    width: calc(100% - 530px);
  }
}

@media print, screen and (max-width: 991px) {
  main #child .child_blog .img {
    width: 100%;
    margin: auto;
    max-width: 500px;
  }
}

main #worry {
  width: 100%;
  background-image: url("../img/Union.png");
  background-size: 100%;
  background-position: bottom center;
  background-repeat: no-repeat;
  padding-top: 49.3px;
  padding-bottom: 83px;
  height: auto;
  position: relative;
}

main #worry .worry_wrap {
  max-width: 1010px;
  margin: auto;
  width: calc(100% - 40px);
}

@media only screen and (max-width: 426px) {
  main #worry {
    padding-bottom: 40px;
  }
}

main #worry div.title {
  text-align: center;
  font-family: "ZenMaruGothic-Black";
}

@media print, screen and (max-width: 991px) {
  main #worry div.title {
    padding-left: 50px;
    padding-right: 50px;
  }
}

@media only screen and (max-width: 500px) {
  main #worry div.title {
    padding-left: 30px;
    padding-right: 30px;
  }
}

main #worry div.title p:first-child {
  color: #6dcdd0;
  font-size: 38px;
}

@media print, screen and (max-width: 991px) {
  main #worry div.title p:first-child {
    font-size: 25px;
  }
}

@media only screen and (max-width: 500px) {
  main #worry div.title p:first-child {
    font-size: 19px;
  }
}

main #worry div.title p:last-child {
  font-size: 45px;
  margin-bottom: 63px;
}

main #worry div.title p:last-child span {
  color: #fe882f;
  text-decoration: underline;
  text-decoration-color: rgba(255, 242, 0, 0.35);
  text-decoration-thickness: 18px;
  text-underline-offset: -5px;
}

@media only screen and (max-width: 768px) {
  main #worry div.title p:last-child span {
    text-decoration-thickness: 9px;
    text-underline-offset: -3px;
  }
}

@media print, screen and (max-width: 991px) {
  main #worry div.title p:last-child {
    font-size: 30px;
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 500px) {
  main #worry div.title p:last-child {
    font-size: 23px;
    margin-bottom: 20.7px;
  }
}

main #worry .man_worry {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 66px;
}

main #worry .man_worry .title {
  width: 560px;
  height: 50px;
  background-color: #333333;
  color: #6dcdd0;
  border-radius: 25px;
  text-align: center;
  font-size: 32px;
  font-family: "ZenMaruGothic-Bold";
  margin-bottom: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media print, screen and (max-width: 991px) {
  main #worry .man_worry .title {
    width: 330px;
    margin-bottom: 30px;
    font-size: 17px;
    height: 37px;
  }
}

@media only screen and (max-width: 500px) {
  main #worry .man_worry .title {
    width: 205px;
  }
}

main #worry .man_worry .content {
  display: flex;
  justify-content: center;
}

@media print, screen and (max-width: 991px) {
  main #worry .man_worry .content {
    flex-direction: column;
    align-items: center;
    width: 500px;
  }
}

@media only screen and (max-width: 500px) {
  main #worry .man_worry .content {
    font-size: 12px;
  }
}

@media only screen and (max-width: 768px) {
  main #worry .man_worry .content {
    width: 100%;
  }
}

main #worry .man_worry .content .toothache figure {
  display: flex;
  justify-content: center;
  align-items: center;
}

main #worry .man_worry .content .toothache figure img {
  width: 265px;
}

@media print, screen and (max-width: 991px) {
  main #worry .man_worry .content .toothache {
    margin-bottom: 30px;
  }
}

main #worry .man_worry .content .toothache_content {
  width: 100%;
  font-size: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-left: 45px;
}

@media print, screen and (max-width: 991px) {
  main #worry .man_worry .content .toothache_content {
    font-size: 16px;
    width: calc(100% - 40px);
    margin: auto;
  }
}

@media only screen and (max-width: 426px) {
  main #worry .man_worry .content .toothache_content {
    font-size: 13px;
  }
}

main #worry .man_worry .content .toothache_content div {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
}

main #worry .man_worry .content .toothache_content div img {
  width: 30px;
  height: 30px;
  margin-right: 9px;
}

@media only screen and (max-width: 426px) {
  main #worry .man_worry .content .toothache_content div img {
    width: 19px;
    height: 18px;
  }
}

main #worry .man_worry .content .toothache_content div p span {
  color: #fe882f;
  font-family: "ZenMaruGothic-Black";
}

@media print, screen and (max-width: 991px) {
  main #worry .man_worry .content .toothache_content div p span {
    font-size: 16px;
  }
}

main #worry .child_worry {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 92.4px;
}

@media print, screen and (max-width: 1280px) {
  main #worry .child_worry {
    padding-bottom: 10px;
  }
}

@media only screen and (max-width: 426px) {
  main #worry .child_worry {
    margin-bottom: 40px;
  }
}

main #worry .child_worry .title {
  width: 560px;
  height: 50px;
  border-radius: 25px;
  font-size: 32px;
  margin-bottom: 60px;
  background-color: #333333;
  color: #6dcdd0;
  text-align: center;
  font-family: "ZenMaruGothic-Bold";
  display: flex;
  justify-content: center;
  align-items: center;
}

@media print, screen and (max-width: 991px) {
  main #worry .child_worry .title {
    width: 330px;
    margin-bottom: 30px;
    font-size: 17px;
    height: 37px;
  }
}

@media only screen and (max-width: 500px) {
  main #worry .child_worry .title {
    width: 205px;
  }
}

main #worry .child_worry .content {
  display: flex;
  justify-content: center;
  gap: 34.1px;
}

@media print, screen and (max-width: 991px) {
  main #worry .child_worry .content {
    flex-direction: column;
    align-items: center;
    width: 500px;
  }
}

@media only screen and (max-width: 500px) {
  main #worry .child_worry .content {
    font-size: 12px;
  }
}

@media only screen and (max-width: 768px) {
  main #worry .child_worry .content {
    width: 100%;
  }
}

main #worry .child_worry .content .teethache_content {
  font-size: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media print, screen and (max-width: 991px) {
  main #worry .child_worry .content .teethache_content {
    font-size: 16px;
    width: calc(100% - 40px);
    margin: auto;
  }
}

@media only screen and (max-width: 426px) {
  main #worry .child_worry .content .teethache_content {
    font-size: 13px;
  }
}

main #worry .child_worry .content .teethache_content div {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
}

main #worry .child_worry .content .teethache_content div img {
  width: 30px;
  height: 30px;
  margin-right: 9px;
}

@media only screen and (max-width: 426px) {
  main #worry .child_worry .content .teethache_content div img {
    width: 19px;
    height: 18px;
  }
}

main #worry .child_worry .content .teethache_content div p span {
  color: #fe882f;
  font-family: "ZenMaruGothic-Black";
  font-size: 24px;
}

@media print, screen and (max-width: 991px) {
  main #worry .child_worry .content .teethache_content div p span {
    font-size: 16px;
  }
}

main #worry .child_worry .content .toothache figure {
  display: flex;
  justify-content: center;
  align-items: center;
}

main #worry .child_worry .content .toothache figure img {
  width: 330px;
  height: 262px;
}

main #worry .worry_foot {
  font-family: "ZenMaruGothic-Black";
  font-size: 48px;
  text-align: center;
  color: #fff;
  text-shadow: 0px 0px 9px #29a5a8;
}

@media print, screen and (max-width: 1280px) {
  main #worry .worry_foot {
    font-size: 30px;
  }
}

@media only screen and (max-width: 560px) {
  main #worry .worry_foot {
    font-size: 22px;
  }
}

main #consulting {
  padding: 35px 0 45px;
  position: relative;
}

@media only screen and (max-width: 768px) {
  main #consulting {
    padding: 50px 0;
  }
}

main #consulting .wrap {
  padding: 0 145px;
}

@media print, screen and (max-width: 1280px) {
  main #consulting .wrap {
    padding: 0 120px;
  }
}

@media print, screen and (max-width: 991px) {
  main #consulting .wrap {
    padding: 0 80px;
  }
}

@media only screen and (max-width: 768px) {
  main #consulting .wrap {
    padding: 0 40px;
  }
}

@media only screen and (max-width: 560px) {
  main #consulting .wrap {
    padding: 0 20px;
  }
}

main #consulting .wrap .container .first_container {
  display: flex;
  justify-content: flex-start;
  gap: 11px;
  padding-bottom: 11.9px;
}

main #consulting .wrap .container .first_container div {
  background-color: #333;
  border-radius: 22px;
  color: white;
  font-size: 23px;
  height: 41px;
  font-weight: "ZenMaruGothic-Black";
  display: flex;
  align-items: center;
  justify-content: center;
}

@media print, screen and (max-width: 991px) {
  main #consulting .wrap .container .first_container div {
    font-size: 20px;
    height: 34px;
  }
}

@media only screen and (max-width: 426px) {
  main #consulting .wrap .container .first_container div {
    width: 41px;
    height: 18px;
    font-size: 11px;
  }
}

main #consulting .wrap .container .first_container div:first-child {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 96px;
}

@media print, screen and (max-width: 991px) {
  main #consulting .wrap .container .first_container div:first-child {
    width: 86px;
  }
}

@media only screen and (max-width: 426px) {
  main #consulting .wrap .container .first_container div:first-child {
    width: 41px;
    height: 18px;
    font-size: 11px;
  }
}

main #consulting .wrap .container .first_container div:last-child {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 143px;
}

@media print, screen and (max-width: 991px) {
  main #consulting .wrap .container .first_container div:last-child {
    width: 120px;
  }
}

@media only screen and (max-width: 426px) {
  main #consulting .wrap .container .first_container div:last-child {
    width: 60px;
    height: 18px;
    font-size: 11px;
  }
}

main #consulting .wrap .container .second_container {
  display: flex;
  justify-content: flex-start;
  gap: 49px;
  margin-bottom: 12px;
}

@media only screen and (max-width: 768px) {
  main #consulting .wrap .container .second_container {
    gap: 25px;
  }
}

main #consulting .wrap .container .second_container .year_date_youbi .year {
  font-size: 32px;
  font-weight: "ZenMaruGothic-Black";
  color: #333333;
  margin-top: -10px;
}

@media print, screen and (max-width: 991px) {
  main #consulting .wrap .container .second_container .year_date_youbi .year {
    font-size: 25px;
  }
}

main
  #consulting
  .wrap
  .container
  .second_container
  .year_date_youbi
  .start_date_youbi {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  line-height: 1;
  gap: 15px;
  margin-top: -10px;
}

@media print, screen and (max-width: 991px) {
  main
    #consulting
    .wrap
    .container
    .second_container
    .year_date_youbi
    .start_date_youbi {
    gap: 5px;
  }
}

main
  #consulting
  .wrap
  .container
  .second_container
  .year_date_youbi
  .start_date_youbi
  .start_day {
  font-size: 72px;
  font-weight: "ZenMaruGothic-Black";
}

@media print, screen and (max-width: 991px) {
  main
    #consulting
    .wrap
    .container
    .second_container
    .year_date_youbi
    .start_date_youbi
    .start_day {
    font-size: 50px;
  }
}

main
  #consulting
  .wrap
  .container
  .second_container
  .year_date_youbi
  .start_date_youbi
  .start_youbi {
  background-color: #29a5a8;
  width: 47px;
  height: 47px;
  font-size: 25px;
  padding-top: 3px;
  border-radius: 50%;
  color: white;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media print, screen and (max-width: 991px) {
  main
    #consulting
    .wrap
    .container
    .second_container
    .year_date_youbi
    .start_date_youbi
    .start_youbi {
    width: 37px;
    height: 37px;
    font-size: 20px;
  }
}

main
  #consulting
  .wrap
  .container
  .second_container
  .year_date_youbi
  .end_date_youbi {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  line-height: 1;
  gap: 15px;
}

@media print, screen and (max-width: 991px) {
  main
    #consulting
    .wrap
    .container
    .second_container
    .year_date_youbi
    .end_date_youbi {
    gap: 5px;
  }
}

main
  #consulting
  .wrap
  .container
  .second_container
  .year_date_youbi
  .end_date_youbi
  .end_day {
  font-size: 72px;
  font-weight: "ZenMaruGothic-Black";
}

@media print, screen and (max-width: 991px) {
  main
    #consulting
    .wrap
    .container
    .second_container
    .year_date_youbi
    .end_date_youbi
    .end_day {
    font-size: 50px;
  }
}

main
  #consulting
  .wrap
  .container
  .second_container
  .year_date_youbi
  .end_date_youbi
  .end_youbi {
  background-color: #ff7b7e;
  width: 47px;
  height: 47px;
  border-radius: 50%;
  color: white;
  text-align: center;
  font-size: 25px;
  padding-top: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 5px;
}

@media print, screen and (max-width: 991px) {
  main
    #consulting
    .wrap
    .container
    .second_container
    .year_date_youbi
    .end_date_youbi
    .end_youbi {
    width: 37px;
    height: 37px;
    font-size: 20px;
  }
}

main #consulting .wrap .container .second_container .time {
  padding-top: 62px;
}

@media print, screen and (max-width: 991px) {
  main #consulting .wrap .container .second_container .time {
    padding-top: 20px;
  }
}

main #consulting .wrap .container .second_container .time .start_time {
  font-size: 32px;
}

main #consulting .wrap .container .second_container .time .end_time {
  padding-top: 20px;
  font-size: 32px;
}

@media print, screen and (max-width: 991px) {
  main #consulting .wrap .container .second_container .time .end_time {
    padding-top: 10px;
  }
}

main #consulting .wrap .container .third_container :first-child {
  font-size: 38px;
  color: #ff6e00;
}

@media print, screen and (max-width: 1114px) {
  main #consulting .wrap .container .third_container :first-child {
    font-size: 37px;
  }
}

@media only screen and (max-width: 768px) {
  main #consulting .wrap .container .third_container :first-child {
    font-size: 25px;
  }
}

main #consulting .wrap .container .third_container :last-child {
  line-height: 1.3;
  font-size: 60px;
  color: #ff6e00;
}

@media print, screen and (max-width: 1114px) {
  main #consulting .wrap .container .third_container :last-child {
    font-size: 45px;
  }
}

@media only screen and (max-width: 768px) {
  main #consulting .wrap .container .third_container :last-child {
    font-size: 30px;
  }
}

main #consulting .wrap div.contianer.n_d_500 {
  font-family: "ZenMaruGothic-Black";
  text-shadow: #fff 0 0 10px, #fff 0 0 10px, #fff 0 0 10px, #fff 0 0 10px,
    #fff 0 0 10px;
}

main #consulting .wrap div.contianer.n_d_500 div.goods {
  display: flex;
  gap: 4px;
  font-size: 11px;
  margin-bottom: 10px;
}

main #consulting .wrap div.contianer.n_d_500 div.goods div {
  background-color: #333333;
  color: white;
  height: 18px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

main #consulting .wrap div.contianer.n_d_500 div.goods div.f_good {
  width: 41px;
}

main #consulting .wrap div.contianer.n_d_500 div.goods div.s_good {
  width: 60px;
}

main #consulting .wrap div.contianer.n_d_500 div.year {
  font-size: 13px;
}

main #consulting .wrap div.contianer.n_d_500 div.start_date .start_day_youbi {
  display: flex;
  align-items: flex-end;
}

main
  #consulting
  .wrap
  div.contianer.n_d_500
  div.start_date
  .start_day_youbi
  .start_day {
  font-size: 30px;
  margin-right: 7px;
}

main
  #consulting
  .wrap
  div.contianer.n_d_500
  div.start_date
  .start_day_youbi
  .youbi {
  background-color: #41ced3;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  font-size: 10px;
  margin-bottom: 6px;
  text-shadow: 0 0;
}

main #consulting .wrap div.contianer.n_d_500 div.start_date .start_time {
  font-size: 13px;
}

main #consulting .wrap div.contianer.n_d_500 div.gap {
  height: 2px;
  width: 98px;
  border-top: 2px dashed #333333;
  margin: 15px 0 7px;
}

main #consulting .wrap div.contianer.n_d_500 div.end_date .end_day_youbi {
  display: flex;
  align-items: flex-end;
}

main
  #consulting
  .wrap
  div.contianer.n_d_500
  div.end_date
  .end_day_youbi
  .end_day {
  font-size: 50px;
  margin-right: 7px;
}

main
  #consulting
  .wrap
  div.contianer.n_d_500
  div.end_date
  .end_day_youbi
  .youbi {
  background-color: #ff7b7e;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  font-size: 10px;
  text-shadow: 0 0;
}

main #consulting .wrap div.contianer.n_d_500 div.end_date .end_time {
  font-size: 13px;
  margin-bottom: 21px;
}

main #consulting .wrap div.contianer.n_d_500 .text {
  font-family: "ZenMaruGothic-Black";
}

main #consulting .wrap div.contianer.n_d_500 .text .s_text {
  color: #ff6e00;
  font-size: 20px;
}

main #consulting .wrap div.contianer.n_d_500 .text .m_text {
  color: #ff6e00;
  font-size: 28px;
}

main #consulting > img {
  position: absolute;
  width: 100%;
  right: 0;
  bottom: 0;
  z-index: -1;
  min-width: 1000px;
}

@media only screen and (max-width: 768px) {
  main #consulting > img {
    right: -100px;
  }
}

main #seminar {
  background-color: #fffee5;
}

main #seminar .wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 56.5px;
  padding-left: 165px;
  padding-right: 165px;
}

@media print, screen and (max-width: 1280px) {
  main #seminar .wrap {
    padding: 55px 80px;
  }
}

@media print, screen and (max-width: 991px) {
  main #seminar .wrap {
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media only screen and (max-width: 768px) {
  main #seminar .wrap {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media only screen and (max-width: 426px) {
  main #seminar .wrap {
    padding-left: 15px;
    padding-right: 15px;
  }
}

main #seminar .wrap div#outline {
  text-align: center;
  font-size: 38px;
  color: #70b859;
  padding-bottom: 39px;
  font-family: "ZenMaruGothic-Black";
}

@media print, screen and (max-width: 1280px) {
  main #seminar .wrap div#outline {
    font-size: 32px;
  }
}

@media print, screen and (max-width: 991px) {
  main #seminar .wrap div#outline {
    font-size: 28px;
  }
}

@media only screen and (max-width: 768px) {
  main #seminar .wrap div#outline {
    font-size: 24px;
    padding-bottom: 30px;
  }
}

@media only screen and (max-width: 426px) {
  main #seminar .wrap div#outline {
    font-size: 20px;
  }
}

main #seminar .wrap div#outline span {
  -webkit-text-decoration: underline rgba(255, 242, 0, 0.35);
  text-decoration: underline rgba(255, 242, 0, 0.35);
  color: #70b859;
  text-decoration-thickness: 18px;
  text-underline-offset: -5px;
}

@media only screen and (max-width: 768px) {
  main #seminar .wrap div#outline span {
    text-decoration-thickness: 9px;
    text-underline-offset: -3px;
  }
}

main #seminar .wrap div {
  text-align: left;
  font-size: 22px;
  line-height: 2;
}

@media print, screen and (max-width: 1280px) {
  main #seminar .wrap div {
    font-size: 28px;
  }
}

@media print, screen and (max-width: 991px) {
  main #seminar .wrap div {
    font-size: 22px;
  }
}

main #seminar .wrap div .coral {
  color: #fe882f;
}

main #seminar .wrap div.text {
  padding-bottom: 70px;
}

@media only screen and (max-width: 768px) {
  main #seminar .wrap div.text {
    padding-bottom: 45px;
  }
}

@media only screen and (max-width: 426px) {
  main #seminar .wrap div.text {
    padding-bottom: 31.3px;
  }
}

main #seminar .wrap div.text p {
  text-align: center;
}

@media only screen and (max-width: 768px) {
  main #seminar .wrap div.text p {
    font-size: 22px;
  }
}

@media only screen and (max-width: 426px) {
  main #seminar .wrap div.text p {
    font-size: 14px;
  }
}

main #seminar .wrap .consulting_seminar_title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 57px;
}

@media only screen and (max-width: 426px) {
  main #seminar .wrap .consulting_seminar_title.thir_bm {
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 426px) {
  main #seminar .wrap .consulting_seminar_title.thirtytwo_bm {
    margin-bottom: 32.5px;
  }
}

main #seminar .wrap .consulting_seminar_title .dotlines .dotted_line {
  max-width: 342px;
  height: 3px;
  width: calc(20.57vw + 5px);
  background-image: url("../img/dot_again.png");
  background-repeat: repeat-x;
}

@media print, screen and (max-width: 1280px) {
  main #seminar .wrap .consulting_seminar_title .dotlines .dotted_line {
    width: calc(12vw + 5px);
  }
}

main
  #seminar
  .wrap
  .consulting_seminar_title
  .dotlines
  .dotted_line:first-child {
  margin-bottom: 9px;
}

main #seminar .wrap .consulting_seminar_title .seminar_ {
  font-size: 42px;
  color: #fe882f;
  font-family: "ZenMaruGothic-Black";
}

@media print, screen and (max-width: 1280px) {
  main #seminar .wrap .consulting_seminar_title .seminar_ {
    font-size: 31px;
  }
}

@media only screen and (max-width: 426px) {
  main #seminar .wrap .consulting_seminar_title .seminar_ {
    font-size: 27px;
  }
}

main #seminar .wrap .consulting_seminar_title.other_margin {
  margin-bottom: 57px;
}

@media only screen and (max-width: 768px) {
  main #seminar .wrap .consulting_seminar_title.other_margin {
    margin-bottom: 30.2px;
  }
}

main #seminar .wrap #seminar_calendar {
  display: flex;
  justify-content: center;
  gap: 31px;
  margin-bottom: 70px;
}

@media only screen and (max-width: 768px) {
  main #seminar .wrap #seminar_calendar {
    margin-bottom: 31px;
  }
}

@media print, screen and (max-width: 1399px) {
  main #seminar .wrap #seminar_calendar {
    flex-direction: column;
  }
}

main #seminar .wrap #seminar_calendar div.first_calendar {
  width: 520px;
  background-color: #fff;
  padding-top: 30px;
  padding-left: 54px;
  padding-right: 45.5px;
  padding-bottom: 51px;
  border-radius: 30px;
  border: 2px rgba(109, 205, 208, 0.4666666667) solid;
}

@media print, screen and (max-width: 1399px) {
  main #seminar .wrap #seminar_calendar div.first_calendar {
    width: 100%;
    padding-left: 100px;
    padding-right: 100px;
  }
}

@media print, screen and (max-width: 991px) {
  main #seminar .wrap #seminar_calendar div.first_calendar {
    padding-bottom: 31px;
    padding-left: 50px;
    padding-right: 50px;
  }
}

@media only screen and (max-width: 800px) {
  main #seminar .wrap #seminar_calendar div.first_calendar {
    padding-bottom: 31px;
    padding-left: 37px;
    padding-right: 37px;
  }
}

@media only screen and (max-width: 768px) {
  main #seminar .wrap #seminar_calendar div.first_calendar {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media only screen and (max-width: 426px) {
  main #seminar .wrap #seminar_calendar div.first_calendar {
    padding-top: 11.4px;
    padding-bottom: 24.9px;
    margin-right: 3px;
    margin-left: 3px;
  }
}

main #seminar .wrap #seminar_calendar div.first_calendar .date {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  margin-bottom: 11.5px;
  font-family: "ZenMaruGothic-Black";
}

@media print, screen and (max-width: 1399px) {
  main #seminar .wrap #seminar_calendar div.first_calendar .date {
    justify-content: center;
  }
}

@media only screen and (max-width: 426px) {
  main #seminar .wrap #seminar_calendar div.first_calendar .date {
    justify-content: flex-start;
  }
}

main #seminar .wrap #seminar_calendar div.first_calendar .date .day {
  font-size: 72px;
  font-weight: "ZenMaruGothic-Black";
  margin-right: 15px;
  line-height: 1.45833;
}

@media print, screen and (max-width: 991px) {
  main #seminar .wrap #seminar_calendar div.first_calendar .date .day {
    font-size: 44px;
  }
}

@media only screen and (max-width: 650px) {
  main #seminar .wrap #seminar_calendar div.first_calendar .date .day {
    margin-right: 7px;
  }
}

@media only screen and (max-width: 650px) {
  main #seminar .wrap #seminar_calendar div.first_calendar .date .day {
    font-size: 36px;
  }
}

main #seminar .wrap #seminar_calendar div.first_calendar .date .youbi.start {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #41ced3;
  color: white;
  width: 47px;
  height: 47px;
  border-radius: 50px;
  margin-bottom: 17px;
  font-size: 25px;
  text-align: center;
  font-family: "ZenMaruGothic-Black";
}

@media print, screen and (max-width: 991px) {
  main #seminar .wrap #seminar_calendar div.first_calendar .date .youbi.start {
    width: 35px;
    height: 35px;
    margin-bottom: 10px;
    font-size: 17px;
  }
}

@media only screen and (max-width: 426px) {
  main #seminar .wrap #seminar_calendar div.first_calendar .date .youbi.start {
    width: 23.72px;
    height: 23.72px;
    font-size: 12px;
  }
}

main #seminar .wrap #seminar_calendar div.first_calendar hr {
  color: #eeeeee;
  margin-bottom: 71.5px;
}

@media print, screen and (max-width: 1399px) {
  main #seminar .wrap #seminar_calendar div.first_calendar hr {
    margin-bottom: 35.5px;
  }
}

@media only screen and (max-width: 426px) {
  main #seminar .wrap #seminar_calendar div.first_calendar hr {
    margin-bottom: 51.7px;
  }
}

main #seminar .wrap #seminar_calendar div.first_calendar .timetable div {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  line-height: 1.5;
}

main #seminar .wrap #seminar_calendar div.first_calendar .timetable div.time {
  font-size: 24px;
  margin-right: 19px;
  padding-bottom: 7px;
}

@media only screen and (max-width: 768px) {
  main #seminar .wrap #seminar_calendar div.first_calendar .timetable div.time {
    font-size: 18px;
  }
}

@media only screen and (max-width: 426px) {
  main #seminar .wrap #seminar_calendar div.first_calendar .timetable div.time {
    font-size: 18px;
    margin-right: 19.8px;
  }
}

main #seminar .wrap #seminar_calendar div.first_calendar .timetable div.state {
  background-color: #4ec757;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  margin-right: 8px;
}

@media only screen and (max-width: 768px) {
  main
    #seminar
    .wrap
    #seminar_calendar
    div.first_calendar
    .timetable
    div.state {
    margin-right: 8px;
    width: 10px;
    height: 10px;
  }
}

@media only screen and (max-width: 426px) {
  main
    #seminar
    .wrap
    #seminar_calendar
    div.first_calendar
    .timetable
    div.state {
    margin-right: 3px;
    margin-right: 6.6px;
  }
}

main
  #seminar
  .wrap
  #seminar_calendar
  div.first_calendar
  .timetable
  div.state_iie {
  background-color: #fff;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  margin-right: 8px;
}

main
  #seminar
  .wrap
  #seminar_calendar
  div.first_calendar
  .timetable
  div.state_iie::after {
  content: "-";
  padding-left: 111px;
  padding-bottom: 10px;
}

@media only screen and (max-width: 500px) {
  main
    #seminar
    .wrap
    #seminar_calendar
    div.first_calendar
    .timetable
    div.state_iie::after {
    padding-left: 71px;
  }
}

main #seminar .wrap #seminar_calendar div.first_calendar .timetable div.part {
  font-size: 18px;
  text-align: center;
}

@media only screen and (max-width: 500px) {
  main #seminar .wrap #seminar_calendar div.first_calendar .timetable div.part {
    font-size: 13px;
  }
}

@media only screen and (max-width: 426px) {
  main #seminar .wrap #seminar_calendar div.first_calendar .timetable div.part {
    font-size: 14px;
  }
}

main
  #seminar
  .wrap
  #seminar_calendar
  div.first_calendar
  .timetable
  div.part_iie {
  font-size: 18px;
  align-self: center;
}

main #seminar .wrap #seminar_calendar div.second_calendar {
  width: 520px;
  background-color: #fff;
  padding-top: 30px;
  padding-left: 54px;
  padding-right: 45.5px;
  padding-bottom: 51px;
  border-radius: 30px;
  border: 2px #fde2e3 solid;
}

@media print, screen and (max-width: 1399px) {
  main #seminar .wrap #seminar_calendar div.second_calendar {
    width: 100%;
    padding-left: 100px;
    padding-right: 100px;
  }
}

@media print, screen and (max-width: 991px) {
  main #seminar .wrap #seminar_calendar div.second_calendar {
    padding-bottom: 31px;
    padding-left: 50px;
    padding-right: 50px;
  }
}

@media only screen and (max-width: 800px) {
  main #seminar .wrap #seminar_calendar div.second_calendar {
    padding-bottom: 31px;
    padding-left: 37px;
    padding-right: 37px;
  }
}

@media only screen and (max-width: 768px) {
  main #seminar .wrap #seminar_calendar div.second_calendar {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media only screen and (max-width: 426px) {
  main #seminar .wrap #seminar_calendar div.second_calendar {
    padding-top: 11.4px;
    padding-bottom: 24.9px;
  }
}

main #seminar .wrap #seminar_calendar div.second_calendar .date {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  margin-bottom: 11.5px;
  font-family: "ZenMaruGothic-Black";
}

@media print, screen and (max-width: 1399px) {
  main #seminar .wrap #seminar_calendar div.second_calendar .date {
    justify-content: center;
  }
}

@media only screen and (max-width: 426px) {
  main #seminar .wrap #seminar_calendar div.second_calendar .date {
    justify-content: flex-start;
  }
}

main #seminar .wrap #seminar_calendar div.second_calendar .date .day {
  font-size: 72px;
  font-weight: "ZenMaruGothic-Black";
  margin-right: 15px;
  line-height: 1.45833;
}

@media print, screen and (max-width: 991px) {
  main #seminar .wrap #seminar_calendar div.second_calendar .date .day {
    font-size: 44px;
  }
}

@media only screen and (max-width: 650px) {
  main #seminar .wrap #seminar_calendar div.second_calendar .date .day {
    margin-right: 7px;
  }
}

@media only screen and (max-width: 650px) {
  main #seminar .wrap #seminar_calendar div.second_calendar .date .day {
    font-size: 36px;
  }
}

main #seminar .wrap #seminar_calendar div.second_calendar .date .youbi.start {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fe7b7e;
  color: white;
  width: 47px;
  height: 47px;
  border-radius: 50px;
  margin-bottom: 17px;
  font-size: 25px;
  text-align: center;
  font-family: "ZenMaruGothic-Black";
}

@media print, screen and (max-width: 991px) {
  main #seminar .wrap #seminar_calendar div.second_calendar .date .youbi.start {
    width: 35px;
    height: 35px;
    margin-bottom: 10px;
    font-size: 17px;
  }
}

@media only screen and (max-width: 426px) {
  main #seminar .wrap #seminar_calendar div.second_calendar .date .youbi.start {
    width: 23.72px;
    height: 23.72px;
    font-size: 12px;
  }
}

main #seminar .wrap #seminar_calendar div.second_calendar hr {
  color: #eeeeee;
  margin-bottom: 71.5px;
}

@media print, screen and (max-width: 1399px) {
  main #seminar .wrap #seminar_calendar div.second_calendar hr {
    margin-bottom: 35.5px;
  }
}

@media only screen and (max-width: 426px) {
  main #seminar .wrap #seminar_calendar div.second_calendar hr {
    margin-bottom: 51.7px;
  }
}

main #seminar .wrap #seminar_calendar div.second_calendar .timetable div {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  line-height: 1.5;
}

main #seminar .wrap #seminar_calendar div.second_calendar .timetable div.time {
  font-size: 24px;
  margin-right: 19px;
  padding-bottom: 7px;
}

@media only screen and (max-width: 768px) {
  main
    #seminar
    .wrap
    #seminar_calendar
    div.second_calendar
    .timetable
    div.time {
    font-size: 18px;
  }
}

@media only screen and (max-width: 426px) {
  main
    #seminar
    .wrap
    #seminar_calendar
    div.second_calendar
    .timetable
    div.time {
    font-size: 18px;
    margin-right: 19.8px;
  }
}

main #seminar .wrap #seminar_calendar div.second_calendar .timetable div.state {
  background-color: #4ec757;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  margin-right: 8px;
}

@media only screen and (max-width: 768px) {
  main
    #seminar
    .wrap
    #seminar_calendar
    div.second_calendar
    .timetable
    div.state {
    margin-right: 8px;
    width: 10px;
    height: 10px;
  }
}

@media only screen and (max-width: 426px) {
  main
    #seminar
    .wrap
    #seminar_calendar
    div.second_calendar
    .timetable
    div.state {
    margin-right: 3px;
    margin-right: 6.6px;
  }
}

main
  #seminar
  .wrap
  #seminar_calendar
  div.second_calendar
  .timetable
  div.state_iie {
  background-color: #fff;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  margin-right: 8px;
}

main
  #seminar
  .wrap
  #seminar_calendar
  div.second_calendar
  .timetable
  div.state_iie::after {
  content: "-";
  padding-left: 111px;
  padding-bottom: 10px;
}

@media only screen and (max-width: 500px) {
  main
    #seminar
    .wrap
    #seminar_calendar
    div.second_calendar
    .timetable
    div.state_iie::after {
    padding-left: 71px;
  }
}

main #seminar .wrap #seminar_calendar div.second_calendar .timetable div.part {
  font-size: 18px;
  text-align: center;
}

@media only screen and (max-width: 500px) {
  main
    #seminar
    .wrap
    #seminar_calendar
    div.second_calendar
    .timetable
    div.part {
    font-size: 13px;
  }
}

@media only screen and (max-width: 426px) {
  main
    #seminar
    .wrap
    #seminar_calendar
    div.second_calendar
    .timetable
    div.part {
    font-size: 14px;
  }
}

main
  #seminar
  .wrap
  #seminar_calendar
  div.second_calendar
  .timetable
  div.part_iie {
  font-size: 18px;
  align-self: center;
}

main #seminar .wrap #semi_contents {
  padding-top: 67px;
  padding-left: 60px;
  padding-right: 47px;
  background-color: #fff;
  border-radius: 30px;
}

@media print, screen and (max-width: 1370px) {
  main #seminar .wrap #semi_contents {
    padding-top: 67px;
    padding-left: 60px;
    padding-right: 47px;
  }
}

@media only screen and (max-width: 768px) {
  main #seminar .wrap #semi_contents {
    padding-top: 52px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 26px;
  }
}

@media only screen and (max-width: 426px) {
  main #seminar .wrap #semi_contents {
    padding-top: 22px;
    padding-left: 23px;
    padding-right: 23.5px;
    padding-bottom: 26px;
  }
}

main #seminar .wrap #semi_contents div .number {
  margin-top: 44px;
}

main #seminar .wrap #semi_contents hr {
  margin-top: 0px;
  margin-bottom: 53px;
}

main #seminar .wrap #semi_contents div.one_image {
  display: flex;
  background-image: url("../img/one_image.png");
  background-size: contain;
  background-position: right bottom;
  background-repeat: no-repeat;
}

@media print, screen and (min-width: 1281px) {
  main #seminar .wrap #semi_contents div.one_image {
    background-image: url("../");
  }
}

main #seminar .wrap #semi_contents div.two_image {
  display: flex;
  background-image: url("");
  background-size: contain;
  background-position: right bottom;
  background-repeat: no-repeat;
}

main #seminar .wrap #semi_contents div.round_image div.round_wrapper {
  background-image: url("../img/calc.png");
  background-position: right top;
  background-size: auto;
  background-repeat: no-repeat;
  display: flex;
  position: relative;
}

@media print, screen and (max-width: 1114px) {
  main #seminar .wrap #semi_contents div.round_image div.round_wrapper {
    background-size: 20%;
  }
}

@media only screen and (max-width: 768px) {
  main #seminar .wrap #semi_contents div.round_image div.round_wrapper {
    background-image: url("");
  }
}

@media print, screen and (min-width: 1281px) {
  main #seminar .wrap #semi_contents div.round_image div.round_wrapper {
    padding-bottom: 40px;
  }
}

main
  #seminar
  .wrap
  #semi_contents
  div.round_image
  div.round_wrapper
  div.content
  div {
  position: relative;
}

main
  #seminar
  .wrap
  #semi_contents
  div.round_image
  div.round_wrapper
  div.content
  img {
  position: absolute;
}

main #seminar .wrap #semi_contents div.round_image .calc_wrapper {
  display: none;
  justify-content: center;
  align-items: center;
}

@media only screen and (max-width: 768px) {
  main #seminar .wrap #semi_contents div.round_image .calc_wrapper {
    display: flex;
  }
}

main #seminar .wrap #semi_contents div.round_image .calc_wrapper img {
  width: 300px;
}

main #seminar .wrap #semi_contents div div.number {
  font-size: 100px;
  font-family: "ZenMaruGothic-Black";
  margin-right: 34px;
  color: #fe882f;
}

@media print, screen and (max-width: 1370px) {
  main #seminar .wrap #semi_contents div div.number {
    font-size: 90px;
    margin-right: 24px;
  }
}

@media only screen and (max-width: 768px) {
  main #seminar .wrap #semi_contents div div.number {
    font-size: 60px;
    margin-right: 18px;
  }
}

@media only screen and (max-width: 426px) {
  main #seminar .wrap #semi_contents div div.number {
    font-size: 40px;
    margin-right: 14px;
  }
}

main #seminar .wrap #semi_contents div.content_title {
  font-size: 60px;
  font-family: "ZenMaruGothic-Black";
  text-align: left;
  line-height: 1.2;
  margin-bottom: 20px;
}

@media only screen and (max-width: 768px) {
  main #seminar .wrap #semi_contents div.content_title {
    font-size: 42px;
  }
}

@media only screen and (max-width: 426px) {
  main #seminar .wrap #semi_contents div.content_title {
    font-size: 26px;
  }
}

main #seminar .wrap #semi_contents div.content_title p {
  font-size: 40px;
  font-weight: "ZenMaruGothic-Black";
}

@media print, screen and (max-width: 1370px) {
  main #seminar .wrap #semi_contents div.content_title p {
    font-size: 30px;
  }
}

@media only screen and (max-width: 768px) {
  main #seminar .wrap #semi_contents div.content_title p {
    font-size: 20px;
  }
}

@media only screen and (max-width: 426px) {
  main #seminar .wrap #semi_contents div.content_title p {
    font-size: 14px;
  }
}

main #seminar .wrap #semi_contents div.content_title .subtitle {
  font-size: 40px;
}

@media print, screen and (max-width: 1370px) {
  main #seminar .wrap #semi_contents div.content_title {
    font-size: 40px;
  }
}

@media only screen and (max-width: 768px) {
  main #seminar .wrap #semi_contents div.content_title {
    font-size: 32px;
  }
}

@media only screen and (max-width: 426px) {
  main #seminar .wrap #semi_contents div.content_title {
    font-size: 26px;
  }
}

main #seminar .wrap #semi_contents div.content_text {
  font-size: 18px;
  text-align: left;
  margin-bottom: 76px;
}

@media print, screen and (max-width: 1370px) {
  main #seminar .wrap #semi_contents div.content_text {
    font-size: 18px;
  }
}

@media only screen and (max-width: 768px) {
  main #seminar .wrap #semi_contents div.content_text {
    font-size: 15px;
  }
}

@media only screen and (max-width: 426px) {
  main #seminar .wrap #semi_contents div.content_text {
    font-size: 14px;
  }
}

@media print, screen and (min-width: 1281px) {
  main #seminar .wrap #semi_contents div.content_text {
    margin-bottom: 0px;
  }
}

main #seminar .wrap #semi_contents div.content_text .pictures {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 39.4px;
  margin-top: 50px;
}

main #seminar .wrap #semi_contents div.content_text .pictures img {
  width: 47%;
  height: auto;
}

@media print, screen and (max-width: 1370px) {
  main #seminar .wrap #semi_contents div.content_text .pictures {
    gap: 29px;
  }
}

@media print, screen and (min-width: 1281px) {
  main #seminar .wrap #semi_contents div.content_text .pictures {
    margin-bottom: 40px;
  }
}

@media only screen and (max-width: 768px) {
  main #seminar .wrap #semi_contents div.content_text .pictures {
    gap: 20px;
  }
}

@media only screen and (max-width: 426px) {
  main #seminar .wrap #semi_contents div.content_text .pictures {
    gap: 13px;
  }
}

main #seminar .wrap #semi_contents div.content_text p .yellow {
  color: #fe882f;
  -webkit-text-decoration: underline 18px rgba(255, 242, 0, 0.35);
  text-decoration: underline 18px rgba(255, 242, 0, 0.35);
  text-decoration-thickness: 11px;
  text-underline-offset: -4px;
}

@media only screen and (max-width: 768px) {
  main #seminar .wrap #semi_contents div.content_text p .yellow {
    text-decoration-thickness: 5px;
    text-underline-offset: -2px;
  }
}

main #seminar .wrap #semi_contents hr {
  background-color: rgba(224, 224, 224, 0.6);
}

main #seminar .wrap div#dupli {
  background-color: white;
  padding-top: 49px 44px 49px 60px;
}

main #seminar.r_no_bm {
  margin-bottom: 0px;
}

main .spe_child {
  border: none;
  margin: 0px;
}

main #seminar .wrap .no_bm.other_margin {
  margin-bottom: 0px;
}

main .common_wrap_02 {
  width: 100%;
  padding: 0px;
}

main .common_wrap_02 .wrap {
  padding-left: 200px;
  padding-right: 200px;
  padding-top: 40.5px;
  padding-bottom: 70px;
}

@media print, screen and (max-width: 1280px) {
  main .common_wrap_02 .wrap {
    padding: 40px 120px 60px;
  }
}

@media print, screen and (max-width: 991px) {
  main .common_wrap_02 .wrap {
    padding: 40px 80px;
  }
}

@media only screen and (max-width: 768px) {
  main .common_wrap_02 .wrap {
    padding: 40px;
  }
}

@media only screen and (max-width: 560px) {
  main .common_wrap_02 .wrap {
    padding: 40px 20px;
  }
}

main .common_wrap_02 .wrap .inner {
  border-radius: 30px;
  padding: 36.8px 41.7px 27px 47px;
}

@media only screen and (max-width: 768px) {
  main .common_wrap_02 .wrap .inner {
    border-radius: 20px;
    padding: 30.5px 22.5px 11.5px;
  }
}

@media print, screen and (max-width: 1399px) {
  main .common_wrap_02 .wrap .inner .under {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
}

main .common_wrap_02 div.inner {
  border-radius: 30px;
  margin-bottom: 0px;
}

main .common_wrap_02 div.inner .above {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media print, screen and (max-width: 1399px) {
  main .common_wrap_02 div.inner .above {
    flex-direction: column;
    gap: 15px;
  }
}

main .common_wrap_02 div.inner .above .content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

main .common_wrap_02 div.inner .above .content .number {
  font-size: 72px;
  color: #fe882f;
  font-family: "ZenMaruGothic-Black";
  gap: 35px;
  margin-right: 35px;
}

@media only screen and (max-width: 768px) {
  main .common_wrap_02 div.inner .above .content .number {
    font-size: 50px;
    margin-right: 10px;
  }
}

@media only screen and (max-width: 426px) {
  main .common_wrap_02 div.inner .above .content .number {
    font-size: 40px;
  }
}

main .common_wrap_02 div.inner .above .content .text {
  letter-spacing: -1px;
}

main .common_wrap_02 div.inner .above .content .text p {
  font-size: 28px;
  display: flex;
}

@media only screen and (max-width: 768px) {
  main .common_wrap_02 div.inner .above .content .text p {
    font-size: 19px;
  }
}

main .common_wrap_02 div.inner .above .content .text p span {
  /* color: #FE882F; */
}

@media print, screen and (max-width: 1183px) {
  main .common_wrap_02 div.inner .above .content .text p span {
    font-size: 23px;
  }
}

main .common_wrap_02 div.inner .above .picture {
  width: 80%;
  max-width: 400px;
  /* width: 282px; */
  /* height: 188px; */
  border-radius: 60px;
}

@media only screen and (max-width: 768px) {
  main .common_wrap_02 div.inner .above .picture {
    margin-top: 17px;
  }
}

main .common_wrap_02 div.inner .gap {
  width: 100%;
  height: 3px;
  color: #eeeeee;
  margin-top: 24.2px;
  margin-bottom: 24.2px;
}

main .common_wrap_02 div.inner .under .show {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media print, screen and (max-width: 1399px) {
  main .common_wrap_02 div.inner .under .show {
    justify-content: center;
  }
}

@media only screen and (max-width: 560px) {
  main .common_wrap_02 div.inner .under .show {
    width: 100%;
  }
}

main .common_wrap_02 div.inner .under .show .number {
  font-size: 72px;
  color: #fe882f;
  font-family: "ZenMaruGothic-Black";
  gap: 35px;
  margin-right: 35px;
}

@media only screen and (max-width: 768px) {
  main .common_wrap_02 div.inner .under .show .number {
    font-size: 50px;
    margin-right: 10px;
  }
}

@media only screen and (max-width: 426px) {
  main .common_wrap_02 div.inner .under .show .number {
    font-size: 40px;
  }
}

main .common_wrap_02 div.inner .under .show .pic {
  width: 350px;
  height: 192px;
}

@media only screen and (max-width: 768px) {
  main .common_wrap_02 div.inner .under .show .pic {
    display: none;
  }
}

main .common_wrap_02 div.inner .under .show .pic img {
  width: 100%;
  height: 100%;
}

main .common_wrap_02 div.inner .under .show .content p {
  font-size: 28px;
}

@media print, screen and (max-width: 991px) {
  main .common_wrap_02 div.inner .under .show .content p {
    font-size: 24px;
  }
}

@media only screen and (max-width: 768px) {
  main .common_wrap_02 div.inner .under .show .content p {
    font-size: 22px;
  }
}

@media only screen and (max-width: 560px) {
  main .common_wrap_02 div.inner .under .show .content p {
    font-size: 18px;
  }
}

main .common_wrap_02 div.inner .under .hidden {
  width: 313px;
  height: 172px;
  display: flex;
  align-self: center;
}

@media print, screen and (min-width: 1401px) {
  main .common_wrap_02 div.inner .under .hidden {
    display: none;
  }
}

main .common_wrap_02 div.inner .under .hidden img {
  width: 100%;
  height: 100%;
}

main .common_wrap_03 .wrap {
  max-width: 700px;
  padding-top: 32.3px;
  padding-bottom: 26px;
  border-radius: 10px;
  background-color: #fe882f;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-items: center;
}

@media print, screen and (max-width: 1114px) {
  main .common_wrap_03 .wrap {
    padding-top: 22.3px;
    padding-bottom: 18px;
  }
}

@media only screen and (max-width: 768px) {
  main .common_wrap_03 .wrap {
    padding-top: 17px;
    padding-bottom: 14px;
  }
}

main .common_wrap_03 .wrap img {
  width: 113.34px;
}

@media print, screen and (max-width: 1114px) {
  main .common_wrap_03 .wrap img {
    width: 70px;
  }
}

@media only screen and (max-width: 500px) {
  main .common_wrap_03 .wrap img {
    width: 40px;
  }
}

main .common_wrap_03 .wrap div {
  color: #fff;
  font-size: 36px;
  text-align: center;
}

@media print, screen and (max-width: 1280px) {
  main .common_wrap_03 .wrap div {
    font-size: 24px;
  }
}

@media only screen and (max-width: 426px) {
  main .common_wrap_03 .wrap div {
    font-size: 16px;
  }
}

main .common_wrap_03 .wrap div:last-child {
  font-size: 29px;
}

@media print, screen and (max-width: 1280px) {
  main .common_wrap_03 .wrap div:last-child {
    font-size: 20px;
  }
}

@media only screen and (max-width: 426px) {
  main .common_wrap_03 .wrap div:last-child {
    font-size: 14px;
  }
}

main .common_wrap_04 .inner {
  display: flex;
  flex-direction: column;
  padding: 70.5px 90px 52px 82px;
  border-radius: 30px;
  margin-bottom: 0px;
  justify-content: center;
}

@media print, screen and (max-width: 1370px) {
  main .common_wrap_04 .inner {
    padding: 31px 30px 27px 30px;
  }
}

@media only screen and (max-width: 768px) {
  main .common_wrap_04 .inner {
    padding: 20px 15px 10px 15px;
  }
}

@media only screen and (max-width: 426px) {
  main .common_wrap_04 .inner {
    padding: 13px 6px 10px 6px;
  }
}

main .common_wrap_04 .inner .images {
  display: flex;
  justify-content: space-between;
  margin-bottom: 43px;
}

@media print, screen and (max-width: 1183px) {
  main .common_wrap_04 .inner .images {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}

@media only screen and (max-width: 426px) {
  main .common_wrap_04 .inner .images {
    margin-bottom: 4px;
  }
}

main .common_wrap_04 .inner .images img {
  width: 400px;
  height: auto;
}

@media print, screen and (max-width: 1285px) {
  main .common_wrap_04 .inner .images {
    width: 330px;
  }
}

@media print, screen and (max-width: 1183px) {
  main .common_wrap_04 .inner .images {
    width: 430px;
    margin-top: 15px;
    margin-bottom: 15px;
  }
}

@media only screen and (max-width: 650px) {
  main .common_wrap_04 .inner .images {
    width: 270px;
  }
}

main .common_wrap_04 img {
  width: calc(100% - 102px);
  height: auto;
  margin-bottom: 54px;
  align-self: center;
}

@media only screen and (max-width: 768px) {
  main .common_wrap_04 img {
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 426px) {
  main .common_wrap_04 img {
    width: 315px;
  }
}

main .common_wrap_04 .access {
  width: 800px;
  background-color: #fceca1;
  color: #fe882f;
  font-size: 18px;
  padding-bottom: 4px;
  border-radius: 50px;
  margin-bottom: 31px;
  text-align: center;
  align-self: center;
}

@media print, screen and (max-width: 1183px) {
  main .common_wrap_04 .access {
    width: 500px;
    margin-bottom: 25px;
  }
}

@media only screen and (max-width: 768px) {
  main .common_wrap_04 .access {
    width: 350px;
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 500px) {
  main .common_wrap_04 .access {
    width: 250px;
    margin-bottom: 15px;
  }
}

main .common_wrap_04 .address {
  align-self: center;
  font-size: 40px;
  font-family: "ZenMaruGothic-Black";
  color: #fe882f;
  text-align: center;
  margin-bottom: 26px;
}

@media print, screen and (max-width: 1183px) {
  main .common_wrap_04 .address {
    font-size: 30px;
    margin-bottom: 24px;
  }
}

@media print, screen and (max-width: 1183px) {
  main .common_wrap_04 .address {
    font-size: 30px;
    margin-bottom: 24px;
  }
}

@media only screen and (max-width: 768px) {
  main .common_wrap_04 .address {
    font-size: 20px;
    margin-bottom: 12px;
  }
}

main .common_wrap_04 .way {
  text-align: center;
  font-size: 18px;
  margin-bottom: 57px;
  font-family: "ZenMaruGothic-Black";
}

@media print, screen and (max-width: 1183px) {
  main .common_wrap_04 .way {
    font-size: 16px;
    margin-bottom: 42px;
  }
}

@media only screen and (max-width: 768px) {
  main .common_wrap_04 .way {
    font-size: 11px;
    margin-bottom: 20px;
  }
}

main .common_wrap_04 .way p {
  text-align: center;
}

main .common_wrap_04 .map {
  width: 100%;
}

main .common_wrap_04 .map iframe {
  width: 100%;
  height: 411px;
}

@media print, screen and (max-width: 1114px) {
  main .common_wrap_04 .map iframe {
    height: 351px;
  }
}

@media only screen and (max-width: 768px) {
  main .common_wrap_04 .map iframe {
    height: 270px;
  }
}

@media only screen and (max-width: 426px) {
  main .common_wrap_04 .map iframe {
    height: 150px;
  }
}

main .seminar_location {
  background-color: #fffee5;
}

main .seminar_location .wrap {
  padding: 54px 200px 65.2px;
}

@media print, screen and (max-width: 1183px) {
  main .seminar_location .wrap {
    padding: 44px 120px 35px;
  }
}

@media only screen and (max-width: 768px) {
  main .seminar_location .wrap {
    padding: 44px 55px 35px;
  }
}

@media only screen and (max-width: 426px) {
  main .seminar_location .wrap {
    padding: 32px 15px 28px;
  }
}

main .seminar_location .wrap .inner {
  background-color: white;
  padding: 70.5px 100px 52px;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media print, screen and (max-width: 1114px) {
  main .seminar_location .wrap .inner {
    padding: 70.5px 30px 52px;
  }
}

@media only screen and (max-width: 768px) {
  main .seminar_location .wrap .inner {
    padding: 30px 25px 30px;
    border-radius: 15px;
  }
}

@media only screen and (max-width: 426px) {
  main .seminar_location .wrap .inner {
    padding: 20px 20px 20px;
  }
}

main .seminar_location .wrap .inner .pictures {
  display: flex;
  gap: 28;
  justify-content: space-between;
}

@media print, screen and (max-width: 1114px) {
  main .seminar_location .wrap .inner .pictures {
    flex-direction: column;
  }
}

main .seminar_location .wrap .inner .pictures figure {
  width: calc(50% - 15px);
}

@media print, screen and (max-width: 1114px) {
  main .seminar_location .wrap .inner .pictures figure {
    width: 100%;
    padding-bottom: 10px;
  }
}

main .seminar_location .wrap .inner .pictures figure img {
  width: 100%;
}

main .seminar_location .wrap .inner .logo {
  width: 100%;
  padding-top: 54px;
  padding-left: 2%;
  padding-bottom: 54px;
}

main .seminar_location .wrap .inner .logo figure {
  width: 97%;
}

main .seminar_location .wrap .inner .logo figure img {
  width: 100%;
}

@media print, screen and (max-width: 1114px) {
  main .seminar_location .wrap .inner .logo {
    padding-top: 33px;
    padding-bottom: 33px;
  }
}

@media only screen and (max-width: 768px) {
  main .seminar_location .wrap .inner .logo {
    padding-top: 17px;
    padding-bottom: 17px;
  }
}

main .seminar_location .wrap .inner .access {
  background-color: #fceca1;
  color: #fe882f;
  font-size: 18px;
  width: 95%;
  height: 30px;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media only screen and (max-width: 768px) {
  main .seminar_location .wrap .inner .access {
    font-size: 16px;
  }
}

main .seminar_location .wrap .inner .location {
  color: #fe882f;
  font-size: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 31px;
  padding-bottom: 26px;
  text-align: center;
}

@media print, screen and (max-width: 1348px) {
  main .seminar_location .wrap .inner .location {
    font-size: 30px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

@media only screen and (max-width: 768px) {
  main .seminar_location .wrap .inner .location {
    font-size: 20px;
    padding-top: 7px;
    padding-bottom: 7px;
  }
}

@media only screen and (max-width: 426px) {
  main .seminar_location .wrap .inner .location {
    text-align: center;
    font-size: 17px;
    padding-top: 5px;
    padding-bottom: 5px;
  }
}

main .seminar_location .wrap .inner .way p {
  font-size: 18px;
  line-height: 1.6;
}

@media print, screen and (max-width: 1370px) {
  main .seminar_location .wrap .inner .way p {
    text-align: center;
    font-size: 11px;
  }
}

main .seminar_location .wrap .inner .map {
  width: 100%;
  height: 411px;
  padding-top: 57px;
}

@media print, screen and (max-width: 1280px) {
  main .seminar_location .wrap .inner .map {
    height: 350px;
    padding-top: 24px;
  }
}

@media print, screen and (max-width: 991px) {
  main .seminar_location .wrap .inner .map {
    height: 350px;
    padding-top: 30px;
  }
}

@media only screen and (max-width: 768px) {
  main .seminar_location .wrap .inner .map {
    height: 200px;
    padding-top: 20px;
  }
}

@media only screen and (max-width: 426px) {
  main .seminar_location .wrap .inner .map {
    height: 150px;
    padding-top: 12px;
  }
}

main .seminar_location .wrap .inner .map iframe {
  width: 100%;
  height: 100%;
}

.only_title div.title {
  color: #70b859;
  font-size: 43px;
  font-family: "ZenMaruGothic-Black";
  text-align: center;
  margin-bottom: 49px;
  margin-top: 60px;
}

@media only screen and (max-width: 768px) {
  .only_title div.title {
    margin-top: 40px;
    margin-bottom: 35px;
    font-size: 28px;
  }
}

@media only screen and (max-width: 426px) {
  .only_title div.title {
    margin-top: 20px;
    margin-bottom: 25px;
    font-size: 18px;
  }
}

#fv_r {
  background-image: url("../img/fv_r.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom right;
  padding-top: 158.3px;
  padding-left: 50px;
  padding-bottom: 16px;
  margin-left: 170px;
  margin-right: 170px;
  position: relative;
  border-radius: 20px;
  bottom: 28.4px;
}

@media print, screen and (max-width: 1183px) {
  #fv_r {
    padding-left: 49px;
    padding-top: 40px;
    padding-right: 49px;
    margin-left: 140px;
    margin-right: 140px;
  }
}

@media print, screen and (max-width: 991px) {
  #fv_r {
    padding-left: 36px;
    padding-top: 30px;
    padding-right: 36px;
    display: flex;
    flex-direction: column;
    margin-left: 90px;
    margin-right: 90px;
  }
}

@media only screen and (max-width: 768px) {
  #fv_r {
    margin-left: 40px;
    margin-right: 40px;
    background-image: url("../img/f_f_bk.png");
    padding-bottom: 300px;
  }
}

@media only screen and (max-width: 500px) {
  #fv_r {
    margin-top: 27.2px;
    padding-left: 17px;
    padding-right: 17px;
    margin-left: 20px;
    margin-right: 20px;
    background-image: url("../img/f_f_bk.png");
    padding-bottom: 277px;
  }
}

@media only screen and (max-width: 426px) {
  #fv_r {
    margin-left: 40px;
    margin-right: 40px;
    padding-bottom: 230px;
  }
}

#fv_r .fv_02 {
  font-size: 60px;
  font-weight: bold;
  color: #fe882f;
}

@media print, screen and (max-width: 1285px) {
  #fv_r .fv_02 {
    font-size: 40px;
  }
}

@media only screen and (max-width: 768px) {
  #fv_r .fv_02 {
    font-size: 27px;
  }
}

@media only screen and (max-width: 426px) {
  #fv_r .fv_02 {
    font-size: 20px;
  }
}

#fv_r .bottom {
  margin-bottom: 26px;
}

@media only screen and (max-width: 768px) {
  #fv_r .bottom {
    margin-bottom: 16px;
  }
}

@media only screen and (max-width: 426px) {
  #fv_r .bottom {
    margin-bottom: 6px;
  }
}

#fv_r .date .year {
  font-size: 32px;
  font-family: "ZenMaruGothic-Black";
  line-height: 0.8;
}

@media print, screen and (max-width: 991px) {
  #fv_r .date .year {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 5px;
  }
}

#fv_r .date .other {
  display: flex;
}

@media print, screen and (max-width: 991px) {
  #fv_r .date .other {
    justify-content: space-around;
  }
}

#fv_r .date .other .start {
  margin-right: 30.5px;
  position: relative;
}

@media print, screen and (max-width: 991px) {
  #fv_r .date .other .start {
    margin-right: 10px;
  }
}

#fv_r .date .other .start .start_date {
  display: flex;
  align-items: flex-end;
}

@media print, screen and (max-width: 991px) {
  #fv_r .date .other .start .start_date {
    justify-content: space-around;
  }
}

#fv_r .date .other .start .start_date .start_day {
  font-size: 72px;
  font-family: "ZenMaruGothic-Black";
  line-height: 1;
  font-weight: bold;
  margin-right: 15px;
}

@media print, screen and (max-width: 991px) {
  #fv_r .date .other .start .start_date .start_day {
    font-size: 54px;
  }
}

@media only screen and (max-width: 426px) {
  #fv_r .date .other .start .start_date .start_day {
    font-size: 44px;
  }
}

#fv_r .date .other .start .start_date .start_youbi {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #41ced3;
  font-size: 25px;
  font-family: "ZenMaruGothic-Black";
  border-radius: 50%;
  width: 47px;
  height: 47px;
  color: #fff;
  margin-bottom: -6px;
}

@media print, screen and (max-width: 991px) {
  #fv_r .date .other .start .start_date .start_youbi {
    font-size: 18px;
    width: 35px;
    height: 35px;
  }
}

#fv_r .date .other .start .start_time {
  margin-top: 14px;
  font-family: "ZenMaruGothic-Bold";
  font-weight: bold;
  font-size: 32px;
}

@media only screen and (max-width: 426px) {
  #fv_r .date .other .start .start_time {
    font-size: 25px;
  }
}

#fv_r .date .other .end {
  margin-right: 30.5px;
  position: relative;
}

@media print, screen and (max-width: 991px) {
  #fv_r .date .other .end {
    margin-right: 0px;
  }
}

#fv_r .date .other .end .end_date {
  display: flex;
  align-items: flex-end;
}

@media print, screen and (max-width: 991px) {
  #fv_r .date .other .end .end_date {
    justify-content: space-around;
  }
}

#fv_r .date .other .end .end_date .end_day {
  font-size: 72px;
  font-family: "ZenMaruGothic-Black";
  line-height: 1;
  font-weight: bold;
  margin-right: 15px;
}

@media print, screen and (max-width: 991px) {
  #fv_r .date .other .end .end_date .end_day {
    font-size: 54px;
  }
}

@media only screen and (max-width: 426px) {
  #fv_r .date .other .end .end_date .end_day {
    font-size: 44px;
  }
}

#fv_r .date .other .end .end_date .end_youbi {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ff7b7e;
  font-size: 25px;
  font-family: "ZenMaruGothic-Black";
  border-radius: 50%;
  width: 47px;
  height: 47px;
  color: #fff;
  margin-bottom: -6px;
}

@media print, screen and (max-width: 991px) {
  #fv_r .date .other .end .end_date .end_youbi {
    font-size: 18px;
    width: 35px;
    height: 35px;
  }
}

#fv_r .date .other .end .end_time {
  margin-top: 14px;
  font-family: "ZenMaruGothic-Bold";
  font-weight: bold;
  font-size: 32px;
}

@media only screen and (max-width: 426px) {
  #fv_r .date .other .end .end_time {
    font-size: 25px;
  }
}

#fv_r .date .other .end::before {
  content: "";
  position: absolute;
  background-color: #333;
  width: 1px;
  height: 118px;
  top: 0px;
  left: -5px;
}

#fv_r .fv_left_foot {
  position: absolute;
  bottom: 71px;
}

@media print, screen and (max-width: 991px) {
  #fv_r .fv_left_foot {
    margin-top: 85px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

#fv_r .fv_left_foot .slogon {
  color: #fe882f;
  font-size: 21px;
  font-weight: "ZenMaruGothic-Black";
  letter-spacing: -1.5px;
  margin-left: 24px;
  margin-bottom: 14px;
}

@media print, screen and (max-width: 991px) {
  #fv_r .fv_left_foot .slogon {
    margin-left: 0px;
  }
}

@media only screen and (max-width: 768px) {
  #fv_r .fv_left_foot .slogon {
    font-size: 17px;
  }
}

#fv_r .fv_left_foot .reser_btn {
  height: 92px;
  width: 480px;
  background-color: #fe882f;
  font-size: 36px;
  font-weight: bold;
  font-weight: "ZenMaruGothic-Black";
  color: #fff;
  border-radius: 10px;
  padding: 21px 42px 20.2px 44px;
  display: flex;
  align-items: center;
}

@media only screen and (max-width: 768px) {
  #fv_r .fv_left_foot .reser_btn {
    height: 72px;
    width: 450px;
  }
}

@media print, screen and (max-width: 991px) {
  #fv_r .fv_left_foot .reser_btn {
    height: 43px;
    font-size: 24px;
    padding: 10px 20px;
    width: 300px;
    display: flex;
    justify-content: space-around;
  }
}

#fv_r .fv_left_foot .reser_btn figure img {
  width: 48.2px;
  margin-right: 21.8px;
}

@media print, screen and (max-width: 991px) {
  #fv_r .fv_left_foot .reser_btn figure img {
    width: 36.05px;
    margin-right: 10.1px;
  }
}

@media only screen and (max-width: 768px) {
  #fv_r .fv_left_foot .reser_btn figure img {
    width: 36.05px;
    margin-right: 10.1px;
  }
}

@media print, screen and (max-width: 991px) {
  #fv_r .fv_left_foot .reser_btn .reser_text {
    font-size: 23px;
  }
}

#fv_r .fv_right_foot {
  position: absolute;
  bottom: 20px;
  right: 14.6px;
}

#start {
  padding: 50.5px 300px 6px 293px;
}

@media print, screen and (min-width: 1281px) {
  #start {
    padding: 50.5px 200px 22px 293px;
  }
}

@media print, screen and (max-width: 991px) {
  #start {
    padding: 50.5px 100px 18px 100px;
  }
}

@media only screen and (max-width: 768px) {
  #start {
    padding: 25.5px 50px 15px 50px;
  }
}

@media only screen and (max-width: 768px) {
  #start {
    padding: 15px 15px 10px 15px;
  }
}

#start .start_time {
  display: flex;
  align-items: center;
}

@media print, screen and (min-width: 1281px) {
  #start .start_time {
    flex-direction: column;
    justify-content: flex-start;
  }
}

#start .start_time .indi {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  color: #fe882f;
  font-family: "ZenMaruGothic-Black";
  font-size: 32px;
}

#start .start_time .indi .decoration {
  display: none;
}

@media print, screen and (min-width: 1281px) {
  #start .start_time .indi .decoration {
    display: block;
  }
}

#start .start_time .indi .decoration .dotted_line {
  max-width: 342px;
  height: 3px;
  width: calc(20.57vw + 5px);
  background-image: url("../img/dot_white.png");
  background-repeat: repeat-x;
}

@media print, screen and (max-width: 1280px) {
  #start .start_time .indi .decoration .dotted_line {
    width: calc(12vw + 5px);
  }
}

#start .start_time .indi .decoration .dotted_line:first-child {
  margin-bottom: 9px;
}

#start .start_time .indi .content {
  align-self: center;
  min-width: 200px;
  color: #fe882f;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 32px;
  width: 100%;
}

@media only screen and (max-width: 426px) {
  #start .start_time .indi .content {
    font-size: 20px;
  }
}

@media print, screen and (max-width: 1280px) {
  #start .start_time .indi {
    margin-right: 30px;
  }
}

@media print, screen and (min-width: 1281px) {
  #start .start_time .indi {
    font-size: 32px;
    margin-right: 0px;
  }
}

@media print, screen and (max-width: 991px) {
  #start .start_time .indi {
    font-size: 26px;
  }
}

@media only screen and (max-width: 768px) {
  #start .start_time .indi {
    font-size: 20px;
  }
}

@media only screen and (max-width: 426px) {
  #start .start_time .indi {
    font-size: 16px;
  }
}

#start .start_time .indi_detail .years {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 32px;
}

@media only screen and (max-width: 426px) {
  #start .start_time .indi_detail .years {
    font-size: 29px;
  }
}

#start .start_time .indi_detail .year {
  font-family: "ZenMaruGothic-Black";
  font-size: 32px;
  display: flex;
}

@media print, screen and (min-width: 1281px) {
  #start .start_time .indi_detail .year {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

@media print, screen and (max-width: 991px) {
  #start .start_time .indi_detail .year {
    font-size: 30px;
  }
}

@media only screen and (max-width: 426px) {
  #start .start_time .indi_detail .year {
    font-size: 29px;
  }
}

#start .start_time .indi_detail .date {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

@media only screen and (max-width: 768px) {
  #start .start_time .indi_detail .date {
    flex-direction: column;
    align-items: center;
  }
}

#start .start_time .indi_detail .date .first_date {
  margin-right: 35px;
}

@media print, screen and (max-width: 991px) {
  #start .start_time .indi_detail .date .first_date {
    margin-right: 26px;
  }
}

@media only screen and (max-width: 768px) {
  #start .start_time .indi_detail .date .first_date {
    margin-right: 0px;
  }
}

#start .start_time .indi_detail .date .first_date .day_date {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  margin-bottom: 6px;
}

#start .start_time .indi_detail .date .first_date .day_date .day {
  font-family: "ZenMaruGothic-Black";
  font-size: 72px;
  line-height: 1;
  margin-right: 15px;
}

@media only screen and (max-width: 768px) {
  #start .start_time .indi_detail .date .first_date .day_date .day {
    font-size: 67px;
    margin-right: 10px;
  }
}

@media only screen and (max-width: 426px) {
  #start .start_time .indi_detail .date .first_date .day_date .day {
    margin-right: 5px;
  }
}

#start .start_time .indi_detail .date .first_date .day_date .youbi {
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  background-color: #41ced3;
  font-family: "ZenMaruGothic-Black";
  font-size: 25px;
  width: 47px;
  height: 47px;
  border-radius: 50%;
}

@media only screen and (max-width: 768px) {
  #start .start_time .indi_detail .date .first_date .day_date .youbi {
    font-size: 22px;
    width: 45px;
    height: 45px;
  }
}

@media only screen and (max-width: 426px) {
  #start .start_time .indi_detail .date .first_date .day_date .youbi {
    font-size: 17px;
    width: 43px;
    height: 43px;
  }
}

#start .start_time .indi_detail .date .first_date .time p {
  font-size: 20px;
}

@media only screen and (max-width: 768px) {
  #start .start_time .indi_detail .date .first_date .time p {
    font-size: 18px;
  }
}

#start .start_time .indi_detail .date .gap {
  width: 1px;
  height: 165px;
  border-right: solid 2px #646464;
  border-style: dashed;
  background-color: white;
  margin-right: 25px;
}

@media only screen and (max-width: 768px) {
  #start .start_time .indi_detail .date .gap {
    display: none;
  }
}

#start .start_time .indi_detail .date .second_date {
  margin-right: 35px;
}

@media print, screen and (max-width: 991px) {
  #start .start_time .indi_detail .date .second_date {
    margin-right: 26px;
  }
}

@media only screen and (max-width: 768px) {
  #start .start_time .indi_detail .date .second_date {
    margin-right: 0px;
  }
}

#start .start_time .indi_detail .date .second_date .day_date {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  margin-bottom: 6px;
}

#start .start_time .indi_detail .date .second_date .day_date .day {
  font-family: "ZenMaruGothic-Black";
  font-size: 72px;
  line-height: 1;
  margin-right: 15px;
}

@media only screen and (max-width: 768px) {
  #start .start_time .indi_detail .date .second_date .day_date .day {
    font-size: 67px;
    margin-right: 10px;
  }
}

@media only screen and (max-width: 426px) {
  #start .start_time .indi_detail .date .second_date .day_date .day {
    margin-right: 5px;
  }
}

#start .start_time .indi_detail .date .second_date .day_date .youbi {
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  background-color: #ff7b7e;
  font-family: "ZenMaruGothic-Black";
  font-size: 25px;
  width: 47px;
  height: 47px;
  border-radius: 50%;
}

@media only screen and (max-width: 768px) {
  #start .start_time .indi_detail .date .second_date .day_date .youbi {
    font-size: 22px;
    width: 45px;
    height: 45px;
  }
}

@media only screen and (max-width: 426px) {
  #start .start_time .indi_detail .date .second_date .day_date .youbi {
    font-size: 17px;
    width: 43px;
    height: 43px;
  }
}

#start .start_time .indi_detail .date .second_date .time p {
  font-size: 20px;
}

@media only screen and (max-width: 768px) {
  #start .start_time .indi_detail .date .second_date .time p {
    font-size: 18px;
  }
}

#start .section_gap {
  margin-top: 32px;
  margin-bottom: 39.5px;
  border-top: solid 3px #d6d6d6;
  border-style: dashed;
  width: calc(100vw - 595px);
  width: 100%;
  height: 3px;
  margin-left: auto;
  margin-right: auto;
}

#start .start_location {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media print, screen and (min-width: 1281px) {
  #start .start_location {
    flex-direction: column;
  }
}

@media only screen and (max-width: 426px) {
  #start .start_location .indi {
    margin-bottom: 38.5px;
  }
}

.back_white {
  background-color: white !important;
}

.mt-81 {
  margin-bottom: 81px;
}

#grey {
  background-color: #f5f5f5;
  margin: 81px 160px 122.5px;
  padding: 50px 58px 49px;
  border-radius: 30px;
  line-height: 1.95;
  font-size: 19px;
}

@media print, screen and (min-width: 1281px) {
  #grey {
    margin: 81px 60px 122.5px;
    padding: 50px 48px 49px;
  }
}

@media print, screen and (max-width: 991px) {
  #grey {
    margin: 61px 45px 100px;
    padding: 50px 38px 49px;
  }
}

@media only screen and (max-width: 768px) {
  #grey {
    margin: 41px 35px 66px;
    border-radius: 15px;
    padding: 50px 25px 49px;
    font-size: 17px;
  }
}

@media only screen and (max-width: 426px) {
  #grey {
    margin: 21px 21px 33px;
    padding: 50px 15px 49px;
    font-size: 16px;
  }
}

#grey p {
  font-size: 19px;
  color: #333333;
}

@media only screen and (max-width: 426px) {
  #grey p {
    font-size: 16px;
  }
}

#grey .common_wrap_03.back_white.pt-81 {
  padding-top: 10px;
}

#grey .pt-10 {
  padding-top: 10px;
}

#seminar.common_wrap.final {
  background-color: #fff5dc;
  padding-bottom: 40px;
}

@media print, screen and (max-width: 1280px) {
  #seminar.common_wrap.final {
    padding-right: 90px;
    padding-left: 90px;
  }
}

footer .footer_about {
  background: #fff5dc;
}

footer .footer_about .wrap {
  padding: 55px 165px 115px 145px;
}

@media print, screen and (max-width: 1700px) {
  footer .footer_about .wrap {
    padding: 0px 90px 115px;
  }
}

@media print, screen and (max-width: 1280px) {
  footer .footer_about .wrap {
    padding: 0px 60px 115px;
  }
}

@media print, screen and (max-width: 991px) {
  footer .footer_about .wrap {
    padding: 0px 40px 80px;
  }
}

@media only screen and (max-width: 768px) {
  footer .footer_about .wrap {
    padding: 0px 20px 60px;
  }
}

footer .footer_about .wrap .title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 57px;
  padding-top: 53px;
}

footer .footer_about .wrap .title .dotlines .dotted_line {
  height: 3px;
  background-image: url("../img/dot01.png");
  background-repeat: repeat-x;
  max-width: 442px;
}

@media print, screen and (min-width: 1441px) {
  footer .footer_about .wrap .title .dotlines .dotted_line {
    width: 250px;
  }
}

@media print, screen and (max-width: 1441px) {
  footer .footer_about .wrap .title .dotlines .dotted_line {
    width: 250px;
  }
}

@media print, screen and (max-width: 1114px) {
  footer .footer_about .wrap .title .dotlines .dotted_line {
    width: 250px;
  }
}

@media print, screen and (max-width: 969px) {
  footer .footer_about .wrap .title .dotlines .dotted_line {
    width: 170px;
  }
}

@media only screen and (max-width: 768px) {
  footer .footer_about .wrap .title .dotlines .dotted_line {
    width: 100px;
  }
}

@media only screen and (max-width: 426px) {
  footer .footer_about .wrap .title .dotlines .dotted_line {
    width: 30px;
  }
}

footer .footer_about .wrap .title .dotlines .dotted_line:first-child {
  margin-bottom: 9px;
}

footer .footer_about .wrap .title .seminar_ {
  color: #fe882f;
  font-size: 42px;
  font-family: "ZenMaruGothic-Black";
}

@media print, screen and (max-width: 1280px) {
  footer .footer_about .wrap .title .seminar_ {
    font-size: 31px;
  }
}

@media only screen and (max-width: 426px) {
  footer .footer_about .wrap .title .seminar_ {
    font-size: 27px;
  }
}

footer .footer_about h3 {
  font-size: 42px;
  font-family: "ZenMaruGothic-Bold";
  color: #fe882f;
  text-align: center;
  position: relative;
  line-height: 1;
}

footer .footer_about h3::before,
footer .footer_about h3::after {
  content: "";
  display: block;
  max-width: 335px;
  width: calc(50% - 150px);
  height: 30%;
  border: dotted;
  border-color: #fe882f;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-width: 3px;
  border-left: none;
  border-right: none;
}

@media only screen and (max-width: 560px) {
  footer .footer_about h3::before,
  footer .footer_about h3::after {
    width: calc(50% - 100px);
  }
}

footer .footer_about h3::before {
  left: 0;
}

footer .footer_about h3::after {
  right: 0;
}

@media print, screen and (max-width: 1280px) {
  footer .footer_about h3 {
    font-size: 38px;
  }
}

@media only screen and (max-width: 768px) {
  footer .footer_about h3 {
    font-size: 36px;
  }
}

@media only screen and (max-width: 560px) {
  footer .footer_about h3 {
    font-size: 28px;
  }
}

footer .footer_about_content {
  margin-top: 0px;
  display: flex;
  gap: 85px;
}

@media print, screen and (max-width: 1280px) {
  footer .footer_about_content {
    gap: 45px;
  }
}

@media print, screen and (max-width: 991px) {
  footer .footer_about_content {
    margin-top: 40px;
  }
}

footer .footer_about_content .left {
  width: calc(100% - 485px);
}

@media print, screen and (max-width: 1280px) {
  footer .footer_about_content .left {
    width: calc(100% - 345px);
  }
}

@media print, screen and (max-width: 991px) {
  footer .footer_about_content .left {
    width: 100%;
  }
}

footer .footer_about_content .left .logo {
  width: 565px;
  margin-bottom: 50px;
}

@media print, screen and (max-width: 1280px) {
  footer .footer_about_content .left .logo {
    width: 480px;
  }
}

@media print, screen and (max-width: 991px) {
  footer .footer_about_content .left .logo {
    width: 400px;
    margin-bottom: 40px;
  }
}

@media only screen and (max-width: 768px) {
  footer .footer_about_content .left .logo {
    max-width: 400px;
    width: calc(100% - 60px);
  }
}

footer .footer_about_content .left .logo img {
  width: 100%;
}

footer .footer_about_content .left_text_ttl {
  color: #fe882f;
}

footer .footer_about_content .left_text_ttl h4 {
  font-size: 40px;
}

@media print, screen and (max-width: 1280px) {
  footer .footer_about_content .left_text_ttl h4 {
    font-size: 35px;
  }
}

@media only screen and (max-width: 768px) {
  footer .footer_about_content .left_text_ttl h4 {
    font-size: 28px;
  }
}

@media only screen and (max-width: 560px) {
  footer .footer_about_content .left_text_ttl h4 {
    font-size: 26px;
  }
}

footer .footer_about_content .left_text_content {
  margin-top: 30px;
}

footer .footer_about_content .left_text_info {
  margin-top: 140px;
}

@media print, screen and (max-width: 991px) {
  footer .footer_about_content .left_text_info {
    margin-top: 80px;
  }
}

footer .footer_about_content .left_text_info li {
  border-top: 1px solid rgba(0, 0, 0, 0.11);
  display: flex;
  padding: 15px 0;
  gap: 20px;
}

footer .footer_about_content .left_text_info li:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.11);
}

footer .footer_about_content .left_text_info li span:first-child {
  width: 120px;
}

@media only screen and (max-width: 560px) {
  footer .footer_about_content .left_text_info li span:first-child {
    width: 80px;
  }
}

footer .footer_about_content .left_text_info li span {
  width: calc(100% - 140px);
}

@media only screen and (max-width: 560px) {
  footer .footer_about_content .left_text_info li span {
    width: calc(100% - 100px);
  }
}

footer .footer_about_content .left_text .left_btn {
  width: 300px;
  height: 63px;
  font-size: 24px;
  background-color: #fe882f;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 70px;
  gap: 15px;
  margin-top: 30px;
  line-height: 1;
  transition: all 0.35s;
}

footer .footer_about_content .left_text .left_btn span {
  color: #fff;
}

footer .footer_about_content .left_text .left_btn:hover {
  border: 1px solid #fe882f;
  background-color: #fff;
}

footer .footer_about_content .left_text .left_btn:hover span {
  color: #fe882f;
}

footer .footer_about_content .left_text .left_btn:hover svg #Exclusion_1 {
  fill: #fe882f;
  transition: all 0.35s;
}

footer .footer_about_content .left_text .left_btn_line {
  background-color: #06c855;
}

footer .footer_about_content .left_text .left_btn_line:hover {
  border: 1px solid #06c855;
  background-color: #fff;
}

footer .footer_about_content .left_text .left_btn_line:hover span {
  color: #06c855;
}

footer .footer_about_content .left_text .left_btn_line:hover svg #Exclusion_1 {
  fill: #06c855;
  transition: all 0.35s;
}

@media print, screen and (max-width: 991px) {
  footer .footer_about_content .left_text .left_btn {
    font-size: 22px;
    width: 220px;
    height: 55px;
    border: 50px;
  }
}

@media only screen and (max-width: 768px) {
  footer .footer_about_content .left_text .left_btn {
    font-size: 18px;
    width: 200px;
    height: 50px;
  }
}

@media only screen and (max-width: 560px) {
  footer .footer_about_content .left_text .left_btn {
    width: 100%;
  }
}

footer .footer_about_content .left_text .left_btn svg {
  width: 22px;
}

footer .footer_about_content .left_text .left_btn svg path {
  fill: #fff;
}

@media print, screen and (max-width: 991px) {
  footer .footer_about_content .left_text .left_btn svg {
    width: 20px;
  }
}

@media only screen and (max-width: 768px) {
  footer .footer_about_content .left_text .left_btn svg {
    width: 18px;
  }
}

footer .footer_about_content .right {
  width: 400px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media print, screen and (max-width: 1280px) {
  footer .footer_about_content .right {
    width: 300px;
  }
}

@media print, screen and (max-width: 991px) {
  footer .footer_about_content .right {
    width: 100%;
    flex-direction: row;
    margin-top: 40px;
  }
}

@media only screen and (max-width: 560px) {
  footer .footer_about_content .right {
    flex-direction: column;
    gap: 15px;
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
  }
}

footer .footer_about_content .right img {
  width: 100%;
}

@media print, screen and (max-width: 991px) {
  footer .footer_about_content .right img {
    width: calc((100% - 40px) / 3);
  }
}

@media only screen and (max-width: 560px) {
  footer .footer_about_content .right img {
    width: 100%;
  }
}

footer .footer {
  height: 90px;
  background: #fe9b51;
  display: flex;
  align-items: center;
  justify-content: center;
}

footer .footer span {
  color: #fff;
}

@media only screen and (max-width: 768px) {
  footer .footer {
    height: 75px;
    text-underline-offset: -10px;
  }
}

@media only screen and (max-width: 560px) {
  footer .footer {
    font-size: 12px;
  }
}

.fv_0-wrap {
  width: fit-content;
}
.fv__01 {
}
.fv_0 {
  color: #333;
  font-size: 26px;
}
@media only screen and (max-width: 991px) {
  .fv_0 {
    font-size: 23px;
  }
  main #fv .wrap .fv_01 div {
    font-size: 32px;
  }
}
@media only screen and (max-width: 768px) {
    main #fv .wrap .fv_02 {
        font-size: 45px;
    }
}
@media only screen and (max-width: 576px) {
    .fv_0 {
        font-size: 19px;
      }
    main #fv .wrap .fv_01 div {
        font-size: 28px !important;
      }
    }
    @media only screen and (max-width: 500px) {
        
        main #fv .wrap {
          height: 590px !important;
        }
}

@media only screen and (max-width: 426px) {
    main #fv .wrap .fv_01 {
        letter-spacing: 0;
    }
    main #fv .wrap {
        height: 530px !important;
      }
      main #fv .wrap .benefit .benefit_content.hukidahi_tuika p {
        font-size: 9px !important;
      }
}
@media only screen and (max-width: 360px) {
    .fv_0 {
        font-size: 16px;
      }
    main #fv .wrap .fv_01 div {
        font-size: 22px !important;
      }
      main #fv .wrap {
        height: 500px !important;
      }
    main #fv .wrap .fv_02 {
        font-size: 1.85rem !important;
    }
}
/*# sourceMappingURL=style.css.map */
