@charset "UTF-8";
/* ============================================ 
※注意事項※
こちらは第2フェーズ前のTOPページにのみ反映するスタイルシートです。
他ページには読み込ませないよう注意してください。
第2フェーズ公開時TOPページはWP側で共通のstyle.cssを当て込むため、こちらのファイルは削除対象とします。
TOP公開～第2フェーズ公開までの間に何か更新するものがある場合、css/top-update.cssの方で上書きしてください。
第2フェーズ公開直前に「WP側の共通style.css」と「top-update.css」のマージはを手作業で行います。
※「top-update.css」の内容が多いと時間がかかる可能性がありますので、大幅な変更は避けるようお願いいたします。
※WPでループ処理出力する部分については個別スタイル対応が困難な為適用できない場合がございます。

 ============================================ */
/*スマホファーストの書き方*/
/*! destyle.css v4.0.1 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
  min-width: 0;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -webkit-tap-highlight-color: transparent;
  /* 3*/
}

/* Sections */
/* ============================================ */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

ol {
  counter-reset: my-counter;
  list-style: none;
  padding: 0;
  margin: 0;
}

ol li {
  font-size: 18px;
  line-height: 2;
  padding-left: 30px;
  padding-top: 4px;
  padding-bottom: 4px;
  position: relative;
}

ol li:before {
  content: counter(my-counter);
  counter-increment: my-counter;
  background-color: #e9901f;
  border: 1px solid;
  border-radius: 50%;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 22px;
  width: 22px;
  color: #ffffff;
  font-size: 85%;
  line-height: 1;
  position: absolute;
  top: 12px;
  left: 0;
}

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: inherit;
  /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  text-decoration: underline dotted;
  /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: inherit;
  /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Replaced content */
/* ============================================ */
/**
 * Prevent vertical alignment issues.
 */
svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable.
 * 1. Make form elements stylable across systems iOS especially.
 * 2. Inherit text-transform from parent.
 */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  /* 1 */
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
  /* 2 */
}

/**
 * Correct cursors for clickable elements.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

/**
 * Improve outlines for Firefox and unify style with input elements & buttons.
 */
:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

/**
 * Remove padding
 */
