@charset "UTF-8";
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  font-weight: normal;
}

body {
  line-height: 1;
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", メイリオ, Meiryo, "ＭＳ Ｐゴシック", "Helvetica Neue", system-ui, sans-serif;
  line-break: strict;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  outline: none;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

caption, th, td {
  text-align: left;
  vertical-align: middle;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, textarea {
  outline: none;
}

input, select {
  vertical-align: middle;
  font-family: inherit;
}

input[type=submit],
button {
  outline: none;
}

input,
textarea,
button {
  -webkit-appearance: none;
}

textarea {
  font-family: inherit;
}

button, input[type=submit] {
  cursor: pointer;
}

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

svg {
  stroke-linecap: round;
  stroke-linejoin: round;
}

.l-header.is-scrolled header {
  padding: 10px 40px 10px;
  background: #fff;
}
@media screen and (max-width: 640px) {
  .l-header.is-scrolled header {
    padding: 10px;
  }
}
.l-header.is-scrolled .menu-btn {
  top: 25px;
}
@media screen and (max-width: 640px) {
  .l-header.is-scrolled .menu-btn {
    top: 16px;
    right: 10px;
  }
}

header {
  padding: 30px 40px 30px;
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 996;
  transition: all 0.5s;
}
@media screen and (max-width: 640px) {
  header {
    padding: 10px;
  }
}
header .header-logo {
  margin-right: auto;
}
header .header-logo a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 640px) {
  header .header-logo img {
    width: auto;
    height: 30px;
  }
}
header .header-btn {
  margin-right: 70px;
}
header .header-btn a {
  width: 240px;
}
@media screen and (max-width: 640px) {
  header .header-btn {
    display: none;
  }
}

.menu-mask {
  content: "";
  width: 100vw;
  height: 100vh;
  background: rgba(34, 83, 129, 0.9);
  position: fixed;
  top: 0;
  left: 0;
  transition: all 0.5s ease;
  visibility: hidden;
  opacity: 0;
  z-index: 997;
}
.menu-mask.is-show {
  visibility: visible;
  opacity: 1;
}
.menu-panel {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  top: 0;
  right: 0;
  z-index: 998;
  visibility: hidden;
  opacity: 0;
  background: #fff;
  right: -100%;
  transition: all 0.5s ease;
  overflow: scroll;
  overflow-x: hidden;
  overflow-y: scroll;
}
.menu-panel::-webkit-scrollbar {
  width: 4px;
}
.menu-panel::-webkit-scrollbar-track {
  background: transparent;
}
.menu-panel::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
}
@media screen and (max-width: 640px) {
  .menu-panel {
    width: 90%;
  }
}
@media screen and (min-width: 641px) {
  .menu-panel-inner {
    padding: 100px;
  }
}
.menu-panel.is-show {
  visibility: visible;
  opacity: 1;
  right: 0;
}
.menu-navi {
  margin-bottom: 50px;
}
.menu-navi li a {
  text-decoration: none;
  color: #225381;
}
.menu-navi li .main {
  font-size: 25px;
  font-weight: 600;
  display: block;
  letter-spacing: 0.2em;
  margin-bottom: 4px;
  font-family: "Raleway", sans-serif;
}
@media screen and (max-width: 640px) {
  .menu-navi li .main {
    font-size: 20px;
  }
}
.menu-navi li .sub {
  display: block;
  letter-spacing: 0.1em;
  font-weight: 600;
}
@media screen and (max-width: 640px) {
  .menu-navi li .sub {
    font-size: 11px;
  }
}
.menu-navi li + li {
  margin-top: 30px;
}
.menu-cv a {
  width: 240px;
}
.menu-btn {
  width: 30px;
  height: 20px;
  position: fixed;
  z-index: 999;
  top: 45px;
  right: 40px;
  transition: all 0.5s;
  cursor: pointer;
}
@media screen and (max-width: 640px) {
  .menu-btn {
    top: 16px;
    right: 10px;
  }
}
.menu-btn:hover span:nth-of-type(1) {
  transform: translateY(-2px);
}
.menu-btn:hover span:nth-of-type(3) {
  transform: translateY(2px);
}
.menu-btn span {
  display: block;
  width: 30px;
  height: 2px;
  background: #225381;
  position: absolute;
  transition: all 0.5s ease;
}
.menu-btn span:nth-of-type(1) {
  top: 0;
  transform-origin: top left;
}
.menu-btn span:nth-of-type(2) {
  top: 9px;
}
.menu-btn span:nth-of-type(3) {
  bottom: 0px;
  transform-origin: top left;
}
.menu-btn.is-show span:nth-of-type(1) {
  transform: rotate(37deg);
}
.menu-btn.is-show span:nth-of-type(2) {
  opacity: 0;
}
.menu-btn.is-show span:nth-of-type(3) {
  transform: rotate(-37deg);
}

.l-sns {
  position: fixed;
  bottom: 60px;
  right: 40px;
  width: 24px;
  z-index: 996;
}
@media screen and (max-width: 640px) {
  .l-sns {
    width: 18px;
    right: 10px;
    bottom: 100px;
  }
}
.l-sns > div {
  font-size: 12px;
  font-weight: 600;
  transform-origin: right top;
  transform: rotate(90deg) translateY(6px);
  white-space: nowrap;
  color: #225381;
  font-family: "Raleway", sans-serif;
}
@media screen and (max-width: 640px) {
  .l-sns > div {
    font-size: 10px;
    transform: rotate(90deg) translateY(4px);
  }
}
.l-sns ul {
  margin-top: 190px;
  position: relative;
}
@media screen and (max-width: 640px) {
  .l-sns ul {
    margin-top: 160px;
  }
}
.l-sns ul li + li {
  margin-top: 30px;
}
@media screen and (max-width: 640px) {
  .l-sns ul li + li {
    margin-top: 20px;
  }
}
.l-sns ul:before {
  content: "";
  width: 1px;
  height: 50px;
  background: #225381;
  position: absolute;
  top: -80px;
  left: 50%;
}
@media screen and (max-width: 640px) {
  .l-sns ul:before {
    top: -70px;
  }
}
.l-sns ul li a:hover {
  transform: scale(1.2);
}

.l-footer {
  background: #D5E1F1;
}
@media screen and (min-width: 641px) {
  .l-footer {
    padding-top: 60px;
  }
}
@media screen and (min-width: 641px) {
  .l-footer .l-container {
    display: flex;
    margin-bottom: 80px;
  }
}
.l-footer .footer-left {
  flex: 1;
}
@media screen and (max-width: 640px) {
  .l-footer .footer-right {
    padding: 40px 0;
  }
}
.l-footer .footer-right a {
  width: 100%;
}
.l-footer .footer-menu {
  padding-top: 20px;
}
@media screen and (max-width: 640px) {
  .l-footer .footer-menu {
    padding-bottom: 40px;
    border-bottom: solid 1px #eee;
  }
}
@media screen and (min-width: 641px) {
  .l-footer .footer-menu {
    display: flex;
    margin-bottom: 50px;
  }
}
@media screen and (min-width: 641px) {
  .l-footer .footer-menu-large {
    margin-right: 60px;
  }
}
@media screen and (max-width: 640px) {
  .l-footer .footer-menu-large {
    margin-top: 20px;
  }
}
.l-footer .footer-menu-large > li a {
  color: #225381;
  font-weight: bold;
}
.l-footer .footer-menu-large > li + li {
  margin-top: 24px;
}
@media screen and (max-width: 640px) {
  .l-footer .footer-menu-large > li + li {
    margin-top: 20px;
  }
}
.l-footer .footer-menu-small {
  margin: 10px 0 30px;
  list-style: disc;
}
.l-footer .footer-menu-small li {
  margin-left: 1em;
  color: #225381;
}
.l-footer .footer-menu-small li a {
  font-size: 12px;
}
.l-footer .footer-menu-small li + li {
  margin-top: 10px;
}
.l-footer .footer-information {
  width: 310px;
}
@media screen and (max-width: 640px) {
  .l-footer .footer-information {
    padding-top: 40px;
  }
}
.l-footer .footer-information-logo {
  margin-bottom: 16px;
}
.l-footer .footer-information-address {
  line-height: 2em;
}
@media screen and (min-width: 641px) {
  .l-footer .footer-information-address {
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 640px) {
  .l-footer .footer-information-address {
    font-size: 13px;
    line-height: 1.5em;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 640px) {
  .l-footer .footer-information-link {
    padding-bottom: 40px;
    border-bottom: solid 1px #eee;
  }
}
.l-footer .footer-information-link a {
  width: 240px;
}
.l-footer .footer-btn {
  display: none;
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 50;
  background: #fff;
  padding: 10px;
  text-align: center;
}
.l-footer .footer-btn a {
  width: 80%;
}
.l-footer address {
  text-align: center;
  font-size: 12px;
  font-style: normal;
  padding-bottom: 40px;
  color: #225381;
}

html, body {
  min-height: 100%;
  position: relative;
}

html {
  height: 100%;
}

body {
  width: 100%;
  font-size: 14px;
  position: relative;
  letter-spacing: 0.1em;
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  background: #FFFFFF;
  color: #333;
}
@media screen and (min-width: 641px) {
  body {
    min-width: 1240px;
  }
}
@media screen and (max-width: 640px) {
  body {
    min-width: 320px;
    padding-bottom: 0;
  }
}

::selection {
  background: #d1cdc8;
}

.sp {
  display: none;
}

@media screen and (max-width: 640px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}
img {
  max-width: 100%;
  height: auto;
}

p {
  line-height: 1.8;
}

a,
button {
  transition: all 0.2s;
}

h1,
h2,
h3,
h4,
h5 {
  line-height: 1.5;
}

a {
  display: inline-block;
  transition: all 0.5s ease;
  text-decoration: none;
  color: #333;
}
a:hover {
  opacity: 0.7;
}

input[type=text] {
  padding: 0;
  border: none;
  border-radius: 0;
  outline: none;
  background: none;
}

textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  resize: none;
  padding: 0;
  border: 0;
  outline: none;
  background: transparent;
}

button,
input[type=submit] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0;
  border: none;
  outline: none;
  background: transparent;
}

input[type=checkbox] {
  display: none;
}

.check-round {
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  padding: 0px 0px 0 30px;
  position: relative;
  width: auto;
  white-space: nowrap;
  line-height: 24px;
}
.check-round::before {
  background: #D5E1F1;
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  border-radius: 24px;
  position: absolute;
  top: 0;
  left: 0;
}
.check-round::after {
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  content: "";
  display: block;
  width: 8px;
  height: 13px;
  left: 8px;
  position: absolute;
  top: 4px;
  transform: rotate(45deg);
}

input[type=checkbox]:checked + .check-round::before {
  background: #97C79B;
}
input[type=checkbox]:checked + .check-round::after {
  border-right: 3px solid #225381;
  border-bottom: 3px solid #225381;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;
  background: transparent;
}

.link-text {
  display: inline-block;
  position: relative;
  color: #333;
}
@media screen and (max-width: 640px) {
  .link-text {
    text-decoration: underline;
  }
}
@media screen and (min-width: 641px) {
  .link-text:after {
    content: "";
    width: 100%;
    height: 1px;
    background: #333;
    transition: 0.3s;
    position: absolute;
    right: 0;
    bottom: 3px;
  }
}
.link-text:hover {
  color: #225381;
}
@media screen and (min-width: 641px) {
  .link-text:hover:after {
    content: "";
    width: 0%;
  }
}

