@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=BIZ+UDPGothic:wght@400;700&family=Montserrat:wght@200;400;700&family=Noto+Sans+JP:wght@100;400;700&family=Roboto:wght@100;400;700&family=Zen+Old+Mincho:wght@400;700&display=swap");
html {
  scroll-behavior: smooth;
}
html body {
  font-family: "BIZ UDPGothic", sans-serif;
  color: #0f1111;
  background: #ffffff;
  webkit-text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "pkna" 1;
  font-weight: 400;
  font-size: clamp(0.9rem, 0.864rem + 0.18vw, 1rem);
  line-height: clamp(1rem, 0.927rem + 0.36vw, 1.2rem);
  position: relative;
}

.layout_width {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  transition: all ease 1s;
}

.layout_width_830 {
  width: 830px;
  margin: 0 auto;
  transition: all ease 1s;
}

section {
  padding: 5rem 0 5rem;
  transition: 1s;
}

.bgcolor {
  background-color: #0666b2;
}
.bgcolor div h2 {
  color: #ffffff;
}
.bgcolor div h2 b {
  color: #ffffff;
}

h2 {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column-reverse;
  font-size: clamp(2.2rem, 2.127rem + 0.36vw, 2.4rem);
}
h2 p {
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  font-size: clamp(0.8rem, 0.764rem + 0.18vw, 0.9rem);
  margin: 0.5rem 0 0 0;
}
h2 span {
  text-transform: uppercase;
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  line-height: clamp(2.6rem, 2.527rem + 0.36vw, 2.8rem);
}
h2 span b {
  color: #0666b2;
}

@media screen and (max-width: 1280px) {
  .layout_width {
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
  }
}
@media screen and (max-width: 1024px) {
  .layout_width_830 {
    width: 100%;
    padding: 0 2rem;
  }
}
@media screen and (max-width: 768px) {
  section {
    margin: 0rem 0;
  }
  h2 {
    text-align: center;
    -moz-text-align-last: center;
         text-align-last: center;
  }
}
@media screen and (max-width: 480px) {
  .layout_width {
    padding: 0 1rem;
  }
  .layout_width_830 {
    padding: 0 1rem;
  }
}
.marker {
  display: inline;
  background: linear-gradient(transparent 60%, rgba(255, 251, 0, 0.6) 55%);
  padding: 0 0.15rem;
  margin: 0 0.15rem;
  -webkit-text-emphasis: filled #0666b2;
  text-emphasis: filled #0666b2;
}

.space05 {
  display: block;
  height: 0.5rem;
}

.space2 {
  display: block;
  height: 2rem;
}

.space3 {
  display: block;
  height: 3rem;
}

/*****************************************/
/*****  inview  start  *****/
/*↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓*/
.js-fader {
  -webkit-mask-image: linear-gradient(270deg, transparent 35%, #000 60%, #000);
  mask-image: linear-gradient(270deg, transparent 35%, #000 60%, #000);
  -webkit-mask-position: 100% 0;
  mask-position: 100% 0;
  -webkit-mask-size: 250% 100%;
  mask-size: 250% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  opacity: 0;
}
.js-fader.is-show {
  transition: opacity 1.8s, -webkit-mask-position 2.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: opacity 1.8s, mask-position 2.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: opacity 1.8s, mask-position 2.2s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-mask-position 2.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-mask-position: 0 0;
  mask-position: 0 0;
  opacity: 1;
}

.js-fader-l {
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50px);
  -webkit-transform: translateX(-50px);
  transition: 1s all;
  -webkit-transition: 1s all;
}
.js-fader-l.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateX(0px);
  -webkit-transform: translateX(0px);
}

.js-fader-lb span {
  opacity: 0;
  display: inline-block;
  transform: translateY(30px);
  animation: fadeUp 0.6s forwards;
  animation-play-state: paused;
  /* 初期は停止 */
}

.js-fader-lb.is-show span {
  animation-play-state: running;
  /* .is-show で再生開始 */
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.js-fader-r {
  opacity: 0;
  visibility: hidden;
  transform: translateX(50px);
  -webkit-transform: translateX(50px);
  transition: 1s all;
  -webkit-transition: 1s all;
}
.js-fader-r.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateX(0px);
  -webkit-transform: translateX(0px);
}

.js-fader-t {
  opacity: 0;
  visibility: hidden;
  transform: translateY(50px);
  -webkit-transform: translateY(50px);
  transition: 1s all;
  -webkit-transition: 1s all;
}
.js-fader-t.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
  -webkit-transform: translateY(0px);
}

.js-fader-d {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-50px);
  -webkit-transform: translateY(-50px);
  transition: 1s all;
  -webkit-transition: 1s all;
}
.js-fader-d.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
  -webkit-transform: translateY(0px);
}