option {
  padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * Correct the outline style in Safari.
 */
[type=search] {
  outline-offset: -2px;
  /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Fix font inheritance.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/**
 * Fix appearance for Firefox
 */
[type=number] {
  -moz-appearance: textfield;
}

/**
 * Clickable labels
 */
label[for] {
  cursor: pointer;
}

/* Interactive */
/* ============================================ */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/*
 * Remove outline for editable content.
 */
[contenteditable]:focus {
  outline: auto;
}

/* Tables */
/* ============================================ */
/**
1. Correct table border color inheritance in all Chrome and Safari.
*/
table {
  border-color: inherit;
  /* 1 */
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

/*スマホファーストの書き方*/
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  background-color: #ffffff;
  color: #5e5e5e;
  line-height: 1.5;
  padding-top: 65px;
}

@media (min-width: 1024px) {
  body {
    padding-top: 100px;
  }
}
img {
  width: 100%;
  height: auto;
}

.sp {
  display: block;
}

@media (min-width: 768px) {
  .sp {
    display: none;
  }
}
.pc {
  display: none;
}

@media (min-width: 768px) {
  .pc {
    display: block;
  }
}
a {
  overflow-wrap: break-word;
}

.page_top {
  position: fixed;
  bottom: 100px;
  right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #f9f9fb;
  box-shadow: 0 0 8px 0 rgba(137, 148, 151, 0.6);
  color: #e9901f;
  font-weight: 700;
  z-index: 2;
}

@media (min-width: 768px) {
  .page_top {
    width: 60px;
    height: 60px;
    bottom: 20px;
  }
}
.page_top a {
  border-radius: 50%;
  display: flex;
  width: 50px;
  height: 50px;
  padding-bottom: 6px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  line-height: 1;
}

@media (min-width: 768px) {
  .page_top a {
    width: 60px;
    height: 60px;
    font-size: 16px;
  }
}
.page_top a::before {
  content: "";
  width: 16px;
  height: 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url(../img/newtop/common/icon_arrow_right_orange.svg);
  transform: rotate(-90deg);
  flex-shrink: 0;
  aspect-ratio: 1/1;
}

@media (min-width: 768px) {
  .page_top a::before {
    width: 20px;
    height: 20px;
  }
}
.header {
  background-color: #ffffff;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 9;
}

@media (min-width: 1200px) {
  .header {
    padding: 0px 40px;
    box-shadow: 0 0 4px 0 rgba(82, 48, 6, 0.15);
  }
}
.header_title {
  display: none;
  margin: 8px 0;
  font-size: 13px;
  line-height: 1.4;
}

@media (min-width: 1200px) {
  .header_title {
    display: block;
  }
}
.header_wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 12px;
  background-color: #ffffff;
  height: 65px;
}

.header_logo {
  width: 100%;
  max-width: 180px;
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .header_logo {
    padding: 12px 0;
  }
}
.header_logo:hover {
  opacity: 0.8;
}

.header_btns {
  display: flex;
  align-items: center;
  gap: 4px;
}

.header_btn {
  border-radius: 2px;
  color: #ffffff;
  font-size: 15px;
  line-height: 1.4;
  width: 170px;
  padding: 4px 12px;
  gap: 8px;
}

@media (min-width: 768px) {
  .header_btn {
    min-width: 170px;
  }
}
.header_btn::before {
  content: "";
  width: 40px;
  height: 37px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.header_btn.bg_green::before {
  background-image: url(../img/newtop/common/icon_carender.png);
}

.header_btn.bg_blue {
  gap: 12px;
}

.header_btn.bg_blue::before {
  background-image: url(../img/newtop/common/icon_soudan.png);
}

.nav {
  border-radius: 4px;
  margin-bottom: 24px;
  width: 100%;
}

@media (min-width: 1200px) {
  .nav {
    margin-bottom: 0;
    border-radius: 0;
    width: auto;
  }
}
.nav_list {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  border-radius: 4px;
  overflow: hidden;
}

@media (min-width: 1200px) {
  .nav_list {
    flex-direction: row;
    justify-content: flex-start;
    overflow: visible;
    border-radius: 0;
  }
}
.nav_item {
  background-color: #ffffff;
  font-size: 16px;
  line-height: 1.1;
  letter-spacing: 0.02em;
  width: 100%;
}

@media (min-width: 1200px) {
  .nav_item {
    width: auto;
  }
}
.nav_item > span {
  display: block;
  padding: 20px 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #ebe8e3;
  color: #403c3c;
  font-weight: 500;
}

.nav_item > span::after {
  content: "";
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../img/newtop/common/icon_arrow_right_orange.svg);
  transition: all 0.3s;
}

@media (min-width: 1200px) {
  .nav_item > span {
    white-space: nowrap;
    display: inline-block;
    padding: 23px 20px;
    color: #403c3c;
    line-height: 1.1;
    position: relative;
    border-bottom: none;
  }
  .nav_item > span::after {
    content: "";
    position: absolute;
    width: 1px;
    height: 18px;
    top: 50%;
    right: 0;
    background-image: none;
    transform: translateY(-50%);
    background-color: #ebe8e3;
    display: inline-block;
  }
}
.nav_item:last-child {
  border-bottom: none;
}

@media (min-width: 1200px) {
  .nav_item:last-child > span::after {
    display: none;
  }
}
@media (min-width: 1200px) {
  .nav_item.current {
    border-bottom: 3px solid;
    border-image: linear-gradient(270deg, #ee8806 0%, #fca231 100%) 1;
  }
}
.has_child:has(.mega_nav.is-open) > span::after {
  transform: rotate(90deg);
}

.nav_wrapper {
  padding: 24px 16px;
  width: 100%;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 65px;
  overflow-y: scroll;
  transform: translateX(120%);
  transition: transform 0.3s linear;
  z-index: 8;
  display: flex;
  align-items: center;
  flex-direction: column;
  background-color: #f3f4f7;
  padding-bottom: 100px;
}

@media (min-width: 1200px) {
  .nav_wrapper {
    justify-content: flex-end;
    flex-direction: row;
    gap: 40px;
    position: static;
    transform: translateX(0%);
    overflow-y: visible;
    padding: 0;
    width: auto;
    height: auto;
    background-color: transparent;
  }
}
.nav_link {
  transition: all 0.3s ease;
}

.nav_link:hover {
  opacity: 0.8;
}

.nav_link_home {
  display: flex;
  width: 100%;
  display: block;
  padding: 20px 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #ebe8e3;
  color: #403c3c;
  font-weight: 500;
}

.nav_link_home::after {
  content: "";
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../img/newtop/common/icon_arrow_right_orange.svg);
  transition: all 0.3s;
}

@media (min-width: 1200px) {
  .nav_link_home {
    white-space: nowrap;
    display: inline-block;
    padding: 23px 20px;
    color: #403c3c;
    line-height: 1.1;
    position: relative;
    border-bottom: none;
  }
  .nav_link_home::after {
    content: "";
    position: absolute;
    width: 1px;
    height: 18px;
    top: 50%;
    right: 0;
    background-image: none;
    transform: translateY(-50%);
    background-color: #ebe8e3;
    display: inline-block;
  }
}
.header_btns {
  width: 100%;
}

@media (min-width: 1200px) {
  .header_btns {
    width: auto;
  }
}
.header_btns.pc {
  display: none;
}

@media (min-width: 1200px) {
  .header_btns.pc {
    display: flex;
    align-items: center;
  }
}
.header_btns.sp {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (min-width: 1200px) {
  .header_btns.sp {
    display: none;
  }
}
.header_btns_banner {
  width: 100%;
  padding: 16px;
  background-color: #ffffff;
  box-shadow: 0 0 12px 0 rgba(37, 37, 47, 0.1019607843);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 11px;
}

.header_btns_banner > div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header_btns_banner > div::after,
.header_btns_banner > div::before {
  content: "";
  width: 2px;
  height: 37px;
  background-color: #e9901f;
}

.header_btns_banner > div::before {
  transform: rotate(-19deg);
}

.header_btns_banner > div::after {
  transform: rotate(19deg);
}

.header_btns_banner p {
  font-weight: 500;
  font-size: 14px;
  text-align: center;
}

.header_btns_banner p .orange {
  font-weight: bold;
  color: #e9901f;
}

.header_btns_banner .header_btn {
  width: 100%;
  height: 63px;
  font-size: 20px;
  text-align: center;
  padding: 8px 24px;
  display: block;
  position: relative;
  line-height: 43px;
  padding-left: 12%;
  white-space: nowrap;
  font-weight: bold;
}

.header_btns_banner .header_btn::before {
  position: absolute;
  display: inline-block;
  width: 52px;
  height: 46px;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
}

.hamburger {
  display: inline-block;
  width: 64px;
  height: auto;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 9;
  background-image: linear-gradient(270deg, #ee8806 0%, #fca231 100%);
}

@media (min-width: 1200px) {
  .hamburger {
    display: none;
  }
}
.hamburger .hamburger_inner {
  display: flex;
  flex-direction: column;
  align-items: end;
  row-gap: 10px;
  margin-bottom: 4px;
}

.hamburger .hamburger_inner span {
  display: inline-block;
  position: relative;
  width: 32px;
  height: 2px;
  background-color: #ffffff;
  transition: all 0.4s;
}

.hamburger span:nth-child(2) {
  width: 20px;
}

.hamburger_text {
  font-size: 10px;
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.1em;
  color: #ffffff;
  text-transform: uppercase;
}

.active .hamburger span:nth-child(1) {
  top: 12px;
  transform: rotate(45deg);
}

.active .hamburger span:nth-child(2) {
  opacity: 0;
}

.active .hamburger span:nth-child(3) {
  top: -12px;
  transform: rotate(-45deg);
}

.active .nav_wrapper {
  transform: translateX(0%);
}

/* 共通初期状態 */
.mega_nav {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
}

@media (min-width: 1200px) {
  .mega_nav {
    max-height: none !important;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    position: absolute;
    z-index: 100;
    width: 100vw;
    top: 97%;
    right: -5%;
    padding: 56px 0px;
    background-color: #f3f4f7;
  }
}
/* 開いた状態 */
.mega_nav.is-open {
  max-height: auto;
  /* 適切な最大値に調整 */
}

.mega_nav_inner {
  padding: 16px;
  border-bottom: 1px solid #ebe8e3;
}

@media (min-width: 1200px) {
  .mega_nav_inner {
    display: flex;
    justify-content: center;
    border-bottom: none;
    gap: 40px;
  }
}
@media (min-width: 1200px) {
  .mega_nav_top {
    max-width: 223px;
    background-color: #ffffff;
  }
}
.mega_nav_top a {
  display: flex;
  flex-direction: column-reverse;
}

@media (min-width: 1200px) {
  .mega_nav_top a {
    padding: 8px;
    flex-direction: column;
  }
}
.mega_nav_top p {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 4px;
  font-size: 15px;
  font-weight: bold;
  padding: 16px 0;
  border-bottom: 1px dashed #ebe8e3;
}

@media (min-width: 1200px) {
  .mega_nav_top p {
    padding: 0 0 8px 0;
  }
}
.mega_nav_top .arrow {
  display: inline-block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-image: linear-gradient(270deg, #ee8806 0%, #fca231 100%);
  position: relative;
}

.mega_nav_top .arrow::after {
  content: "";
  display: inline-block;
  width: 5px;
  height: 8px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../img/newtop/common/icon_arrow_right_white.svg);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media (min-width: 1200px) {
  .sub_nav {
    display: grid;
    grid-auto-flow: column;
    grid-template-rows: repeat(4, auto);
    gap: 3px 24px;
  }
}
.sub_nav > li > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  font-size: 14px;
  line-height: 1.1;
  font-weight: 500;
}

@media (min-width: 1200px) {
  .sub_nav > li > a {
    flex-direction: row-reverse;
    justify-content: flex-end;
    white-space: nowrap;
  }
}
.sub_nav > li > a::after {
  content: "";
  width: 16px;
  height: 16px;
  background-repeat: no-repeat;
  background-image: url(../img/newtop/common/icon_arrow_right_orange.svg);
  background-position: center;
  display: inline-block;
}

.border_nav_hasIcon .has_icon {
  width: 100%;
}

@media (min-width: 1200px) {
  .border_nav_hasIcon .has_icon {
    max-width: 200px;
  }
}
.border_nav_hasIcon .has_icon > a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  font-size: 15px;
}

@media (min-width: 1200px) {
  .border_nav_hasIcon .has_icon > a {
    max-width: 200px;
    height: 45px;
    padding: 12px 16px 12px 20px;
    border: 1px solid #f3f4f7;
  }
}
.border_nav_hasIcon .has_icon > a::before,
.border_nav_hasIcon .has_icon > a::after {
  content: "";
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.border_nav_hasIcon .has_icon > a::before {
  width: 21px;
  height: 21px;
  margin-right: 2px;
}

.border_nav_hasIcon .has_icon > a::after {
  width: 10px;
  height: 10px;
  background-image: url(../img/newtop/common/icon_arrow_right_orange.svg);
  margin-left: auto;
}

.has_icon_web > a::before {
  background-image: url(../img/newtop/common/icon_web.png);
}

.has_icon_build > a::before {
  background-image: url(../img/newtop/common/icon_building.png);
}

.has_icon_note > a::before {
  background-image: url(../img/newtop/common/icon_note.png);
}

.has_icon_q > a::before {
  background-image: url(../img/newtop/common/icon_q.png);
}

.has_icon_recuruit > a::before {
  background-image: url(../img/newtop/common/icon_recruit.png);
}

.sub_nav.border_nav_hasIcon {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.border_nav_item {
  padding-bottom: 8px;
  border-bottom: 1px solid #ebe8e3;
  margin-bottom: 16px;
  display: none;
}

@media (min-width: 1200px) {
  .border_nav_item {
    display: block;
    margin-bottom: 24px;
  }
}
@media (min-width: 1200px) {
  .has_child:hover > .mega_nav {
    opacity: 1;
    visibility: visible;
  }
}
@media (min-width: 1200px) {
  .nav_item.has_child.border_nav .mega_nav_inner {
    flex-direction: column;
    max-width: 632px;
    margin-inline: auto;
    gap: 0;
  }
  .nav_item.has_child.border_nav .sub_nav.border_nav_hasIcon {
    flex-wrap: nowrap;
  }
  .nav_item.has_child.border_nav .has_icon > a {
    flex-direction: row;
    background-color: #ffffff;
  }
}
@media (min-width: 1200px) {
  .has_icon_q > a,
  .has_icon_recuruit > a {
    flex-direction: row !important;
    background-color: #ffffff;
  }
}
@media (min-width: 1200px) {
  ul.sub_nav.border_nav_hasIcon.border_nav_hasIcon_column {
    flex-direction: column;
    justify-content: flex-start;
    gap: 8px;
    width: 200px;
  }
}
.footer {
  padding-bottom: 80px;
}

@media (min-width: 768px) {
  .footer {
    padding-bottom: 16px;
  }
}
.footer_ctaBox {
  background-image: url(../img/newtop/common/bg_cta.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.footer_ctaBox_inner {
  width: 90%;
  max-width: 980px;
  margin-inline: auto;
  padding-top: 32px;
  padding-bottom: 64px;
}

@media (min-width: 768px) {
  .footer_ctaBox_inner {
    padding-top: 64px;
    padding-bottom: 120px;
  }
}
.footer_ctaBox_title {
  color: #ffffff;
  left: 0.12em;
  font-size: 20px;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-weight: bold;
  margin-bottom: 100px;
}

@media (min-width: 768px) {
  .footer_ctaBox_title {
    font-size: min(2.2222222222vw, 32px);
    margin-bottom: 150px;
  }
}
.footer_ctaBox_btn {
  background-color: #ffffff;
  box-shadow: 0 0 12px 0 rgba(37, 37, 47, 0.1019607843);
  padding: 32px 32px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
}

@media (min-width: 768px) {
  .footer_ctaBox_btn {
    padding: 48px 40px 40px;
  }
}
.footer_ctaBox_btn:first-of-type {
  margin-bottom: 70px;
}

@media (min-width: 768px) {
  .footer_ctaBox_btn:first-of-type {
    margin-bottom: 0px;
  }
}
.footer_ctaBox_btn .footer_ctaBox_btn_title {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer_ctaBox_btn .footer_ctaBox_btn_title::after,
.footer_ctaBox_btn .footer_ctaBox_btn_title::before {
  content: "";
  width: 2px;
  height: 37px;
  background-color: #e9901f;
}

.footer_ctaBox_btn .footer_ctaBox_btn_title::before {
  transform: rotate(-19deg);
}

.footer_ctaBox_btn .footer_ctaBox_btn_title::after {
  transform: rotate(19deg);
}

.footer_ctaBox_btn p {
  font-weight: 500;
  font-size: 16px;
  text-align: center;
}

@media (min-width: 768px) {
  .footer_ctaBox_btn p {
    font-size: 18px;
  }
}
.footer_ctaBox_btn p .orange {
  font-weight: bold;
  color: #e9901f;
}

.footer_ctaBox_btn .header_btn {
  width: 100%;
  height: 63px;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.08em;
  text-align: center;
  padding: 8px 24px;
  display: block;
  position: relative;
  line-height: 43px;
  white-space: nowrap;
  color: #fff706;
}

@media (min-width: 768px) {
  .footer_ctaBox_btn .header_btn {
    font-size: 20px;
  }
}
.footer_ctaBox_btn .header_btn::before {
  content: "医院開業";
  color: #ffffff;
  background-image: none;
}

.footer_ctaBox_btn .header_btn::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../img/newtop/common/icon_arrow_right_white.svg);
  background-size: contain;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 8px;
}

@media (min-width: 768px) {
  .footer_ctaBox_btn .header_btn::after {
    width: 15px;
    height: 15px;
    right: 15px;
  }
}
.footer_ctaBox_btn_img {
  width: 144px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -67%);
}

@media (min-width: 768px) {
  .footer_ctaBox_btn_img {
    width: 164px;
  }
}
@media (min-width: 768px) {
  .footer_ctaBox_btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4.0816326531%;
  }
}
@media (min-width: 768px) {
  .footer_ctaBox_btn:last-of-type .footer_ctaBox_btn_img {
    width: 178px;
  }
}
.footer_bookArea {
  background-color: #f9f7f2;
}

.footer_boookArea_inner {
  width: 90%;
  max-width: 980px;
  margin-inline: auto;
  background-color: #ffffff;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  top: -20px;
}

@media (min-width: 768px) {
  .footer_boookArea_inner {
    padding: 40px 64px;
    gap: 40px;
  }
}
.footer_bookArea_title_sub {
  color: #f6ae54;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  line-height: 5px;
  gap: 8px;
  font-weight: bold;
  font-size: 12px;
  margin-bottom: 8px;
}

@media (min-width: 768px) {
  .footer_bookArea_title_sub {
    font-size: 16px;
    gap: 12px;
  }
}
.footer_bookArea_title_sub::after,
.footer_bookArea_title_sub::before {
  content: "";
  width: 13px;
  height: 1px;
  background-color: #f6ae54;
}

@media (min-width: 768px) {
  .footer_bookArea_title_sub::after,
  .footer_bookArea_title_sub::before {
    width: 18px;
  }
}
.footer_bookArea_title_sub::after {
  transform: rotate(-45deg);
}

.footer_bookArea_title_sub::before {
  transform: rotate(45deg);
}

.footer_bookArea_title_main {
  font-family: "Noto Serif JP", serif;
  color: #403c3c;
  text-align: center;
  font-size: 15px;
  font-weight: bold;
  line-height: 1.3;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .footer_bookArea_title_main {
    font-size: 28px;
  }
}
.footer_bookArea_img {
  width: 30%;
  flex: 1;
}

@media (min-width: 768px) {
  .footer_bookArea_img {
    width: 30.6666666667%;
  }
}
.footer_bookArea_textArea {
  width: 70%;
}

@media (min-width: 768px) {
  .footer_bookArea_textArea {
    width: 64%;
  }
}
.footer_bookArea_text_banner {
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .footer_bookArea_text_banner {
    margin-bottom: 24px;
  }
}
.footer_bookArea_btn {
  width: 100%;
  max-width: 260px;
  height: 48px;
  background-color: #1b2939;
  color: #ffffff;
  font-weight: bold;
  font-size: 14px;
  position: relative;
  padding-left: 15%;
  margin-inline: auto;
  letter-spacing: 0.04em;
}

@media (min-width: 768px) {
  .footer_bookArea_btn {
    font-size: 16px;
    padding-left: 50px;
  }
}
.footer_bookArea_btn::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url(../img/newtop/common/icon_arrow_right_white.svg);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 8px;
}

@media (min-width: 768px) {
  .footer_bookArea_btn::after {
    width: 20px;
    height: 20px;
  }
}
.footer_bookArea_btn:hover {
  opacity: 0.8;
}

.footer_banner {
  padding: 24px 0;
}

@media (min-width: 768px) {
  .footer_banner {
    padding: 32px 0;
  }
}
.fooer_banner_inner {
  width: 90%;
  max-width: 980px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

@media (min-width: 768px) {
  .fooer_banner_inner {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}
.footer_banner_img a {
  transition: all 0.3s ease;
}

.footer_banner_img a:hover {
  opacity: 0.8;
}

.footer_copyright {
  text-align: center;
  font-size: 13px;
  color: #919191;
}

.seminar ~ .footer,
.consultant ~ .footer {
  padding-bottom: 70px;
  margin-bottom: 40px;
}

.inner,
.archive_inner {
  width: 90%;
  max-width: 980px;
  margin-inline: auto;
}

.breadnav {
  padding: 16px 12px;
  font-size: 13px;
  letter-spacing: 0.02em;
  line-height: 1.6;
  color: #5e5e5e;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 16px;
}

@media (min-width: 1024px) {
  .breadnav {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.breadnav a {
  color: #e9901f;
}

.breadnav span:not(:last-of-type) {
  position: relative;
}

.breadnav span:not(:last-of-type)::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 11px;
  background-color: #ebe8e3;
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
}

.inner_small {
  width: 90%;
  max-width: 980px;
  margin-inline: auto;
}

.content {
  padding: 48px 0;
}

@media (min-width: 768px) {
  .content {
    padding: 96px 0;
  }
}
.btn {
  display: flex;
  align-items: center;
  transition: all 0.3s;
}

.btn:hover {
  filter: brightness(1.1);
}

.btn_seminar {
  font-size: 20px;
  width: 100%;
  max-width: 390px;
  margin-inline: auto;
  height: 63px;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.08em;
  text-align: center;
  padding: 8px 24px;
  display: block;
  position: relative;
  line-height: 43px;
  white-space: nowrap;
  color: #fff706;
  box-shadow: 0 0 8px 0 rgba(46, 66, 26, 0.2);
}

.btn_seminar span {
  color: #ffffff;
}

.btn_seminar::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../img/newtop/common/icon_arrow_right_white.svg);
  background-size: contain;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 8px;
}

@media (min-width: 768px) {
  .btn_seminar::after {
    width: 15px;
    height: 15px;
    right: 15px;
  }
}
.btn_seminar.bg_white {
  border: 3px solid;
  border-image: linear-gradient(270deg, #98d4ef 0%, #4ab4e5 100%) 1;
  color: #1E98D0;
}

.btn_seminar.bg_white span {
  color: #5e5e5e;
}

.btn_seminar.bg_white::after {
  background-image: url(../img/newtop/common/icon_right_blue.svg);
}

.access_link {
  display: flex;
  align-items: center;
  width: fit-content;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  padding: 4px 8px;
  border: 1px solid #ebe8e3;
  text-align: center;
  background-color: #ffffff;
}

.access_link::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url(../images/seminer/open_in_new.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.fix-btn_wrapper {
  width: 100%;
  padding: 15px 0;
  position: fixed;
  left: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 8;
}

.fix-btn_wrapper:has(.bg_green) {
  background-color: #F2F9E5;
}

.fix-btn_wrapper:has(.bg_green) .header_btn {
  box-shadow: 0 0 8px 0 rgba(46, 66, 26, 0.2);
}

.fix-btn_wrapper:has(.bg_blue) {
  background-color: #F2F9FC;
}

.fix-btn_wrapper:has(.bg_blue) .header_btn {
  box-shadow: 0 0 8px 0 rgba(11, 58, 79, 0.2);
}

.fix-btn_wrapper .header_btn {
  width: 320px;
  height: 60px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.5;
  position: relative;
}

.fix-btn_wrapper .header_btn::before {
  content: "";
  width: 48px;
  height: 43px;
}

.fix-btn_wrapper .header_btn::after {
  content: "";
  width: 16px;
  height: 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url(../img/newtop/common/icon_arrow_right_white.svg);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 19px;
}

.fix-btn_wrapper.fix-btn_wrapper_else {
  background-color: #F3F4F7;
  gap: 4px;
}

.fix-btn_wrapper.fix-btn_wrapper_else > .btn {
  width: 45%;
  font-size: 15px;
  height: 45px;
  font-size: 15px;
}

.fix-btn_wrapper.fix-btn_wrapper_else > .btn:before {
  width: 40px;
}

.fix-btn_wrapper.fix-btn_wrapper_else > .btn::after {
  display: none;
}

@media (min-width: 768px) {
  .fix-btn_wrapper.fix-btn_wrapper_else {
    display: none;
  }
}
.wp-block-buttons {
  margin-bottom: 28px;
  margin-top: 28px;
}

.btn_seminar_part {
  width: 100%;
  max-width: 390px;
  box-shadow: 0 0 8px 0 rgba(46, 66, 26, 0.2);
}

.btn_seminar_part a {
  height: 63px;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.08em;
  text-align: center;
  padding: 8px 24px;
  display: block;
  position: relative;
  line-height: 43px;
  white-space: nowrap;
  transition: all 0.3s;
}

.btn_seminar_part a:hover {
  filter: brightness(1.1);
}

.btn_seminar_part a span {
  color: #ffffff;
}

.btn_seminar_part a::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../img/newtop/common/icon_arrow_right_white.svg);
  background-size: contain;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 8px;
}

@media (min-width: 768px) {
  .btn_seminar_part a::after {
    width: 15px;
    height: 15px;
    right: 15px;
  }
}
.title_archive {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 0.1em;
  font-size: 22px;
  margin-top: 40px;
  margin-bottom: 40px;
  text-align: center;
}

@media (min-width: 768px) {
  .title_archive {
    font-size: 32px;
    margin-top: 64px;
    margin-bottom: 80px;
  }
}
.title_archive span {
  font-family: "Noto Serif JP", serif;
  letter-spacing: 2px;
  color: #e9901f;
  font-size: 12px;
}

@media (min-width: 768px) {
  .title_archive span {
    font-size: 14px;
  }
}
.title_archive::after {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-image: linear-gradient(270deg, #ee8806 0%, #fca231 100%);
  margin-top: 4px;
}

.title_hasDot {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
  padding-bottom: 24px;
  text-align: center;
  position: relative;
  margin-bottom: 24px;
  color: #403c3c;
}

@media (min-width: 768px) {
  .title_hasDot {
    font-size: 28px;
    padding-bottom: 38px;
    margin-bottom: 40px;
  }
}
.title_hasDot::after {
  content: "";
  display: inline-block;
  width: 4px;
  height: 12px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url(../images/seminer/dot.png);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

@media (min-width: 768px) {
  .title_hasDot::after {
    width: 6px;
    height: 18px;
  }
}
.title_boderLeft {
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.04em;
  font-size: 18px;
  color: #403c3c;
  margin-bottom: 18px;
  border-left: 10px solid;
  border-image: linear-gradient(180deg, #F1941D 0%, #F1941D 50%, #F4B05A 50%, #F4B05A 100%) 1;
  padding-left: 6px;
}

@media (min-width: 768px) {
  .title_boderLeft {
    font-size: 22px;
    margin-bottom: 24px;
  }
}
.title_boderBottom {
  font-weight: bold;
  font-size: 18px;
  padding-bottom: 8px;
  border-bottom: 1px solid #ebe8e3;
  position: relative;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .title_boderBottom {
    font-size: 20px;
  }
}
.title_boderBottom::after {
  content: "";
  display: inline-block;
  width: 40px;
  height: 1px;
  background-image: linear-gradient(270deg, #ee8806 0%, #fca231 100%);
  position: absolute;
  bottom: -1px;
  left: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .nav-links {
    margin-top: 4rem;
    gap: 16px;
    margin-bottom: 80px;
  }
}
.nav-links a {
  transition: all 0.3s;
}

.nav-links a:hover {
  opacity: 0.8;
}

.page-numbers {
  font-size: 12px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FAF9F8;
  border-radius: 2px;
  border: 1px solid;
  border-image: linear-gradient(270deg, #ee8806 0%, #fca231 100%) 1;
  color: #e9901f;
  font-weight: bold;
}

@media (min-width: 768px) {
  .page-numbers {
    font-size: 16px;
    width: 40px;
    height: 40px;
  }
}
a.next.page-numbers,
a.prev.page-numbers {
  border: none;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}

@media (min-width: 768px) {
  a.next.page-numbers,
  a.prev.page-numbers {
    background-size: 14px;
  }
}
a.next.page-numbers {
  background-image: url(../img/newtop/common/icon_arrow_right_orange.svg);
}

a.prev.page-numbers {
  background-image: url(../img/newtop/common/icon_arrow_left_orange.svg);
}

.page-numbers.current {
  background-image: linear-gradient(270deg, #ee8806 0%, #fca231 100%);
  color: #ffffff;
}

.list_box li {
  padding-left: 1em;
  position: relative;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.8;
}

@media (min-width: 768px) {
  .list_box li {
    font-size: 18px;
  }
}
.list_box li::before {
  content: "";
  width: 10px;
  height: 10px;
  background-image: linear-gradient(270deg, #ee8806 0%, #fca231 100%);
  display: inline-block;
  position: absolute;
  top: 10px;
  left: 0;
}

@media (min-width: 768px) {
  .list_box li::before {
    top: 12px;
  }
}
.list_dot li {
  padding-left: 1em;
  position: relative;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.8;
}

@media (min-width: 768px) {
  .list_dot li {
    font-size: 18px;
  }
}
.list_dot li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-image: linear-gradient(270deg, #ee8806 0%, #fca231 100%);
  display: inline-block;
  position: absolute;
  top: 10px;
  left: 0;
}

@media (min-width: 768px) {
  .list_dot li::before {
    top: 14px;
  }
}
.list_check li {
  padding: 8px 8px 8px 32px;
  position: relative;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.8;
  background-color: #f9f9fb;
}

@media (min-width: 768px) {
  .list_check li {
    font-size: 18px;
  }
}
.list_check li::before {
  content: "";
  width: 14px;
  height: 14px;
  background-image: url(../images/seminer/check_box.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  display: inline-block;
  position: absolute;
  top: 15px;
  left: 10px;
}

@media (min-width: 768px) {
  .list_check li::before {
    width: 18px;
    height: 18px;
    top: 16px;
  }
}
.list_check li.list_blue {
  color: #1f739a;
  font-weight: bold;
}

.list_check li.list_blue::before {
  width: 18px;
  height: 18px;
  background-image: url(../img/newtop/common/check_blue.svg);
}

ul.bg_grey {
  padding: 16px;
}

@media (min-width: 768px) {
  ul.bg_grey {
    padding: 20px 24px;
  }
}
.column {
  position: relative;
}

.column::before,
.column::after {
  content: "";
  display: inline-block;
  width: 40%;
  height: auto;
  aspect-ratio: 40/43;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
}

.column::before {
  background-position: right center;
  background-image: url(../img/newtop/blog/bg_column_top.png);
  right: 0;
  top: 3%;
  z-index: -1;
  max-width: 452px;
}

.column::after {
  background-position: left center;
  background-image: url(../img/newtop/blog/bg_column_bottom.png);
  left: 0;
  bottom: 7%;
  z-index: -1;
  max-width: 400px;
}

.tag_wrapper {
  padding: 24px 16px;
  background-color: #f3f4f7;
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .tag_wrapper {
    padding: 40px;
    margin-bottom: 64px;
  }
}
.tag_wrapper > p {
  font-size: 16px;
  margin-bottom: 16px;
  text-align: center;
}

@media (min-width: 768px) {
  .tag_wrapper > p {
    font-size: 18px;
    margin-bottom: 24px;
  }
}
.tag_wrapper .column_cateList {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

@media (min-width: 768px) {
  .tag_wrapper .column_cateList {
    gap: 8px 17px;
  }
}
.column_cateItem {
  display: flex;
  align-items: center;
  width: fit-content;
  gap: 4px;
  padding: 4px 16px 4px 14px;
  border: 1px solid;
  border-image: linear-gradient(270deg, #ee8806 0%, #fca231 100%) 1;
  background-color: #ffffff;
  line-height: 1;
  transition: all 0.3s;
}

@media (min-width: 768px) {
  .column_cateItem {
    padding: 12px 24px 12px 20px;
  }
}
.column_cateItem:hover {
  opacity: 0.8;
}

.column_cateItem::before {
  content: "";
  display: inline-block;
  width: 13px;
  height: 13px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url(../img/newtop/blog/icon_tag.svg);
}

.column_item a {
  display: flex;
  border-bottom: 1px solid #f4f4f4;
  padding-bottom: 24px;
  margin-bottom: 24px;
}

.column_item a .column_cateItem {
  font-size: 13px;
  padding: 4px 8px 4px 4px;
}

.column_image {
  aspect-ratio: 492/257;
  overflow: hidden;
}

.column_image img {
  transition: all 0.3s ease;
}

.column_item a:hover .column_image img {
  transform: scale(1.05);
}

.column_title {
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 8px;
}

@media (min-width: 768px) {
  .column_title {
    margin-bottom: 12px;
  }
}
.column_tags {
  margin-bottom: 4px;
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .column_tags {
    margin-bottom: 8px;
  }
}
.column_dates {
  color: #919191;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .column_dates {
    font-size: 13px;
  }
}
.card_large a {
  flex-direction: column;
  gap: 12px;
}

@media (min-width: 768px) {
  .card_large a {
    flex-direction: row;
    gap: 2.6966292135%;
  }
}
.card_large a .column_image {
  width: 100%;
}

@media (min-width: 768px) {
  .card_large a .column_image {
    width: 55.0561797753%;
    max-width: 490px;
  }
}
@media (min-width: 768px) {
  .card_large a .column_content {
    width: 52.3595505618%;
    max-width: 466px;
  }
}
.card_large a .column_title {
  font-size: 22px;
}

@media (min-width: 768px) {
  .card_large a .column_title {
    font-size: 24px;
  }
}
.card_medium a {
  flex-direction: column;
  gap: 12px;
}

@media (min-width: 768px) {
  .card_medium a {
    flex-direction: row;
    gap: 2.2471910112%;
  }
}
.card_medium a .column_image {
  width: 100%;
}

@media (min-width: 768px) {
  .card_medium a .column_image {
    width: 31.4606741573%;
    max-width: 280px;
  }
}
.card_medium a .column_title {
  font-size: 16px;
}

@media (min-width: 768px) {
  .card_medium a .column_title {
    font-size: 18px;
  }
}
.card-small a {
  flex-direction: row;
  gap: 12px;
}

@media (min-width: 768px) {
  .card-small a {
    gap: 2.6966292135%;
  }
}
.card-small a .column_cateItem {
  font-size: 10px;
  padding: 4px 8px 4px 4px;
}

@media (min-width: 768px) {
  .card-small a .column_cateItem {
    font-size: 13px;
  }
}
.card-small a .column_image {
  width: 40%;
}

@media (min-width: 768px) {
  .card-small a .column_image {
    width: 42.1276595745%;
    max-width: 198px;
  }
}
.card-small a .column_title {
  font-size: 14px;
}

@media (min-width: 768px) {
  .card-small a .column_title {
    font-size: 18px;
  }
}
@media (min-width: 768px) {
  .two_column_wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 40px;
  }
}
#toc_container {
  border-color: transparent !important;
  margin-top: 40px;
  margin-bottom: 48px;
  width: 100% !important;
  background-color: #f3f4f7;
}

@media (min-width: 768px) {
  #toc_container {
    padding: 24px 32px;
  }
}
#toc_container .toc_title {
  text-align: left !important;
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
}

@media (min-width: 768px) {
  #toc_container .toc_title {
    font-size: 18px;
  }
}
#toc_container .toc_title::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 10px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url(../img/newtop/blog/icon_list.svg);
  margin-right: 2px;
}

#toc_container .toc_toggle {
  border-radius: 4px;
  border: 1px solid #919191;
}

#toc_container .toc_toggle .toc_brackets {
  display: none;
}

#toc_container .toc_toggle a {
  font-size: 13px;
  font-weight: 500;
  color: #919191;
  padding: 2px 8px;
}

#toc_container ul {
  display: block;
}

#toc_container ul li {
  display: block;
  position: relative;
}

#toc_container ul li::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #e9901f;
  margin-right: 4px;
  vertical-align: middle;
  position: relative;
  top: -2px;
}