.fadeup {
  opacity: 0;
  transform: translate3d(0, 60px, 0);
  transition: all 0.2s, opacity ease 1s, transform ease 0.5s;
}
.fadeup.is-delay-2 {
  transition-delay: 0.2s;
}
@media screen and (max-width: 640px) {
  .fadeup.is-delay-2.is-only-pc {
    transition-delay: 0s;
  }
}
.fadeup.is-delay-4 {
  transition-delay: 0.4s;
}
@media screen and (max-width: 640px) {
  .fadeup.is-delay-4.is-only-pc {
    transition-delay: 0s;
  }
}
.fadeup.is-delay-6 {
  transition-delay: 0.6s;
}
@media screen and (max-width: 640px) {
  .fadeup.is-delay-6.is-only-pc {
    transition-delay: 0s;
  }
}
.fadeup.is-delay-8 {
  transition-delay: 0.8s;
}
@media screen and (max-width: 640px) {
  .fadeup.is-delay-8.is-only-pc {
    transition-delay: 0s;
  }
}
.fadeup.is-delay-5 {
  transition-delay: 0.5s;
}
@media screen and (max-width: 640px) {
  .fadeup.is-delay-5.is-only-pc {
    transition-delay: 0s;
  }
}
.fadeup.is-delay-10 {
  transition-delay: 1s;
}
@media screen and (max-width: 640px) {
  .fadeup.is-delay-10.is-only-pc {
    transition-delay: 0s;
  }
}
.fadeup.is-delay-12 {
  transition-delay: 1.2s;
}
@media screen and (max-width: 640px) {
  .fadeup.is-delay-12.is-only-pc {
    transition-delay: 0s;
  }
}
.fadeup.is-delay-13 {
  transition-delay: 1.3s;
}
@media screen and (max-width: 640px) {
  .fadeup.is-delay-13.is-only-pc {
    transition-delay: 0s;
  }
}
.fadeup.is-delay-14 {
  transition-delay: 1.4s;
}
@media screen and (max-width: 640px) {
  .fadeup.is-delay-14.is-only-pc {
    transition-delay: 0s;
  }
}
.fadeup.is-delay-16 {
  transition-delay: 1.6s;
}
@media screen and (max-width: 640px) {
  .fadeup.is-delay-16.is-only-pc {
    transition-delay: 0s;
  }
}
.fadeup.is-delay-18 {
  transition-delay: 1.8s;
}
@media screen and (max-width: 640px) {
  .fadeup.is-delay-18.is-only-pc {
    transition-delay: 0s;
  }
}
.fadeup.is-delay-20 {
  transition-delay: 2s;
}
@media screen and (max-width: 640px) {
  .fadeup.is-delay-20.is-only-pc {
    transition-delay: 0s;
  }
}
.fadeup.is-animated {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.scaleup {
  opacity: 0;
  transform: scale(0);
  transition: all 0.2s, opacity ease 1s, transform ease 0.5s;
}
.scaleup.is-delay-2 {
  transition-delay: 0.2s;
}
@media screen and (max-width: 640px) {
  .scaleup.is-delay-2.is-only-pc {
    transition-delay: 0s;
  }
}
.scaleup.is-delay-4 {
  transition-delay: 0.4s;
}
@media screen and (max-width: 640px) {
  .scaleup.is-delay-4.is-only-pc {
    transition-delay: 0s;
  }
}
.scaleup.is-delay-6 {
  transition-delay: 0.6s;
}
@media screen and (max-width: 640px) {
  .scaleup.is-delay-6.is-only-pc {
    transition-delay: 0s;
  }
}
.scaleup.is-delay-8 {
  transition-delay: 0.8s;
}
@media screen and (max-width: 640px) {
  .scaleup.is-delay-8.is-only-pc {
    transition-delay: 0s;
  }
}
.scaleup.is-delay-5 {
  transition-delay: 0.5s;
}
@media screen and (max-width: 640px) {
  .scaleup.is-delay-5.is-only-pc {
    transition-delay: 0s;
  }
}
.scaleup.is-delay-10 {
  transition-delay: 1s;
}
@media screen and (max-width: 640px) {
  .scaleup.is-delay-10.is-only-pc {
    transition-delay: 0s;
  }
}
.scaleup.is-delay-12 {
  transition-delay: 1.2s;
}
@media screen and (max-width: 640px) {
  .scaleup.is-delay-12.is-only-pc {
    transition-delay: 0s;
  }
}
.scaleup.is-delay-13 {
  transition-delay: 1.3s;
}
@media screen and (max-width: 640px) {
  .scaleup.is-delay-13.is-only-pc {
    transition-delay: 0s;
  }
}
.scaleup.is-delay-14 {
  transition-delay: 1.4s;
}
@media screen and (max-width: 640px) {
  .scaleup.is-delay-14.is-only-pc {
    transition-delay: 0s;
  }
}
.scaleup.is-delay-16 {
  transition-delay: 1.6s;
}
@media screen and (max-width: 640px) {
  .scaleup.is-delay-16.is-only-pc {
    transition-delay: 0s;
  }
}
.scaleup.is-delay-18 {
  transition-delay: 1.8s;
}
@media screen and (max-width: 640px) {
  .scaleup.is-delay-18.is-only-pc {
    transition-delay: 0s;
  }
}
.scaleup.is-delay-20 {
  transition-delay: 2s;
}
@media screen and (max-width: 640px) {
  .scaleup.is-delay-20.is-only-pc {
    transition-delay: 0s;
  }
}
.scaleup.is-scaleuped {
  opacity: 1;
  transform: scale(1);
}

.l-container {
  margin: 0 auto;
  width: 100%;
  max-width: 1760px;
  padding: 0 20px;
}
@media screen and (max-width: 640px) {
  .l-container {
    padding: 0 20px;
    overflow: hidden;
  }
}
.l-container.is-sm {
  max-width: 640px;
}
.l-container.is-md {
  max-width: 1000px;
}
.l-container.is-lg {
  max-width: 1240px;
}

.page-header {
  padding: 130px 0 20px;
  background: #F8FAFD;
}
@media screen and (max-width: 640px) {
  .page-header {
    overflow: hidden;
    padding: 0;
    height: 300px;
    position: relative;
  }
}
.page-header .l-container {
  overflow: visible;
}
@media screen and (max-width: 640px) {
  .page-header .l-container {
    padding: 0;
  }
}
@media screen and (max-width: 640px) {
  .page-header h2 {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translatE(-50%, -50%);
  }
}
.page-header h2 span {
  white-space: nowrap;
}
@media screen and (max-width: 640px) {
  .page-header h2 span {
    font-size: 48px;
    line-height: 1em;
  }
}
.page-header h2 strong {
  white-space: nowrap;
}
@media screen and (max-width: 640px) {
  .page-header h2 strong {
    font-size: min(get_vw(32, 375),32px);
    line-height: 1em;
    bottom: 0;
  }
}
.page-header-loop {
  display: flex;
  width: 100vw;
  height: 100px;
  overflow: hidden;
}
@media screen and (max-width: 640px) {
  .page-header-loop {
    height: 60px;
    bottom: 20px;
    position: absolute;
  }
}
.page-header-loop img {
  width: auto;
  max-width: none;
  height: 100%;
}
.page-header-loop img:first-child {
  animation: loop 50s -25s linear infinite;
}
.page-header-loop img:last-child {
  animation: loop2 50s linear infinite;
}
@keyframes loop {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes loop2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}

.title-standard {
  text-align: center;
  position: relative;
}
.title-standard span {
  display: inline-block;
  font-size: 82px;
  font-weight: bold;
  color: #C7D9F0;
  letter-spacing: 0.1em;
  font-family: "Raleway", sans-serif;
}
@media screen and (max-width: 640px) {
  .title-standard span {
    font-size: 56px;
  }
}
.title-standard strong {
  font-size: 32px;
  font-weight: bold;
  color: #225381;
  position: absolute;
  width: 100%;
  text-align: center;
  left: 0;
  bottom: 20px;
}
@media screen and (max-width: 640px) {
  .title-standard strong {
    font-size: 24px;
    bottom: 16px;
    font-size: min(get_vw(22, 375),24px);
  }
}
.title-standard a {
  position: absolute;
  display: flex;
  align-items: center;
  top: 30px;
  right: 0;
  line-height: 56px;
  height: 56px;
  color: #225381;
  font-weight: bold;
  vertical-align: middle;
  font-family: "Raleway", sans-serif;
  cursor: pointer;
}
@media screen and (max-width: 640px) {
  .title-standard a {
    font-size: 12px;
    top: 20px;
    right: 10px;
  }
}
.title-standard a img {
  width: 56px;
  height: 56px;
  margin-left: 16px;
  transition: 0.3s;
  box-shadow: 0 2px 8px -2px rgba(51, 51, 51, 0.3);
  border-radius: 56px;
}
@media screen and (max-width: 640px) {
  .title-standard a img {
    width: 20px;
    height: 20px;
    margin-left: 5px;
  }
}
.title-standard a img:hover {
  transform: translateX(5px);
}
.title-jp {
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  color: #225381;
}
@media screen and (max-width: 640px) {
  .title-jp {
    font-size: 24px;
  }
}

.btn {
  display: inline-block;
  text-align: center;
  position: relative;
  height: 50px;
  line-height: 50px;
  border-radius: 50px;
  font-weight: bold;
  letter-spacing: 0.1em;
  width: 240px;
  box-shadow: 0 2px 8px -2px rgba(51, 51, 51, 0.3);
}
.btn.is-disable {
  background: #ccc !important;
  pointer-events: none;
}
.btn:hover {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  transform: translate3d(0, 2px, 0);
}
.btn span {
  font-weight: bold;
}
.btn.is-orange {
  background: #D8604D;
  color: #fff;
}
.btn.is-green {
  background: #97C79B;
  color: #fff;
}
.btn.is-green-line {
  color: #97C79B;
  border: solid 1px #97C79B;
  line-height: 48px;
  background: transparent;
}
.btn.is-navy {
  background: #225381;
  color: #fff;
}
.btn.is-white {
  background: #fff;
  color: #225381;
}
.btn.is-arrow {
  padding-right: 15.5px;
  position: relative;
}
.btn.is-arrow:after {
  content: "";
  width: 15.5px;
  height: 11.5px;
  background: url(../images/common/right-arrow.png) center center/contain no-repeat;
  position: absolute;
  right: 20px;
  top: calc(50% - 5.75px);
  transition: 0.3s;
}
.btn.is-arrow.is-white:after {
  background: url(../images/common/right-arrow-navy.png) center center/contain no-repeat;
}
.btn.is-arrow:hover:after {
  transform: translateX(5px);
}
.btn.is-jump {
  padding-right: 15.5px;
  position: relative;
}
.btn.is-jump:after {
  content: "";
  width: 15.5px;
  height: 11.5px;
  background: url(../images/common/jump.png) center center/contain no-repeat;
  position: absolute;
  right: 20px;
  top: calc(50% - 5.75px);
  transition: 0.3s;
}
.btn.is-lg {
  height: 72px;
  line-height: 72px;
  font-size: 18px;
}
@media screen and (max-width: 640px) {
  .btn.is-lg {
    height: 64px;
    line-height: 64px;
    font-size: 16px;
  }
}
.btn.is-lg.is-arrow {
  padding-right: 17.5px;
}
.btn.is-lg.is-arrow:after {
  width: 17.5px;
  height: 13.5px;
  position: absolute;
  right: 30px;
}
.btn.is-sm {
  height: 30px;
  line-height: 30px;
  font-size: 11px;
}
@media screen and (max-width: 640px) {
  .btn.is-sm {
    height: 30px;
    line-height: 30px;
    font-size: 11px;
  }
}
.btn.is-sm.is-arrow, .btn.is-sm.is-jump {
  padding-right: 17.5px;
}
.btn.is-sm.is-arrow:after, .btn.is-sm.is-jump:after {
  width: 17.5px;
  height: 13.5px;
  position: absolute;
  right: 30px;
}

.cv .l-container {
  padding: 50px;
  background: #225381;
  color: #fff;
}
@media screen and (min-width: 641px) {
  .cv .l-container {
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 640px) {
  .cv .l-container {
    padding: 40px 20px;
  }
}
.cv h2 {
  font-size: 32px;
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
}
@media screen and (max-width: 640px) {
  .cv h2 {
    font-size: 24px;
  }
}
.cv-btns {
  padding-bottom: 40px;
  border-bottom: solid 1px #ccc;
}
@media screen and (min-width: 641px) {
  .cv-btns {
    display: flex;
    justify-content: center;
  }
}
@media screen and (max-width: 640px) {
  .cv-btns-item {
    text-align: center;
  }
}
@media screen and (min-width: 641px) {
  .cv-btns-item {
    width: 400px;
    margin: 0 50px;
  }
}
.cv-btns-item p {
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 20px;
}
@media screen and (max-width: 640px) {
  .cv-btns-item p {
    margin-bottom: 5px;
  }
}
.cv-btns-item a {
  width: 100%;
}
@media screen and (max-width: 640px) {
  .cv-btns-item a {
    max-width: 300px;
  }
}
@media screen and (max-width: 640px) {
  .cv-btns-item + .cv-btns-item {
    margin-top: 24px;
  }
}
.cv-line {
  padding-top: 40px;
}
@media screen and (min-width: 641px) {
  .cv-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
.cv-line-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cv-line-regitration {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (min-width: 641px) {
  .cv-line-icon {
    width: 100px;
    margin-right: 30px;
  }
}
@media screen and (max-width: 640px) {
  .cv-line-icon {
    width: 60px;
    margin-right: 20px;
  }
}
.cv-line-text {
  flex: 1;
}
@media screen and (min-width: 641px) {
  .cv-line-text {
    margin-right: auto;
  }
}
.cv-line-text-catch {
  font-size: 18px;
  line-height: 1.5em;
  margin-bottom: 10px;
}
@media screen and (max-width: 640px) {
  .cv-line-text-catch {
    font-size: 13px;
    margin-top: 20px;
  }
}
.cv-line-text-title {
  font-size: 28px;
  font-weight: bold;
}
@media screen and (max-width: 640px) {
  .cv-line-text-title {
    text-align: center;
    font-size: 18px;
    text-align: left;
    line-height: 1.5;
  }
}
@media screen and (min-width: 641px) {
  .cv-line-btn {
    margin-right: 30px;
  }
}
@media screen and (max-width: 640px) {
  .cv-line-btn {
    width: 100%;
    text-align: center;
  }
}
.cv-line-btn a {
  width: 240px;
  background: #5AC463;
  color: #fff;
}
@media screen and (max-width: 640px) {
  .cv-line-btn a {
    margin-top: 10px;
  }
}
.cv-line-qr {
  width: 100px;
}
@media screen and (max-width: 640px) {
  .cv-line-qr {
    display: none;
  }
}

table {
  border-top: solid 1px #E1E6EA;
}
table tr {
  border-bottom: solid 1px #E1E6EA;
}
table th,
table td {
  padding: 20px 10px;
  line-height: 2em;
  vertical-align: top;
}
@media screen and (max-width: 640px) {
  table th,
  table td {
    display: block;
    padding: 10px 10px;
  }
}
table th {
  font-weight: bold;
  color: #225381;
}
@media screen and (min-width: 641px) {
  table th {
    width: 190px;
  }
}
@media screen and (max-width: 640px) {
  table th {
    background: #F8FAFD;
    border-bottom: solid 1px #E1E6EA;
  }
}
table td .btn {
  font-family: "Raleway", sans-serif;
  width: 160px;
  margin-top: 5px;
}
table td dl {
  display: flex;
}
table td dl dt {
  width: 6em;
  position: relative;
}
table td dl dt:after {
  position: absolute;
  content: "：";
  right: 0;
}
table td dl dd {
  flex: 1;
  padding: 0 10px;
}

.chart {
  position: relative;
  padding-top: 160px;
  overflow: hidden;
}
@media screen and (max-width: 640px) {
  .chart {
    padding-top: 60px;
  }
}
.chart-bg {
  position: absolute;
  width: 133px;
  top: 0;
  right: -30px;
}
@media screen and (max-width: 640px) {
  .chart-bg {
    width: 20%;
    right: -20%;
    top: 60px;
  }
}
.chart h2 {
  margin-bottom: 10px;
}
.chart-lead {
  text-align: center;
  font-size: 18px;
  margin-bottom: 50px;
}
@media screen and (max-width: 640px) {
  .chart-lead {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 30px;
  }
}
.chart-list {
  margin-bottom: 70px;
}
.chart-list-item {
  border: solid 4px #779EC7;
  border-radius: 20px;
  background-image: linear-gradient(0deg, transparent calc(100% - 1px), #E0E9F4 calc(100% - 1px)), linear-gradient(90deg, transparent calc(100% - 1px), #E0E9F4 calc(100% - 1px));
  background-size: 30px 30px;
  background-repeat: repeat;
  background-position: center center;
  box-shadow: 0 2px 8px -2px rgba(51, 51, 51, 0.3);
}
@media screen and (min-width: 641px) {
  .chart-list-item {
    padding: 40px;
    display: flex !important;
    justify-content: space-between;
    margin: 0 20px;
  }
}
@media screen and (max-width: 640px) {
  .chart-list-item {
    margin: 0 10px;
    padding: 16px;
  }
}
@media screen and (min-width: 641px) {
  .chart-list-item-image {
    width: 49%;
  }
}
@media screen and (max-width: 640px) {
  .chart-list-item-image {
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 641px) {
  .chart-list-item-text {
    width: 46%;
  }
}
.chart-list-item-text .category {
  margin-bottom: 30px;
}
@media screen and (max-width: 640px) {
  .chart-list-item-text .category {
    margin-bottom: 20px;
  }
}
.chart-list-item-text .category li {
  display: inline-block;
  color: #225381;
  font-weight: bold;
  height: 30px;
  line-height: 30px;
  border-radius: 30px;
  background: #D5E1F1;
  padding: 0 14px;
}
@media screen and (max-width: 640px) {
  .chart-list-item-text .category li {
    padding: 0 10px;
    height: 24px;
    line-height: 24px;
    font-size: 13px;
  }
}
.chart-list-item-text h3 {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 35px;
}
@media screen and (max-width: 640px) {
  .chart-list-item-text h3 {
    font-size: 17px;
    margin-bottom: 24px;
  }
}
.chart-list-item-text dl {
  font-size: 17px;
}
@media screen and (max-width: 640px) {
  .chart-list-item-text dl {
    font-size: 16px;
    margin-bottom: 10px;
  }
}
.chart-list-item-text dl dt {
  font-weight: bold;
  color: #225381;
  margin-bottom: 10px;
  font-weight: bold;
}
.chart-list-item-text dl dd {
  line-height: 2em;
  font-weight: bold;
}
.chart-list-item-text dl dd strong {
  display: inline-block;
  line-height: 1.5em;
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 10px;
}
.chart-list-item-text dl + dl {
  margin-top: 35px;
}
@media screen and (max-width: 640px) {
  .chart-list-item-text dl + dl {
    margin-top: 24px;
  }
}
.chart-list-item-text .link a {
  width: 240px;
}
.chart .slick-track {
  display: flex;
  padding-bottom: 20px;
}
.chart .slick-slide {
  height: auto !important;
}
.chart .slick-arrow {
  position: absolute;
  bottom: -70px;
  cursor: pointer;
  box-shadow: 0 2px 8px -2px rgba(51, 51, 51, 0.3);
  border-radius: 56px;
  transition: all 0.3s;
}
@media screen and (min-width: 641px) {
  .chart .slick-arrow.prev-arrow {
    left: 10%;
  }
}
@media screen and (max-width: 640px) {
  .chart .slick-arrow.prev-arrow {
    left: calc(50% - 61px);
  }
}
.chart .slick-arrow.prev-arrow:hover {
  transform: translateX(-5px);
}
@media screen and (min-width: 641px) {
  .chart .slick-arrow.next-arrow {
    left: calc(10% + 70px);
  }
}
@media screen and (max-width: 640px) {
  .chart .slick-arrow.next-arrow {
    left: calc(50% + 5px);
  }
}
.chart .slick-arrow.next-arrow:hover {
  transform: translateX(5px);
}

.voice {
  padding: 0px 0 150px;
  background: #F9FBFD;
}
@media screen and (max-width: 640px) {
  .voice {
    padding: 60px 0 100px;
  }
}
.voice h2 {
  margin-bottom: 60px;
}
@media screen and (max-width: 640px) {
  .voice h2 {
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 641px) {
  .voice-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
@media screen and (min-width: 641px) {
  .voice-text {
    width: 30%;
    order: 1;
  }
}
.voice-text-title {
  font-size: 28px;
  font-weight: bold;
  color: #225381;
  line-height: 1.7;
  margin-bottom: 40px;
  position: relative;
}
@media screen and (max-width: 640px) {
  .voice-text-title {
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 16px;
  }
}
.voice-text-title:before {
  content: "";
  width: 38px;
  height: 38px;
  background: url(../images/common/quotation-left.png) center center/contain;
  position: absolute;
  top: -40px;
  left: 0;
}
.voice-text-title:after {
  content: "";
  width: 38px;
  height: 38px;
  background: url(../images/common/quotation-right.png) center center/contain;
  position: absolute;
  bottom: -35px;
  right: 0;
}
.voice-text-company {
  font-weight: bold;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 10px;
}
.voice-text-name {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 40px;
}
.voice-text-name span {
  font-size: 16px;
  font-weight: bold;
}
.voice-text-name .position {
  margin-right: 0.2em;
}
.voice-text-name .title {
  margin-right: 0.2em;
}
@media screen and (max-width: 640px) {
  .voice-text-name {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 640px) {
  .voice-text-link {
    text-align: center;
  }
}
.voice-text-link .btn {
  width: 240px;
}
@media screen and (min-width: 641px) {
  .voice-image {
    width: 64%;
    order: 2;
  }
}
@media screen and (max-width: 640px) {
  .voice-image {
    margin-bottom: 20px;
  }
}
.voice-image img {
  border-radius: 20px;
}

.page-content {
  padding: 100px 0;
}
@media screen and (max-width: 640px) {
  .page-content {
    padding: 50px 0;
  }
}

.post-content h1:not(:first-child) {
  margin-top: 40px;
}
.post-content h1 {
  font-size: 28px;
  font-weight: bold;
  color: #225381;
  margin-bottom: 5px;
}
.post-content h2:not(:first-child) {
  margin-top: 40px;
}
.post-content h2:not(:first-child).wp-block-heading {
  margin-top: 60px;
}
@media screen and (max-width: 640px) {
  .post-content h2:not(:first-child).wp-block-heading {
    margin-top: 30px;
  }
}
.post-content h3:not(:first-child) {
  margin-top: 20px;
}
.post-content h3:not(:first-child).wp-block-heading {
  margin-top: 35px;
}
.post-content h2 {
  font-size: 20px;
  font-weight: bold;
  color: #225381;
  margin-bottom: 5px;
}
.post-content h2.wp-block-heading {
  margin-bottom: 20px;
}
@media screen and (max-width: 640px) {
  .post-content h2.wp-block-heading {
    font-size: 19px;
    margin-bottom: 10px;
  }
}
.post-content h3 {
  font-size: 16px;
  font-weight: bold;
  color: #225381;
}
.post-content h3.wp-block-heading {
  margin-bottom: 10px;
}
.post-content p,
.post-content ul,
.post-content ol {
  margin-bottom: 1.8em;
}
.post-content ul {
  list-style: disc;
}
.post-content ol {
  list-style: decimal;
}
.post-content ul li,
.post-content ol li {
  margin-left: 1em;
  line-height: 1.5em;
}
.post-content ul li + li,
.post-content ol li + li {
  margin-top: 8px;
}
.post-content ol li {
  margin-left: 1.5em;
}
.post-content a {
  text-decoration: underline;
}
.post-content strong {
  font-weight: bold;
}
.post-content .aligncenter {
  text-align: center;
}
@media screen and (max-width: 640px) {
  .post-content p.aligncenter {
    text-align: left;
  }
}
.post-content p {
  line-height: 2em;
}
@media screen and (max-width: 640px) {
  .post-content p {
    line-height: 1.8em;
  }
}
.post-content .wp-block-embed-youtube .wp-block-embed__wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.post-content .wp-block-embed-youtube .wp-block-embed__wrapper iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

@media screen and (min-width: 641px) {
  .l-content {
    padding-top: 80px;
    padding-bottom: 120px;
  }
}
@media screen and (max-width: 640px) {
  .l-content {
    padding-top: 50px;
    padding-bottom: 80px;
  }
}
@media screen and (min-width: 641px) {
  .l-content {
    display: flex;
  }
}
@media screen and (min-width: 641px) {
  .l-content .l-side {
    width: 300px;
    order: 1;
  }
}
@media screen and (max-width: 640px) {
  .l-content .l-side {
    margin-top: 40px;
    padding-top: 40px;
    border-top: solid 1px #E1E6EA;
  }
}
.l-content .l-side ul + h3 {
  margin-top: 60px;
}
.l-content .l-side h3 {
  position: relative;
  margin-bottom: 30px;
}
.l-content .l-side h3 span {
  font-size: 30px;
  color: #D7E4F4;
  font-family: "Raleway", sans-serif;
  letter-spacing: 0.1em;
  font-weight: 500;
}
.l-content .l-side h3 strong {
  font-size: 24px;
  color: #225381;
  position: absolute;
  left: 0;
  bottom: -3px;
  font-weight: bold;
}
.l-content .l-side ul li {
  padding-left: 1em;
  position: relative;
}
.l-content .l-side ul li:before {
  content: "";
  width: 8px;
  height: 2px;
  position: absolute;
  left: 0;
  top: 10px;
  background: #97C79B;
}
.l-content .l-side ul li a {
  color: #000;
  line-height: 1.5;
}
.l-content .l-side ul li + li {
  margin-top: 10px;
}
@media screen and (min-width: 641px) {
  .l-content .l-main {
    flex: 1;
    order: 2;
  }
}

.article-header {
  padding-bottom: 32px;
  border-bottom: solid 1px #E1E6EA;
}
.article-header-category ul {
  list-style: none;
  display: flex;
  margin-bottom: 20px;
}
.article-header-category ul li {
  margin: 0;
  padding: 8px 10px;
  background: #D5E1F1;
  border-radius: 20px;
  font-weight: bold;
  color: #225381;
}
@media screen and (max-width: 640px) {
  .article-header-category ul li {
    font-size: 13px;
  }
}
.article-header-category ul li + li {
  margin-left: 10px;
}
.article-header-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 24px;
}
@media screen and (max-width: 640px) {
  .article-header-title {
    font-size: 20px;
    margin-bottom: 16px;
  }
}
.article-header-position {
  line-height: 1.5em;
  color: #707070;
  font-weight: bold;
}
@media screen and (min-width: 641px) {
  .article-header-position {
    font-size: 16px;
  }
}
.article-thumbnail {
  padding: 40px 0 0;
}
@media screen and (max-width: 640px) {
  .article-thumbnail {
    padding: 30px 0 0;
  }
}
.article-body {
  padding: 40px 0 100px;
}
@media screen and (max-width: 640px) {
  .article-body {
    padding: 30px 0 40px;
  }
}
.article-doors {
  position: relative;
  background: #F8FAFD;
  margin-bottom: 100px;
}
@media screen and (max-width: 640px) {
  .article-doors {
    padding: 30px 30px 30px 30px;
  }
}
@media screen and (min-width: 641px) {
  .article-doors {
    padding: 40px 180px 40px 40px;
  }
}
.article-doors h2 {
  font-size: 20px;
  font-weight: bold;
  color: #225381;
  margin-bottom: 10px;
}
.article-doors img {
  position: absolute;
}
@media screen and (min-width: 641px) {
  .article-doors img {
    width: 144px;
    height: auto;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
  }
}
@media screen and (max-width: 640px) {
  .article-doors img {
    width: 80px;
    height: auto;
    right: 0px;
    bottom: 0;
    transform: translateY(70%);
  }
}
.article-pagenavi a {
  width: 50px;
  height: 50px;
  border-radius: 50px;
  border: solid 1px #225381;
  font-family: "Raleway", sans-serif;
  text-align: center;
  line-height: 48px;
  color: #225381;
  font-size: 16px;
}
.article-pagenavi a:hover {
  background: #225381;
  color: #fff;
}

.articles-item {
  position: relative;
  padding: 20px 0 21px;
  border-bottom: solid 1px #E1E6EA;
}
@media screen and (min-width: 641px) {
  .articles-item {
    display: flex;
    align-items: center;
  }
}
.articles-item-thumb {
  position: relative;
  z-index: 1;
  display: block;
  line-height: 0;
  overflow: hidden;
  padding-top: 72.97%;
}
.articles-item-thumb img {
  width: auto;
  height: 100%;
  transition: all 0.5s;
  max-width: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.articles-item-thumb:hover img {
  transform: translate(-50%, -50%) scale(1.15);
  filter: brightness(70%);
}
@media screen and (min-width: 641px) {
  .articles-item-thumb {
    width: 320px;
    padding-top: 220px;
    margin-right: 40px;
  }
}
.articles-item-text {
  padding-bottom: 18px;
}
.articles-item-text-category ul {
  list-style: none;
  display: flex;
  margin-bottom: 20px;
}
.articles-item-text-category ul li {
  margin: 0;
  padding: 8px 10px;
  background: #D5E1F1;
  border-radius: 20px;
  font-weight: bold;
  color: #225381;
}
@media screen and (max-width: 640px) {
  .articles-item-text-category ul li {
    font-size: 13px;
  }
}
.articles-item-text-category ul li + li {
  margin-left: 10px;
}
.articles-item-text-title h1 {
  color: #333;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
}
.articles-item-text-position a {
  color: #707070;
  font-weight: bold;
}
.articles-item-link {
  position: absolute;
  bottom: 20px;
  right: 0;
}
.articles-item-link a {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  line-height: 18px;
  position: relative;
  padding-right: 24px;
}
.articles-item-link a:after {
  content: "";
  width: 18px;
  height: 18px;
  background: url(../images/common/btn-arrow-right.png) center center/contain no-repeat;
  position: absolute;
  top: 0;
  right: 0;
  transition: 0.3s;
}
.articles-item-link a:hover:after {
  right: -5px;
}
.articles-pagenavi .wp-pagenavi {
  margin-top: 70px;
}
.articles-pagenavi a,
.articles-pagenavi span {
  display: inline-block;
  width: 50px;
  height: 50px;
  border: solid 1px #225381;
  line-height: 48px;
  text-align: center;
  font-family: "Raleway", sans-serif;
  border-radius: 50px;
  color: #225381;
  margin-right: 10px;
}
.articles-pagenavi a.current, .articles-pagenavi a:hover,
.articles-pagenavi span.current,
.articles-pagenavi span:hover {
  background: #225381;
  color: #fff;
}

.l-top {
  background: #F9FBFD;
}
.l-top .main {
  width: 100vw;
  background: #F3F7FD;
  overflow: hidden;
  transition: 0.5s;
  position: relative;
}
@media screen and (min-width: 641px) {
  .l-top .main {
    min-width: 1240px;
  }
}
@media screen and (max-width: 640px) {
  .l-top .main {
    padding-top: max(100vh, 600px);
  }
}
.l-top .main-inner {
  width: 100%;
  height: 100vh;
  min-height: 700px;
  position: relative;
}
@media screen and (min-width: 641px) {
  .l-top .main-inner {
    margin: 0 auto;
    min-width: 1240px;
  }
}
@media screen and (min-width: 641px) {
  .l-top .main-inner img {
    height: 100%;
    width: auto;
  }
}
@media screen and (max-width: 640px) {
  .l-top .main-inner {
    width: 375px;
    min-height: 600px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}
.l-top .main-catch {
  position: absolute;
}
@media screen and (min-width: 641px) {
  .l-top .main-catch {
    height: 27.6%;
    top: 20%;
    left: 5%;
    z-index: 6;
  }
}
@media screen and (max-width: 640px) {
  .l-top .main-catch {
    width: 280px;
    top: 50%;
    left: calc(50% - 140px);
    z-index: 6;
  }
}
.l-top .main-doctor1 {
  position: absolute;
}
@media screen and (min-width: 641px) {
  .l-top .main-doctor1 {
    top: 14.8%;
    height: 54%;
    right: 30%;
  }
}
@media screen and (max-width: 640px) {
  .l-top .main-doctor1 {
    width: 48%;
    top: 12%;
  }
}
.l-top .main-doctor1 img:nth-of-type(1) {
  position: relative;
  z-index: 3;
}
.l-top .main-doctor1 img:nth-of-type(2) {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
}
.l-top .main-doctor1 img:nth-of-type(3) {
  position: absolute;
  width: 1.5%;
  height: auto;
  top: 25%;
  left: 25.8%;
  z-index: 5;
}
.l-top .main-doctor2 {
  position: absolute;
}
@media screen and (min-width: 641px) {
  .l-top .main-doctor2 {
    top: 4.9%;
    right: 2%;
    height: 49%;
  }
}
@media screen and (max-width: 640px) {
  .l-top .main-doctor2 {
    top: 8%;
    width: 53%;
    right: 1%;
  }
}
.l-top .main-doctor2 img:nth-of-type(1) {
  position: relative;
  z-index: 3;
}
.l-top .main-doctor2 img:nth-of-type(2) {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
}
.l-top .main-doctor2 img:nth-of-type(3) {
  position: absolute;
  width: 1.4%;
  height: auto;
  top: 14%;
  right: 33.5%;
  transform: scale(-1, 1);
  z-index: 5;
}
.l-top .main-doctor3 {
  position: absolute;
}
@media screen and (min-width: 641px) {
  .l-top .main-doctor3 {
    height: 50%;
    bottom: 0;
    right: 12%;
  }
}
@media screen and (max-width: 640px) {
  .l-top .main-doctor3 {
    top: 26%;
    right: 5%;
    width: 65%;
  }
}
.l-top .main-doctor3 img:nth-of-type(1) {
  position: relative;
  z-index: 3;
}
.l-top .main-doctor3 img:nth-of-type(2) {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
}
.l-top .main-doctor3 img:nth-of-type(3) {
  position: absolute;
  width: 1%;
  height: auto;
  top: 12%;
  right: 30%;
  transform: scale(-1, 1);
  z-index: 5;
}
.l-top .main-doors {
  position: absolute;
  z-index: 1;
}
@media screen and (min-width: 641px) {
  .l-top .main-doors {
    bottom: 0;
    left: 5.5%;
    height: 45%;
  }
}
@media screen and (max-width: 640px) {
  .l-top .main-doors {
    width: 60%;
    top: 70%;
    left: 10%;
  }
}
.l-top .main-doors img:nth-of-type(1) {
  position: relative;
  z-index: 2;
  top: 0;
  left: 0;
}
.l-top .main-doors img:nth-of-type(2) {
  position: absolute;
  z-index: 1;
  width: 34%;
  height: auto;
  top: -6%;
  left: -24%;
}
.l-top .main-doors img:nth-of-type(3) {
  position: absolute;
  z-index: 1;
  width: 24.7%;
  height: auto;
  top: 50%;
  right: -12%;
}
.l-top .main-doors img:nth-of-type(4) {
  position: absolute;
  z-index: 1;
  width: 28%;
  height: auto;
  top: 0;
  right: -27.4%;
}
.l-top .main-doors img:nth-of-type(5) {
  position: absolute;
  z-index: 1;
  width: 50%;
  height: auto;
  bottom: 15%;
  right: -70%;
}
.l-top .main-exclamation {
  animation-name: main-exclamation;
  animation-duration: 2s;
  animation-iteration-count: infinite;
}
@keyframes main-exclamation {
  0% {
    transform: rotate(10deg);
  }
  50% {
    transform: rotate(-10deg);
  }
  100% {
    transform: rotate(10deg);
  }
}
.l-top .main-texture1, .l-top .main-texture2, .l-top .main-texture3, .l-top .main-texture4 {
  animation-name: main-texture;
  animation-duration: 3s;
  animation-iteration-count: infinite;
}
.l-top .main-texture1 {
  animation-delay: 0.1s;
}
.l-top .main-texture2 {
  animation-delay: 0.3s;
}
.l-top .main-texture3 {
  animation-delay: 0.5s;
}
.l-top .main-texture4 {
  animation-delay: 0.7s;
}
@keyframes main-texture {
  0% {
    transform: translateY(10px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(10px);
  }
}
.l-top .main-front {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  z-index: 2;
}
.l-top .main-front img {
  vertical-align: bottom;
  width: 100%;
}
.l-top .about {
  position: relative;
  padding: 160px 0 0 0;
  overflow: hidden;
}
@media screen and (max-width: 640px) {
  .l-top .about {
    padding: 60px 0 0 0;
  }
}
@media screen and (min-width: 641px) {
  .l-top .about .l-container {
    display: flex;
    align-items: center;
  }
}
.l-top .about-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 270px;
}
@media screen and (max-width: 640px) {
  .l-top .about-bg {
    top: 40px;
    right: -40%;
    width: 40%;
  }
}
.l-top .about-image {
  height: 0;
  order: 1;
  position: relative;
  margin-right: 100px;
}
@media screen and (min-width: 641px) {
  .l-top .about-image {
    width: 48%;
    padding-top: 37%;
  }
}
@media screen and (max-width: 640px) {
  .l-top .about-image {
    width: 100%;
    padding-top: 79%;
    margin-top: 40px;
  }
}
.l-top .about-image img {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
}
.l-top .about-image img.moveleft {
  left: auto;
  right: -120px;
}
.l-top .about-text {
  order: 2;
}
.l-top .about-text-title {
  font-size: 32px;
  font-weight: bold;
  color: #225381;
  margin-bottom: 30px;
}
@media screen and (max-width: 640px) {
  .l-top .about-text-title {
    font-size: 24px;
    text-align: center;
  }
}
.l-top .about-text-description {
  font-size: 16px;
  line-height: 2.5em;
  margin-bottom: 40px;
}
@media screen and (max-width: 640px) {
  .l-top .about-text-description {
    line-height: 2em;
    margin-bottom: 30px;
  }
}
.l-top .about-text-link a {
  width: 240px;
}
@media screen and (max-width: 640px) {
  .l-top .about-text-link {
    text-align: center;
  }
}
.l-top .service {
  position: relative;
  padding-top: 160px;
  overflow: hidden;
}
@media screen and (max-width: 640px) {
  .l-top .service {
    padding-top: 60px;
  }
}
.l-top .service h2 {
  margin-bottom: 40px;
}
.l-top .service-bg {
  position: absolute;
  width: 198px;
}
@media screen and (max-width: 640px) {
  .l-top .service-bg {
    width: 30%;
    left: -30%;
  }
}
@media screen and (min-width: 641px) {
  .l-top .service ul {
    display: flex;
    justify-content: space-between;
  }
}
.l-top .service ul li {
  padding-bottom: 10px;
}
@media screen and (min-width: 641px) {
  .l-top .service ul li {
    width: 46.5%;
  }
}
@media screen and (max-width: 640px) {
  .l-top .service ul li + li {
    margin-top: 50px;
  }
}
.l-top .service-image {
  position: relative;
  margin-bottom: 50px;
}
@media screen and (max-width: 640px) {
  .l-top .service-image {
    margin-bottom: 20px;
  }
}
.l-top .service-image img {
  width: 100%;
}
.l-top .service-image img:nth-of-type(2) {
  position: absolute;
  top: 0;
  left: 0;
}
.l-top .service-image-light {
  animation-name: lightning;
  animation-duration: 2s;
  animation-iteration-count: infinite;
}
@keyframes lightning {
  0% {
    top: 0;
  }
  50% {
    top: -10px;
  }
  100% {
    top: 0;
  }
}
.l-top .service-image-shine {
  animation-name: shining;
  animation-duration: 1.5s;
  animation-iteration-count: infinite;
}
@keyframes shining {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.l-top .service-catch {
  font-weight: bold;
  color: #97C79B;
  text-align: center;
  margin-bottom: 10px;
}
@media screen and (min-width: 641px) {
  .l-top .service-catch {
    font-size: 16px;
  }
}
.l-top .service-title {
  font-size: 24px;
  font-weight: bold;
  color: #225381;
  text-align: center;
  margin-bottom: 16px;
}
@media screen and (max-width: 640px) {
  .l-top .service-title {
    font-size: 20px;
  }
}
.l-top .service-description {
  line-height: 2em;
  margin-bottom: 24px;
}
@media screen and (min-width: 641px) {
  .l-top .service-description {
    font-size: 16px;
  }
}
.l-top .service-link {
  text-align: center;
}
.l-top .service-link a {
  width: 240px;
}
.l-top .reason {
  position: relative;
  padding: 80px 0 120px;
  overflow: hidden;
}
@media screen and (max-width: 640px) {
  .l-top .reason {
    padding: 60px 0 80px;
  }
}
@media screen and (max-width: 640px) {
  .l-top .reason h2 {
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 641px) {
  .l-top .reason ul {
    display: flex;
    justify-content: space-between;
  }
}
@media screen and (min-width: 641px) {
  .l-top .reason ul li {
    width: 30%;
  }
}
@media screen and (min-width: 641px) {
  .l-top .reason ul li:nth-of-type(2) {
    margin-top: 40px;
  }
}
@media screen and (max-width: 640px) {
  .l-top .reason ul li + li {
    margin-top: 40px;
  }
}
.l-top .reason-bg-left {
  position: absolute;
}
@media screen and (min-width: 641px) {
  .l-top .reason-bg-left {
    top: 0px;
    left: 0;
  }
}
@media screen and (max-width: 640px) {
  .l-top .reason-bg-left {
    width: 60%;
    left: -30%;
  }
}
.l-top .reason-bg-right {
  position: absolute;
}
@media screen and (min-width: 641px) {
  .l-top .reason-bg-right {
    bottom: -70px;
    right: 0;
  }
}
@media screen and (max-width: 640px) {
  .l-top .reason-bg-right {
    width: 30%;
    bottom: 5px;
    right: -30%;
  }
}
.l-top .reason-image {
  position: relative;
  margin-bottom: 20px;
}
@media screen and (max-width: 640px) {
  .l-top .reason-image {
    margin-bottom: 10px;
  }
}
.l-top .reason-image img {
  width: 100%;
}
.l-top .reason-image img:nth-of-type(2) {
  position: absolute;
  top: 0;
  left: 0;
}
.l-top .reason-title {
  text-align: center;
  font-size: 24px;
  color: #225381;
  font-weight: bold;
  margin-bottom: 16px;
  line-height: 1.5em;
}
@media screen and (max-width: 640px) {
  .l-top .reason-title {
    font-size: 20px;
  }
}
.l-top .reason-description {
  line-height: 2em;
}

.l-check .catch {
  font-size: 32px;
  color: #225381;
  font-weight: bold;
}
@media screen and (max-width: 640px) {
  .l-check .catch {
    font-size: 24px;
    line-height: 1.5em;
  }
}
.l-check .lead {
  padding: 120px 0 0 0;
}
@media screen and (max-width: 640px) {
  .l-check .lead {
    padding: 60px 0 0 0;
  }
}
.l-check .lead-catch {
  margin-bottom: 50px;
  text-align: center;
}
@media screen and (max-width: 640px) {
  .l-check .lead-catch {
    margin-bottom: 30px;
  }
}
.l-check .lead-text {
  font-size: 16px;
  line-height: 2em;
  text-align: center;
}
@media screen and (max-width: 640px) {
  .l-check .lead-text {
    text-align: left;
  }
}
.l-check .about {
  padding: 90px 0 0 0;
}
@media screen and (max-width: 640px) {
  .l-check .about {
    padding: 60px 0 0 0;
  }
}
@media screen and (min-width: 641px) {
  .l-check .about ul li {
    display: flex;
    justify-content: space-between;
  }
}
.l-check .about ul li:nth-of-type(1) .about-image {
  order: 1;
}
.l-check .about ul li:nth-of-type(1) .about-text {
  order: 2;
}
.l-check .about ul li + li {
  padding-top: 140px;
}
@media screen and (max-width: 640px) {
  .l-check .about ul li + li {
    padding-top: 60px;
  }
}
.l-check .about-image {
  position: relative;
}
@media screen and (min-width: 641px) {
  .l-check .about-image {
    width: 50%;
  }
}
.l-check .about-image img:nth-of-type(1) {
  position: absolute;
  z-index: -1;
}
.l-check .about-image img:nth-of-type(1).moveright {
  left: -200px;
}
@media screen and (max-width: 640px) {
  .l-check .about-image img:nth-of-type(1).moveright {
    left: -150px;
  }
}
@media screen and (min-width: 641px) {
  .l-check .about-text {
    width: calc(50% - 80px);
  }
}
.l-check .about-text-catch {
  line-height: 1.7;
  margin-bottom: 50px;
}
@media screen and (max-width: 640px) {
  .l-check .about-text-catch {
    margin-bottom: 30px;
    text-align: center;
  }
}
.l-check .about-text-catch strong {
  font-weight: bold;
  display: inline-block;
  position: relative;
}
.l-check .about-text-catch strong:before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 8px;
  background: #D8604D;
  position: absolute;
  top: -5px;
  left: calc(50% - 4px);
}
.l-check .about-text-description {
  font-size: 16px;
  line-height: 2em;
}
.l-check .about-text-description strong {
  font-weight: bold;
}
.l-check .about-text-description p + p {
  margin-top: 2em;
}
@media screen and (max-width: 640px) {
  .l-check .about-text-description p + p {
    margin: 1.5em 0 40px;
  }
}
.l-check .about-catch {
  padding-top: 150px;
  text-align: center;
  line-height: 1.2;
}
@media screen and (max-width: 640px) {
  .l-check .about-catch {
    padding-top: 80px;
    line-height: 1.5em;
  }
}
.l-check .about-catch span {
  font-weight: bold;
  font-size: 0.75em;
}
@media screen and (max-width: 640px) {
  .l-check .about-catch span:not(.pc) {
    margin-top: 10px;
    display: inline-block;
    line-height: 1.5em;
    font-size: 16px;
  }
}
.l-check .flow {
  padding: 120px 0 0 0;
}
@media screen and (max-width: 640px) {
  .l-check .flow {
    padding: 60px 0 0 0;
  }
}
.l-check .flow h2 {
  margin-bottom: 60px;
}
@media screen and (max-width: 640px) {
  .l-check .flow h2 {
    margin-bottom: 40px;
  }
}
@media screen and (min-width: 641px) {
  .l-check .flow ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
@media screen and (min-width: 641px) {
  .l-check .flow ul li {
    width: 21.5%;
  }
}
@media screen and (max-width: 640px) {
  .l-check .flow ul li + li {
    margin-top: 30px;
  }
}
.l-check .flow-image {
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 640px) {
  .l-check .flow-image {
    margin-bottom: 10px;
  }
}
.l-check .flow-image img {
  width: 60%;
}
@media screen and (max-width: 640px) {
  .l-check .flow-image img {
    width: 40%;
  }
}
.l-check .flow-title {
  font-size: 23px;
  text-align: center;
  font-weight: bold;
  color: #225381;
  margin-bottom: 30px;
}
@media screen and (max-width: 640px) {
  .l-check .flow-title {
    margin-bottom: 20px;
  }
}
.l-check .flow-description {
  line-height: 2;
  font-size: 16px;
}
.l-check .flow-description span {
  margin-top: 10px;
  display: inline-block;
  line-height: 1.8em;
  font-size: 14px;
}
.l-check .flow-description strong {
  font-weight: bold;
}
.l-check .price {
  padding: 120px 0 0 0;
}
@media screen and (max-width: 640px) {
  .l-check .price {
    padding: 60px 0 0 0;
  }
}
.l-check .price h2 {
  margin-bottom: 30px;
}
.l-check .price h3 {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  color: #225381;
}
.l-check .price h3 span {
  font-weight: bold;
  font-size: 0.8em;
}
.l-check .price h3.is-lg {
  font-size: 28px;
}
@media screen and (max-width: 640px) {
  .l-check .price h3.is-lg {
    font-size: 20px;
  }
}
.l-check .price-number {
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 640px) {
  .l-check .price-number {
    margin-bottom: 20px;
  }
}
.l-check .price-number span {
  background: #97C79B;
  color: #fff;
  font-weight: bold;
  display: inline-block;
  padding: 3px 10px;
  border-radius: 40px;
}
@media screen and (max-width: 640px) {
  .l-check .price-number span {
    font-size: 13px;
  }
}
.l-check .price-number span strong {
  font-size: 1.8em;
  margin: 0 2px;
  vertical-align: sub;
}
@media screen and (max-width: 640px) {
  .l-check .price-number span strong {
    font-size: 1.5em;
  }
}
.l-check .price-lead {
  font-size: 16px;
  line-height: 2;
}
.l-check .price-lead strong {
  font-weight: bold;
}
@media screen and (min-width: 641px) {
  .l-check .price-lead {
    text-align: center;
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 640px) {
  .l-check .price-lead {
    line-height: 1.8;
    margin-bottom: 30px;
  }
}
.l-check .price-spot {
  padding-bottom: 80px;
  border-bottom: solid 1px #ccc;
}
@media screen and (max-width: 640px) {
  .l-check .price-spot {
    padding-bottom: 50px;
  }
}
.l-check .price-spot h3 {
  margin-bottom: 8px;
}
.l-check .price-spot .price-lead {
  margin-bottom: 40px;
}
.l-check .price-spot .price-item {
  margin-bottom: 0 !important;
}
@media screen and (min-width: 641px) {
  .l-check .price-spot .price-item {
    width: 600px;
    padding-bottom: 30px;
  }
}
@media screen and (max-width: 640px) {
  .l-check .price-spot .price-item {
    padding-bottom: 50px;
  }
}
.l-check .price-spot .price-item-price p {
  font-weight: bold;
}
.l-check .price-spot .price-item-price p.first {
  margin-top: 10px;
  line-height: 1.2;
}
.l-check .price-spot .price-item-price p span {
  font-weight: bold;
  display: inline-block;
  font-size: 14px;
}
.l-check .price-spot .price-item-price p span.ribbon {
  display: inline-block;
  position: relative;
  height: 30px;
  line-height: 30px;
  text-align: center;
  padding: 0 70px;
  font-size: 14px;
  background: #FFD878;
  color: #225381;
  box-sizing: border-box;
  margin-bottom: 5px;
}
.l-check .price-spot .price-item-price p span.ribbon:before, .l-check .price-spot .price-item-price p span.ribbon:after {
  position: absolute;
  content: "";
  width: 0px;
  height: 0px;
  z-index: 1;
}
.l-check .price-spot .price-item-price p span.ribbon:before {
  top: 0;
  left: 0;
  border-width: 15px 0px 15px 15px;
  border-color: transparent transparent transparent #fff;
  border-style: solid;
}
.l-check .price-spot .price-item-price p span.ribbon:after {
  top: 0;
  right: 0;
  border-width: 15px 15px 15px 0px;
  border-color: transparent #fff transparent transparent;
  border-style: solid;
}
.l-check .price-spot .price-item-price p strong.is-md {
  font-size: 20px;
}
.l-check .price-spot .price-item-price p strong.is-lg {
  font-size: 32px;
}
.l-check .price-spot .price-cv {
  margin-bottom: 0;
  padding-bottom: 0;
}
.l-check .price-item {
  border: solid 4px #92A4BB;
  border-radius: 20px;
  position: relative;
}
@media screen and (min-width: 641px) {
  .l-check .price-item-row {
    display: flex;
    justify-content: center;
  }
}
@media screen and (min-width: 641px) {
  .l-check .price-item {
    width: 440px;
    margin: 0 20px;
    padding: 30px 30px 20px 30px;
  }
}
@media screen and (max-width: 640px) {
  .l-check .price-item {
    padding: 25px 20px 20px 20px;
  }
}
.l-check .price-item h4 {
  padding: 0 10px;
  background: #fff;
  position: absolute;
  top: -0.75em;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
}
.l-check .price-item h4 label {
  font-weight: bold;
}
.l-check .price-item h4 span {
  padding: 1px 10px;
  background: #D8604D;
  border-radius: 50px;
  color: #fff;
  margin-left: 10px;
  font-size: 12px;
  white-space: nowrap;
}
.l-check .price-item h5 {
  font-weight: bold;
  color: #225381;
  text-align: center;
}
.l-check .price-item-reccomend {
  text-align: center;
}
.l-check .price-item-reccomend h5 {
  font-size: 18px;
  margin-bottom: 16px;
}
.l-check .price-item-reccomend p {
  margin-bottom: 20px;
  text-align: left;
}
.l-check .price-item-reccomend ul {
  margin-bottom: 24px;
  display: inline-block;
}
@media screen and (max-width: 640px) {
  .l-check .price-item-reccomend ul {
    margin-bottom: 20px;
  }
}
.l-check .price-item-reccomend ul li {
  margin-bottom: 5px;
  font-size: 16px;
  text-align: left;
}
.l-check .price-item-reccomend ul li span {
  line-height: 1.5em;
  display: inline-block;
  font-weight: bold;
  position: relative;
  padding-left: 1.4em;
}
.l-check .price-item-reccomend ul li span:before {
  content: "";
  width: 12px;
  height: 8px;
  border-left: solid 3px #D8604D;
  border-bottom: solid 3px #D8604D;
  position: absolute;
  top: 5px;
  left: 0;
  transform: rotate(-45deg);
}
.l-check .price-item-document {
  margin-bottom: 20px;
  text-align: center;
}
.l-check .price-item-document h5 {
  font-size: 16px;
  margin-bottom: 10px;
}
.l-check .price-item-document ul {
  display: inline-block;
  list-style: disc;
}
.l-check .price-item-document ul li {
  line-height: 1.5;
  text-align: left;
  margin-left: 1em;
}
.l-check .price-item-document ul li a {
  color: #000;
  text-decoration: underline;
}
.l-check .price-item-document h6 {
  margin: 20px 0 5px;
  font-weight: bold;
  line-height: 1.5em;
}
.l-check .price-item-price {
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  color: #225381;
  white-space: nowrap;
}
@media screen and (max-width: 640px) {
  .l-check .price-item-price {
    bottom: 20px;
  }
}
.l-check .price-item-price strong {
  font-weight: bold;
  font-size: 32px;
}
.l-check .price-basic {
  margin: 80px 0 30px;
  position: relative;
}
@media screen and (max-width: 640px) {
  .l-check .price-basic {
    margin: 40px 0 15px;
  }
}
.l-check .price-basic h3 {
  margin-bottom: 30px;
}
.l-check .price-basic .price-lead {
  margin-bottom: 40px;
}
.l-check .price-basic:after {
  content: "";
  width: 35px;
  height: 36px;
  background: url(../images/check/plus.png) center center/contain no-repeat;
  position: absolute;
  left: calc(50% - 17.5px);
  bottom: 0;
}
.l-check .price-option {
  padding-bottom: 30px;
  margin-bottom: 50px;
  position: relative;
}
.l-check .price-option h3 {
  margin-bottom: 10px;
}
.l-check .price-option .price-lead {
  margin-bottom: 40px;
}
@media screen and (min-width: 641px) {
  .l-check .price-option .price-item {
    width: 30%;
    margin: 0 1.5%;
  }
}
.l-check .price-option:after {
  content: "";
  width: 25px;
  height: 36.5px;
  background: url(../images/check/equal.png) center center/contain no-repeat;
  position: absolute;
  left: calc(50% - 12.5px);
  bottom: 0;
}
.l-check .price .price-item {
  margin-bottom: 50px;
}
@media screen and (max-width: 640px) {
  .l-check .price .price-item {
    margin-bottom: 30px;
  }
}
.l-check .price .price-item-reccomend h5 {
  font-size: 16px;
  margin-bottom: 10px;
}
.l-check .price .price-item-reccomend ul li {
  font-size: 14px;
}
.l-check .price .price-item-document h5 {
  font-size: 14px;
  margin-bottom: 10px;
}
.l-check .price .price-item-document ul li {
  font-size: 13px;
}
.l-check .price-total {
  text-align: center;
  overflow: visible;
}
.l-check .price-total-inner {
  background: #E9F3ED;
  border-radius: 20px;
  padding: 40px 50px 30px 50px;
  position: relative;
}
@media screen and (min-width: 641px) {
  .l-check .price-total-inner {
    display: inline-block;
    min-width: 600px;
  }
}
@media screen and (max-width: 640px) {
  .l-check .price-total-inner {
    padding: 40px 40px 30px 40px;
  }
}
.l-check .price-total-inner h3 {
  font-size: 24px;
  position: absolute;
  top: -0.75em;
  left: 0;
  width: 100%;
  text-align: center;
}
.l-check .price-total-inner .check-round {
  white-space: normal;
}
.l-check .price-total-price {
  font-size: 20px;
  font-weight: bold;
  color: #225381;
  margin-bottom: 30px;
}
@media screen and (max-width: 640px) {
  .l-check .price-total-price {
    margin-bottom: 20px;
  }
}
.l-check .price-total-price strong {
  font-size: 48px;
  font-weight: bold;
}
@media screen and (max-width: 640px) {
  .l-check .price-total-message {
    text-align: left;
  }
}
.l-check .price-total-message span {
  display: inline-block;
  margin-top: 10px;
  font-size: 14px;
  position: relative;
  padding-left: 1em;
}
.l-check .price-total-message span:before {
  content: "※";
  position: absolute;
  left: 0;
}
.l-check .price-total-document h4 {
  font-size: 20px;
  font-weight: bold;
  color: #225381;
  margin-bottom: 20px;
}
.l-check .price-total-document h4 span {
  font-weight: bold;
  position: relative;
  display: inline-block;
}
.l-check .price-total-document h4 span:before {
  content: "";
  width: 100px;
  height: 1px;
  background: #225381;
  position: absolute;
  top: calc(50% - 0.5px);
  left: calc(100% + 20px);
}
@media screen and (max-width: 640px) {
  .l-check .price-total-document h4 span:before {
    width: 50px;
  }
}
.l-check .price-total-document h4 span:after {
  content: "";
  width: 100px;
  height: 1px;
  background: #225381;
  position: absolute;
  top: calc(50% - 0.5px);
  right: calc(100% + 20px);
}
@media screen and (max-width: 640px) {
  .l-check .price-total-document h4 span:after {
    width: 50px;
  }
}
.l-check .price-total-document ul {
  text-align: left;
  display: inline-block;
}
.l-check .price-total-document ul li {
  margin-bottom: 10px;
  font-size: 18px;
}
.l-check .price-total-document p {
  margin-top: 20px;
  font-weight: bold;
  color: #225381;
}
@media screen and (min-width: 641px) {
  .l-check .price-total-document p {
    font-size: 18px;
  }
}
@media screen and (max-width: 640px) {
  .l-check .price-total-document p {
    font-size: 16px;
    line-height: 1.5;
    text-align: left;
  }
}
.l-check .price-total-document #inheritance-tax-option {
  display: none;
}
.l-check .price-total-document #inheritance-tax-option.is-active {
  display: block;
}
.l-check .price-total-document #inheritance-tax-option ul {
  margin-top: 5px;
}
.l-check .price-cv {
  margin-top: 40px;
  text-align: center;
  padding-bottom: 120px;
}
@media screen and (max-width: 640px) {
  .l-check .price-cv {
    padding: 0;
    padding-bottom: 60px;
  }
}
.l-check .price-cv .btn {
  width: 100%;
  max-width: 600px;
}
.l-check .price-cv p {
  margin-top: 10px;
}
.l-check .chart {
  padding: 90px 0px;
  background: #F9FBFD;
}
@media screen and (max-width: 640px) {
  .l-check .chart {
    padding: 60px 0 0px;
  }
}
.l-check .chart-bg {
  display: none;
}
.l-check .voice {
  padding-top: 80px;
}
@media screen and (max-width: 640px) {
  .l-check .voice {
    padding-top: 60px;
  }
}
.l-check .voice + .cv,
.l-check .chart + .cv {
  background: #F9FBFD;
}

.l-consulting .catch {
  font-size: 32px;
  color: #225381;
  font-weight: bold;
}
@media screen and (max-width: 640px) {
  .l-consulting .catch {
    font-size: 24px;
    line-height: 1.5em;
    font-size: min(get_vw(22, 375),24px);
  }
}
.l-consulting .lead {
  padding: 120px 0 0 0;
}
@media screen and (max-width: 640px) {
  .l-consulting .lead {
    padding: 60px 0 0 0;
  }
}
.l-consulting .lead-catch {
  margin-bottom: 50px;
  text-align: center;
}
@media screen and (max-width: 640px) {
  .l-consulting .lead-catch {
    margin-bottom: 20px;
  }
}
.l-consulting .lead-text {
  font-size: 16px;
  line-height: 2em;
}
.l-consulting .lead-text p + p {
  margin-top: 2em;
}
.l-consulting .features {
  padding: 120px 0 0 0;
}
@media screen and (max-width: 640px) {
  .l-consulting .features {
    padding: 60px 0 0 0;
  }
}
.l-consulting .features h2 {
  margin-bottom: 60px;
}
@media screen and (max-width: 640px) {
  .l-consulting .features h2 {
    margin-bottom: 40px;
  }
}
@media screen and (min-width: 641px) {
  .l-consulting .features ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
}
@media screen and (min-width: 641px) {
  .l-consulting .features ul li {
    width: 30%;
    margin: 0 1.5%;
  }
}
@media screen and (max-width: 640px) {
  .l-consulting .features ul li + li {
    margin-top: 30px;
  }
}
.l-consulting .features-image {
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 640px) {
  .l-consulting .features-image {
    margin-bottom: 10px;
  }
}
.l-consulting .features-image img {
  width: 55%;
}
@media screen and (max-width: 640px) {
  .l-consulting .features-image img {
    width: 40%;
  }
}
.l-consulting .features-title {
  font-size: 18px;
  text-align: center;
  font-weight: bold;
  color: #225381;
  margin-bottom: 30px;
  line-height: 1.5em;
}
@media screen and (max-width: 640px) {
  .l-consulting .features-title {
    margin-bottom: 20px;
  }
}
.l-consulting .features-description {
  line-height: 2;
}
.l-consulting .flow {
  padding: 100px 0 0 0;
  overflow: hidden;
}
.l-consulting .flow h2 {
  margin-bottom: 40px;
}
@media screen and (min-width: 641px) {
  .l-consulting .flow-row {
    display: flex;
    justify-content: space-between;
  }
}
.l-consulting .flow-row:nth-of-type(1) {
  position: relative;
}
.l-consulting .flow-row:nth-of-type(1) .flow-item:nth-of-type(1) {
  order: 2;
}
.l-consulting .flow-row:nth-of-type(1) .flow-item:nth-of-type(2) {
  order: 1;
  padding-top: 70px;
}
@media screen and (max-width: 640px) {
  .l-consulting .flow-row:nth-of-type(1) .flow-item:nth-of-type(2) {
    padding-top: 50px;
  }
}
.l-consulting .flow-row:nth-of-type(1):before {
  content: "";
  width: 100vw;
  height: 892px;
  position: absolute;
  top: 50px;
  left: 0px;
  background: url(../images/consulting/bg-flow.png) top left/auto 100% no-repeat;
  z-index: -1;
}
@media screen and (max-width: 640px) {
  .l-consulting .flow-row:nth-of-type(1):before {
    height: 80%;
    left: 30px;
  }
}
.l-consulting .flow-row:nth-of-type(2) {
  position: relative;
}
.l-consulting .flow-row:nth-of-type(2) .flow-item:nth-of-type(2) {
  padding-top: 30px;
}
@media screen and (max-width: 640px) {
  .l-consulting .flow-row:nth-of-type(2) .flow-item:nth-of-type(2) {
    margin-top: 30px;
  }
}
@media screen and (max-width: 640px) {
  .l-consulting .flow-row:nth-of-type(2):before {
    content: "";
    width: 100vw;
    position: absolute;
    top: 50px;
    background: url(../images/consulting/bg-flow.png) top left/auto 100% no-repeat;
    z-index: -1;
    height: 80%;
    left: 30px;
  }
}
.l-consulting .flow-row + .flow-row {
  margin-top: 50px;
}
@media screen and (min-width: 641px) {
  .l-consulting .flow-item {
    width: 42%;
  }
}
.l-consulting .flow-item-image {
  margin-bottom: 40px;
}
@media screen and (max-width: 640px) {
  .l-consulting .flow-item-image {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 640px) {
  .l-consulting .flow-item-image {
    text-align: center;
  }
}
@media screen and (max-width: 640px) {
  .l-consulting .flow-item-image img {
    width: 80%;
  }
}
@media screen and (min-width: 641px) {
  .l-consulting .flow-item-image img {
    width: 88%;
  }
}
.l-consulting .flow-item .flow-item-title {
  font-size: 24px;
  line-height: 1.5em;
  font-weight: bold;
  color: #225381;
  margin-bottom: 20px;
}
@media screen and (max-width: 640px) {
  .l-consulting .flow-item .flow-item-title {
    font-size: 20px;
    margin-bottom: 15px;
    font-size: min(get_vw(20, 375),20px);
  }
}
@media screen and (min-width: 641px) {
  .l-consulting .flow-item .flow-item-description {
    font-size: 16px;
    line-height: 2em;
  }
}
@media screen and (max-width: 640px) {
  .l-consulting .flow-item .flow-item-description {
    line-height: 1.8em;
  }
}
@media screen and (min-width: 641px) {
  .l-consulting .flow-item.is-left {
    width: 50%;
  }
}
@media screen and (min-width: 641px) {
  .l-consulting .flow-item.is-left img {
    width: 74%;
  }
}
@media screen and (min-width: 641px) {
  .l-consulting .flow-item.is-left .flow-item-title {
    padding-left: 100px;
  }
}
@media screen and (min-width: 641px) {
  .l-consulting .flow-item.is-left .flow-item-description {
    padding-left: 100px;
  }
}
.l-consulting .price {
  padding: 120px 0 120px 0;
}
@media screen and (max-width: 640px) {
  .l-consulting .price {
    padding: 60px 0 60px 0;
  }
}
.l-consulting .price h2 {
  margin-bottom: 60px;
}
@media screen and (max-width: 640px) {
  .l-consulting .price h2 {
    margin-bottom: 40px;
  }
}
.l-consulting .price-terms {
  text-align: center;
  color: #225381;
  font-weight: bold;
  margin-bottom: 16px;
}
@media screen and (min-width: 641px) {
  .l-consulting .price-terms {
    font-size: 24px;
  }
}
@media screen and (max-width: 640px) {
  .l-consulting .price-terms {
    font-size: 18px;
  }
}
.l-consulting .price-price {
  text-align: center;
  padding-left: 2em;
  font-size: 20px;
  font-weight: bold;
  color: #225381;
  margin-bottom: 10px;
}
@media screen and (max-width: 640px) {
  .l-consulting .price-price {
    font-size: 16px;
    padding-left: 1em;
    margin-bottom: 10px;
  }
}
.l-consulting .price-price strong {
  font-size: 48px;
  font-weight: bold;
}
@media screen and (max-width: 640px) {
  .l-consulting .price-price strong {
    font-size: 24px;
  }
}
.l-consulting .price-tips {
  margin-bottom: 100px;
  color: #225381;
  line-height: 1.5;
}
@media screen and (min-width: 641px) {
  .l-consulting .price-tips {
    text-align: center;
  }
}
.l-consulting .price-tips strong {
  font-weight: bold;
  display: inline-block;
  margin-bottom: 10px;
}
.l-consulting .price-tips span {
  display: inline-block;
  position: relative;
  padding-left: 1em;
}
.l-consulting .price-tips span:before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 640px) {
  .l-consulting .price-tips {
    margin-bottom: 60px;
  }
}
.l-consulting .price-message-inner {
  background: #F9FBFD;
  border: solid 4px #94A6BD;
  border-radius: 20px;
}
@media screen and (min-width: 641px) {
  .l-consulting .price-message-inner {
    display: flex;
    align-items: center;
    padding: 40px 100px 40px 80px;
  }
}
@media screen and (max-width: 640px) {
  .l-consulting .price-message-inner {
    padding: 20px;
  }
}
.l-consulting .price-message-text {
  flex: 1;
  font-size: 20px;
  font-weight: bold;
  line-height: 2em;
  color: #225381;
}
@media screen and (max-width: 640px) {
  .l-consulting .price-message-text {
    font-size: 16px;
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 641px) {
  .l-consulting .price-message-btns {
    width: 400px;
  }
}
@media screen and (min-width: 641px) {
  .l-consulting .price-message-btns a {
    width: 400px;
  }
}
@media screen and (max-width: 640px) {
  .l-consulting .price-message-btns a {
    width: 100%;
  }
}
.l-consulting .price-message-btns a + a {
  margin-top: 30px;
}
@media screen and (max-width: 640px) {
  .l-consulting .price-message-btns a + a {
    margin-top: 10px;
  }
}
.l-consulting .chart {
  padding: 90px 0 px;
}
@media screen and (max-width: 640px) {
  .l-consulting .chart {
    padding: 60px 0 0px;
    background: #F9FBFD;
  }
}
.l-consulting .chart-bg {
  display: none;
}
.l-consulting .voice {
  padding-top: 80px;
}
@media screen and (max-width: 640px) {
  .l-consulting .voice {
    padding-top: 60px;
  }
}
.l-consulting .voice + .cv,
.l-consulting .chart + .chart {
  background: #F9FBFD;
}

.l-about .catch {
  font-size: 32px;
  color: #225381;
  font-weight: bold;
}
@media screen and (max-width: 640px) {
  .l-about .catch {
    font-size: 24px;
    line-height: 1.5em;
    font-size: min(get_vw(22, 375),24px);
  }
}
.l-about .lead {
  padding: 120px 0 0 0;
}
@media screen and (max-width: 640px) {
  .l-about .lead {
    padding: 60px 0 0 0;
  }
}
.l-about .lead-catch {
  margin-bottom: 50px;
  text-align: center;
}
@media screen and (max-width: 640px) {
  .l-about .lead-catch {
    margin-bottom: 20px;
  }
}
.l-about .lead-text {
  font-size: 16px;
  line-height: 2em;
}
@media screen and (min-width: 641px) {
  .l-about .lead-text {
    text-align: center;
  }
}
.l-about .lead-text p + p {
  margin-top: 2em;
}
.l-about .vision {
  padding: 90px 0 0;
}
@media screen and (max-width: 640px) {
  .l-about .vision {
    padding: 60px 0 0;
  }
}
.l-about .vision h2 {
  margin-bottom: 60px;
}
@media screen and (max-width: 640px) {
  .l-about .vision h2 {
    margin-bottom: 30px;
  }
}
.l-about .vision-catch {
  text-align: center;
  margin-bottom: 30px;
}
.l-about .vision-lead {
  font-size: 16px;
  line-height: 2em;
}
@media screen and (min-width: 641px) {
  .l-about .vision-lead {
    text-align: center;
  }
}
.l-about .outline {
  padding: 100px 0 120px;
}
@media screen and (max-width: 640px) {
  .l-about .outline {
    padding: 60px 0 80px;
  }
}
.l-about .outline h2 {
  margin-bottom: 50px;
}
@media screen and (max-width: 640px) {
  .l-about .outline h2 {
    margin-bottom: 30px;
  }
}
.l-about .outline table {
  width: 100%;
  max-width: 880px;
  margin: 0 auto 60px;
}
@media screen and (max-width: 640px) {
  .l-about .outline table {
    margin-bottom: 40px;
  }
}
.l-about .gmap {
  height: 0;
  overflow: hidden;
  padding-bottom: 40%;
  position: relative;
}
@media screen and (max-width: 640px) {
  .l-about .gmap {
    padding-bottom: 80%;
  }
}
.l-about .gmap iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}

@media screen and (max-width: 640px) {
  .l-contact .title-standard.is-reservation strong {
    line-height: 1.2em;
    bottom: -20px;
  }
}
.l-contact .catch {
  font-size: 32px;
  color: #225381;
  font-weight: bold;
}
.l-contact .catch p {
  font-weight: bold;
}
@media screen and (max-width: 640px) {
  .l-contact .catch {
    font-size: 24px;
    line-height: 1.5em;
    font-size: min(get_vw(22, 375),24px);
  }
}
.l-contact .lead {
  padding: 60px 0 0px 0;
}
@media screen and (min-width: 641px) {
  .l-contact .lead {
    text-align: center;
  }
}
@media screen and (max-width: 640px) {
  .l-contact .lead {
    padding: 30px 0 0 0;
  }
}
.l-contact .lead-catch {
  margin-bottom: 30px;
  text-align: center;
}
@media screen and (max-width: 640px) {
  .l-contact .lead-catch {
    margin-bottom: 20px;
  }
}
.l-contact .lead-text {
  font-size: 16px;
  line-height: 2em;
}
@media screen and (min-width: 641px) {
  .l-contact .flow {
    width: 550px;
    margin: 0 auto;
    padding: 80px 0 0;
  }
}
@media screen and (max-width: 640px) {
  .l-contact .flow {
    padding-top: 50px;
  }
}
.l-contact .flow ol {
  display: flex;
  justify-content: space-between;
  position: relative;
}
.l-contact .flow ol li {
  width: 50px;
  background: #fff;
  border: solid 1px #225381;
  color: #225381;
  line-height: 48px;
  border-radius: 50px;
  text-align: center;
  font-family: "Raleway", sans-serif;
}
.l-contact .flow ol li.current {
  background: #225381;
  color: #fff;
}
.l-contact .flow ol:before {
  width: 100%;
  height: 1px;
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  background: #225381;
  z-index: -1;
}
.l-contact .form {
  padding: 50px 0 0;
}
.l-contact .form table {
  width: 100%;
  margin: 0 auto;
  border-top: solid 1px #E1E6EA;
  margin-bottom: 40px;
}
@media screen and (min-width: 641px) {
  .l-contact .form table {
    width: 880px;
  }
}
.l-contact .form table tr {
  border-bottom: solid 1px #E1E6EA;
}
.l-contact .form table th,
.l-contact .form table td {
  padding: 20px 10px;
  line-height: 2em;
  vertical-align: top;
}
@media screen and (max-width: 640px) {
  .l-contact .form table th,
  .l-contact .form table td {
    display: block;
    padding: 10px 10px;
  }
}
.l-contact .form table th {
  color: #225381;
  position: relative;
}
@media screen and (min-width: 641px) {
  .l-contact .form table th {
    width: 280px;
    line-height: 45px;
  }
}
@media screen and (max-width: 640px) {
  .l-contact .form table th {
    background: #F8FAFD;
    border-bottom: solid 1px #E1E6EA;
  }
}
.l-contact .form table th.must:after {
  content: "必須";
  width: 60px;
  height: 30px;
  line-height: 28px;
  border: solid 1px #225381;
  font-size: 12px;
  position: absolute;
  text-align: center;
}
@media screen and (min-width: 641px) {
  .l-contact .form table th.must:after {
    top: 28.5px;
    right: 0;
  }
}
@media screen and (max-width: 640px) {
  .l-contact .form table th.must:after {
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
  }
}
.l-contact .form table td {
  font-weight: bold;
  color: #225381;
}
.l-contact .form table td p {
  font-weight: bold;
}
.l-contact .form table td input[type=text],
.l-contact .form table td input[type=email],
.l-contact .form table td input[type=date],
.l-contact .form table td select {
  width: 100%;
  border: solid 1px #E2E6E9;
  background: #F7F7F7;
  height: 47px;
  line-height: 45px;
  padding: 0 10px;
  font-size: 16px;
}
.l-contact .form table td input[type=date] {
  vertical-align: baseline;
}
@media screen and (min-width: 641px) {
  .l-contact .form table td input[type=date] {
    width: 200px;
    margin-right: 10px;
  }
}
.l-contact .form table td select {
  width: 80px;
  vertical-align: baseline;
}
@media screen and (max-width: 640px) {
  .l-contact .form table td select {
    margin-top: 10px;
  }
}
.l-contact .form table td textarea {
  width: 100%;
  border: solid 1px #E2E6E9;
  background: #F7F7F7;
  padding: 10px;
  height: 240px;
}
.l-contact .form table td .btn {
  font-family: "Raleway", sans-serif;
  width: 160px;
  margin-top: 5px;
}
.l-contact .form table td .reservation-information {
  margin-top: 20px;
}
@media screen and (min-width: 641px) {
  .l-contact .form table td .date-group p {
    display: flex;
    align-items: center;
  }
}
.l-contact .form table td .date-group + .date-group {
  margin-top: 10px;
}
.l-contact .form table td dl {
  display: flex;
}
.l-contact .form table td dl dt {
  width: 6em;
  position: relative;
}
.l-contact .form table td dl dt:after {
  position: absolute;
  content: "：";
  right: 0;
}
.l-contact .form table td dl dd {
  flex: 1;
  padding: 0 10px;
}
.l-contact .form .pp-check {
  text-align: center;
}
.l-contact .btns {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  padding: 0 0 100px;
}
@media screen and (max-width: 640px) {
  .l-contact .btns {
    padding: 0 0 60px;
  }
}
@media screen and (min-width: 641px) {
  .l-contact .btns > div {
    text-align: center;
  }
}
.l-contact .btns .btn {
  width: 240px;
  margin: 0 10px;
  cursor: pointer;
  transition: all 0.3s;
}
.l-contact .btns .btn:disabled {
  background: #ccc;
}
.l-contact .btns .btn:hover {
  opacity: 0.7;
}
.l-contact .btns .wpcf7-spinner {
  display: none;
}
.l-contact .wpcf7-list-item {
  margin: 0;
  display: block;
}
.l-contact .wpcf7-radio {
  display: inline-block;
}
.l-contact input[type=checkbox] + .wpcf7-list-item-label {
  color: #000;
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  padding: 0px 0px 0 24px;
  position: relative;
  width: auto;
  white-space: nowrap;
  line-height: 20px;
}
.l-contact input[type=checkbox] + .wpcf7-list-item-label::before {
  background: #D5E1F1;
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 0;
  left: 0;
}
.l-contact input[type=checkbox] + .wpcf7-list-item-label::after {
  border-right: 2px solid transparent;
  border-bottom: 2px solid transparent;
  content: "";
  display: block;
  width: 6px;
  height: 10px;
  left: 7px;
  position: absolute;
  top: 4px;
  transform: rotate(45deg);
}
.l-contact input[type=checkbox] + .wpcf7-list-item-label.ginko::after {
  border-right: 2px solid #225381;
  border-bottom: 2px solid #225381;
}
.l-contact input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  border-right: 2px solid #225381;
  border-bottom: 2px solid #225381;
}
.l-contact input[type=radio] + .wpcf7-list-item-label {
  color: #000;
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  padding: 0px 0px 0 24px;
  position: relative;
  width: auto;
  white-space: nowrap;
  line-height: 20px;
}
.l-contact input[type=radio] + .wpcf7-list-item-label::before {
  background: #D5E1F1;
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 20px;
  position: absolute;
  top: 0;
  left: 0;
}
.l-contact input[type=radio] + .wpcf7-list-item-label::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  position: absolute;
  top: 6px;
  background: transparent;
  left: 6px;
  border-radius: 6px;
}
.l-contact input[type=radio]:checked + .wpcf7-list-item-label::after {
  background: #225381;
}
.l-contact .wpcf7-response-output {
  display: none;
}
@media screen and (min-width: 641px) {
  .l-contact .reservation-links .l-container {
    padding: 60px 0 100px;
    display: flex;
    justify-content: center;
  }
}
@media screen and (max-width: 640px) {
  .l-contact .reservation-links .l-container {
    padding: 40px 0 60px;
  }
}
.l-contact .reservation-item {
  text-align: center;
}
@media screen and (min-width: 641px) {
  .l-contact .reservation-item {
    width: 400px;
    margin: 0 40px;
  }
}
.l-contact .reservation-item p {
  font-weight: bold;
  text-align: center;
  font-size: 18px;
  color: #225381;
}
.l-contact .reservation-item .btn {
  width: 100%;
}
@media screen and (max-width: 640px) {
  .l-contact .reservation-item + .reservation-item {
    margin-top: 10px;
  }
}

.l-recruit .links {
  padding: 110px 0 200px;
}
.l-recruit .links h2 {
  margin-bottom: 80px;
}
@media screen and (max-width: 640px) {
  .l-recruit .links h2 {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 640px) {
  .l-recruit .links {
    padding: 60px 0 80px;
  }
}
@media screen and (min-width: 641px) {
  .l-recruit .links ul {
    display: flex;
    justify-content: space-between;
  }
}
@media screen and (min-width: 641px) {
  .l-recruit .links ul li {
    width: 44%;
    position: relative;
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 640px) {
  .l-recruit .links ul li + li {
    margin-top: 40px;
  }
}
.l-recruit .links-image {
  text-align: center;
  position: relative;
  margin-bottom: 30px;
}
@media screen and (max-width: 640px) {
  .l-recruit .links-image {
    margin-bottom: 10px;
  }
}
.l-recruit .links-image p {
  position: absolute;
  font-size: 80px;
  color: #E9F3ED;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  letter-spacing: 0.05em;
}
@media screen and (max-width: 640px) {
  .l-recruit .links-image p {
    font-size: 50px;
  }
}
.l-recruit .links-image img {
  position: relative;
  width: 110px;
  height: auto;
  z-index: 2;
}
.l-recruit .links-title {
  font-size: 24px;
  font-weight: bold;
  color: #225381;
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 640px) {
  .l-recruit .links-title {
    font-size: 20px;
    margin-bottom: 16px;
  }
}
.l-recruit .links-description {
  line-height: 2em;
}
@media screen and (max-width: 640px) {
  .l-recruit .links-description {
    margin-bottom: 20px;
  }
}
.l-recruit .links-link {
  text-align: center;
}
@media screen and (min-width: 641px) {
  .l-recruit .links-link {
    position: absolute;
    bottom: 0;
    width: 100%;
  }
}

.requirements {
  padding: 120px 0 150px;
}
@media screen and (max-width: 640px) {
  .requirements {
    padding: 60px 0 80px;
  }
}
.requirements h2 {
  margin-bottom: 40px;
}
@media screen and (max-width: 640px) {
  .requirements h2 {
    margin-bottom: 20px;
  }
}
.requirements table {
  width: 100%;
  max-width: 880px;
  margin: 0 auto 60px;
}
@media screen and (max-width: 640px) {
  .requirements table {
    margin-bottom: 40px;
  }
}
.requirements table ul {
  list-style: disc;
}
.requirements table ul li {
  margin-left: 1em;
}

.l-information .lead {
  padding: 100px 0 0;
}
@media screen and (max-width: 640px) {
  .l-information .lead {
    padding: 60px 0 0;
  }
}
.l-information .lead p {
  font-size: 16px;
  line-height: 2em;
}
@media screen and (max-width: 640px) {
  .l-information .lead p {
    line-height: 1.8em;
  }
}
.l-information .lead p + p {
  margin-top: 2em;
}
@media screen and (max-width: 640px) {
  .l-information .lead p + p {
    margin-top: 1.8em;
  }
}
.l-information .person {
  padding: 120px 0 0;
}
@media screen and (max-width: 640px) {
  .l-information .person {
    padding: 50px 0 0;
  }
}
.l-information .person h2 {
  margin-bottom: 40px;
}
@media screen and (max-width: 640px) {
  .l-information .person h2 {
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 641px) {
  .l-information .person-row {
    display: flex;
    justify-content: center;
  }
}
@media screen and (min-width: 641px) {
  .l-information .person-row ul {
    margin: 0 40px;
  }
}
.l-information .person-row ul li {
  line-height: 1.5em;
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 600;
  position: relative;
  padding-left: 24px;
}
@media screen and (max-width: 640px) {
  .l-information .person-row ul li {
    font-size: 18px;
    padding-left: 22px;
    margin-bottom: 16px;
  }
}
.l-information .person-row ul li:before {
  content: "";
  width: 20px;
  height: 10px;
  border-left: solid 3px #97C79B;
  border-bottom: solid 3px #97C79B;
  position: absolute;
  top: 8px;
  left: 0;
  transform-origin: center center;
  transform: rotate(-45deg);
}
@media screen and (max-width: 640px) {
  .l-information .person-row ul li:before {
    width: 16px;
    height: 8px;
    top: 9px;
  }
}

.l-intern .goal {
  padding: 120px 0 0;
}
@media screen and (max-width: 640px) {
  .l-intern .goal {
    padding: 50px 0 0;
  }
}
.l-intern .goal h2 {
  margin-bottom: 40px;
}
@media screen and (max-width: 640px) {
  .l-intern .goal h2 {
    margin-bottom: 20px;
  }
}
.l-intern .goal p {
  font-size: 16px;
  margin-bottom: 30px;
}
@media screen and (max-width: 640px) {
  .l-intern .goal p {
    margin-bottom: 10px;
  }
}
.l-intern .goal ul li {
  padding: 20px 10px 20px 45px;
  font-weight: bold;
  font-size: 16px;
  line-height: 1.5;
  border-bottom: solid 1px #E6EAED;
  position: relative;
}
.l-intern .goal ul li:before {
  content: "";
  width: 20px;
  height: 10px;
  border-left: solid 3px #97C79B;
  border-bottom: solid 3px #97C79B;
  position: absolute;
  top: 24px;
  left: 16px;
  transform-origin: center center;
  transform: rotate(-45deg);
}
@media screen and (max-width: 640px) {
  .l-intern .goal ul li:before {
    width: 16px;
    height: 8px;
    top: 26px;
  }
}
.l-intern .message {
  padding: 120px 0 0;
}
@media screen and (max-width: 640px) {
  .l-intern .message {
    padding: 60px 0 0;
  }
}
.l-intern .message h2 {
  margin-bottom: 40px;
}
@media screen and (max-width: 640px) {
  .l-intern .message h2 {
    margin-bottom: 20px;
  }
}
.l-intern .message p + p {
  margin-top: 1.8em;
}
.l-intern .message-sign {
  text-align: right;
  margin-top: 40px;
}
@media screen and (min-width: 641px) {
  .l-intern .message-sign img {
    width: 400px;
  }
}
@media screen and (max-width: 640px) {
  .l-intern .message-sign img {
    width: 80%;
  }
}
.l-intern .intern-voice {
  padding: 120px 0 0;
}
@media screen and (max-width: 640px) {
  .l-intern .intern-voice {
    padding: 60px 0 0;
  }
}
.l-intern .intern-voice h2 {
  margin-bottom: 40px;
}
@media screen and (max-width: 640px) {
  .l-intern .intern-voice h2 {
    margin-bottom: 20px;
  }
}
.l-intern .intern-voice-items {
  background: #F8FAFD;
  padding: 0 30px;
}
.l-intern .intern-voice-item {
  padding: 30px 0;
}
.l-intern .intern-voice-item:not(:first-child) {
  border-top: solid 1px #E6EAED;
}
@media screen and (min-width: 641px) {
  .l-intern .intern-voice-item {
    display: flex;
  }
}
@media screen and (min-width: 641px) {
  .l-intern .intern-voice-item-image {
    width: 300px;
    margin-right: 60px;
  }
}
@media screen and (max-width: 640px) {
  .l-intern .intern-voice-item-image {
    margin-bottom: 30px;
  }
}
.l-intern .intern-voice-item-image p {
  font-size: 13px;
}
@media screen and (min-width: 641px) {
  .l-intern .intern-voice-item-text {
    flex: 1;
    padding-top: 10px;
  }
}
.l-intern .intern-voice-item-text-name {
  font-size: 20px;
  font-weight: bold;
  color: #225381;
  margin-bottom: 30px;
}
@media screen and (max-width: 640px) {
  .l-intern .intern-voice-item-text-name {
    margin-bottom: 20px;
  }
}
.l-intern .intern-voice-item-text-name:after {
  content: "さん";
  font-size: 14px;
}
.l-intern .intern-voice-item-text-body {
  line-height: 2em;
}

.voice-item + .voice-item {
  border-top: solid 1px #E1E6EA;
}
@media screen and (min-width: 641px) {
  .voice-item {
    display: flex;
    padding: 50px 0;
  }
}
@media screen and (max-width: 640px) {
  .voice-item {
    padding: 40px 0;
  }
}
.voice-item:first-child {
  padding-top: 0;
}
@media screen and (min-width: 641px) {
  .voice-item-header {
    width: 34%;
    margin-right: 40px;
  }
}
.voice-item-header img {
  margin-bottom: 20px;
}
.voice-item-header-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
}
.voice-item-header-category {
  margin-bottom: 10px;
}
.voice-item-header-category ul li {
  display: inline-block;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  padding: 10px calc(20px - 0.5em) 10px 20px;
  min-width: 80px;
  letter-spacing: 0.5em;
  text-align: center;
  margin-right: 5px;
}
.voice-item-header-company {
  color: #707070;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 5px;
}
.voice-item-header-name {
  font-size: 20px;
  font-weight: bold;
  color: #707070;
  margin-bottom: 16px;
}
.voice-item-header-name span {
  font-size: 14px;
  font-weight: bold;
}
.voice-item-header-name span.position {
  margin-right: 0.2em;
}
.voice-item-header-name span.title {
  margin-left: 0.2em;
}
.voice-item-header-url a {
  cursor: pointer;
  width: 180px;
}
.voice-item-header-url a:after {
  right: 20px !important;
  transform: translateY(-2px);
}
@media screen and (max-width: 640px) {
  .voice-item-header-url {
    margin-bottom: 40px;
  }
}
@media screen and (min-width: 641px) {
  .voice-item-body {
    flex: 1;
  }
}
.voice-item-body-category {
  margin-bottom: 30px;
}
.voice-item-body-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 40px;
  line-height: 1.5;
}
.voice-item-body-movie {
  background: #F8FAFD;
  border-radius: 10px;
  padding: 30px;
  position: relative;
}
@media screen and (max-width: 640px) {
  .voice-item-body-movie {
    border-radius: 5px;
    padding: 10px;
  }
}
.voice-item-body-movie h2 {
  position: absolute;
  top: -0.5em;
  left: 30px;
  line-height: 1em;
  color: #225381;
  font-weight: bold;
  font-family: "Raleway", sans-serif;
  font-size: 20px;
  letter-spacing: 0.1em;
  padding-left: 30px;
  background: url(../images/voice/icon-movie.svg) left center/24px auto no-repeat;
}
@media screen and (max-width: 640px) {
  .voice-item-body-movie h2 {
    left: 10px;
    font-size: 16px;
    padding-left: 24px;
    background: url(../images/voice/icon-movie.svg) left center/18px auto no-repeat;
  }
}
.voice-item-body-movie ul li {
  border-bottom: solid 1px #E6EAED;
}
.voice-item-body-movie ul li a {
  display: block;
  width: 100%;
  height: 100%;
  font-weight: bold;
  transition: all 0.3s;
  opacity: 1;
  background: url(../images/common/jump-black.png) right 10px center/11.23px auto no-repeat;
}
@media screen and (min-width: 641px) {
  .voice-item-body-movie ul li a {
    font-size: 18px;
    padding: 16px 30px 16px 10px;
  }
}
@media screen and (max-width: 640px) {
  .voice-item-body-movie ul li a {
    padding: 12px 20px 12px 0px;
  }
}
.voice-item-body-movie ul li a:hover {
  background-color: #D5E1F1;
}

@media screen and (min-width: 641px) {
  .l-chart .chart {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media screen and (min-width: 641px) {
  .l-chart .chart-list {
    margin-top: 80px;
  }
}
.l-chart .chart-list li + li {
  margin-top: 50px;
}
@media screen and (max-width: 640px) {
  .l-chart .chart-list li + li {
    margin-top: 20px;
  }
}
.l-chart .chart-list-item {
  margin: 0;
}/*# sourceMappingURL=application.css.map */