.marker_img span {
  opacity: 0;
}
.marker_img.is-show {
  /* ここからアニメーション関係 */
}
.marker_img.is-show span {
  transform: translateY(2em);
  animation: textanimation 0.7s forwards;
}
.marker_img.is-show span:nth-of-type(1) {
  animation-delay: 0.2s;
  opacity: 1;
}
.marker_img.is-show span:nth-of-type(2) {
  animation-delay: 0.3s;
  opacity: 1;
}
.marker_img.is-show span:nth-of-type(3) {
  animation-delay: 0.4s;
  opacity: 1;
}
.marker_img.is-show span:nth-of-type(4) {
  animation-delay: 0.5s;
  opacity: 1;
}
.marker_img.is-show span:nth-of-type(5) {
  animation-delay: 0.6s;
  opacity: 1;
}
.marker_img.is-show span:nth-of-type(6) {
  animation-delay: 0.7s;
  opacity: 1;
}
.marker_img.is-show span:nth-of-type(7) {
  animation-delay: 0.8s;
  opacity: 1;
}
.marker_img.is-show span:nth-of-type(8) {
  animation-delay: 0.9s;
  opacity: 1;
}
.marker_img.is-show span:nth-of-type(9) {
  animation-delay: 1s;
  opacity: 1;
}
.marker_img.is-show span:nth-of-type(10) {
  animation-delay: 1.1s;
  opacity: 1;
}
.marker_img.is-show span:nth-of-type(11) {
  animation-delay: 1.2s;
  opacity: 1;
}

@keyframes textanimation {
  0% {
    transform: translateY(2em);
  }
  100% {
    transform: translateY(0);
  }
}
.poyon {
  display: inline-block;
  opacity: 0;
  line-height: 1.5;
  background: linear-gradient(transparent 0%, rgba(255, 251, 0, 0.6) 0%);
}
.poyon.is-show {
  animation: dedeen 1s ease-out forwards;
}

@keyframes dedeen {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  70% {
    opacity: 1;
    transform: scale(1.2);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
/*↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑*/
/******  inview  end  ******/
/*****************************************/
.profile,
.profile2 {
  width: 100%;
  margin-bottom: 4rem;
  padding-left: 0.5rem;
}
.profile .role,
.profile2 .role {
  color: #0666b2;
  font-weight: bold;
  font-size: 90%;
  color: #fff;
  background-color: #004277;
  padding: 0.3em;
}
.profile .name,
.profile2 .name {
  padding-bottom: 0.5rem;
  padding-top: 0.8rem;
  border-bottom: 1px solid #0666b2;
  font-size: 2rem;
  display: flex;
  line-height: 0.8;
  gap: 1rem;
  align-items: end;
  line-height: normal;
}
.profile .name small,
.profile2 .name small {
  font-size: 14px;
}
.profile .age,
.profile2 .age {
  padding-top: 1rem;
}
.profile .hobby,
.profile2 .hobby {
  margin-top: 2rem;
  line-height: 1.5;
}
.profile .hobby .tit,
.profile2 .hobby .tit {
  display: block;
  padding: 0.3em;
  width: -moz-fit-content;
  width: fit-content;
}
.profile .hobby .li,
.profile2 .hobby .li {
  margin-right: 1rem;
}
.profile .hobby .li::before,
.profile2 .hobby .li::before {
  content: "●";
  color: #f7d039;
  font-size: 14px;
  margin-right: 0.3rem;
}
@media screen and (max-width: 850px) {
  .profile,
  .profile2 {
    margin: 1rem 0;
  }
}

#header {
  width: 100%;
  position: relative;
  z-index: 9999;
  background-color: #ffffff;
}
#header .header__warp {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1600px;
}
#header .header__warp--logo {
  width: auto;
  display: block;
  transition: 1s;
  display: flex;
  align-items: center;
}
#header .header__warp--logo figure {
  display: flex;
  align-items: center;
}
#header .header__warp--logo figure img:nth-child(1) {
  width: 60px;
  transition: all ease 1s;
}
#header .header__warp--logo figure img:nth-child(2) {
  width: auto;
  height: 20px;
  margin: 0 0 0 1rem;
}
#header .header__warp--menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#header .header__warp--menu--nav {
  margin: 0 1rem 0 0;
}
#header .header__warp--menu--nav nav ul {
  display: flex;
  align-items: center;
}
#header .header__warp--menu--nav nav ul li a {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  text-align: center;
  height: 100%;
  padding: 1.5rem 0;
  margin: 0 1.5rem;
  display: flex;
  flex-flow: column;
}
#header .header__warp--menu--nav nav ul li a p {
  font-size: clamp(0.8rem, 0.764rem + 0.18vw, 0.9rem);
  font-weight: bold;
}
#header .header__warp--menu--nav nav ul li a span {
  font-size: clamp(0.4rem, 0.327rem + 0.36vw, 0.6rem);
  font-weight: bold;
  text-transform: uppercase;
}
#header .header__warp--menu--contactbox {
  display: flex;
  align-items: center;
}
#header .header__warp--menu--contactbox--telbox {
  display: flex;
  align-items: center;
  flex-flow: column;
  margin: 0 1rem 0 0;
}
#header .header__warp--menu--contactbox--telbox nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#header .header__warp--menu--contactbox--telbox--tel {
  display: flex;
  align-items: center;
  font-size: 1rem;
  letter-spacing: 0.05rem;
  padding: 0.25rem;
  border-bottom: solid 2px #0666b2;
}
#header .header__warp--menu--contactbox--telbox--tel a {
  display: flex;
  align-items: center;
  transform: 1s;
}
#header .header__warp--menu--contactbox--telbox--tel a fieldset svg {
  width: 18px;
  aspect-ratio: 1/1;
  fill: #0666b2;
}
#header .header__warp--menu--contactbox--telbox--tel a p {
  font-size: clamp(1.4rem, 1.327rem + 0.36vw, 1.6rem);
  font-weight: bold;
  font-family: "Roboto", sans-serif;
  color: #0666b2;
}
#header .header__warp--menu--contactbox--telbox--time {
  font-size: clamp(0.6rem, 0.527rem + 0.36vw, 0.8rem);
}
#header .header__warp--menu--contactbox--link a {
  background-color: #0666b2;
  border: solid 1px #0666b2;
  padding: 0.75rem 3rem;
  display: flex;
  flex-flow: column;
  color: #ffffff;
  transition: 0.5s;
}
#header .header__warp--menu--contactbox--link a:hover {
  background-color: #ffffff;
  transition: 0.5s;
}
#header .header__warp--menu--contactbox--link a:hover span {
  color: #0666b2;
  transition: 0.5s;
}
#header .header__warp--menu--contactbox--link a:hover p {
  color: #0666b2;
  transition: 0.5s;
}
#header .header__warp--menu--contactbox--link a span {
  font-size: clamp(1rem, 0.927rem + 0.36vw, 1.2rem);
  font-weight: bold;
}
#header .header__warp--menu--contactbox--link a p {
  text-align: center;
  -moz-text-align-last: center;
       text-align-last: center;
  font-size: clamp(0.6rem, 0.527rem + 0.36vw, 0.8rem);
}
#header .header__warp--sp {
  width: 35px;
  height: 25px;
  display: none;
  justify-content: center;
  align-items: center;
  margin: 2rem 0 2rem 1rem;
  transition: 1s;
}
#header .header__warp--sp #menu-btn {
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
  display: none;
}
#header .header__warp--sp--label {
  width: 100%;
  height: 25px;
  position: relative;
  z-index: 9999999;
}
#header .header__warp--sp--label span {
  width: 100%;
  height: 2px;
  background-color: #0666b2;
  position: absolute;
  transition: 0.25s;
}
#header .header__warp--sp--label span:nth-child(1) {
  top: 0;
  left: 0;
}
#header .header__warp--sp--label span:nth-child(2) {
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
#header .header__warp--sp--label span:nth-child(3) {
  bottom: 0;
  left: 0;
}
#header .header__warp--sp #menu-btn:checked ~ .header__warp--sp--label span:nth-child(1) {
  width: 100%;
  left: 17%;
  transform: rotate(42deg);
  transform-origin: 0 0;
}
#header .header__warp--sp #menu-btn:checked ~ .header__warp--sp--label span:nth-child(2) {
  opacity: 0;
}
#header .header__warp--sp #menu-btn:checked ~ .header__warp--sp--label span:nth-child(3) {
  width: 100%;
  left: 17%;
  transform: rotate(-42deg);
  transform-origin: 0 100%;
}