#toc_container ul li a {
  font-size: 15px;
  font-weight: 500;
  color: #5e5e5e;
}

#toc_container ul ul {
  margin-left: 0;
}

#toc_container .toc_list > li::before {
  display: none;
}

#toc_container .toc_list > li > a {
  font-size: 16px;
  font-weight: 600;
  color: #403c3c;
}

.single_inner {
  width: 90%;
  max-width: 780px;
  margin-inline: auto;
  padding-bottom: 40px;
}

@media (min-width: 768px) {
  .single_inner {
    padding-bottom: 40px;
  }
  #toc_container ul li a {
    font-size: 18px;
  }
  #toc_container .toc_list > li > a {
    font-size: 18px;
  }
}
.single_inner .column_cateList {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .single_inner .column_cateList {
    gap: 16px;
  }
}
.column_single {
  line-height: 2;
}

.column_single .entry_title {
  font-size: 24px;
  font-weight: bold;
  line-height: 2;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  color: #403c3c;
  margin-top: 32px;
}

@media (min-width: 768px) {
  .column_single {
    font-size: 18px;
  }
  .column_single .entry_title {
    font-size: 32px;
    margin-top: 80px;
  }
}
.column_single .column_cateItem {
  font-size: 12px;
}

.column_single .column_dates {
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .column_single .column_dates {
    margin-bottom: 40px;
  }
}
.column_single .column_image {
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .column_single .column_image {
    margin-bottom: 40px;
  }
}
.column_single h2.wp-block-heading {
  font-weight: bold;
  font-size: 22px;
  margin-top: 32px;
  margin-bottom: 20px;
  line-height: 1.6;
  border-left: 6px solid;
  border-image: linear-gradient(270deg, #ee8806 0%, #fca231 100%) 1;
  padding-left: 16px;
  position: relative;
}

@media (min-width: 768px) {
  .column_single h2.wp-block-heading {
    font-size: 28px;
    margin-top: 56px;
    margin-bottom: 32px;
  }
}
.column_single h2.wp-block-heading::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #ebe8e3;
  position: absolute;
  left: 0;
  bottom: -8px;
}

.column_single h3.wp-block-heading {
  font-size: 20px;
  font-weight: bold;
  position: relative;
  margin-top: 20px;
  margin-bottom: 16px;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .column_single h3.wp-block-heading {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 18px;
  }
}
.column_single h3.wp-block-heading::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #ee8806;
  position: absolute;
  left: 0;
  bottom: -8px;
}

.column_single h4.wp-block-heading {
  font-size: 20px;
  letter-spacing: 0.04em;
  line-height: 1.6;
  font-weight: bold;
  margin-top: 32px;
  margin-bottom: 16px;
  padding-left: 20px;
  position: relative;
}

.column_single h4.wp-block-heading::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background-image: linear-gradient(270deg, #ee8806 0%, #fca231 100%);
  position: absolute;
  top: 12px;
  left: 0;
}

.column_single h5.wp-block-heading {
  letter-spacing: 0.04em;
  line-height: 1.6;
  font-size: 20px;
  font-weight: 500;
  color: #e9901f;
  margin-bottom: 6px;
}

.column_single p {
  margin-bottom: 24px;
  line-height: 2;
}

.column_single p a {
  text-decoration: underline;
}

.column_single .wp-block-list,
.column_single .wp-block-table {
  margin-bottom: 24px;
}

.column_single .wp-block-table table thead th {
  color: #fff;
}

.column_single .wp-block-table table thead th:first-of-type {
  border-radius: 4px 0 0 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .column_single .wp-block-table table thead th:first-of-type {
    white-space: nowrap;
  }
  .column_single h4.wp-block-heading {
    font-size: 24px;
    margin-top: 40px;
  }
  .column_single h4.wp-block-heading::before {
    top: 14px;
    left: 0;
  }
  .column_single h5.wp-block-heading {
    font-size: 24px;
  }
}
.column_single .wp-block-table table thead th:last-of-type {
  border-radius: 0 4px 0 0;
  overflow: hidden;
}

.column_single .wp-block-table thead {
  border-bottom: 2px solid white;
}

.column_single .wp-block-table td {
  background-color: light-blue;
  border: 2px solid white;
}

.column_single .wp-block-table table tbody tr td:first-of-type {
  font-weight: bold;
  text-align: center;
  vertical-align: middle;
  font-size: 16px;
  white-space: nowrap;
  color: black;
}

.column_single .but_column > a {
  padding: 0;
  width: 320px;
  height: 72px;
  border: 2px solid;
  border-image: linear-gradient(270deg, #ee8806 0%, #fca231 100%) 1;
  border-radius: 4px;
  background-color: #ffffff;
  color: #e9901f;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all 0.3s;
}

.column_single .but_column > a::after {
  content: "";
  display: inline-block;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-position: center;
  background-image: url(../img/newtop/blog/icon_column_btn.png);
  background-repeat: no-repeat;
  background-size: contain;
}

.column_single .but_column > a:hover {
  opacity: 0.8;
}

.column_single ul.wp-block-list {
  margin-bottom: 12px;
}

.column_single ul.wp-block-list li {
  position: relative;
  padding: 4px 0;
  padding-left: 12px;
}

.column_single ul.wp-block-list li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background-image: linear-gradient(270deg, #ee8806 0%, #fca231 100%);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 18px;
}

.column_single .wp-block-table thead th {
  background-color: #f6ae54;
  color: #ffffff;
  vertical-align: middle;
  text-align: center;
}

.column_single .wp-block-table tbody td {
  background-color: #fef7ee;
}

.column_single .wp-block-table tbody td:first-of-type {
  color: #403c3c !important;
}

.wp-block-group.flow_list {
  margin-bottom: 24px;
}

.wp-block-group.flow_item {
  flex-direction: column;
  gap: 24px;
  padding: 20px 24px;
  background-color: #ffffff;
  box-shadow: 0 0 8px 0 rgba(84, 56, 21, 0.15);
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .wp-block-group.flow_item {
    flex-direction: row;
  }
  .column_single ul.wp-block-list li::before {
    top: 19px;
  }
  .column_single .but_column > a {
    width: 370px;
  }
}
.wp-block-group.flow_item:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .wp-block-group.flow_item .flow_textArea {
    width: 71.7948717949%;
    max-width: 560px;
  }
}
.wp-block-group.flow_item .flow_num {
  font-family: "Roboto", sans-serif;
  color: #e9901f;
  font-weight: 500;
  font-size: 28px;
  line-height: 1;
  gap: 4px;
  margin-bottom: 16px;
}

.wp-block-group.flow_item .flow_num > p {
  margin-bottom: 0;
}

.wp-block-group.flow_item .flow_en {
  font-size: 12px;
}

.wp-block-group.flow_item .flow_title {
  font-size: 18px;
  font-weight: bold;
  padding-bottom: 8px;
  border-bottom: 1px solid #ebe8e3;
  position: relative;
  margin-bottom: 8px;
}

.wp-block-group.flow_item .flow_title::after {
  content: "";
  display: inline-block;
  width: 29px;
  height: 1px;
  background-image: linear-gradient(270deg, #ee8806 0%, #fca231 100%);
  position: absolute;
  bottom: -1px;
  left: 0;
}

.wp-block-group.flow_item .flow_text {
  margin-bottom: 0;
}

.wp-block-group.flow_item .wp-block-image {
  aspect-ratio: 1;
  width: 70%;
  margin-inline: auto;
}

@media (min-width: 768px) {
  .wp-block-group.flow_item .wp-block-image {
    width: 100%;
    max-width: 145px;
  }
}
.wp-block-group.flow_item .wp-block-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wp-block-image {
  margin-bottom: 16px;
}
.ewd-ufaq-clear{
  clear: both;
}
.ewd-ufaq-faq-title h1, .ewd-ufaq-faq-title h2, .ewd-ufaq-faq-title h3, .ewd-ufaq-faq-title h4, .ewd-ufaq-faq-title h5, .ewd-ufaq-faq-title h6{
  margin: 5px !important;
}
.ewd-ufaq-faq-title .ewd-ufaq-post-margin-symbol span {
  display: none !important;
}

div.ewd-ufaq-faq-title div.ewd-ufaq-post-margin-symbol {
  display: none !important;
}

.ewd-ufaq-faq-title-text {
  width: 100% !important;
}

.ewd-ufaq-faq-title-text {
  float: left;
  width: 100%;
  font-size: 17px;
  font-weight: bold;
  padding: 3px;
  padding-left: 43px;
  position: relative;
  border-radius: 4px;
}

@media (min-width: 768px) {
  .ewd-ufaq-faq-title-text {
    padding-left: 45px;
  }
}
.ewd-ufaq-faq-title-text::before {
  content: "Q";
  font-family: "Roboto", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.1;
  padding: 5px 0px;
  border-radius: 4px;
  color: #ffffff;
  border: 1px solid #e9901f;
  background-image: linear-gradient(270deg, #ee8806 0%, #fca231 100%);
  width: 32px;
  height: 32px;
  position: absolute;
  left: 0;
  top: 0;
}

@media (min-width: 768px) {
  .ewd-ufaq-faq-title-text::before {
    font-size: 20px;
  }
}
.ewd-ufaq-faq-title-text h4 {
  width: 100%;
  margin-top: 0 !important;
  transition: all 0.3s;
  font-size: 17px;
  margin-top: 0;
  pointer-events: none;
  cursor: default;
  position: relative;
  top: -5px;
}

@media (min-width: 768px) {
  .ewd-ufaq-faq-title-text h4 {
    width: 89%;
    font-size: 18px;
  }
}
.ewd-ufaq-faq-title-text h4:hover {
  pointer-events: none;
  cursor: default;
}

a.ewd-ufaq-post-margin {
  pointer-events: none;
  cursor: default;
}

a.ewd-ufaq-post-margin:hover {
  pointer-events: none;
  cursor: default;
}

.ewd-ufaq-faq-body {
  position: relative;
}

.ewd-ufaq-faq-body::before {
  content: "A";
  font-family: "Roboto", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.1;
  padding: 5px 0px;
  border-radius: 4px;
  color: #e9901f;
  border: 1px solid #e9901f;
  background-color: #f3f4f7;
  width: 32px;
  height: 32px;
  position: absolute;
  left: 0;
  top: 0;
}

@media (min-width: 768px) {
  .ewd-ufaq-faq-body::before {
    font-size: 20px;
    padding: 4px 6px;
  }
}
.ewd-ufaq-faq-body {
  padding-left: 48px !important;
  padding-top: 0 !important;
  margin: 0px 16px 16px 16px;
}

.ewd-ufaq-faq-body .access_link {
  margin-top: 12px;
}

.ewd-ufaq-faq-div {
  margin-bottom: 3.2rem;
}

@media (min-width: 768px) {
  .ewd-ufaq-faq-div {
    margin-bottom: 1.6rem;
  }
}
.ewd-ufaq-faq-category-inner {
  margin-bottom: 4.8rem;
}

@media (min-width: 768px) {
  .ewd-ufaq-faq-category-inner {
    margin-bottom: 20px;
  }
}
div#ewd-ufaq-faq-list {
  background-color: #f3f4f7;
  padding: 16px;
}

@media (min-width: 768px) {
  div#ewd-ufaq-faq-list {
    padding: 24px;
  }
}
.ewd-ufaq-faq-div {
  background-color: #ffffff;
  padding: 8px;
}

@media (min-width: 768px) {
  .ewd-ufaq-faq-div {
    padding: 16px 20px;
  }
}
.ewd-ufaq-faq-title {
  margin: 16px;
}

.ewd-ufaq-faqs {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 768px) {
  .ewd-ufaq-faqs {
    gap: 24px;
  }
}
.supervisor {
  margin-top: 24px;
  border-top: 1px solid #ebe8e3;
  border-bottom: 1px solid #ebe8e3;
  padding: 20px 24px;
}

@media (min-width: 768px) {
  .supervisor {
    margin-top: 48px;
  }
}
.supervisor_inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

@media (min-width: 768px) {
  .supervisor_inner {
    flex-direction: row;
  }
}
.supervisor_img {
  border-radius: 50%;
  overflow: hidden;
  aspect-ratio: 1;
  max-width: 100px;
}

.supervisor_img img {
  height: 100%;
  object-fit: cover;
}

.supervisor_title {
  font-weight: bold;
  font-size: 16px;
  line-height: 1.2;
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 8px !important;
}

.supervisor_title .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-image: linear-gradient(270deg, #ee8806 0%, #fca231 100%);
}

.supervisor_title .supervisor_name {
  font-size: 18px;
}

.supervisor_text {
  font-size: 14px;
  margin-bottom: 0 !important;
}

