@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);
}

/*↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑*/
/******  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: 99999;
  background-color: #ffffff;
}
#header .header__warp {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1360px;
}
#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: 1174px) {
  #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: 99999;
    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;
  }
}
.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_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;
}

#staff {
  overflow: hidden;
}
#staff .message__warp .section_inner {
  padding-top: 6rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 4rem;
}
#staff .message__warp .section_inner .wrap .voice {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
#staff .message__warp .section_inner .wrap .voice .content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5rem;
}
#staff .message__warp .section_inner .wrap .voice .content .top-view {
  color: #0666b2;
  font-weight: 400;
  letter-spacing: 0.06em;
  padding: 5px 13px;
  top: 0;
  display: flex;
  text-transform: capitalize;
  position: relative;
}
#staff .message__warp .section_inner .wrap .voice .content .top-view::before {
  content: "";
  border-left: 1px solid #0666b2;
  border-top: 1px solid #0666b2;
  height: 48px;
  width: 171px;
  position: absolute;
  left: 0;
  top: 0;
}
#staff .message__warp .section_inner .wrap .voice .content .top-view p {
  font-size: 1.9rem;
  padding: 1rem;
}
#staff .message__warp .section_inner .wrap .voice .content .top-view span {
  margin-left: 4rem;
  font-size: 8rem;
  padding-top: 4rem;
}
#staff .message__warp .section_inner .wrap .voice .content .profile {
  width: 100%;
  margin-bottom: 4rem;
  padding-left: 0.5rem;
}
#staff .message__warp .section_inner .wrap .voice .content .profile .role {
  color: #0666b2;
  font-weight: bold;
  font-size: 90%;
  color: #fff;
  background-color: #004277;
  padding: 0.3em;
}
#staff .message__warp .section_inner .wrap .voice .content .profile .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;
}
#staff .message__warp .section_inner .wrap .voice .content .profile .name small {
  font-size: 14px;
}
#staff .message__warp .section_inner .wrap .voice .content .profile .age {
  padding-top: 1rem;
}
#staff .message__warp .section_inner .wrap .voice .content .profile .hobby {
  margin-top: 2rem;
  line-height: 1.5;
}
#staff .message__warp .section_inner .wrap .voice .content .profile .hobby .tit {
  display: block;
  padding: 0.3em;
  width: -moz-fit-content;
  width: fit-content;
}
#staff .message__warp .section_inner .wrap .voice .content .profile .hobby .li {
  margin-right: 1rem;
}
#staff .message__warp .section_inner .wrap .voice .content .profile .hobby .li::before {
  content: "●";
  color: #f7d039;
  font-size: 14px;
  margin-right: 0.3rem;
}
#staff .message__warp .section_inner .wrap .voice .imgbox {
  flex: 1.5;
}
#staff .message__warp .section_inner .wrap .voice .imgbox .main-img {
  aspect-ratio: 3/2;
  overflow: hidden;
  width: 100%;
  max-width: 720px;
  margin-left: auto;
}
#staff .message__warp .section_inner .wrap .voice .imgbox .main-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#staff .message__warp .section_inner .wrap .voice .imgbox .main-img img.staff1 {
  -o-object-position: 0 30%;
     object-position: 0 30%;
}
#staff .message__warp .section_inner .wrap .voice .imgbox .main-img img.staff2 {
  -o-object-position: 0 45%;
     object-position: 0 45%;
}
#staff .message__warp .section_inner .wrap .voice .imgbox .main-img.no3-main2 {
  display: none;
}
#staff .message__warp .section_inner .wrap .voice .imgbox .profile2 {
  display: none;
}
#staff .message__warp .section_inner .wrap .qualification {
  padding: 2rem;
  position: relative;
}
#staff .message__warp .section_inner .wrap .qualification::before {
  content: "";
  position: absolute;
  width: 100%;
  height: calc(100% - 50px);
  border: 5px double rgba(6, 101, 178, 0.6705882353);
  top: 50px;
  left: 0;
  z-index: -1;
}
#staff .message__warp .section_inner .wrap .qualification h4 {
  font-size: 1.3rem;
  padding: 0.3em;
  border: 2px solid rgba(6, 101, 178, 0.6705882353);
  width: -moz-fit-content;
  width: fit-content;
  background-color: #fff;
}
#staff .message__warp .section_inner .wrap .qualification ul {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
#staff .message__warp .section_inner .wrap .qualification ul li {
  padding-bottom: 0.5em;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
#staff .message__warp .section_inner .wrap .qualification ul li::before {
  content: "●";
  color: #f7d039;
  font-size: 8px;
  margin-right: 0.3rem;
}
#staff .message__warp .section_inner .wrap .text-box {
  margin: 3rem 0 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}
#staff .message__warp .section_inner .wrap .text-box .txt {
  line-height: 1.5;
}
#staff .message__warp .section_inner .wrap .text-box .txt .tit {
  font-size: 1.4rem;
  display: block;
  margin: 0 0 2rem 0rem;
  padding-left: 12%;
  position: relative;
  color: #0666b2;
  font-weight: bold;
}
#staff .message__warp .section_inner .wrap .text-box .txt .tit::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
  width: 10%;
  height: 1px;
  background-color: #0666b2;
}
#staff .message__warp .section_inner .wrap .text-box .txt .archive__warp {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2rem auto 0;
}
#staff .message__warp .section_inner .wrap .text-box .txt .archive__warp a {
  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;
}
#staff .message__warp .section_inner .wrap .text-box .txt .archive__warp a:hover {
  color: #0666b2;
  background-color: #ffffff;
}
#staff .message__warp .section_inner .wrap .text-box_inner {
  width: 20%;
}
#staff .message__warp .section_inner .wrap .text-box_inner.slider {
  position: relative;
  overflow: hidden;
}
#staff .message__warp .section_inner .wrap .text-box_inner.slider img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 1.3s ease-in-out;
}
#staff .message__warp .section_inner .wrap .text-box_inner.slider img.active {
  opacity: 1;
  position: relative;
}
#staff .message__warp .section_inner .wrap .text-box_inner img {
  aspect-ratio: 3/4;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#staff .message__warp .section_inner .wrap .text-box_inner .name2 {
  display: none;
}
#staff .message__warp .section_inner .wrap:nth-child(even) .voice {
  flex-direction: row-reverse;
}
#staff .message__warp .section_inner .wrap:nth-child(even) .voice .imgbox .main-img {
  margin-left: unset;
  margin-right: auto;
}
#staff .message__warp .section_inner .wrap:nth-child(even) .text-box {
  flex-direction: row-reverse;
}

@media screen and (max-width: 1080px) {
  #staff .message__warp .section_inner .wrap .qualification ul {
    grid-template-columns: repeat(2, 1fr);
  }
  #staff .message__warp .section_inner .wrap .text-box .txt {
    width: 100%;
    max-width: 750px;
  }
  #staff .message__warp .section_inner .wrap .text-box_inner {
    width: 30%;
  }
}
@media screen and (max-width: 980px) {
  #staff .message__warp .section_inner .wrap .voice .content .profile .name {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 928px) {
  #staff .message__warp .section_inner .wrap .voice .imgbox .main-img {
    height: 100%;
  }
  #staff .message__warp .section_inner .wrap .voice .content .top-view span {
    font-size: 6.5rem;
  }
  #staff .message__warp .section_inner .wrap .voice .content .profile .name {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 850px) {
  #staff .message__warp .section_inner .wrap .voice {
    flex-direction: column;
  }
  #staff .message__warp .section_inner .wrap .voice .content .profile {
    display: none;
  }
  #staff .message__warp .section_inner .wrap .voice .imgbox .main-img {
    width: 100%;
    max-width: 560px;
    margin-top: 4rem;
    margin-left: auto;
    aspect-ratio: 3/2;
    overflow: hidden;
    height: unset;
  }
  #staff .message__warp .section_inner .wrap .voice .imgbox .profile2 {
    display: block;
  }
  #staff .message__warp .section_inner .wrap:nth-child(even) .voice {
    flex-direction: column;
  }
  #staff .message__warp .section_inner .wrap:nth-child(even) .voice .content .top-view {
    margin-left: auto;
  }
}
@media screen and (max-width: 768px) {
  #staff .message__warp .section_inner .wrap .voice .imgbox .main-img {
    margin-top: 3rem;
  }
  #staff .message__warp .section_inner .wrap .text-box_inner {
    width: 40%;
  }
}
@media screen and (max-width: 728px) {
  #staff .message__warp .section_inner .wrap .qualification ul {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media screen and (max-width: 530px) {
  #staff .message__warp .section_inner .wrap .voice .imgbox .no3-main {
    display: none;
  }
  #staff .message__warp .section_inner .wrap .voice .imgbox .no3-main2 {
    display: block !important;
  }
  #staff .message__warp .section_inner .wrap .voice .imgbox .no3-main2 img {
    -o-object-position: center 10%;
       object-position: center 10%;
  }
  #staff .message__warp .section_inner .wrap .text-box_inner {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  #staff .message__warp--comment {
    margin: 3rem 0 0 0;
  }
  #staff .message__warp--comment p {
    text-align: justify;
    -moz-text-align-last: left;
         text-align-last: left;
  }
  #staff .message__warp--linkbox {
    margin: 2rem auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #staff .message__warp--linkbox--link {
    display: flex;
    flex-flow: column;
  }
  #staff .message__warp--linkbox--link--image {
    width: 100%;
    height: 100px;
  }
  #staff .message__warp--linkbox--link--image img {
    width: 100%;
    height: 100px;
  }
  #staff .message__warp--linkbox--link--text {
    width: 100%;
    padding: 1rem;
  }
  #staff .message__warp--linkbox--link--text span {
    margin: 0.5rem auto 0;
    width: 130px;
  }
}
#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: 768px) {
  #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;
}/*# sourceMappingURL=style.css.map */