@media screen and (max-width: 1280px) {
  #header .header__warp--menu--contactbox--telbox--tel {
    border-bottom: none;
  }
  #header .header__warp--menu--contactbox--telbox--tel a {
    display: flex;
    align-items: center;
    background-color: #0666b2;
    padding: 1rem;
    border-radius: 50%;
    transform: 1s;
    opacity: 0.8;
  }
  #header .header__warp--menu--contactbox--telbox--tel a figure svg {
    width: 25px;
    aspect-ratio: 1/1;
    fill: #ffffff;
  }
  #header .header__warp--menu--contactbox--telbox--tel a p {
    display: none;
    transition: 1s;
  }
  #header .header__warp--menu--contactbox--telbox--time {
    display: none;
  }
}
@media screen and (max-width: 1560px) {
  #header .header__warp {
    padding-inline: 2rem;
  }
  #header .header__warp--menu {
    position: absolute;
    top: -100vh;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 9999999;
    background-color: #ffffff;
    transition: 1s;
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column;
  }
  #header .header__warp--menu--nav {
    margin: 0 1rem 0 0;
  }
  #header .header__warp--menu--nav nav ul {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
  }
  #header .header__warp--menu--nav nav ul li a {
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    position: relative;
    text-align: center;
    height: 100%;
    padding: 0rem 0;
    margin: 1rem 1rem;
    display: flex;
    flex-flow: column-reverse;
  }
  #header .header__warp--menu--nav nav ul li a p {
    font-size: clamp(0.8rem, 0.764rem + 0.18vw, 0.9rem);
    font-weight: bold;
  }
  #header .header__warp--menu--nav nav ul li a span {
    font-size: clamp(0.4rem, 0.327rem + 0.36vw, 0.6rem);
    font-weight: bold;
    text-transform: uppercase;
  }
  #header .header__warp--menu--contactbox {
    display: flex;
    align-items: center;
    flex-flow: column;
  }
  #header .header__warp--menu--contactbox--telbox {
    display: flex;
    align-items: center;
    flex-flow: column;
    margin: 0 1rem 0 0;
  }
  #header .header__warp--menu--contactbox--telbox nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  #header .header__warp--menu--contactbox--telbox--tel {
    display: flex !important;
    align-items: center !important;
    font-size: 1rem !important;
    letter-spacing: 0.05rem !important;
    padding: 0.25rem !important;
    border-bottom: solid 2px #0666b2 !important;
  }
  #header .header__warp--menu--contactbox--telbox--tel a {
    display: flex !important;
    align-items: center !important;
    transform: 1s;
    background-color: #ffffff !important;
    padding: 1rem 1rem 0.5rem 1rem;
  }
  #header .header__warp--menu--contactbox--telbox--tel a fieldset svg {
    width: 18px;
    aspect-ratio: 1/1;
    fill: #0666b2;
  }
  #header .header__warp--menu--contactbox--telbox--tel a p {
    display: block !important;
    font-size: clamp(1.4rem, 1.327rem + 0.36vw, 1.6rem) !important;
    font-weight: bold !important;
    font-family: "Roboto", sans-serif !important;
    color: #0666b2 !important;
  }
  #header .header__warp--menu--contactbox--telbox--time {
    display: block;
    font-size: clamp(0.6rem, 0.527rem + 0.36vw, 0.8rem);
    margin: 1rem 0 0 0;
  }
  #header .header__warp--menu--contactbox--link a {
    background-color: #0666b2;
    border: solid 1px #0666b2;
    padding: 0.75rem 3rem;
    display: flex;
    flex-flow: column;
    color: #ffffff;
    transition: 0.5s;
    margin: 2rem 2rem 1rem 2rem;
  }
  #header .header__warp--menu--contactbox--link a:hover {
    background-color: #ffffff;
    transition: 0.5s;
  }
  #header .header__warp--menu--contactbox--link a:hover span {
    color: #0666b2;
    transition: 0.5s;
  }
  #header .header__warp--menu--contactbox--link a:hover p {
    color: #0666b2;
    transition: 0.5s;
  }
  #header .header__warp--menu--contactbox--link a span {
    font-size: clamp(1rem, 0.927rem + 0.36vw, 1.2rem);
    font-weight: bold;
  }
  #header .header__warp--menu--contactbox--link a p {
    text-align: center;
    -moz-text-align-last: center;
         text-align-last: center;
    font-size: clamp(0.6rem, 0.527rem + 0.36vw, 0.8rem);
  }
  #header .header__warp--sp {
    display: flex;
  }
}
@media screen and (max-width: 768px) {
  #header {
    width: 100%;
    position: relative;
    z-index: 9999;
    background-color: #ffffff;
  }
  #header .header__warp {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
  }
  #header .header__warp--logo {
    width: 100px;
    display: block;
    transition: 1s;
  }
  #header .header__warp--logo a figure img:nth-child(1) {
    width: 40px;
  }
  #header .header__warp--menu--contactbox--telbox--tel a figure svg {
    fill: #0666b2;
  }
  #header .header__warp--sp {
    margin: 1rem 0 1rem 1rem;
    transition: 1s;
  }
}
@media screen and (max-width: 480px) {
  #header .header__warp--menu--nav nav ul li a {
    margin: 0.5rem;
    flex-flow: row;
    justify-content: space-between;
    width: 200px;
  }
}
.fixed {
  position: fixed !important;
  top: 0;
  left: 0;
  z-index: 999999999;
  transition: 1s;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

#heading {
  width: 100%;
  height: 20vw;
  display: flex;
  align-items: center;
  margin: 0 0 0rem 0;
}
#heading .heading__warp h1 {
  display: flex;
  color: #ffffff;
}
#heading .heading__warp h1 p {
  font-size: clamp(2.4rem, 2.327rem + 0.36vw, 2.6rem);
  text-transform: uppercase;
  font-weight: bold;
  font-family: "Roboto", sans-serif;
}
#heading .heading__warp h1 span {
  font-size: clamp(0.9rem, 0.864rem + 0.18vw, 1rem);
  margin: 0 1rem 0 2rem;
}