.btn.btn_toColumnTop {
  padding: 20px 40px 20px 32px;
  border: 2px solid;
  border-image: linear-gradient(270deg, #ee8806 0%, #fca231 100%) 1;
  border-radius: 4px;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  font-size: 15px;
  font-weight: 500;
  margin-top: 48px;
  margin-inline: auto;
  transition: all 0.3s;
}

@media (min-width: 768px) {
  .btn.btn_toColumnTop {
    gap: 16px;
  }
}
.btn.btn_toColumnTop:hover {
  opacity: 0.8;
}

.btn.btn_toColumnTop::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-position: center;
  background-image: url(../img/newtop/blog/icon_column_btn.png);
  background-repeat: no-repeat;
  background-size: contain;
  transform: rotate(180deg);
}

@media (min-width: 768px) {
  .btn.btn_toColumnTop::before {
    width: 24px;
    height: 24px;
  }
}
.seminar_box {
  padding-top: 32px;
  padding-bottom: 32px;
}

@media (min-width: 768px) {
  .seminar_box {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
.seminar_baners {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 24px;
}

@media (min-width: 768px) {
  .seminar_baners {
    flex-direction: row;
    justify-content: center;
  }
}
.seminar_baners .baner {
  flex: 1;
  width: 100%;
  max-width: 560px;
  box-shadow: 0 0 10px 0 rgba(36, 41, 55, 0.1);
}

.seminar_baner {
  border: 2px solid;
  width: 100%;
  padding-top: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.seminar_baner.seminar_baner_top > .seminar_title_wrapper {
  padding-top: 0;
  padding-bottom: 12px;
  background-color: transparent;
}

.seminar_baner_title {
  display: flex;
  align-items: center;
  width: fit-content;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.12em;
  font-size: 18px;
  gap: 8px;
  padding: 2px 12px;
  margin-bottom: 8px;
  color: #ffffff;
}

@media (min-width: 768px) {
  .seminar_baner_title {
    font-size: 24px;
    gap: 12px;
  }
}
.seminar_baner_title::after,
.seminar_baner_title::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #ffffff;
}

.seminar_baner_date {
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.04em;
  display: flex;
  align-items: baseline;
  position: relative;
  top: -2px;
}

@media (min-width: 768px) {
  .seminar_baner_date {
    font-size: 32px;
  }
}
.seminar_baner_date span:not(.day) {
  font-family: "Roboto", sans-serif;
  font-size: 24px;
  font-weight: 500;
}

@media (min-width: 768px) {
  .seminar_baner_date span:not(.day) {
    font-size: 24px;
  }
}
.seminar_baner_date span.day {
  font-size: 16px;
  width: 28px;
  height: 28px;
  line-height: 1;
  letter-spacing: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #ffffff;
  position: relative;
  bottom: 4px;
}

.seminar_baner_link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 8px;
  padding: 9px 0;
  font-size: 16px;
  font-weight: bold;
  background-color: #ffffff;
}

@media (min-width: 768px) {
  .seminar_baner_link {
    font-size: 18px;
  }
}
.seminar_baner_link::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.seminar_baner.seminar_baner_bottom {
  padding-top: 0;
  background-color: #fff;
  padding-bottom: 32px;
}

@media (min-width: 768px) {
  .seminar_baner.seminar_baner_bottom {
    background-size: 45%;
  }
}
.seminar_baner.seminar_baner_bottom .end_message {
  font-weight: bold;
  color: #cb141c;
  font-size: 14px;
  background-color: #E8E8E8;
  padding: 8px 12px;
  width: 90%;
  text-align: center;
  margin-inline: auto;
  margin-top: 24px;
  margin-bottom: 0;
}

.seminar_baner.seminar_baner_bottom .comment_message {
  font-weight: bold;
  color: #cb141c;
  font-size: 14px;
  letter-spacing: 0.02em;
  padding: 8px 12px;
  border-radius: 4px;
  width: 90%;
  text-align: center;
  margin-inline: auto;
  margin-top: 24px;
  margin-bottom: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.seminar_baner.seminar_baner_bottom .comment_message.osaka {
  background-color: #FCF8F7;
}

.seminar_baner.seminar_baner_bottom .comment_message.tokyo {
  background-color: #F7F8FB;
}

.seminar_baner.seminar_baner_bottom .comment_message::before {
  content: "";
  display: inline-block;
  background-image: url(../images/seminer/icon_comment.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 20px;
  height: 20px;
}

@media (min-width: 768px) {
  .seminar_baner.seminar_baner_bottom .end_message {
    font-size: 16px;
  }
  .seminar_baner.seminar_baner_bottom .comment_message {
    font-size: 20px;
  }
}
.seminar_title_wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  width: 100%;
}

.seminar_baner_subTitle {
  font-weight: bold;
  text-align: center;
  font-size: 16px;
  margin-bottom: 0 !important;
  /* display: flex;
  justify-content: center;
  align-items: center; */
}

@media (min-width: 768px) {
  .seminar_baner_subTitle {
    font-size: clamp(18px, 1.6666666667vw, 24px);
  }
}
/* .seminar_baner_subTitle::before, .seminar_baner_subTitle::after {
    content: "〜";
    font-weight: bold;
    text-align: center;
    font-size: 18px;
    display: inline-block;
} */
.seminar_schedule_table {
  width: 90%;
  margin-inline: auto;
  margin-top: 24px;
  margin-bottom: 16px;
}

.seminar_schedule_table_inner {
  margin-bottom: 4px;
}

@media (min-width: 768px) {
  .seminar_schedule_table_inner {
    display: flex;
    gap: 8px;
    align-items: center;
  }
}
.seminar_schedule_table_inner dt {
  display: inline-block;
  padding: 4px 8px;
  font-weight: bold;
  margin-bottom: 4px;
}

@media (min-width: 768px) {
  .seminar_schedule_table_inner dt {
    min-width: 136px;
    text-align: center;
    font-size: 18px;
    margin-bottom: 0;
    padding: 4px 10px;
    align-self: stretch;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.seminar_schedule_table_inner dd {
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

@media (min-width: 768px) {
  .seminar_schedule_table_inner dd {
    font-size: 18px;
  }
  .seminar_schedule_table_inner dd:has(.map_link) {
    display: flex;
    align-items: center;
    gap: 24px;
  }
}
.seminar_schedule_table_inner .map_link {
  display: flex;
  align-items: center;
  padding: 4px 16px;
  border-radius: 20px;
  background-color: #ffffff;
  border: 1px solid #ebe8e3;
  font-weight: 500;
  font-size: 13px;
  width: fit-content;
  flex-shrink: 0;
}

.seminar_schedule_table_inner .map_link::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url(../img/newtop/common/icon_mappin.svg);
}

.no_seminar {
  width: 100%;
  max-width: 688px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  background-color: #f9f9fb;
  font-size: 16px;
  margin-inline: auto;
  font-weight: 500;
}

@media (min-width: 768px) {
  .no_seminar {
    height: 80px;
    font-size: 18px;
  }
}
.list_dot.list_blue li {
  font-weight: 500;
}

.list_dot.list_blue li::before {
  content: "・";
  width: auto;
  height: auto;
  background-image: none;
  font-size: 18px;
  color: #5e5e5e;
  top: 0;
}

.seminar_baner_tokyo {
  background-color: #f3f5fa;
  border-color: #5176ba;
  background-image: url(../images/seminer/tokyo_bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom right;
}

.seminar_baner_tokyo .seminar_baner_title {
  background-color: #5176ba;
}

.seminar_baner_tokyo .seminar_baner_link {
  color: #5176ba;
}

.seminar_baner_tokyo .seminar_baner_link::after {
  background-image: url(../images/seminer/keyboard_arrow_down.svg);
}

.seminar_baner_tokyo .seminar_baner_date span.day {
  background-color: #5176ba;
}

.seminar_baner_tokyo .seminar_title_wrapper {
  background-color: #f3f5fa;
}

.seminar_baner_tokyo .seminar_baner_subTitle {
  color: #5176ba;
}

.seminar_baner_tokyo .seminar_schedule_table_inner dt {
  background-color: #f3f5fa;
  color: #5176ba;
}

.seminar_baner_osaka {
  background-color: #faf1f0;
  border-color: #e87771;
  background-image: url(../images/seminer/oosaka_bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom right;
}

.seminar_baner_osaka .seminar_baner_title {
  background-color: #e87771;
}

.seminar_baner_osaka .seminar_baner_link {
  color: #e87771;
}

.seminar_baner_osaka .seminar_baner_link::after {
  background-image: url(../images/seminer/keyboard_arrow_down_red.svg);
}

.seminar_baner_osaka .seminar_baner_date span.day {
  background-color: #e87771;
}

.seminar_baner_osaka .seminar_title_wrapper,
.seminar_baner_osaka .seminar_schedule_table_inner dt {
  background-color: #faf1f0;
}

.seminar_baner_osaka .seminar_baner_subTitle,
.seminar_baner_osaka .seminar_schedule_table_inner dt {
  color: #e87771;
}

.seminar_btnWrapper {
  margin-top: 32px;
}

@media (min-width: 768px) {
  .seminar_btnWrapper {
    margin-top: 40px;
  }
}
.seminar_btnWrapper > p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  color: #5b8d29;
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

@media (min-width: 768px) {
  .seminar_btnWrapper > p {
    margin-bottom: 12px;
  }
}
.seminar_btnWrapper > p::after,
.seminar_btnWrapper > p::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 19px;
  background-color: #5b8d29;
  transform: rotate(135deg);
}

.seminar_btnWrapper > p::after {
  transform: rotate(-135deg);
}

.influence {
  padding: 48px 0;
}

@media (min-width: 768px) {
  .influence {
    padding: 96px 0;
  }
}
.inner_inner {
  padding: 40px 16px;
}

@media (min-width: 768px) {
  .inner_inner {
    padding: 80px min(10.2040816327%, 100px);
  }
}
.inner_inner p {
  line-height: 1.8;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}

.inner_inner p .orange_text {
  font-weight: 500;
}

.seminar_chat {
  margin-inline: auto;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .seminar_chat {
    width: 82%;
    margin-bottom: 40px;
  }
}
.seminar_image {
  margin: 32px 0;
}

@media (min-width: 768px) {
  .seminar_image {
    margin: 64px 0;
  }
}
.seminar_list {
  margin: 8px 0;
}

.seminar_obtain {
  padding: 40px 0;
  background-image: url(../images/seminer/bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

@media (min-width: 768px) {
  .seminar_obtain {
    padding: 80px 0;
  }
}
.seminar_obtain_inner {
  background-color: #ffffff;
  padding: 24px 16px;
  position: relative;
}

@media (min-width: 768px) {
  .seminar_obtain_inner {
    padding: 40px 64px;
  }
}
.seminar_obtain_inner::after {
  content: "";
  display: inline-block;
  width: 80px;
  height: 100px;
  background-image: url(../images/seminer/person02.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  bottom: 0;
  right: 0;
  transform: translateY(20%);
}

@media (min-width: 768px) {
  .seminar_obtain_inner::after {
    width: 160px;
    height: 240px;
    transform: translate(25%, 20%);
  }
}
.list_check.seminar_obtain_list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

@media (min-width: 768px) {
  .list_check.seminar_obtain_list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
.voice {
  padding: 46px 0;
}

@media (min-width: 768px) {
  .voice {
    padding: 96px 0;
  }
}
.voice_card {
  background-color: #ffffff;
  padding: 16px;
  display: flex;
  flex-direction: column-reverse;
  gap: 24px;
}

@media (min-width: 768px) {
  .voice_card {
    flex-direction: row;
    align-items: center;
    gap: 32px;
    padding: 32px;
  }
  .voice_card:nth-of-type(even) {
    flex-direction: row-reverse;
  }
}
.voice_card:not(:last-child) {
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .voice_card:not(:last-child) {
    margin-bottom: 24px;
  }
}
@media (min-width: 768px) {
  .voice_textArea {
    width: 71%;
    max-width: 512px;
  }
}
@media (min-width: 768px) {
  .voice_img {
    width: 24%;
  }
}
.messsage_box {
  display: flex;
  flex-direction: column-reverse;
  gap: 16px;
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid #ebe8e3;
}

@media (min-width: 768px) {
  .messsage_box {
    padding-bottom: 80px;
    margin-bottom: 80px;
    flex-direction: row;
    gap: 64px;
  }
}
.messsage_box.no_borderbottom {
  border-bottom: none;
  padding-bottom: 0;
}

.messsage_box_img {
  width: 70%;
  margin-inline: auto;
}

@media (min-width: 768px) {
  .messsage_box_img {
    width: 21%;
  }
}
@media (min-width: 768px) {
  .messsage_box_textArea {
    width: 71%;
  }
}
.messsage_box_textArea p {
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .messsage_box_textArea p {
    margin-bottom: 24px;
  }
}
.program {
  padding: 48px 0;
}

@media (min-width: 768px) {
  .program {
    padding: 96px 0;
  }
}
.program .inner_small {
  padding-top: 32px;
}

@media (min-width: 768px) {
  .program .inner_small {
    padding-top: 64px;
  }
}
.program .inner_inner {
  padding-top: 0;
}

.program_table {
  margin-bottom: 24px;
}

.program_table .program_table_inner {
  border-top: 1px solid #ebe8e3;
  padding: 16px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .program_table .program_table_inner {
    flex-direction: row;
    align-items: center;
    gap: 8px;
    padding: 20px 0;
  }
}
.program_table .program_table_inner:last-child {
  border-bottom: 1px solid #ebe8e3;
}

.program_table .program_table_inner dt,
.program_table .program_table_inner dd {
  display: inline-block;
}

.program_table .program_table_inner dt {
  font-weight: bold;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  padding: 0 5px;
  border-radius: 2px;
  background-image: linear-gradient(270deg, #ee8806 0%, #fca231 100%);
  color: #ffffff;
  margin-bottom: 4px;
  white-space: nowrap;
  letter-spacing: 0.04em;
}

@media (min-width: 768px) {
  .program_table .program_table_inner dt {
    font-size: 20px;
    margin-bottom: 0;
  }
}
.program_table .program_table_inner dd {
  font-weight: 500;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .program_table .program_table_inner dd {
    font-size: 18px;
  }
}
.schedule {
  padding: 16px;
  background-color: #f9f9fb;
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .schedule {
    margin-bottom: 40px;
  }
}
.schedule dt {
  font-weight: bold;
  font-family: "Roboto", sans-serif;
  color: #e9901f;
  line-height: 1.5;
  letter-spacing: 0.04em;
  font-size: 18px;
  margin-bottom: 4px;
}

@media (min-width: 768px) {
  .schedule dt {
    font-size: 20px;
    margin-bottom: 0;
  }
}
.schedule dd {
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.04em;
}

@media (min-width: 768px) {
  .schedule dd {
    font-size: 18px;
  }
}
@media (min-width: 768px) {
  .schedule_table_inner {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
  }
  .schedule_table_inner:last-child {
    margin-bottom: 0;
  }
}
.present {
  padding: 16px;
  background-image: url(../images/seminer/bg_present_book.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.present p {
  font-size: 15px;
  font-weight: bold;
  line-height: 2;
}

@media (min-width: 768px) {
  .present p {
    font-size: 18px;
  }
}
@media (min-width: 768px) {
  .present {
    padding: 40px;
  }
}
.present .present_content_img {
  width: 60%;
  margin-top: 24px;
  margin-inline: auto;
}

@media (min-width: 768px) {
  .present .present_content_img {
    margin-top: 0;
    width: 24%;
  }
}
@media (min-width: 768px) {
  .present_content {
    display: flex;
    gap: 24px;
  }
}
@media (min-width: 768px) {
  .present_content_text {
    width: 71%;
  }
}
.program .seminar_baners {
  flex-direction: column;
  padding-top: 40px;
}

@media (min-width: 768px) {
  .program .seminar_baners {
    padding-top: 80px;
  }
}
.inner_small:has(.seminar_baners) {
  padding-top: 0;
}

.nojoin,
.recommend {
  padding: 48px 0;
}

@media (min-width: 768px) {
  .nojoin,
  .recommend {
    padding: 96px 0;
  }
}
.nojoin .seminar_btnWrapper > p,
.recommend .seminar_btnWrapper > p {
  color: #1f739a;
}

.nojoin .seminar_btnWrapper > p::after,
.nojoin .seminar_btnWrapper > p::before,
.recommend .seminar_btnWrapper > p::after,
.recommend .seminar_btnWrapper > p::before {
  background-color: #1f739a;
}

.nojoin_box {
  background-image: url(../images/seminer/bg_blue.png);
  background-repeat: no-repeat;
  background-position: center;
  padding: 16px;
}

@media (min-width: 768px) {
  .nojoin_box {
    padding: 40px 100px;
  }
}
.nojoin_box_inner {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 10px;
}

@media (min-width: 768px) {
  .nojoin_box_inner {
    padding: 24px;
  }
}
.nojoin_box_inner .nojoin_title {
  text-align: center;
  color: #1f739a;
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 0.04em;
  font-size: 18px;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .nojoin_box_inner .nojoin_title {
    font-size: 22px;
    margin-bottom: 24px;
  }
}
@media (min-width: 768px) {
  .nojoin_content {
    display: flex;
  }
}
.list_box.listbox_blue {
  margin-bottom: 16px;
}

.list_box.listbox_blue li {
  color: #403c3c;
}

.list_box.listbox_blue li::before {
  background-image: linear-gradient(270deg, #98d4ef 0%, #4ab4e5 100%);
}

.nojoin_textArea {
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .nojoin_textArea {
    margin-bottom: 0;
  }
}
.nojoin_textArea > p {
  font-size: 14px;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .nojoin_textArea > p {
    font-size: 16px;
  }
}
.nojoin_img {
  width: 60%;
  margin-inline: auto;
}

@media (min-width: 768px) {
  .nojoin_img {
    width: 33%;
    margin-right: -44px;
  }
}
.recommend_content {
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .recommend_content {
    margin-bottom: 64px;
    display: flex;
    position: relative;
    margin-top: 64px;
  }
}
.recommend_textArea {
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .recommend_textArea {
    margin-bottom: 0;
    max-width: 530px;
  }
}
.recommend_textArea .list_box {
  margin-bottom: 16px;
}

.recommend_textArea .note {
  font-size: 12px;
  position: relative;
  padding-left: 1em;
}

@media (min-width: 768px) {
  .recommend_textArea .note {
    font-size: 14px;
  }
}
.recommend_textArea .note::before {
  content: "※";
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
}

.recommend_img {
  width: 70%;
  margin-inline: auto;
}

@media (min-width: 768px) {
  .recommend_img {
    width: 30%;
    position: absolute;
    right: 0px;
    top: -90px;
  }
}
.recommend_banner {
  border: 3px solid;
  border-image: linear-gradient(90deg, #84b951 0%, #b6cb49 100%) 1;
  padding: 18px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-image: url(../images/seminer/bg_present.png);
  position: relative;
}

@media (min-width: 768px) {
  .recommend_banner {
    padding: 40px 64px;
  }
  .recommend_banner::before,
  .recommend_banner::after {
    content: "";
    background-repeat: no-repeat;
    background-size: contain;
    display: inline-block;
    position: absolute;
  }
  .recommend_banner::before {
    width: 20%;
    max-width: 200px;
    height: 207px;
    background-image: url(../images/seminer/present_image01.png);
    left: 4%;
    top: 18%;
  }
  .recommend_banner::after {
    width: 18%;
    max-width: 180px;
    height: 207px;
    background-image: url(../images/seminer/present_image02.png);
    right: 4%;
    top: 18%;
  }
}
.recommend_banner p:first-of-type {
  color: #5b8d29;
  font-weight: bold;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
  text-align: center;
}

@media (min-width: 768px) {
  .recommend_banner p:first-of-type {
    font-size: 36px;
    margin-bottom: 24px;
  }
}
.recommend_banner p {
  color: #403c3c;
  line-height: 2;
  font-weight: 500;
  text-align: center;
  font-size: 17px;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .recommend_banner p {
    font-size: 24px;
    margin-bottom: 45px;
  }
}
.faq {
  padding: 48px 0;
}

@media (min-width: 768px) {
  .faq {
    padding: 96px 0;
  }
}
.consultant_lead {
  padding: 40px 0;
}

@media (min-width: 768px) {
  .consultant_lead {
    padding: 80px 0;
  }
}
.consultant_lead .note {
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.6;
}

.consultant_lead .note span {
  display: inline-block;
}

@media (min-width: 768px) {
  .consultant_lead .note {
    font-size: 14px;
  }
}
.consultant_lead_box {
  padding: 24px 16px;
  position: relative;
  max-width: 820px;
  margin-inline: auto;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .consultant_lead_box {
    padding: 44px 40px;
    margin-bottom: 56px;
  }
}
.consultant_leadBox_textArea {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (min-width: 768px) {
  .consultant_leadBox_textArea {
    gap: 32px;
  }
}
.consultant_leadBox_textArea > p {
  font-weight: bold;
  color: #1f739a;
  font-size: 17px;
}

@media (min-width: 768px) {
  .consultant_leadBox_textArea > p {
    font-size: 20px;
  }
}
.consultant_leadBox_img {
  width: 50%;
  margin-inline: auto;
}

@media (min-width: 768px) {
  .consultant_leadBox_img {
    position: absolute;
    max-width: 145px;
    top: 0;
    right: 40px;
  }
}
.consultant_lead_bottomText {
  text-align: center;
  font-weight: bold;
  line-height: 2;
  margin-bottom: 4px;
  font-size: 18px;
}

@media (min-width: 768px) {
  .consultant_lead_bottomText {
    font-size: 26px;
  }
}
.seminar_btnWrapper > p.text_blue::after,
.seminar_btnWrapper > p.text_blue::before {
  background-color: #1f739a;
}

@media (min-width: 768px) {
  .point_item {
    flex: 1;
    display: flex;
    flex-direction: column;
  }
}
.point_item > p {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  font-size: 18px;
  font-weight: bold;
  font-family: "Roboto", sans-serif;
  line-height: 1.6;
  letter-spacing: 0.04em;
  background: linear-gradient(270deg, #ee8806 0%, #fca231 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.point_item > p::after,
.point_item > p::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-image: linear-gradient(270deg, #ee8806 0%, #fca231 100%);
}

.point_item .point_item_title {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 8px;
  text-align: center;
}

@media (min-width: 768px) {
  .point_item .point_item_title {
    font-size: 20px;
    text-align: left;
    margin-bottom: 12px;
  }
}
.point_item_img {
  margin-top: 16px;
}

.point_item_inner {
  padding: 16px;
}

@media (min-width: 768px) {
  .point_item_inner {
    flex: 1;
    padding: 24px;
    display: flex;
    flex-direction: column;
  }
}
.point_list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (min-width: 768px) {
  .point_list {
    flex-direction: row;
    gap: 12px;
  }
}
.point_list .note {
  font-size: 12px;
}

@media (min-width: 768px) {
  .point_list .note {
    font-size: 14px;
  }
}
.consultation_inner {
  padding: 16px;
  position: relative;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .consultation_inner {
    padding: 40px;
  }
}
.consultation_list {
  padding: 16px;
}

@media (min-width: 768px) {
  .consultation_list {
    padding: 40px;
  }
}
.consultation_img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 27%;
  max-width: 200px;
}

@media (min-width: 768px) {
  .consultation_img {
    bottom: -11%;
    right: -1%;
  }
}
@media (min-width: 768px) {
  .consultation_list {
    display: grid;
    grid-auto-flow: column;
    grid-template-rows: repeat(5, auto);
  }
}
.consultation_text {
  font-weight: bold;
  font-size: 18px;
  line-height: 2;
  text-align: center;
}

@media (min-width: 768px) {
  .consultation_text {
    font-size: 26px;
  }
}
.consultabt_flow_item {
  display: flex;
  align-items: center;
  flex-direction: column-reverse;
  gap: 4px;
  padding: 16px;
  width: 100%;
  border-radius: 4px;
}

@media (min-width: 768px) {
  .consultabt_flow_item {
    flex-direction: row;
    align-items: flex-start;
    gap: 24px;
    padding: 20px 24px;
  }
}
.consultabt_flow_item .flow_item_step {
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  font-size: 12px;
  color: #e9901f;
  line-height: 1;
  display: flex;
  align-items: center;
}

.consultabt_flow_item .flow_item_step span {
  font-weight: 500;
  font-size: 24px;
  display: inline-block;
  margin-left: 4px;
}

@media (min-width: 768px) {
  .consultabt_flow_item .flow_item_step span {
    font-size: 28px;
  }
}
.consultabt_flow_item .flow_item_img {
  max-width: 96px;
}

.flow_item_titleWrapper {
  display: flex;
  align-items: center;
  padding-bottom: 4px;
  border-bottom: 1px solid #ebe8e3;
  position: relative;
  gap: 8px;
  margin-bottom: 8px;
}

@media (min-width: 768px) {
  .flow_item_titleWrapper {
    padding-bottom: 8px;
  }
}
.flow_item_titleWrapper::after {
  content: "";
  display: inline-block;
  width: 29px;
  height: 1px;
  background-image: linear-gradient(270deg, #ee8806 0%, #fca231 100%);
  position: absolute;
  bottom: -1px;
  left: 0;
}

.flow_item_title {
  font-weight: bold;
  font-size: 18px;
  color: #403c3c;
  line-height: 1.6;
  letter-spacing: 0.04em;
}

.flow_item_textArea {
  width: 100%;
}

.consultabt_flow_list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.consultant_cta {
  background-image: url(../images/consultat/cta_consultant.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.consultant_cta .seminar_btnWrapper {
  width: 90%;
  margin-inline: auto;
}

.consultant_cta .seminar_btnWrapper .text_blue {
  font-size: 14px;
  margin-bottom: 6px;
}

@media (min-width: 768px) {
  .consultant_cta .seminar_btnWrapper .text_blue {
    font-size: 20px;
  }
}
.consultant_cta .seminar_btnWrapper .btn_seminar {
  box-shadow: 0 0 8px 0 rgba(11, 58, 79, 0.2);
}

@media (min-width: 768px) {
  .consultant_cta .seminar_btnWrapper.btnWrapper_blue {
    margin-top: 24px;
  }
}
.consultant_cta_listbox {
  padding: 16px;
  width: 90%;
  max-width: 780px;
  margin-inline: auto;
}

@media (min-width: 768px) {
  .consultant_cta_listbox {
    padding: 32px 40px;
  }
}
.consultant_cta_list {
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .consultant_cta_list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    margin-bottom: 24px;
  }
}
.consultant_cta_list > li {
  background-color: transparent;
  white-space: nowrap;
}

.consultant_cta_textBox {
  padding: 16px;
  text-align: center;
  display: flex;
  align-items: center;
  flex-direction: column;
  line-height: 1.6;
  font-weight: 500;
  font-size: 15px;
}

.consultant_cta_textBox .bold {
  font-weight: bold;
}

.consultant_cta_inner {
  position: relative;
  padding: 24px 0;
}

@media (min-width: 768px) {
  .consultant_cta_inner {
    padding: 40px 0;
  }
}
.consultant_cta_inner .consultant_cta_img {
  width: 30%;
  max-width: 215px;
  position: absolute;
  left: -2%;
  bottom: 19%;
}

@media (min-width: 768px) {
  .consultant_cta_inner .consultant_cta_img {
    left: -6%;
    bottom: -13px;
  }
}
.consultant_book {
  background-image: url(../images/seminer/bg_present_book.png);
  background-repeat: repeat;
  background-size: 100%;
  background-position: center;
}

.consultant_book .inner {
  padding: 24px 0;
  max-width: 980px;
  width: 90%;
  margin-inline: auto;
}

@media (min-width: 768px) {
  .consultant_book .inner {
    padding: 40px 0;
  }
}
@media (min-width: 768px) {
  .consultant_book .inner .title_hasDot {
    margin-bottom: 24px;
  }
}
.consultant_book .consultant_book_subTitle {
  font-weight: bold;
  line-height: 1.8;
  letter-spacing: 0.02em;
  text-align: center;
  font-size: 14px;
  position: relative;
  width: fit-content;
  margin-inline: auto;
}

@media (min-width: 768px) {
  .consultant_book .consultant_book_subTitle {
    font-size: 22px;
  }
}
.consultant_book .icon_gift {
  display: inline-block;
  width: 20px;
  position: absolute;
  bottom: 6px;
  right: -4px;
  transform: translateX(100%);
}

@media (min-width: 768px) {
  .consultant_book .icon_gift {
    bottom: 9px;
    width: 22px;
    height: 25px;
  }
  .consultant_book .icon_gift img {
    display: block;
  }
}
.consultant_book .footer_boookArea_inner.footer_boookArea_inner_reverse {
  position: static;
  flex-direction: column;
  padding: 0;
  width: 100%;
  margin-top: 24px;
}

@media (min-width: 768px) {
  .consultant_book .footer_boookArea_inner.footer_boookArea_inner_reverse {
    flex-direction: row-reverse;
    justify-content: center;
  }
}
.consultant_book .footer_bookArea_textArea {
  width: 90%;
  max-width: 489px;
}

@media (min-width: 768px) {
  .consultant_book .footer_bookArea_textArea {
    width: 70%;
  }
}
.consultant_book .footer_bookArea_img {
  width: 30%;
  max-width: 200px;
}

.consultant_cta_bottom {
  padding: 32px 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-image: url(../images/consultat/bg_ctaBottom.png);
}

@media (min-width: 768px) {
  .consultant_cta_bottom {
    padding: 64px 0;
  }
}
.consultant_cta_bottom .inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 0;
  box-shadow: 0 0 8px 0 rgba(11, 58, 79, 0.14);
}

@media (min-width: 768px) {
  .consultant_cta_bottom .inner {
    padding: 64px 0;
  }
}
.consultant_cta_bottom .title {
  font-weight: bold;
  font-size: 18px;
  color: #1f739a;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .consultant_cta_bottom .title {
    font-size: 32px;
  }
}
.consultant_cta_bottom p {
  font-weight: bold;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.08em;
  text-align: center;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .consultant_cta_bottom p {
    font-size: 26px;
    margin-bottom: 51px;
  }
}
.consultant_cta_bottom .btn_seminar.btn.bg_blue {
  width: 90%;
  box-shadow: 0 0 8px 0 rgba(11, 58, 79, 0.2);
}

.bg_green {
  background-image: linear-gradient(90deg, #84b951 0%, #b6cb49 100%);
}

.bg_blue {
  background-image: linear-gradient(270deg, #98d4ef 0%, #4ab4e5 100%);
}

.bg_white {
  background-color: #ffffff;
}

.bg_grey {
  background-color: #f3f4f7;
}

.orange_text {
  color: #e9901f;
}

.text_blue {
  color: #1f739a !important;
}

.text_yellow {
  color: #fff706;
}

.marker_yellow {
  background-image: linear-gradient(rgba(0, 0, 0, 0) 70%, #fbf9a5 70%);
}

.marker_blue {
  background-image: linear-gradient(rgba(0, 0, 0, 0) 70%, rgba(151, 211, 239, 0.4) 70%);
}

.mb_0 {
  margin-bottom: 0 !important;
}

.bold {
  font-weight: bold;
}

/* モーダルと背景の指定 */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background: rgba(0, 0, 0, 0.5);
  padding: 40px 20px;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  box-sizing: border-box;
  z-index: 9;
}

/* モーダルの擬似要素の指定 */
.modal:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
  margin-left: -0.2em;
}

/* クラスが追加された時の指定 */
.modal.is-active {
  opacity: 1;
  visibility: visible;
}

/* モーダル内側の指定 */
.modal-container {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  max-width: 1167px;
  width: 98%;
  background-color: #F9F9FB;
  padding: 16px;
  border-radius: 8px;
}

/* モーダルを閉じるボタンの指定 */
.modal-close {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 5px;
  right: 5px;
  width: 32px;
  height: 32px;
  color: #fff;
  background: #858585;
  border-radius: 50%;
  cursor: pointer;
  font-size: 24px;
}

/* モーダルのコンテンツ部分の指定 */
.modal-content {
  background: #fff;
  text-align: left;
  line-height: 1.8;
  padding: 16px;
  border-radius: 16px;
}

.area_content_title {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
}

.area_content_title span {
  color: #CB141C;
}

.area_content_text {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.area_content_btns {
  background-color: #F9F9FB;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

a.btn.btn_seminar.area_content_btn {
  color: #fff;
  display: flex;
  align-items: center;
  padding: 8px;
  font-size: 16px;
}

a.btn.btn_seminar.area_content_btn.west {
  background-image: linear-gradient(44deg, rgb(102, 166, 82), rgb(176, 187, 122));
}

a.btn.btn_seminar.area_content_btn.east {
  background-image: linear-gradient(44deg, rgb(217, 127, 13), rgb(250, 158, 41));
}

a.btn.btn_seminar.area_content_btn span {
  color: #FFFCA0;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.04em;
  font-weight: 700;
}

/* セミナーモーダル */
.seminar_modal_title {
  text-align: center;
  line-height: 1.6;
  margin-bottom: 24px;
  font-weight: 700;
}

.seminar_modal_btns {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.btn.btn_seminar.seminar_modal_btn {
  font-size: 16px;
  color: #fff;
  margin-inline: initial;
}

.btn.btn_seminar.seminar_modal_btn span {
  color: #FFFCA0;
}

.btn.btn_seminar.seminar_modal_btn.west {
  text-align: left;
  border: 1px solid #D2615B;
  background-image: linear-gradient(44deg, rgb(226, 114, 108), rgb(247, 136, 130));
}

.btn.btn_seminar.seminar_modal_btn.east {
  text-align: left;
  border: 1px solid #3F69B6;
  background-image: linear-gradient(44deg, rgb(65, 104, 178), rgb(85, 123, 193));
}

@media (min-width: 768px) {
  .modal-container {
    padding: 56px;
  }
  .seminar .modal-content {
    padding: 40px 80px;
  }
  .modal-close {
    top: 20px;
    right: 20px;
  }
  .area_content_btns {
    padding: 24px;
  }
  a.btn.btn_seminar.area_content_btn {
    padding: 16px 24px;
    font-size: min(1.6vw, 22px);
  }
  a.btn.btn_seminar.area_content_btn span {
    font-size: min(1.9vw, 28px);
  }
  .area_map {
    flex-basis: 500px;
  }
  .area_content {
    flex-basis: 480px;
  }
  .seminar_modal_title {
    font-size: 20px;
    margin-bottom: 32px;
  }
  .seminar_modal_btns {
    flex-direction: row;
    gap: 40px;
  }
  .btn.btn_seminar.seminar_modal_btn {
    font-size: min(1.5vw, 22px);
  }
  .btn.btn_seminar.seminar_modal_btn span {
    font-size: min(2vw, 30px);
  }
}
@media (min-width: 1024px) {
  .consultant .modal-content {
    display: flex;
    align-items: center;
    gap: 3%;
    max-width: 1055px;
    padding: 24px 32px 24px 16px;
  }
  .consul_modal .modal-content {
    display: flex;
    align-items: center;
    gap: 3%;
    max-width: 1055px;
    padding: 24px 32px 24px 16px;
  }
  .area_content_title {
    font-size: 20px;
    width: 85%;
  }
  .area_content_text {
    font-size: 16px;
    width: 85%;
  }
}
.wp-block-group.program_box {
  margin-bottom: 24px;
}

.btn.btn_seminar.seminar_modal_btn.east.gray,
.btn.btn_seminar.seminar_modal_btn.west.gray {
  color: #B5B5B5;
  background-color: #DFDFDF;
  background-image: none;
  border-color: #DFDFDF;
  box-shadow: none;
}

.btn.btn_seminar.seminar_modal_btn.east.gray::after,
.btn.btn_seminar.seminar_modal_btn.west.gray::after {
  filter: contrast(0.5);
}

.btn.gray:hover {
  filter: none;
}

.btn.btn_seminar.seminar_modal_btn.east.gray span,
.btn.btn_seminar.seminar_modal_btn.west.gray span {
  color: #B5B5B5;
}

.has_icon_voice a::before {
  background-image: url(../img/newtop/common/icon_voice.svg);
}

.has_icon_works a::before {
  background-image: url(../img/newtop/common/icon_works.svg);
}

@media (min-width: 1024px) {
  li.has_icon.has_icon_voice,
  li.has_icon.has_icon_works {
    max-width: 232px;
  }
  li.has_icon.has_icon_voice > a,
  li.has_icon.has_icon_works > a {
    max-width: 232px;
    height: 64px;
  }
}

@media (min-width: 1024px) {
  .mega_nav_inner {
    display: flex;
    gap: 24px;
  }
}

@media (min-width: 768px) {
  .mega_vav_works .mega_nav_inner {
    display: flex;
    gap: 8px;
  }
  .mega_vav_works .mega_nav_inner .mega_nav_top p {
    gap: 8px;
  }
}

.mega_nav_top p {
  line-height: 1.4;
  align-items: center;
}
@media (min-width: 1024px) {
  .mega_nav_top p {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border-bottom: none;
    font-weight: 500;
  }
}

.mega_nav_top .arrow {
  flex-shrink: 0;
}

main {
  overflow: hidden;
}

.title_top {
  text-align: center;
  color: #403C3C;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 1.76px;
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  .title_top {
    font-size: 44px;
    margin-bottom: 48px;
  }
}
.title_top span {
  color: #EE6013;
}

.btn_more {
  color: #e9901f;
  width: 90%;
  max-width: 320px;
  display: flex;
  border-image: linear-gradient(270deg, #ee8806 0%, #fca231 100%);
  border: 1px solid;
  border-radius: 100px;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 700;
  padding: 12px;
  transition: all 0.3s;
}
.btn_more span {
  display: inline-block;
  width: 100%;
  max-width: 265px;
  text-align: center;
}
.btn_more_arrowRight::after {
  content: "";
  display: inline-block;
  width: 31px;
  height: 31px;
  border-radius: 50%;
  background-position: center;
  background-image: url(../img/newtop/blog/icon_column_btn.png);
  background-repeat: no-repeat;
  background-size: contain;
}
.btn_more:hover {
  opacity: 0.8;
}
.btn_more .lt {
  display: none;
}
@media (min-width: 1024px) {
  .btn_more .lt {
    display: block;
  }
}

.cta_top {
  padding: 48px 0px;
  background-position: center;
  background-image: url(../img/newtop/bg_cta_01.png);
  background-repeat: no-repeat;
  background-size: cover;
}
@media (min-width: 768px) {
  .cta_top {
    padding: 64px 0px;
  }
}
@media (min-width: 768px) {
  .cta_top .title_top {
    font-size: 40px;
    font-size: clamp(24px, 2.7777777778vw, 40px);
  }
}

.cta_top_inner {
  display: flex;
  padding: 32px 16px;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  border: 1px solid #FFF;
  background: rgba(255, 255, 255, 0.5);
}

.cta_top_text {
  color: #5E5E5E;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .cta_top_text {
    font-size: 20px;
  }
}
.cta_top_text span {
  font-weight: 700;
}

.cta_top_btns {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 12px;
}
@media (min-width: 768px) {
  .cta_top_btns {
    flex-direction: row;
    justify-content: center;
    gap: 24px;
  }
}
.cta_top_btns .cta_top_btn {
  width: 100%;
  max-width: 280px;
  gap: 0;
  position: relative;
  font-weight: 700;
}
@media (min-width: 768px) {
  .cta_top_btns .cta_top_btn {
    padding: 20px 16px;
    max-width: 410px;
    font-size: 24px;
    font-size: clamp(19px, 1.6666666667vw, 24px);
    justify-content: center;
    box-shadow: 0 0 8px 0 rgba(11, 58, 79, 0.2);
  }
}
.cta_top_btns .cta_top_btn span {
  color: #FFF706;
}
.cta_top_btns .cta_top_btn::before {
  margin-right: 8px;
}
@media (min-width: 768px) {
  .cta_top_btns .cta_top_btn::before {
    width: 45px;
    height: 40px;
  }
}
.cta_top_btns .cta_top_btn::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../img/newtop/common/icon_arrow_right_white.svg);
  background-size: contain;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 8px;
}
@media (min-width: 768px) {
  .cta_top_btns .cta_top_btn::after {
    width: 14px;
    height: 14px;
  }
}

.inner_wide {
  width: 92%;
  max-width: 1200px;
  margin-inline: auto;
}

.border {
  background-image: linear-gradient(rgba(0, 0, 0, 0) 60%, #FFFBC0 60%);
}

.top_content {
  padding: 40px 0px;
}
@media (min-width: 768px) {
  .top_content {
    padding: 80px 0px;
  }
}

.bg_gray {
  background-color: #F3F4F7;
}

.mv {
  height: 94svh;
  max-height: 750px;
  padding-top: 48px;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../img/newtop/mv_bg.png);
  position: relative;
}
@media (min-width: 1024px) {
  .mv {
    height: 580px;
  }
}

.mv_image {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 50vh;
}
@media (min-width: 1024px) {
  .mv_image {
    height: 100%;
    top: 0;
  }
}
.mv_image img {
  height: 100%;
  object-fit: cover;
}

.mv_inner {
  position: relative;
  z-index: 2;
}

.mv_title {
  color: var(--Main-Orange02, #EE6013);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.24;
  letter-spacing: 0.4px;
  margin-bottom: 12px;
}
@media (min-width: 1024px) {
  .mv_title {
    font-size: 68px;
  }
}
.mv_title span {
  letter-spacing: -3px;
}

.mv_text {
  display: flex;
  padding-left: 4px;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  margin-bottom: 32px;
}
@media (min-width: 1024px) {
  .mv_text {
    margin-bottom: 70px;
  }
}
.mv_text span {
  color: #454545;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 1px;
}
@media (min-width: 768px) {
  .mv_text span {
    font-size: 38px;
  }
}

.mv_point {
  display: flex;
  padding: 6px 6px 10px 6px;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  border-bottom: 4px solid #EF9868;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-image: url(../img/newtop/bg_point.png);
}
@media (min-width: 1024px) {
  .mv_point {
    padding: 18px 24px 16px 24px;
    height: auto;
    max-width: fit-content;
  }
}

.mv_point_inner {
  display: flex;
  flex-direction: column;
}

.mv_point_text {
  display: flex;
  flex-direction: column;
}
.mv_point_text span {
  color: var(--Text-Normal, #5E5E5E);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
}
@media (min-width: 1024px) {
  .mv_point_text span {
    font-size: 22px;
  }
}
.mv_point_text .orange {
  color: var(--Main-Orange02, #EE6013);
  text-align: center;
  font-family: Roboto;
  font-size: 25px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -1px;
}
@media (min-width: 1024px) {
  .mv_point_text .orange {
    font-size: 30px;
  }
}
.mv_point_text .icon {
  font-size: 12px;
  vertical-align: text-top;
}
@media (min-width: 1024px) {
  .mv_point_text .icon {
    font-size: 14px;
  }
}
.mv_point_text .small {
  color: var(--Main-Orange02, #EE6013);
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 1px;
}
@media (min-width: 1024px) {
  .mv_point_text .small {
    font-size: 22px;
  }
}

.mv_points {
  display: flex;
  align-items: center;
  gap: 4px;
}
@media (min-width: 1024px) {
  .mv_points {
    gap: 12px;
  }
}

.mv_points_wrapper {
  width: fit-content;
}
.mv_points_wrapper .note {
  text-align: end;
  font-size: 13px;
  line-height: 1.2;
  margin-top: 4px;
}
@media (min-width: 1024px) {
  .mv_points_wrapper .note {
    margin-top: 8px;
    font-size: 16px;
  }
}

.mv_circle_wrapper {
  position: relative;
  width: fit-content;
  margin-top: 36px;
}
@media (min-width: 1024px) {
  .mv_circle_wrapper {
    position: absolute;
    left: 54%;
    bottom: -90px;
  }
}
.mv_circle_wrapper .mv_circle {
  background-image: radial-gradient(95.7% 95.7% at 50.08% 4.3%, #094965 0%, #023538 42.93%, #023538 100%);
  width: 150px;
  height: 150px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.2);
}
@media (min-width: 1024px) {
  .mv_circle_wrapper .mv_circle {
    width: 180px;
    height: 180px;
  }
}
.mv_circle_wrapper .mv_circle_title {
  color: #FFF;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}
@media (min-width: 1024px) {
  .mv_circle_wrapper .mv_circle_title {
    font-size: 15px;
  }
}
.mv_circle_wrapper .mv_circle_title::before, .mv_circle_wrapper .mv_circle_title::after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 1px;
  background-color: #fff;
}
.mv_circle_wrapper .mv_circle_title::before {
  transform: rotate(-120deg);
}
.mv_circle_wrapper .mv_circle_title::after {
  transform: rotate(120deg);
}
.mv_circle_wrapper .mv_circle_text {
  color: #FF1;
  text-align: center;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.3;
}
@media (min-width: 1024px) {
  .mv_circle_wrapper .mv_circle_text {
    font-size: 19px;
  }
}
.mv_circle_wrapper .mv_circle_image {
  width: 100px;
  position: absolute;
  bottom: -1px;
  right: -72px;
}

.mv_bottom {
  padding: 24px 0;
  background-image: url(../img/newtop/mv_bottom_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
}
@media (min-width: 1024px) {
  .mv_bottom {
    padding-bottom: 0;
  }
}

@media (min-width: 1024px) {
  .mv_bottom_inner {
    max-width: 1080px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}

.mv_bottom_content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  flex-direction: column-reverse;
    gap: 24px;
  
  margin-bottom: 40px;
}
@media (min-width: 1024px) {
  .mv_bottom_content {
    flex-direction: row;
    width: 70%;
    gap:0;
    max-width: 745px;
    margin-bottom: 0;
  }
}

.mv_bottom_text {
  display: flex;
  padding: 16px;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  border-radius: 4px;
  background: #FFF;
  position: relative;
}
.mv_bottom_text::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 12px solid transparent;
  border-left: 12px solid transparent;
  border-top: 16px solid #fffefe;
  border-bottom: 0;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 100%);
}
@media (min-width: 1024px) {
  .mv_bottom_text::before {
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-right: 16px solid #fffefe;
    border-left: 0;
    position: absolute;
    left: 0;
    bottom: auto;
    top: 50%;
    transform: translate(-100%, -50%);
  }
}
@media (min-width: 1024px) {
  .mv_bottom_text {
    padding: 24px 39px;
    margin-bottom: 24px;
  }
}

.mv_bottom_voice {
  color: #403C3C;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 1px;
}
@media (min-width: 1024px) {
  .mv_bottom_voice {
    font-size: clamp(18px, 1.6666666667vw, 24px);
  }
}

.mv_bottom_image {
  max-width: 175px;
}
@media (min-width: 768px) {
  .mv_bottom_image {
    margin-top: auto;
  }
}

.mv_bottom_doctorBox {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 0px;
}
@media (min-width: 1024px) {
  .mv_bottom_doctorBox {
    flex-direction: row;
    gap: 8px;
  }
}

.mv_bottom_doctor {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
}
@media (min-width: 1024px) {
  .mv_bottom_doctor {
    font-size: 18px;
  }
}

.mv_bottom_doctor_name {
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-size: 16px;
  font-weight: 700;
  line-height: 160%;
}
@media (min-width: 1024px) {
  .mv_bottom_doctor_name {
    font-size: 18px;
  }
}
.mv_bottom_doctor_name span {
  font-size: 14px;
}
@media (min-width: 1024px) {
  .mv_bottom_doctor_name span {
    font-size: 16px;
  }
}

.mv_bottom_content_button .btn_more {
  margin-inline: auto;
  align-items: center;
  padding-left: 24px;
}
.mv_bottom_content_button .btn_more span {
  text-align: left;
}

@media (min-width: 1024px) {
  .mv_bottom_content_button {
    max-width: 266px;
    flex: 1;
  }
}

.nayami {
  display: flex;
  padding: 56px 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  align-self: stretch;
  background-color: #F3F4F7;
}
@media (min-width: 768px) {
  .nayami {
    padding: 80px 0;
  }
}

.border_yellow {
  background-image: linear-gradient(rgba(0, 0, 0, 0) 60%, #FFFBC0 60%);
}

.nayami_inner {
  max-width: 1080px;
}

.nayami_list {
  padding: 24px 16px;
  display: grid;
  gap: 16px;
  background-color: #fff;
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  .nayami_list {
    margin-bottom: 48px;
    padding: 48px 56px;
    grid-template-columns: repeat(2, 1fr);
  }
}

.nayami_item {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.2px;
}
@media (min-width: 768px) {
  .nayami_item {
    font-size: 20px;
  }
}
.nayami_item::before {
  content: "";
  width: 18px;
  height: 18px;
  display: inline-block;
  margin-right:12px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../img/newtop/icon_check_orange.svg);
}

.onayami_bottom_text {
  background: #023538;
  color: var(--base-white-ffffff, #FFF);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 17px;
  font-weight: 700;
  line-height: 1.5;
  width: fit-content;
  margin-inline: auto;
  padding-left: 10px;
}
@media (min-width: 768px) {
  .onayami_bottom_text {
    font-size: 28px;
    padding-left: 16px;
  }
}

.reason {
  padding: 56px 0;
  background-color: #fff;
  position: relative;
}
@media (min-width: 768px) {
  .reason {
    padding: 80px 0px;
  }
}
.reason::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 27px solid transparent;
  border-left: 27px solid transparent;
  border-top: 27px solid #f3f4f7;
  border-bottom: 0;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.reason_item {
  display: flex;
  padding: 22px 16px 16px 16px;
  flex-direction: column;
  align-items: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../img/newtop/bg_point.png);
  position: relative;
  flex: 1;
}
.reason_item::before {
  content: "";
  display: inline-block0;
  width: 1px;
  height: 22px;
  background: #FCA231;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.reason_item .num {
  color: #EE6013;
  font-family: Roboto;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
}
@media (min-width: 768px) {
  .reason_item .num {
    font-size: 48px;
  }
}

.reason_item_title {
  color: #403C3C;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .reason_item_title {
    font-size: min(2.2222222222vw, 32px);
  }
}

.reason_item_text {
  display: flex;
  padding: 4px 0;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  background: #FFF;
  color: #EE6013;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 1px;
  text-align: center;
}
@media (min-width: 768px) {
  .reason_item_text {
    font-size: 20px;
    font-size: min(1.3888888889vw, 20px);
  }
}

.reason_list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 768px) {
  .reason_list {
    width: 100%;
    flex-direction: row;
  }
}

.cta_consultation {
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../img/newtop/bg_cta_01.png);
  padding: 56px 0;
}
@media (min-width: 768px) {
  .cta_consultation {
    padding: 80px 0;
  }
}
@media (min-width: 768px) {
  .cta_consultation .title_top {
    font-size: 40px;
  }
}
@media (min-width: 768px) {
  .cta_consultation .title_top span {
    font-size: 48px;
  }
}
.cta_consultation .cta_consultation_button {
  width: 100%;
  max-width: 510px;
  font-size: 20px;
  padding: 12px 24px 12px 20px;
  letter-spacing: 0.04em;
  position: relative;
  margin-inline: auto;
  margin-bottom: 16px;
  max-width: 380px;
  box-shadow: 0 0 10.462px 0 rgba(11, 58, 79, 0.2);
  font-weight:bold;

}
@media (min-width: 768px) {
  .cta_consultation .cta_consultation_button {
    padding: 16px 24px 16px 60px;
    font-size: 26px;
    margin-bottom: 20px;
    max-width: 510px;
  }
}
.cta_consultation .cta_consultation_button::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../img/newtop/common/icon_arrow_right_white.svg);
  background-size: contain;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
}
@media (min-width: 768px) {
  .cta_consultation .cta_consultation_button::after {
    width: 25px;
    height: 25px;
  }
}
@media (min-width: 768px) {
  .cta_consultation .cta_consultation_button::before {
    width: 66px;
    height: 53px;
  }
}
.cta_consultation .button_to_seminer {
  display: flex;
  max-width: 400px;
  margin-inline: auto;
  padding: 8px;
  justify-content: space-between;
  align-items: center;
  border-radius: 100px;
  border: 1px solid #EBE8E3;
  background: #F9F9F9;
  color: var(--Text-Normal, #5E5E5E);
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .cta_consultation .button_to_seminer {
    font-size: 16px;
    padding: 8px 12px 8px 24px;
  }
}
.cta_consultation .button_to_seminer::after {
  content: "";
  display: block;
  width: 20px;
  flex-shrink: 0;
  min-width: 20px;
  height: 20px;
  border-radius: 50%;
  background-position: center;
  background-image: url(../img/newtop/blog/icon_column_btn.png);
  background-repeat: no-repeat;
  background-size: contain;
  margin-left: auto;
}
.cta_consultation .cta_consultation_note {
  color: var(--Text-Normal, #5E5E5E);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.16px;
}
@media (min-width: 768px) {
  .cta_consultation .cta_consultation_note {
    font-size: 16px;
  }
}

/* =========================
   Front Page - Feature (Figma: 0:1605)
========================= */
.top_feature {
  padding: 80px 0;
  background: #fff;
}
@media (min-width: 768px) {
  .top_feature {
    padding: 110px 0 80px;
  }
}

.top_feature_list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 768px) {
  .top_feature_list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 11%;
    grid-row-gap: 60px;
  }
}

.top_feature_item {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-direction: column;
}
@media (min-width: 768px) {
  .top_feature_item:first-of-type {
    grid-area: 1/1/2/3;
  }
  .top_feature_item:nth-child(2) {
    grid-area: 2/1/3/2;
  }
  .top_feature_item:nth-child(3) {
    grid-area: 2/2/3/3;
  }
  .top_feature_item:nth-child(4) {
    grid-area: 3/1/4/2;
  }
  .top_feature_item:nth-child(5) {
    grid-area: 3/2/4/3;
  }
}
@media (min-width: 1024px) {
  .top_feature_item {
    flex-direction: row;
    align-items: flex-start;
    gap: 40px;
  }
}
@media (min-width: 768px) {
  .top_feature_item:nth-of-type(even) {
    flex-direction: row-reverse;
  }
}

.top_feature_text {
  flex: 1 1 0;
  min-width: 0;
}
.top_feature_text .button_to_price {
  display: flex;
  padding: 8px 12px 8px 32px;
  justify-content: center;
  align-items: center;
  gap: 12px;
  border-radius: 100px;
  border: 1px solid #EBE8E3;
  width: fit-content;
  color: var(--Text-Normal, #5E5E5E);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  margin-top: 20px;
}
.top_feature_text .button_to_price::after {
  content: "";
  display: block;
  width: 24px;
  min-width: 24px;
  height: 24px;
  border-radius: 50%;
  background-position: center;
  background-image: url(../img/newtop/blog/icon_column_btn.png);
  background-repeat: no-repeat;
  background-size: contain;
}

.top_feature_kicker {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 6px;
  color: #EE6013;
  letter-spacing: 1px;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  font-family: "Roboto Slab";
}

.top_feature_dot {
  min-width: 5px;
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #E9901F;
}

.top_feature_label {
  font-size: 14px;
  line-height: 1.6;
}

.top_feature_num {
  color: var(--Main-Orange02, #EE6013);
  font-family: "Roboto Slab";
  font-size: 18px;
  line-height: 1.6;
}

.top_feature_line {
  display: inline;
  width: 64%;
  max-width: 377px;
  height: 1px;
  background: #EE6013;
}

.top_feature_title {
  margin-bottom: 12px;
  color: #403c3c;
  letter-spacing: 1px;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .top_feature_title {
    font-size: 32px;
  }
}

.top_feature_title > span {
  display: block;
}

.top_feature_desc {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #5e5e5e;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
}
@media (min-width: 768px) {
  .top_feature_desc {
    font-size: 18px;
  }
}

.top_feature_visual {
  width: 100%;
  max-width: 460px;
  aspect-ratio: 460/300;
}

/*  -----------------------------
サービス
--------------------------------- */
.top_service_list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 40px 24px;
}
@media (min-width: 768px) {
  .top_service_list {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 24px;
  }
}
@media (min-width: 1024px) {
  .top_service_list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.top_service_item {
  background: #FFF;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.14);
  display: flex;
  flex-direction: column;
  border-bottom: 2px solid #EE6013;
}
.top_service_item .top_service_item_content {
  padding: 12px 12px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.top_service_item .top_service_item_img {
  aspect-ratio: 384/218;
}
.top_service_item .top_service_item_img img {
  height: 100%;
  object-fit: cover;
}
.top_service_item .top_service_item_title {
  display: flex;
  height: 88px;
  padding: 8px 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #FFFCF1;
  color: #e9901f;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  margin-bottom: 12px;
}
.top_service_item .top_service_item_title span {
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .top_service_item .top_service_item_title {
    font-size: min(1.6666666667vw, 24px);
  }
}
.top_service_item .top_service_item_title::after {
  content: "";
  display: block;
  position: absolute;
  width: 56px;
  height: 56px;
  background: linear-gradient(90deg, #FFFCF1 0%, #FFE8CB 100%);
  clip-path: polygon(100% 0%, 100% 100%, 0% 100%);
  bottom: 0;
  right: 0;
}
.top_service_item .top_service_item_text {
  color: #5e5e5e;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 16px;
}
.top_service_item .top_service_item_link {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: #5e5e5e;
  display: flex;
  padding: 8px 12px 8px 18px;
  justify-content: center;
  align-items: center;
  gap: 12px;
  align-self: stretch;
  border-radius: 100px;
  border: 1px solid #D2CEC9;
  margin-top: auto;
  transition: all 0.3s;
}
@media (min-width: 768px) {
  .top_service_item .top_service_item_link {
    padding: 8px 12px 8px 32px;
  }
}
.top_service_item .top_service_item_link::after {
  content: "";
  display: inline-block;
  width: 20px;
  flex-shrink: 0;
  min-width: 20px;
  height: 20px;
  border-radius: 50%;
  background-position: center;
  background-image: url(../img/newtop/blog/icon_column_btn.png);
  background-repeat: no-repeat;
  background-size: contain;
}
@media (min-width: 768px) {
  .top_service_item .top_service_item_link::after {
    width: 24px;
    min-width: 24px;
    height: 24px;
  }
}
.top_service_item .top_service_item_link .bold {
  font-weight: 700;
}
.top_service_item .top_service_item_link:hover {
  opacity: 0.8;
}

.top_service_item_link_inner {
  width: 280px;
}

.top_project .btn_more {
  margin-inline: auto;
}
.top_project .inner {
  width: 100%;
  margin-bottom: 48px;
}
@media (min-width: 768px) {
  .top_project .inner {
    margin-bottom: 96px;
    display: flex;
    align-items: flex-start;
    gap: 24px;
  }
}
.top_project .slick-track {
  display: flex;
}
.top_project .slick-slide {
  height: auto !important;
}

.top_project_img {
  padding: 24px;
}
.top_project_img figcaption {
  color: var(--Text-Normal, #5E5E5E);
  text-align: center;
  font-size: 13px;
  font-weight: 400;
  line-height: 180%;
}

.top_project_content {
  display: flex;
  padding: 24px 0px 12px 0px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  background: var(--Base-LightGrey, #F9F9FB);
}
.top_project_content_text {
  padding: 8px 12px 0px;
}

.top_project_content_img {
  overflow: hidden;
}
.top_project_content_img img {
  width: 110%;
  position: relative;
  left: -22px;
}

.top_project_content_text {
  color: var(--Text-Normal, #5E5E5E);
  font-size: 16px;
  font-weight: 400;
  line-height: 180%;
  padding: 16px;
  background: rgba(255, 255, 255, 0.5);
  margin: 0 12px;
}
@media (min-width: 768px) {
  .top_project_content_text {
    font-size: 20px;
  }
}

.top_project_list {
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .top_project_list {
    margin-bottom: 64px;
  }
}
.top_project_list .slick-list.draggable {
  padding: 12px 0 !important;
}


.top_project_inner_title {
  margin-inline: auto;
  padding: 0 16px;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: linear-gradient(270deg, #F6DB6B -0.08%, #FFBC68 99.92%);
  position: relative;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .top_project_inner_title {
    width: fit-content;
    padding: 0 40px;
    margin-bottom: 24px;
  }
}
.top_project_inner_title span {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 200%;
  text-align: center;
}
@media (min-width: 768px) {
  .top_project_inner_title span {
    font-size: 28px;
  }
}
.top_project_inner_title::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
  border-top: 12px solid #fbcb69;
  border-bottom: 0;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 100%);
}

.top_voice .slick-track {
  display: flex;
}
.top_voice .slick-slide {
  height: auto !important;
}

.top_voice_lead {
  margin-bottom: 32px;
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .top_voice_lead {
    margin-bottom: 56px;
  }
}

.top_voice_list {
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .top_voice_list {
    margin-bottom: 64px;
  }
}

.top_voice_subTitle {
  color: #5E5E5E;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  .top_voice_subTitle {
    font-size: 18px;
    margin-bottom: 56px;
  }
}

.top_voice_btns {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
@media (min-width: 768px) {
  .top_voice_btns {
    flex-direction: row;
    justify-content: center;
  }
}

.wp-block-group.flow_item.top_flow_item {
  background: var(--Base-LightGrey, #F9F9FB);
  display: flex;
  flex-direction: column;
  box-shadow: none;
  gap: 24px;
}
@media (min-width: 768px) {
  .wp-block-group.flow_item.top_flow_item {
    flex-direction: row-reverse;
    justify-content: flex-end;
  }
}
.wp-block-group.flow_item.top_flow_item .flow_num {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 0;
}
.wp-block-group.flow_item.top_flow_item .flow_num .flow_en {
  font-weight: 700;
}
.wp-block-group.flow_item.top_flow_item .top_flow_item_titleWrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (min-width: 768px) {
  .wp-block-group.flow_item.top_flow_item .top_flow_item_titleWrapper {
    flex-direction: row;
    position: relative;
    border-bottom: 1px solid #ebe8e3;
    padding-bottom: 8px;
    margin-bottom: 8px;
  }
  .wp-block-group.flow_item.top_flow_item .top_flow_item_titleWrapper::after {
    content: "";
    display: inline-block;
    width: 29px;
    height: 1px;
    background-image: linear-gradient(270deg, #ee8806 0%, #fca231 100%);
    position: absolute;
    bottom: -1px;
    left: 0;
  }
  .wp-block-group.flow_item.top_flow_item .top_flow_item_titleWrapper .flow_title {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .wp-block-group.flow_item.top_flow_item .top_flow_item_titleWrapper .flow_title::after {
    display: none;
  }
}
.wp-block-group.flow_item.top_flow_item .wp-block-image {
  max-width: 160px;
}
@media (min-width: 768px) {
  .wp-block-group.flow_item.top_flow_item .wp-block-image {
    margin-inline: initial;
  }
}
@media (min-width: 768px) {
  .wp-block-group.flow_item.top_flow_item .flow_textArea {
    width: 80%;
    max-width: 100%;
  }
}
.wp-block-group.flow_item.top_flow_item .flow_text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
}
@media (min-width: 768px) {
  .wp-block-group.flow_item.top_flow_item .flow_text {
    font-size: 18px;
  }
}

.top_column_list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  .top_column_list {
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 64px;
  }
}

.top_column .btn_more,
.topFaq .btn_more {
  margin-inline: auto;
}

.topFaq {
  background-color: #F3F4F7;
}
.topFaq .ewd-ufaq-faq-div {
  border-radius: 4px;
}
.topFaq .ewd-ufaq-faq-title-text::before,
.topFaq .ewd-ufaq-faq-body::before {
  border-radius: 0;
}
.topFaq div#ewd-ufaq-faq-list {
  margin-bottom: 32px;
  padding: 0;
}
@media (min-width: 768px) {
  .topFaq div#ewd-ufaq-faq-list {
    margin-bottom: 64px;
  }
}
@media (min-width: 768px) {
  .topFaq .ewd-ufaq-post-margin.ewd-ufaq-faq-post p {
    font-size: 18px;
  }
}

.invitation {
  padding: 56px 0;
  background-color: #fff;
}
@media (min-width: 768px) {
  .invitation {
    padding: 80px 0;
  }
}

.invitation_lead {
  color: #5E5E5E;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  .invitation_lead {
    font-size: 18px;
    margin-bottom: 64px;
  }
}

.invitation_box {
  padding: 40px 12px;
  background: #F9F9FB;
}
.invitation_box:first-of-type {
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .invitation_box:first-of-type {
    margin-bottom: 64px;
  }
}
.invitation_box .btn.header_btn.bg_blue.cta_top_btn {
  width: 100%;
  max-width: 280px;
  gap: 0;
  position: relative;
  font-weight: 700;
  justify-content: center;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .invitation_box .btn.header_btn.bg_blue.cta_top_btn {
    padding: 20px 16px;
    max-width: 410px;
    font-size: 24px;
    font-size: clamp(19px, 1.6666666667vw, 24px);
    box-shadow: 0 0 8px 0 rgba(11, 58, 79, 0.2);
  }
}
.invitation_box .btn.header_btn.bg_blue.cta_top_btn span {
  color: #FFF706;
}
.invitation_box .btn.header_btn.bg_blue.cta_top_btn::before {
  margin-right: 8px;
}
@media (min-width: 768px) {
  .invitation_box .btn.header_btn.bg_blue.cta_top_btn::before {
    width: 45px;
    height: 40px;
  }
}
.invitation_box .btn.header_btn.bg_blue.cta_top_btn::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../img/newtop/common/icon_arrow_right_white.svg);
  background-size: contain;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 8px;
}
@media (min-width: 768px) {
  .invitation_box .btn.header_btn.bg_blue.cta_top_btn::after {
    width: 14px;
    height: 14px;
  }
}

.invitation_box_title {
  color: #403C3C;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 2px;
  width: fit-content;
  margin-inline: auto;
  border-bottom: 5px solid var(--Main-Orange, #FCA231);
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .invitation_box_title {
    font-size: 32px;
    margin-bottom: 40px;
  }
}

.invitation_box_text {
  color: #5E5E5E;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .invitation_box_text {
    font-size: 18px;
    margin-bottom: 40px;
  }
}

.invitation_list {
  width: 100%;
  max-width: 1080px;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .invitation_list {
    width: 94%;
  }
}

.invitation_list .slick-list.draggable{
  padding: 16px 0;
}

.invitation_item {
  background: #FFF;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.17);
  margin: 8px;
}
@media (min-width: 768px) {
  .invitation_item {
    margin: 0 8px;
  }
}
.invitation_item .invitation_item_link {
  display: flex;
  padding: 16px;
  flex-direction: column;
  transition: all .3s;
  opacity: 1.0;
 
}
.invitation_item .invitation_item_link:hover{
  opacity: .8;
}
.invitation_item .invitation_item_lead {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 8px;
}
@media (min-width: 768px) {
  .invitation_item .invitation_item_lead {
    flex-direction: row;
    align-items: center;
  }
}
.invitation_item .invitation_item_cate {
  display: flex;
  padding: 4px 8px;
  justify-content: center;
  align-items: center;
  color: var(--base-white-ffffff, #FFF);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  width: fit-content;
}
.invitation_item .invitation_item_cate.online {
  background-color: #A48CD5;
}
.invitation_item .invitation_item_cate.tokyo {
  background-color: #5176BA;
}
.invitation_item .invitation_item_cate.osaka {
  background-color: #E87771;
}
.invitation_item .invitation_item_date {
  color: var(--Text-Normal, #5E5E5E);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .invitation_item .invitation_item_date {
    font-size: 18px;
  }
}
.invitation_item .invitation_item_img {
  aspect-ratio: 315/185;
  margin-bottom: 8px;
}
.invitation_item .invitation_item_img img {
  height: 100%;
  object-fit: cover;
}
.invitation_item .invitation_item_title {
  color: var(--Text-Normal, #5E5E5E);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .invitation_item .invitation_item_title {
    font-size: 18px;
  }
}

.btn.btn_toColumnTop span {
  display: inline-block;
  text-align: center;
}
@media (min-width: 768px) {
  .btn.btn_toColumnTop span {
    min-width: 160px;
  }
}

.footer_navArea {
  padding: 40px 0px;
}
@media (min-width: 768px) {
  .footer_navArea {
    flex-direction: row;
    padding: 32px 0px;
  }
}
.footer_navArea .footer_navArea_inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
@media (min-width: 768px) {
  .footer_navArea .footer_navArea_inner {
    flex-direction: row;
    justify-content: space-between;
  }
}
.footer_navArea .footer_logo {
  margin-inline: auto;
  width: 80%;
  max-width: 180px;
}
@media (min-width: 768px) {
  .footer_navArea .footer_logo {
    margin-inline: initial;
  }
}
.footer_navArea .footer_navs {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 980px;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .footer_navArea .footer_navs {
    flex-direction: row;
    gap: 10%;
    flex: 1;
  }
}
.footer_navArea .footer_nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 768px) {
  .footer_navArea .footer_nav {
    gap: 24px;
  }
}
.footer_navArea .footer_nav > .footer_nav_item {
  color: var(--Text-Normal, #5E5E5E);
  font-size: 15px;
  font-weight: 700;
  line-height: 160%;
  letter-spacing: 0.3px;
  flex-shrink: 0;
}
.footer_navArea .footer_nav .footer_nav_child {
  padding-left: 1em;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  margin-top: 8px;
}
@media (min-width: 768px) {
  .footer_navArea .footer_nav .footer_nav_child {
    gap: 8px;
  }
}
.footer_navArea .footer_nav .footer_nav_child .footer_nav_child_item {
  font-size: 14px;
  font-weight: 400;
  line-height: 160%;
}

.project_item {
  background: #FFF;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.17);
  margin: 0 12px;
}
.project_item a {
  display: flex;
  padding: 16px;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  flex: 1 0 0;
}
.project_item .project_item_thumbnail {
  aspect-ratio: 352/185;
  overflow: hidden;
  position: relative;
}
.project_item .project_item_thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.project_item .project_item_tags {
  display: flex;
  align-items: flex-start;
  align-items: center;
  gap: 4px;
}
.project_item .project_item_tags li {
  display: flex;
  padding: 4px 8px;
  justify-content: center;
  align-items: center;
  border-radius: 24px;
  background: #F2A74A;
  color: #ffffff;
  font-size: 13px;
  font-weight: 500;
}
.project_item .project_item_title {
  color: var(--Text-Normal, #5E5E5E);
  font-size: 18px;
  font-weight: 700;
  line-height: 150%;
}

.area_item {
  display: flex;
  flex-shrink: 0;
  padding: 4px 12px;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 120%;
  position: absolute;
  top: 0;
  right: 0;
}
.area_item.osaka {
  background: var(--Osaka-Text_Line, #E87771);
}
.area_item.tokyo {
  background: #5176BA;
}

.project_item_parts,
.department_list {
  display: flex;
  align-items: flex-start;
  align-content: flex-start;
  gap: 4px;
  align-self: stretch;
  flex-wrap: wrap;
  margin-bottom: 4px;
}
.project_item_parts li,
.department_list li {
  display: flex;
  padding: 4px;
  justify-content: center;
  align-items: center;
  color: #5E5E5E;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  border: 1px solid;
  border-image: linear-gradient(180deg, #F4B05A 0%, #F1941D 100%) 1;
  background: #FFF;
}

.voice_item {
  background: #FFF;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.17);
  margin: 0 12px;
}
@media (min-width: 768px) {
  .voice_item {
    margin: 0 12px;
  }
}
.voice_item a {
  display: flex;
  flex-direction: column;
  padding: 16px;
  align-items: flex-start;
  flex: 1 0 0;
  gap: 8px;
  position: relative;
}
@media (min-width: 768px) {
  .voice_item a {
    flex-direction: row;
  }
}
.voice_item a .area_item {
  position: absolute;
  top: 0;
  right: 0;
}
.voice_item .voice_item_thumbnail {
  width: 100%;
  height: 100%;
}
@media (min-width: 768px) {
  .voice_item .voice_item_thumbnail {
    width: 162px;
    aspect-ratio: 162/219;
    flex-shrink: 0;
  }
}
.voice_item .voice_item_thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (min-width: 768px) {
  .voice_item .voice_item_thumbnail img {
    object-fit: cover;
  }
}
.voice_item .voice_item_thumbnail.voice_item_thumbnail_pc {
  display: none;
}
@media (min-width: 1024px) {
  .voice_item .voice_item_thumbnail.voice_item_thumbnail_pc {
    display: block;
  }
}
.voice_item .voice_item_content {
  padding-top: 16px;
}
@media (min-width: 768px) {
  .voice_item .voice_item_content {
    padding-top: 0;
  }
}
.voice_item .voice_item_content_inner {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  margin-bottom: 8px;
}
.voice_item .voice_item_thumbnail.voice_item_thumbnail_sp {
  width: 35%;
}
@media (min-width: 1024px) {
  .voice_item .voice_item_thumbnail.voice_item_thumbnail_sp {
    display: none;
  }
}
.voice_item .voice_item_title {
  color: var(--Text-Normal, #5E5E5E);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%;
}
@media (min-width: 768px) {
  .voice_item .voice_item_title {
    font-size: 16px;
  }
}
.voice_item .voice_item_job {
  color: var(--Text-Normal, #5E5E5E);
  font-size: 16px;
  font-weight: 700;
  line-height: 160%;
}
@media (min-width: 768px) {
  .voice_item .voice_item_job {
    font-size: 26px;
  }
}
.voice_item .voice_item_job span {
  font-size: 14px;
}
@media (min-width: 768px) {
  .voice_item .voice_item_job span {
    font-size: 20px;
  }
}
.voice_item .voice_item_open {
  color: #919191;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
}
.voice_item .voice_item_excerpt {
  margin-top: 8px;
}
.voice_item .voice_item_excerpt p {
  color: var(--Text-Normal, #5E5E5E);
  font-size: 15px;
  font-weight: 400;
  line-height: 150%;
}

span.more_link {
  display: block;
  color: var(--Text-Link-Blue, #3E81E9);
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  text-align: right;
}

.slick-arrow {
  width: 32px;
  height: 32px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
@media (min-width: 768px) {
  .slick-arrow {
    width: 40px;
    height: 40px;
  }
}
.slick-arrow.prev-arrow {
  background-image: url(../img/newtop/common/icon_slider_prev.png);
  left: 0px;
  z-index: 2;
}
@media (min-width: 768px) {
  .slick-arrow.prev-arrow {
    left: -4%;
  }
}
.slick-arrow.next-arrow {
  background-image: url(../img/newtop/common/icon_slider_next.png);
  right: 0px;
}
@media (min-width: 768px) {
  .slick-arrow.next-arrow {
    right: -4%;
  }
}

.column_item.card-small {
  border-bottom: 1px solid var(--Line-Light, #F4F4F4);
  background: #FFF;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.15);
}
.column_item.card-small a {
  display: flex;
  padding: 12px;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 0;
  height: 100%;
  border-bottom: none;
}
.column_item.card-small a .column_image {
  width: 100%;
  aspect-ratio: 360/190;
}
@media (min-width: 768px) {
  .column_item.card-small a .column_image {
    max-width: 100%;
  }
}

body.archive {
  padding-top: 65px;
}

.title_page {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(270deg, #FB9A1E 0%, #FFB960 100%);
  height: 100px;
  color: var(--base-white-ffffff, #FFF);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%;
  /* 51.2px */
  letter-spacing: 3.2px;
}
@media (min-width: 768px) {
  .title_page {
    height: 180px;
    font-size: 32px;
  }
}
.title_page .en {
  color: var(--base-white-ffffff, #FFF);
  text-align: center;
  font-family: "Noto Serif JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 900;
  line-height: 160%;
  letter-spacing: 2px;
}
.title_page::after {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #ffffff;
  margin-top: 4px;
}

.news_cate_box {
  display: flex;
  padding: 24px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  align-self: stretch;
  background: var(--Base-Grey, #F3F4F7);
}
@media (min-width: 768px) {
  .news_cate_box {
    padding: 40px 80px;
  }
}
.news_cate_box .news_cateList {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 16px;
  align-items: center;
  gap: 8px;
  align-self: stretch;
  border-radius: 4px;
  background: #FFF;
}
@media (min-width: 768px) {
  .news_cate_box .news_cateList {
    padding: 24px 48px;
    gap: 16px;
  }
}
.news_cate_box .news_cateItem a {
  display: flex;
  height: 32px;
  padding: 2px 8px;
  justify-content: center;
  align-items: center;
  gap: 4px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  line-height: 120%;
  min-width: 100px;
}
@media (min-width: 768px) {
  .news_cate_box .news_cateItem a {
    min-width: 160px;
    padding: 6px 20px;
  }
}
.news_cate_box .news_cateItem a::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.news_cate_box .news_cateItem.cate_news a {
  background: #DEB63E;
}
.news_cate_box .news_cateItem.cate_news a::before {
  background-image: url(../img/newtop/common/icon_cate_news.png);
}
.news_cate_box .news_cateItem.cate_seminar a {
  background: #85C04C;
}
.news_cate_box .news_cateItem.cate_seminar a::before {
  background-image: url(../img/newtop/common/icon_cate_seminar.png);
}
.news_cate_box .news_cateItem.cate_voice a {
  background: #146AAB;
}
.news_cate_box .news_cateItem.cate_voice a::before {
  background-image: url(../img/newtop/common/icon_cate_voice.png);
}
.news_cate_box .news_cateItem.cate_case a {
  background: #EF7A4C;
}
.news_cate_box .news_cateItem.cate_case a::before {
  background-image: url(../img/newtop/common/icon_cate_case.png);
}

.news_cate_box_title {
  color: var(--Text-Normal, #5E5E5E);
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 14px;
  letter-spacing: 1.8px;
}

.archive_content {
  padding: 40px 0;
}
@media (min-width: 768px) {
  .archive_content {
    padding: 64px 0;
  }
}
.archive_content .news_list {
  padding: 40px 0;
}
@media (min-width: 768px) {
  .archive_content .news_list {
    padding: 64px 0;
  }
}

.voice_list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 24px;
}
@media (min-width: 768px) {
  .voice_list {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 4px;
  }
}

.project_list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 24px;
}
@media (min-width: 768px) {
  .project_list {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 4px;
  }
}
@media (min-width: 1024px) {
  .project_list {
    grid-template-columns: repeat(3, 1fr);
  }
}

body.single {
  padding-top: 65px;
}
body.single .wp-block-media-text__content {
  padding: 0;
}
body.single .wp-block-media-text {
  gap: 4%;
}

.news_single_title {
  color: var(--Text-Title, #403C3C);
  font-family: "Noto Sans JP";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 200%;
  letter-spacing: 2.56px;
  margin-bottom: 8px;
}
@media (min-width: 768px) {
  .news_single_title {
    font-size: 32px;
  }
}

.news_single .news_cateList {
  margin-bottom: 16px;
}
.news_single .news_cateItem {
  max-width: 90px;
}
.news_single .news_cateItem a {
  display: flex;
  height: 22px;
  justify-content: center;
  align-items: center;
  gap: 4px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  line-height: 120%;
  background: #DEB63E;
}
.news_single .news_cateItem a::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url(../img/newtop/common/icon_cate_news.png);
}

.voice_single {
  padding: 40px 0;
}
@media (min-width: 768px) {
  .voice_single {
    padding: 80px 0;
  }
}
.voice_single .voice_single_lead {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  .voice_single .voice_single_lead {
    margin-bottom: 40px;
    gap: 24px;
  }
}
.voice_single .voice_single_term {
  display: flex;
  padding: 4px 12px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: var(--base-white-ffffff, #FFF);
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  width: fit-content;
  margin-bottom: 8px;
}
.voice_single .voice_single_term.tokyo {
  background: #5176BA;
}
.voice_single .voice_single_term.osaka {
  background: var(--Osaka-Text_Line, #E87771);
}
.voice_single .voice_single_img {
  width: 35%;
  max-width: 200px;
}
.voice_single .voice_single_title {
  color: var(--Text-Normal, #5E5E5E);
  font-size: 18px;
  font-weight: 700;
  line-height: 150%;
  margin-bottom: 4px;
}
@media (min-width: 768px) {
  .voice_single .voice_single_title {
    font-size: 28px;
  }
}
.voice_single .voice_single_job {
  color: var(--Text-Normal, #5E5E5E);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  margin-bottom: 8px;
}
@media (min-width: 768px) {
  .voice_single .voice_single_job {
    font-size: 24px;
  }
}
.voice_single .department_list {
  margin-bottom: 24px;
}
.voice_single .department_list p {
  display: flex;
  padding: 4px;
  justify-content: center;
  align-items: center;
  gap: 4px;
  border: 1px solid var(--Linear, #F4B05A);
  background: #FFF;
  color: #5E5E5E;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 0;
}
.voice_single .voice_single_link {
  display: flex;
  width: 151px;
  padding: 2px 20px;
  align-items: center;
  border-radius: 24px;
  border: 1px solid var(--Text-Link-Blue, #3E81E9);
  background: var(--Base-Grey, #F3F4F7);
  color: var(--Text-Link-Blue, #3E81E9);
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: 1px;
  transition: all 0.3s;
}
.voice_single .voice_single_link:hover {
  opacity: 0.8;
}
@media (min-width: 768px) {
  .voice_single .voice_single_link {
    padding: 8px 24px;
  }
}
.voice_single .voice_single_link::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../img/newtop/common/icon_link.svg);
  background-size: contain;
}
.voice_single .voice_single_link span {
  display: inline-block;
  width: 90px;
  text-align: center;
}
.voice_single .voice_single_content {
  display: flex;
  padding: 24px 16px;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  background: var(--Base-LightGrey, #F9F9FB);
}
@media (min-width: 768px) {
  .voice_single .voice_single_content {
    padding: 40px;
  }
}
.voice_single .voice_single_content h2.wp-block-heading:first-of-type {
  margin-top: 0;
}

.project_single .project_single_img {
  margin-bottom: 25px;
}
.project_single .service_list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  align-self: stretch;
  margin-bottom: 8px;
}
@media (min-width: 768px) {
  .project_single .service_list {
    flex-direction: row;
  }
}
.project_single .service_list a {
  border-radius: 24px;
  background: #F2A74A;
  display: flex;
  padding: 4px 8px;
  justify-content: center;
  align-items: center;
  gap: 4px;
  color: #FFF;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
}
.project_single .project_single_title {
  color: var(--Text-Normal, #5E5E5E);
  font-size: 28px;
  font-weight: 700;
  line-height: 150%;
  margin-bottom: 10px;
}
.project_single .department_list {
  display: flex;
  align-items: flex-start;
  align-content: flex-start;
  gap: 4px;
  align-self: stretch;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .project_single .department_list {
    margin-bottom: 48px;
  }
}
.project_single .department_list a {
  display: flex;
  padding: 4px;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--Linear, #F4B05A);
  background: #FFF;
  color: #5E5E5E;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
}
.project_single .project_single_item {
  display: flex;
  padding: 16px 0;
  align-items: flex-start;
  gap: 8px;
  flex-direction: column;
  border-bottom: 1px solid var(--Line-Normal, #EBE8E3);
}
.project_single .project_single_item:first-child {
  border-top: 1px solid var(--Line-Normal, #EBE8E3);
}
@media (min-width: 768px) {
  .project_single .project_single_item {
    flex-direction: row;
    gap: 24px;
  }
}
.project_single .project_single_item dt {
  color: var(--Text-Title, #403C3C);
  font-size: 16px;
  font-weight: 700;
  line-height: 160%;
}
@media (min-width: 768px) {
  .project_single .project_single_item dt {
    width: 160px;
    font-size: 18px;
  }
}
.project_single .project_single_item dd {
  color: var(--Text-Title, #403C3C);
  font-size: 16px;
  font-weight: 500;
  line-height: 160%;
}
@media (min-width: 768px) {
  .project_single .project_single_item dd {
    font-size: 18px;
    display: flex;
  }
}
.project_single .project_single_item .project_single_voiceLink {
  display: flex;
  width: 170px;
  padding: 4px;
  justify-content: center;
  align-items: center;
  gap: 4px;
  border-radius: 40px;
  border: 1px solid var(--Text-Orange, #E9901F);
  color: var(--Text-Title, #403C3C);
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  line-height: 160%;
  margin-top: 8px;
}
@media (min-width: 768px) {
  .project_single .project_single_item .project_single_voiceLink {
    margin-top: 0;
    margin-left: 24px;
  }
}
.project_single .project_single_item .project_single_voiceLink::after {
  content: "";
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  border-radius: 50%;
  background-position: center;
  background-image: url(../img/newtop/blog/icon_column_btn.png);
  background-repeat: no-repeat;
  background-size: contain;
}

.page_original .column_single h2.wp-block-heading {
  border: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  .page_original .column_single h2.wp-block-heading {
    gap: 20px;
    margin-bottom: 40px;
  }
}
.page_original .column_single h2.wp-block-heading::after {
  background-color: transparent;
  width: 6px;
  height: 18px;
  background-image: url(../img/newtop/common/icon_title_dots.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: initial;
}
.page_original .page_links {
  flex-wrap: wrap;
  padding: 24px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--Base-Grey, #F3F4F7);
}
.page_original .page_link a {
  display: flex;
  padding: 12px 24px 4px 24px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 227px;
  gap: 8px;
  border-bottom: 2px solid var(--Main-Linear-Orange, #EE8806);
  background: #FFF;
  box-shadow: 0 0 10px 0 rgba(50, 44, 28, 0.1);
  color: var(--Text-Normal, #5E5E5E);
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 1px;
  text-decoration: none;
}
.page_original .page_link a::after {
  content: "";
  width: 20px;
  height: 20px;
  aspect-ratio: 1/1;
  background-image: url(../img/newtop/common/icon_arrow_bottom.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.page_original_inner {
  padding: 56px 0;
}
@media (min-width: 768px) {
  .page_original_inner {
    padding: 80px 0;
  }
}

.thanks_inner {
  padding: 56px 0;
}
@media (min-width: 768px) {
  .thanks_inner {
    padding: 80px 0;
  }
}
.thanks_inner .title_page {
  color: var(--Text-Title, #403C3C);
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 1.12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  align-self: stretch;
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  .thanks_inner .title_page {
    font-size: 28px;
    gap: 20px;
    margin-bottom: 48px;
  }
}
.thanks_inner .title_page::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 18px;
  background-image: url(../img/newtop/common/dot.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.thanks_inner .thanks_text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.thanks_inner .thanks_text p {
  color: var(--Text-Normal, #5E5E5E);
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  line-height: 160%;
}/*# sourceMappingURL=styles.css.map */