.heading_contact .heading__warp h1 {
  color: #0f1111 !important;
}

@media screen and (max-width: 1280px) {
  #heading {
    height: 30vw;
  }
}
@media screen and (max-width: 1024px) {
  #heading {
    height: 35vw;
  }
}
@media screen and (max-width: 768px) {
  #heading {
    height: 35vw;
  }
}
@media screen and (max-width: 480px) {
  #heading {
    height: 40vw;
    background-size: cover;
  }
  #heading .heading__warp h1 {
    font-size: clamp(2.2rem, 2.127rem + 0.36vw, 2.4rem);
    text-transform: uppercase;
    font-weight: bold;
    flex-flow: column;
  }
  #heading .heading__warp h1 p {
    width: 100%;
  }
  #heading .heading__warp h1 span {
    width: 100%;
    font-size: clamp(0.9rem, 0.864rem + 0.18vw, 1rem);
    margin: 1rem 0 0;
  }
}
.heading_about {
  background-image: url("../../img/common/heading/heading_about.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.heading_insurance {
  background-image: url("../../img/common/heading/heading_insurance.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.heading_staff {
  background-image: url("../../img/common/heading/heading_staff.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.heading_benefits {
  background-image: url("../../img/common/heading/heading_benefits.jpg");
  background-position: center 70%;
  background-repeat: no-repeat;
  background-size: cover;
}

.heading_recruit {
  background-image: url("../../img/common/heading/heading_recruit.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.heading_contact {
  background-image: url("../../img/common/heading/heading_contact.jpg");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}

.heading_information {
  background-image: url("../../img/common/heading/heading_information.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

#floating {
  position: fixed;
  top: 50%;
  right: 0%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  z-index: 9999;
}
#floating li {
  display: block;
  margin: 0.25rem 0;
  border: solid 4px #ffffff;
  border-right: none;
  width: 35px;
}
#floating li a {
  text-transform: uppercase;
  background-color: #0666b2;
  color: #ffffff;
  font-size: clamp(0.8rem, 0.764rem + 0.18vw, 0.9rem);
  padding: 2rem 0.5rem 1rem 0.5rem;
  writing-mode: vertical-rl;
  font-weight: 800;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  text-wrap: nowrap;
  position: relative;
}
#floating li a::before {
  position: absolute;
  top: 0.75rem;
  display: block;
  content: "";
  width: 16px;
  height: 16px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
#floating li:nth-child(1) a::before {
  background-image: url("../../img/common/floating/tel.svg");
}
#floating li:nth-child(2) a::before {
  background-image: url("../../img/common/floating/plain.svg");
}
#floating li:nth-child(3) a::before {
  left: 0.75rem;
  background-image: url("../../img/common/floating/man.svg");
}

@media screen and (max-width: 768px) {
  #floating {
    display: none;
  }
}
_:lang(x) + _:-webkit-full-screen-document,
#floating {
  right: 18px;
}
_:lang(x) + _:-webkit-full-screen-document li,
#floating li {
  border: none;
}

#benefit_c {
  background-color: #fafaef;
}
#benefit_c .sp_img {
  display: none !important;
}
#benefit_c .tb_br {
  display: none;
}
#benefit_c .sp_br {
  display: none;
}
#benefit_c .section {
  width: 90%;
  background-color: #fff;
  padding-block: 3rem 4rem;
}
#benefit_c .section h2 {
  margin-bottom: 3rem;
}
#benefit_c .section_inner {
  margin-bottom: 6rem;
}
#benefit_c .section_inner:last-of-type {
  margin-bottom: 0;
}
#benefit_c .section_inner h3 {
  text-align: center;
  line-height: 1.5;
  font-size: 1.4rem;
  display: block;
  margin: 0 auto 2rem auto;
  position: relative;
  color: #0666b2;
  font-weight: bold;
  width: -moz-fit-content;
  width: fit-content;
}
#benefit_c .section_inner h3::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -8rem;
  transform: translateY(-50%);
  width: 6rem;
  height: 1px;
  background-color: #0666b2;
}
#benefit_c .section_inner h3::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -8rem;
  transform: translateY(-50%);
  width: 6rem;
  height: 1px;
  background-color: #0666b2;
}
#benefit_c .section_inner img {
  max-width: 100%;
}
#benefit_c .section_inner .btn_wrap {
  width: -moz-fit-content;
  width: fit-content;
  margin: 4rem auto 0;
}
#benefit_c .section_inner .btn_wrap .btn {
  border: solid 1px #0666b2;
  padding: 1rem 2rem;
  transition: all ease 0.5s;
  font-weight: bold;
  font-size: clamp(0.8rem, 0.764rem + 0.18vw, 0.9rem);
  background-color: #0666b2;
  color: #ffffff;
}
#benefit_c .section_inner .btn_wrap .btn:hover {
  color: #0666b2;
  background-color: #ffffff;
}
#benefit_c .section_inner .space {
  display: block;
  height: 2rem;
}
#benefit_c .section_inner .center {
  background-image: url(../../img/common/bg_img.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  text-align: center;
  padding: 1rem;
  font-weight: bold;
  font-size: 1.25em;
  max-width: 1000px;
  margin-inline: auto;
}
#benefit_c .section_inner .center span {
  color: #0666b2;
  font-weight: bold;
}
#benefit_c .section_inner .title {
  text-align: center;
  color: #0666b2;
  font-weight: bold;
  font-size: 1.75em;
  line-height: 2;
  margin-block: 6rem 1rem;
}
#benefit_c .section_inner .title::before {
  content: "～";
  margin-right: 1rem;
}
#benefit_c .section_inner .title::after {
  content: "～";
  margin-left: 1rem;
}
#benefit_c .section_inner .img_size01 {
  display: block;
  margin: 1.5rem auto;
  width: -moz-fit-content;
  width: fit-content;
}
#benefit_c .section_inner .img_size01 figure img {
  max-width: 700px;
  width: 100%;
}
#benefit_c .section_inner .img_size02 {
  display: block;
  margin: 1.5rem auto;
  width: -moz-fit-content;
  width: fit-content;
}
#benefit_c .section_inner .img_size02 figure img {
  max-width: 1000px;
  width: 100%;
}
#benefit_c .section_inner .illust04 {
  width: 80%;
  max-width: 500px;
  margin-inline: auto;
  margin-block: 1rem;
}
#benefit_c .section_inner .illust05 {
  width: 80%;
  max-width: 500px;
  margin-inline: auto;
  margin-block: 1rem;
}
#benefit_c .section_inner .txt .marker_img {
  width: -moz-fit-content;
  width: fit-content;
  margin: 1rem auto;
  font-weight: bold;
  font-size: 1.65em;
  background-image: url(../../img/common/bg_img.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 15px 15px 10px;
  color: #3d3d3d;
  display: flex;
  overflow: hidden;
}
#benefit_c .section_inner .txt .marker_img span {
  font-weight: bold;
  letter-spacing: 0.06em;
  margin: 0;
}
#benefit_c .section_inner .txt p {
  text-align: center;
  font-size: 1.15em;
  line-height: 2.5;
}
#benefit_c .section_inner .txt p .red {
  color: red;
  font-weight: 600;
}
#benefit_c .section_inner .txt p .marker {
  font-weight: bold;
  font-size: 1.5em;
  -webkit-text-emphasis: filled dot #0666b2 !important;
  text-emphasis: filled dot #0666b2 !important;
}
#benefit_c .section_inner .txt p .marker span {
  color: #0666b2;
  margin-right: 5px;
}
#benefit_c .section_inner .txt p .col {
  color: #0666b2;
  font-weight: bold;
  font-size: 1.15em;
}
#benefit_c .section_inner .txt p .double {
  font-size: 2.5em;
  border-bottom: double 6px #0666b2;
  line-height: 1.85;
}
#benefit_c .section_inner ul {
  display: flex;
  flex-flow: column;
  gap: 1.5rem;
  padding-inline: 1rem;
}
#benefit_c .section_inner ul li .question {
  color: #0666b2;
  background-color: #f4f6f6;
  padding: 1.5rem 1rem 1.5rem;
  position: relative;
  display: flex;
  transition: all ease 0.5s;
  display: flex;
  justify-content: left;
  align-items: center;
  font-weight: bold;
}
#benefit_c .section_inner ul li .question .q {
  font-weight: bold;
  margin-right: 1rem;
  font-family: "Roboto";
  border-right: solid 2px #0666b2;
  padding-right: 1rem;
  white-space: nowrap;
}
#benefit_c .section_inner ul li .answer {
  padding: 1rem;
  line-height: 1.65;
}

@media screen and (max-width: 928px) {
  #benefit_c .pc_br {
    display: none;
  }
  #benefit_c .section_inner .txt p {
    text-align: justify;
  }
}
@media screen and (max-width: 768px) {
  #benefit_c .tb_br {
    display: block;
  }
  #benefit_c .section_inner .txt p .double {
    font-size: 1.7em;
    text-align: center;
  }
  #benefit_c .section_inner .txt .center_p {
    text-align: center;
  }
}
@media screen and (max-width: 600px) {
  #benefit_c {
    background-color: #fff;
  }
  #benefit_c .section {
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  #benefit_c .sp_br {
    display: block;
  }
  #benefit_c .section_inner {
    margin-bottom: 4rem;
  }
  #benefit_c .section_inner h3 {
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
  }
  #benefit_c .section_inner h3::before {
    right: -7rem;
  }
  #benefit_c .section_inner h3::after {
    left: -7rem;
  }
  #benefit_c .section_inner .center {
    font-size: 1.15em;
  }
  #benefit_c .section_inner .txt .marker_img {
    font-size: 1.35em;
  }
  #benefit_c .section_inner .txt p {
    line-height: 2;
    font-size: 1.05em;
  }
  #benefit_c .section_inner .txt p .marker {
    font-size: 1.35em;
  }
  #benefit_c .section_inner .space {
    height: 1rem;
  }
  #benefit_c .section_inner ul {
    gap: 1rem;
  }
  #benefit_c .section_inner ul li .question {
    padding: 1rem;
  }
}
#footer {
  position: relative;
}
#footer::before {
  content: "";
  width: 1px;
  height: 70px;
  background-color: #0f1111;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
#footer .footer__warp {
  position: relative;
  padding: 10rem 2rem 5rem;
}
#footer .footer__warp::before {
  position: absolute;
  content: "";
  width: calc(100% - 4rem);
  height: calc(100% - 4rem);
  margin: 2rem;
  left: 0%;
  top: 0%;
  z-index: -1;
  background-image: linear-gradient(to top, #9e9e9e 0%, #d1d1d1 100%);
  opacity: 0.2;
}
#footer .footer__warp--box {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
#footer .footer__warp--box h2 {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-size: clamp(2.2rem, 2.127rem + 0.36vw, 2.4rem);
  font-weight: bold;
  text-transform: uppercase;
  margin: 0 0 6rem 0;
  font-family: "Roboto", sans-serif;
  display: block;
}
#footer .footer__warp--box h2 span {
  color: #0666b2;
}
#footer .footer__warp--box--contact {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
#footer .footer__warp--box--contact--link {
  width: 48%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
}
#footer .footer__warp--box--contact--link--logo {
  width: 40%;
  display: flex;
  justify-content: center;
  margin: 0 0 4rem;
}
#footer .footer__warp--box--contact--link--logo > a {
  display: inline-block;
}
#footer .footer__warp--box--contact--link--logo > a img {
  width: 100%;
}
#footer .footer__warp--box--contact--link > a {
  width: 70%;
  background-color: #0666b2;
  padding: 1.25rem;
  font-weight: bold;
  color: #ffffff;
  text-align: center;
  border-radius: 50px;
  margin: 0 0 1rem 0;
  transition: 0.5s;
}
#footer .footer__warp--box--contact--link > a:hover {
  color: #0666b2;
  background-color: #ffffff;
  transition: 0.5s;
}
#footer .footer__warp--box--contact--link > a:hover .tel_fill {
  fill: #0666b2;
  transition: 0.5s;
}
#footer .footer__warp--box--contact--link--tel {
  font-family: "Roboto", sans-serif;
  font-size: clamp(1.6rem, 1.527rem + 0.36vw, 1.8rem);
}
#footer .footer__warp--box--contact--link--tel svg {
  width: 20px;
  aspect-ratio: 1/1;
  fill: #ffffff;
  transition: 0.5s;
  vertical-align: unset;
}
#footer .footer__warp--box--contact--link--contactlink {
  font-size: clamp(1.2rem, 1.127rem + 0.36vw, 1.4rem);
}
#footer .footer__warp--box--contact--address {
  width: 48%;
  display: flex;
  justify-content: center;
  flex-flow: column;
}
#footer .footer__warp--box--contact--address iframe {
  width: 80%;
  height: 300px;
}
#footer .footer__warp--box--contact--address--post {
  margin: 1rem 0 0 0;
}
#footer .footer__warp--box--nav {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 5rem 0 0 0;
}
#footer .footer__warp--box--nav ul {
  display: flex;
  justify-content: space-around;
}
#footer .footer__warp--box--nav ul li {
  padding: 0 2rem;
  border-right: solid 1px #0f1111;
}
#footer .footer__warp--box--nav ul li a p {
  font-size: clamp(0.8rem, 0.764rem + 0.18vw, 0.9rem);
}
#footer .footer__warp--box--nav ul li a span {
  display: none;
}
#footer .footer__warp--box--nav ul li:last-child {
  border-right: none;
}
#footer .footer__copy {
  padding: 1rem 0;
  text-align: center;
  color: #ffffff;
  background-color: #0666b2;
  font-size: clamp(0.8rem, 0.764rem + 0.18vw, 0.9rem);
}
#footer .footer__sp {
  width: 100%;
  display: none;
  z-index: 9999999;
}
#footer .footer__sp ul {
  width: 100%;
  display: flex;
}
#footer .footer__sp ul li {
  width: calc((100% - 200px) / 2);
  background-color: #0666b2;
  border-right: solid 1px #ffffff;
}
#footer .footer__sp ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
  padding: 1rem 0;
  text-align: center;
  color: #ffffff;
}
#footer .footer__sp ul li a svg {
  width: 24px;
  height: 24px;
  fill: #ffffff;
  vertical-align: middle;
}
#footer .footer__sp ul li a span {
  font-size: clamp(0.6rem, 0.527rem + 0.36vw, 0.8rem);
}
#footer .footer__sp ul li:nth-child(3) {
  width: 200px;
}
#footer .footer__sp ul li:nth-child(3) a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: row;
  height: 100%;
  text-align: center;
  color: #ffffff;
}
#footer .footer__sp ul li:nth-child(3) a svg {
  width: 20px;
  height: 20px;
  fill: #ffffff;
}
#footer .footer__sp ul li:nth-child(3) a span {
  font-size: clamp(1rem, 0.927rem + 0.36vw, 1.2rem);
  line-height: 0;
  margin: 0 0 0 0.5rem;
}

@media screen and (max-width: 1280px) {
  #footer {
    position: relative;
  }
  #footer .footer__warp {
    position: relative;
    padding: 10rem 2rem 5rem;
  }
  #footer .footer__warp--box--contact {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
  }
  #footer .footer__warp--box--contact--link {
    width: 49%;
  }
  #footer .footer__warp--box--contact--address {
    width: 49%;
  }
  #footer .footer__warp--box--contact--address iframe {
    width: 90%;
  }
}
@media screen and (max-width: 1024px) {
  #footer {
    position: relative;
  }
  #footer .footer__warp--box--contact--link {
    width: 60%;
  }
  #footer .footer__warp--box--contact--address {
    width: 40%;
  }
  #footer .footer__warp--box--contact--address iframe {
    width: 90%;
  }
}
@media screen and (max-width: 1024px) {
  #footer {
    position: relative;
  }
  #footer .footer__warp--box--contact {
    flex-flow: column;
  }
  #footer .footer__warp--box--contact--link {
    width: 100%;
  }
  #footer .footer__warp--box--contact--address {
    width: 100%;
    padding: 2rem;
  }
  #footer .footer__warp--box--contact--address iframe {
    width: 100%;
  }
  #footer .footer__warp--box--nav {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 2rem 0 0 0;
  }
  #footer .footer__warp--box--nav ul::before {
    content: "menu";
    width: 90%;
    text-align: center;
    margin-bottom: 2rem;
    border-bottom: solid 2px #0666b2;
    text-transform: uppercase;
    font-size: clamp(1.2rem, 1.127rem + 0.36vw, 1.4rem);
    padding: 0 0 1rem;
    font-family: "Roboto", sans-serif;
    font-weight: bold;
    color: #0666b2;
  }
  #footer .footer__warp--box--nav ul {
    display: flex;
    flex-wrap: wrap;
  }
  #footer .footer__warp--box--nav ul li {
    width: 50%;
    padding: 0 0rem;
    border-right: none;
    text-align: center;
  }
  #footer .footer__warp--box--nav ul li a p {
    font-size: clamp(0.8rem, 0.764rem + 0.18vw, 0.9rem);
  }
  #footer .footer__warp--box--nav ul li a span {
    display: none;
  }
  #footer .footer__warp--box--nav ul li:nth-child(n+3) {
    margin: 1rem 0 0 0;
  }
}
@media screen and (max-width: 480px) {
  #footer {
    position: relative;
  }
  #footer .footer__warp {
    padding: 10rem 1rem 5rem;
  }
  #footer .footer__warp::before {
    width: calc(100% - 2rem);
    height: calc(100% - 2rem);
    margin: 1rem;
  }
  #footer .footer__warp--box h2 {
    margin: 0 0 3rem 0;
  }
  #footer .footer__warp--box--contact--link--logo {
    width: 40%;
    display: flex;
    justify-content: center;
    margin: 0 0 4rem;
  }
  #footer .footer__warp--box--contact--link--logo > a {
    display: inline-block;
  }
  #footer .footer__warp--box--contact--link--logo > a img {
    width: 100%;
  }
  #footer .footer__warp--box--contact--link > a {
    width: 90%;
    background-color: #0666b2;
    padding: 1.25rem;
    font-weight: bold;
    color: #ffffff;
    font-size: 5vw;
    text-align: center;
    border-radius: 50px;
    margin: 0 0 1rem 0;
    transition: 0.5s;
  }
  #footer .footer__warp--box--contact--link > a:hover {
    color: #0666b2;
    background-color: #ffffff;
    transition: 0.5s;
  }
  #footer .footer__warp--box--contact--link > a:hover .tel_fill {
    fill: #0666b2;
    transition: 0.5s;
  }
  #footer .footer__warp--box--contact--link--tel {
    font-family: "Roboto", sans-serif;
    font-size: clamp(1.6rem, 1.527rem + 0.36vw, 1.8rem);
    line-height: 0;
  }
  #footer .footer__warp--box--contact--link--tel svg {
    width: 4vw;
    aspect-ratio: 1/1;
    fill: #ffffff;
    transition: 0.5s;
  }
  #footer .footer__warp--box--contact--link--contactlink {
    font-size: clamp(1.2rem, 1.127rem + 0.36vw, 1.4rem);
  }
  #footer .footer__warp--box--contact--address {
    padding: 2rem 0 0 0;
  }
  #footer .footer__warp--box--contact--address iframe {
    width: 100%;
    height: 200px;
  }
  #footer .footer__copy {
    padding: 1rem 0;
    text-align: center;
    color: #ffffff;
    background-color: #0666b2;
    font-size: clamp(0.8rem, 0.764rem + 0.18vw, 0.9rem);
    margin: 0 0 73px 0;
  }
  #footer .footer__sp {
    width: 100%;
    display: block;
    position: fixed;
    bottom: -80px;
    left: 0;
    z-index: 999;
    transition: 1s;
  }
}
.sp_fixed {
  position: fixed !important;
  bottom: -70px;
  left: 0;
  z-index: 999;
  transition: 1s;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

html {
  scroll-padding-top: 150px;
}

.main {
  width: 100%;
  overflow: hidden;
}

.log-out button {
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  margin: 3rem auto;
}
.log-out button .btn {
  border: solid 1px #0666b2;
  padding: 1rem 2rem;
  transition: all ease 0.5s;
  font-weight: bold;
  font-size: clamp(0.8rem, 0.764rem + 0.18vw, 0.9rem);
  background-color: #0666b2;
  color: #ffffff;
}
.log-out button .btn:hover {
  color: #0666b2;
  background-color: #ffffff;
}

.jump {
  padding-block: 15vh 5vh;
  max-width: 1000px;
}
.jump .jump_btn {
  display: flex;
  gap: 1rem 2rem;
}
.jump .jump_btn a {
  width: 100%;
  border: solid 1px #dedede;
  padding: 2rem;
  font-weight: bold;
  position: relative;
  transition: all ease 0.5s;
}
.jump .jump_btn a .strong {
  color: #0666b2;
  font-size: 1.5em;
  transition: all ease 0.5s;
}
.jump .jump_btn a .arrow {
  position: absolute;
  top: 50%;
  right: 2.5rem;
  transform: translate(0%, -50%);
  display: inline-block;
  padding: 10px;
  transition: all ease 0.4s;
}
.jump .jump_btn a .arrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border-top: solid 2px #0666b2;
  border-right: solid 2px #0666b2;
  position: absolute;
  left: 10px;
  top: 8px;
  transform: rotate(45deg);
  transition: all ease 0.5s;
}
.jump .jump_btn a:hover {
  background-color: #0666b2;
  color: #fff;
}
.jump .jump_btn a:hover .strong {
  color: #fff;
  font-size: 1.5em;
}
.jump .jump_btn a:hover .arrow {
  right: 2rem;
}
.jump .jump_btn a:hover .arrow::before {
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
}

@media screen and (max-width: 700px) {
  .jump .jump_btn {
    flex-flow: column;
  }
  .jump .jump_btn a {
    padding: 1.5rem 2rem;
  }
}
@media screen and (max-width: 480px) {
  .jump {
    padding-block: 4rem 0;
  }
}/*# sourceMappingURL=style.css.map */