@charset "UTF-8";
body, div, dl, dt, dd, ul, li, h1, h2, h3, h4, h5, h6, pre, figure, form, fieldset, input, textarea, p, blockquote, th, td, a {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-y: scroll;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

a {
  text-decoration: none;
}
a:link, a:visited, a:active {
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

ul {
  list-style: none;
}

fieldset, img {
  border: 0;
}

img {
  max-width: 100%;
  height: auto;
}

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

address, caption, cite, code, dfn, em, th, var {
  font-style: normal;
  font-weight: normal;
}

br {
  letter-spacing: 0;
}

body {
  text-align: justify;
  line-height: 1.8;
}

p, th, td {
  text-align: justify;
  line-height: 1.8;
}

body, h3, h4, p {
  font-family: "游ゴシック", "Noto Sans JP", "Yu Gothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic Pro", Verdana, Geneva, Tahoma, sans-serif;
  font-weight: 400;
  color: #4E4E4E;
}

h1, h2 {
  font-family: "Hina Mincho", "Noto Serif JP", "Yu Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", "serif";
  color: #0083B4;
}

.bold {
  font-weight: bold;
}

.txt_pink {
  color: #E30551;
}

.ta-center {
  text-align: center;
}

.ta-left {
  text-align: left;
}

.ta-right {
  text-align: right;
}

.sp, .sp-960 {
  display: none;
}

@media (max-width: 1600px) {
  .pc-1600 {
    display: none !important;
  }
}
@media (max-width: 960px) {
  .sp-960 {
    display: block !important;
  }
  .pc-960 {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .sp {
    display: block !important;
  }
  .pc {
    display: none !important;
  }
}
.delay1 {
  animation-delay: 0.1s !important;
}

.delay2 {
  animation-delay: 0.2s !important;
}

.delay3 {
  animation-delay: 0.3s !important;
}

.delay4 {
  animation-delay: 0.4s !important;
}

.delay5 {
  animation-delay: 0.5s !important;
}

.delay6 {
  animation-delay: 0.6s !important;
}

.delay7 {
  animation-delay: 0.7s !important;
}

.delay8 {
  animation-delay: 0.8s !important;
}

.delay9 {
  animation-delay: 0.9s !important;
}

.delay10 {
  animation-delay: 1s !important;
}

.delay11 {
  animation-delay: 1.1s !important;
}

a {
  transition-duration: 0.3s;
}

@media (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
/* header **************************/
header {
  width: 100%;
  position: sticky;
  z-index: 9998;
  top: 0;
  background-color: rgba(255, 255, 255, 0.01);
}

.top-header, .page-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 10px 25px 0;
  box-sizing: border-box;
}
.top-header h2, .page-header h2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  max-width: 291px;
  width: 50%;
}
.top-header h2 img, .page-header h2 img {
  width: 100%;
}

.top-header {
  position: absolute;
  margin: 0 auto;
  transition: background 0.5s;
}

.top-header_bg {
  background-color: rgba(0, 131, 180, 0.7);
}

@media screen and (max-width: 480px) {
  .top-header h2, .page-header h2 {
    width: 60%;
  }
}
/* header__menu **************************/
.header__menu nav ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 40px;
}
.header__menu nav ul a {
  font-weight: 600;
}
.header__menu nav ul a:hover {
  text-decoration: none;
  opacity: 0.5;
}
.header__menu .header-contact a {
  display: block;
  width: 150px;
  padding: 5px 0;
  border-radius: 50px;
  text-align: center;
}
.header__menu .header-contact a:hover {
  opacity: 1;
}

/* top-header__menu //INDEXmenu */
.top-header__menu nav ul a {
  color: #FFFFFF;
}
.top-header__menu .header-contact a {
  background: #FFFFFF;
  color: #0083B4;
}
.top-header__menu .header-contact a:hover {
  background: #0083B4;
  color: #FFFFFF;
}

/* page-header__menu //下層menu */
.page-header__menu nav ul a {
  color: #0083B4;
}
.page-header__menu .header-contact a {
  background: #0083B4;
  border: 1px solid #0083B4;
  color: #FFFFFF;
  line-height: 1.7em;
}
.page-header__menu .header-contact a:hover {
  background: #FFFFFF;
  color: #0083B4;
}

.hamburger {
  display: block;
  position: fixed;
  z-index: 9999;
  right: 10px;
  top: 11px;
  width: 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;
  /* スマホメニューを開いてる時のボタン */
}
.hamburger span {
  display: block;
  position: absolute;
  width: 40px;
  height: 1px;
  right: 10px;
  background: #0083B4;
  transition: 0.3s all;
}
.hamburger span:nth-child(1) {
  top: 15px;
}
.hamburger span:nth-child(2) {
  top: 23px;
}
.hamburger span.mv-span {
  background: #FFFFFF !important;
}
.hamburger.active span {
  background: #FFFFFF;
}
.hamburger.active span:nth-child(1) {
  top: 20px;
  right: 10px;
  transform: rotate(-45deg) translate3d(0, 0, 0);
}
.hamburger.active span:nth-child(2) {
  top: 20px;
  transform: rotate(45deg) translate3d(0, 0, 0);
}

/* メニュー背景　**************************/
.globalMenuSp {
  position: fixed;
  z-index: 9998;
  top: 0;
  right: 0;
  background-color: rgba(106, 176, 201, 0.5);
  -webkit-backdrop-filter: blur(30px);
          backdrop-filter: blur(30px);
  text-align: center;
  width: 100%;
  opacity: 0;
  pointer-events: none;
  transition: all 0.6s;
  height: 100vh;
  /* クリックでjQueryで追加・削除 */
}
.globalMenuSp.active {
  opacity: 1;
  pointer-events: auto;
}
.globalMenuSp__logo {
  margin: 10px 25px 0;
  text-align: left;
}
.globalMenuSp__logo img {
  max-width: 291px;
  width: 50%;
  margin-left: 0;
}
.globalMenuSp ul {
  display: grid;
  justify-content: center;
  align-items: flex-start;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin: 0 auto;
  width: 100%;
  padding: 3.5rem 15%;
}
.globalMenuSp li {
  padding: 0;
  max-width: 160px;
  max-height: 72px;
  width: 100%;
  border-left: 3px solid #FFFFFF;
}
.globalMenuSp li a {
  display: block;
  color: #FFFFFF;
  padding-left: 13px;
  font-family: "Hina Mincho", "Noto Serif JP", "Yu Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", "serif";
  font-size: 1.875rem;
  line-height: 1.2em;
  letter-spacing: 0.05em;
  text-align: left;
  text-decoration: none;
}
.globalMenuSp li a span {
  display: block;
  font-size: 0.875rem;
}
.globalMenuSp li a:hover {
  opacity: 0.5;
}

@media screen and (max-width: 480px) {
  .globalMenuSp__logo img {
    width: 60%;
  }
  .globalMenuSp ul {
    gap: 30px;
    padding: 2.5rem 10%;
  }
  .globalMenuSp li a {
    font-size: 1.25rem;
  }
  .globalMenuSp li a span {
    font-size: 0.75rem;
  }
}
/* page-common **************************/
body {
  background: #FFFFFF;
}

main {
  padding-bottom: 3rem;
  background: #FFFFFF;
}

h1 {
  font-size: 6.25rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.875rem;
}

p {
  font-size: 1rem;
}

.fz18 {
  font-size: 1.125rem;
}

@media screen and (max-width: 960px) {
  h1 {
    font-size: 5.125rem;
  }
  h2 {
    font-size: 2.1875rem;
  }
  h3 {
    font-size: 1.5625rem;
  }
  p {
    font-size: 0.9375rem;
  }
  .fz18 {
    font-size: 1.0625rem;
  }
}
@media screen and (max-width: 768px) {
  h1 {
    font-size: 4.125rem;
  }
  h2 {
    font-size: 1.875rem;
  }
  h3 {
    font-size: 1.25rem;
  }
  p {
    font-size: 0.875rem;
  }
  .fz18 {
    font-size: 1rem;
  }
}
@media screen and (max-width: 480px) {
  h1 {
    font-size: 3.125rem;
  }
  h2 {
    font-size: 1.5625rem;
  }
  h3 {
    font-size: 1.125rem;
  }
}
/* page-title **************************/
.page-title {
  max-width: 1280px;
  width: 90%;
  margin: 0 auto;
  padding: 10rem 0 4.5rem;
}
.page-title h1 {
  line-height: 0.5em;
}
.page-title span {
  font-size: 1rem;
}
.page-title span.line {
  display: inline-block;
  width: 20px;
  height: 1px;
  margin: 0 20px 6px;
  background: #0083B4;
  transform: rotate(-45deg);
}
.page-title p {
  max-width: 800px;
  margin-top: 3em;
  font-size: 1.25rem;
  font-weight: 600;
  color: #0083B4;
}
@media screen and (max-width: 960px) {
  .page-title {
    padding: 7rem 0 3.5rem;
  }
  .page-title span {
    font-size: 0.9375rem;
  }
  .page-title p {
    font-size: 1.0625rem;
  }
}
@media screen and (max-width: 768px) {
  .page-title {
    padding: 4rem 0 2.5rem;
  }
  .page-title span {
    font-size: 0.875rem;
  }
  .page-title p {
    font-size: 0.875rem;
  }
}

/* mv-common **************************/
.mv-common {
  margin-bottom: 6rem;
}
@media screen and (max-width: 960px) {
  .mv-common {
    margin-bottom: 5rem;
  }
}
@media screen and (max-width: 768px) {
  .mv-common {
    margin-bottom: 4rem;
  }
}

/* section-common **************************/
.section-common {
  max-width: 1280px;
  width: 90%;
  margin: 0 auto 9rem;
}
.section-common h2 {
  margin-bottom: 3.5rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 960px) {
  .section-common {
    margin: 0 auto 7rem;
  }
  .section-common h2 {
    margin-bottom: 2.75rem;
  }
}
@media screen and (max-width: 768px) {
  .section-common {
    margin: 0 auto 4rem;
  }
  .section-common h2 {
    margin-bottom: 2rem;
  }
}

/* btn **************************/
/* btn */
.btn {
  width: 100px;
  height: 100px;
  margin: 0 auto;
}
.btn a {
  position: relative;
  display: block;
}
.btn a .btn-txt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.btn a .btn-txt p {
  font-size: 1.125rem;
  font-family: "Hina Mincho", "Noto Serif JP", "Yu Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", "serif";
  font-weight: normal;
  color: #0083B4;
  padding-bottom: 25px;
  margin: 0;
}
.btn a .btn-txt p::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -45%);
  width: 0;
  height: 0;
  margin-top: 10px;
  border-style: solid;
  border-width: 5px 0px 5px 9px;
  border-color: transparent transparent transparent #0083B4;
}
.btn a .btn-txt p, .btn a .btn-txt p::after {
  transition: all 0.3s;
}
.btn a:hover .btn-txt p {
  padding-bottom: 35px;
}
.btn a:hover .btn-txt p::after {
  margin-top: 3px;
}

/* svg animation */
.btn-line {
  width: 100px;
  height: 100px;
}

.btn-rhombus {
  fill: none;
  stroke: #0083B4;
  stroke-miterlimit: 10;
  width: 69px;
  height: 69px;
  transform-origin: 50% 50%;
  transform: rotate(135deg);
  stroke-dashoffset: 569.6799926758px;
  stroke-dasharray: 284.8399963379px;
}

.btn-rhombus.active {
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 0.5s ease-out 0s;
}

/* bnr **************************/
.bnr {
  position: relative;
  display: block;
  border-radius: 50px;
  border: 1px solid #0083B4;
  box-sizing: border-box;
  margin: 0 auto;
  font-size: 1.25rem;
  font-weight: 600;
  font-family: "游ゴシック", "Noto Sans JP", "Yu Gothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic Pro", Verdana, Geneva, Tahoma, sans-serif;
  text-align: center;
  line-height: 80px;
  letter-spacing: 0.2rem;
  transition: all 0.3s;
  cursor: pointer;
}
.bnr::after {
  content: "";
  position: absolute;
  right: 30px; /* バナーとの距離 */
  top: 50%;
  width: 0;
  height: 0;
  margin-right: 0;
  border-style: solid;
  border-width: 8px 0px 8px 10px;
  transform: translate(0, -50%);
  transition: all 0.3s;
}
.bnr:hover::after {
  right: 25px;
}

/* bnr_w300-b */
.bnr_w300-b {
  background: #0083B4;
  width: 300px;
  height: 80px;
  color: #FFFFFF;
}
.bnr_w300-b::after {
  border-color: transparent transparent transparent #FFFFFF;
}
.bnr_w300-b:hover {
  background: #FFFFFF;
  color: #0083B4;
  text-decoration: none;
}
.bnr_w300-b:hover::after {
  border-color: transparent transparent transparent #0083B4;
}

/* bnr_w300-w */
.bnr_w300-w {
  background: #FFFFFF;
  width: 300px;
  height: 80px;
  color: #0083B4;
}
.bnr_w300-w::after {
  border-color: transparent transparent transparent #0083B4;
}
.bnr_w300-w:hover {
  background: #0083B4;
  color: #FFFFFF;
  text-decoration: none;
}
.bnr_w300-w:hover::after {
  border-color: transparent transparent transparent #FFFFFF;
}

/* bnr_w500-b */
.bnr_w500-b {
  background: #0083B4;
  width: 500px;
  height: 80px;
  color: #FFFFFF;
}
.bnr_w500-b::after {
  border-color: transparent transparent transparent #FFFFFF;
}
.bnr_w500-b:hover {
  background: #FFFFFF;
  color: #0083B4;
  text-decoration: none;
}
.bnr_w500-b:hover::after {
  border-color: transparent transparent transparent #0083B4;
}

/* bnr_w500-w */
.bnr_w500-w {
  background: #FFFFFF;
  width: 500px;
  height: 80px;
  color: #0083B4;
}
.bnr_w500-w::after {
  border-color: transparent transparent transparent #0083B4;
}
.bnr_w500-w:hover {
  background: #0083B4;
  color: #FFFFFF;
  text-decoration: none;
}
.bnr_w500-w:hover::after {
  border-color: transparent transparent transparent #FFFFFF;
}

@media screen and (max-width: 768px) {
  .bnr {
    font-size: 1rem;
    line-height: 60px;
  }
  .bnr::after {
    right: 20px;
  }
  .bnr:hover::after {
    right: 20px;
  }
  .bnr_w300-b, .bnr_w300-w {
    max-width: 250px;
    width: 90%;
    height: 60px;
  }
  .bnr_w500-b, .bnr_w500-w {
    width: 80%;
    height: 60px;
  }
}
/* modal **************************/
.modal_open {
  cursor: pointer;
}

.modal_close {
  position: absolute;
  top: -50px;
  right: 0;
  display: block;
}
.modal_close img {
  width: 40px;
  height: 40px;
}
.modal_close:hover {
  cursor: pointer;
}
.modal_close img:hover {
  opacity: 0.5;
}
@media screen and (max-width: 768px) {
  .modal_close img {
    width: 30px;
    height: 30px;
  }
}

.modal_bg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9998;
  display: none;
  width: 100vw;
  height: 100vh;
  background-color: rgba(106, 176, 201, 0.5);
  -webkit-backdrop-filter: blur(30px);
          backdrop-filter: blur(30px);
}

.modal_box {
  position: fixed;
  z-index: 9999;
  display: none;
  width: 90%;
  max-width: 1200px;
  margin: 0;
  padding: 50px;
  background: #FFFFFF;
  box-sizing: border-box;
  box-shadow: 0 0 8px #0083B4;
}
@media screen and (max-width: 768px) {
  .modal_box {
    padding: 20px;
  }
  .modal_box .modal_txt {
    height: 500px;
    overflow-y: scroll;
    padding: 2%;
  }
}

/* contact__mailform **************************/
.contact__mailform {
  width: 100%;
  max-width: 580px;
}
.contact__mailform th, .contact__mailform td {
  width: 100%;
  display: block;
}
.contact__mailform th {
  font-size: 1.25rem;
  font-weight: 600;
  color: #0083B4;
  padding-bottom: 10px;
}
.contact__mailform th.textarea {
  vertical-align: middle;
}
.contact__mailform td {
  padding-bottom: 30px;
}
.contact__mailform label {
  margin-right: 20px;
  font-size: 1.125rem;
  font-weight: 600;
}
.contact__mailform input {
  width: 100%;
}
.contact__mailform input[type=text], .contact__mailform input[type=tel], .contact__mailform input[type=number], .contact__mailform input[type=date], .contact__mailform input[type=email] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 10px;
  border: 1px solid #6AB0C9;
  background: #EDEFF8;
  box-sizing: border-box;
  font-size: 1rem;
  font-family: "游ゴシック", "Noto Sans JP", "Yu Gothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic Pro", Verdana, Geneva, Tahoma, sans-serif;
}
.contact__mailform input[type=radio] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid #6AB0C9;
  vertical-align: 0px;
  outline: none;
}
.contact__mailform input[type=radio]:hover {
  cursor: pointer;
}
.contact__mailform input[type=radio]::before {
  display: block;
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 4px;
  background-color: #0083B4;
  transform: translate(1.5px, 1.5px) scale(0);
  transform-origin: center;
  transition: all 0.3s cubic-bezier(0.25, 0.25, 0.56, 2);
}
.contact__mailform input[type=radio]:checked::before {
  transform: translate(1.5px, 1.5px) scale(1.2);
}
.contact__mailform input[type=text], .contact__mailform input[type=tel], .contact__mailform input[type=email] {
  width: 100%;
  height: 60px;
}
.contact__mailform input[type=radio] {
  transform: scale(1.4);
  margin-right: 10px;
  margin-left: 20px;
}
.contact__mailform textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: block;
  width: 100%;
  padding: 0.5em;
  border: 1px solid #6AB0C9;
  background: #EDEFF8;
  box-sizing: border-box;
  height: 200px;
  line-height: 1.5rem;
  font-size: 1rem;
}

/* 送信ボタン **************************/
input[type=submit] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: block;
  background: #0083B4;
  border-radius: 50px;
  border: 1px solid #0083B4;
  box-sizing: border-box;
  width: 300px;
  height: 80px;
  margin: 0 auto;
  font-size: 1.25rem;
  font-weight: 600;
  font-family: "游ゴシック", "Noto Sans JP", "Yu Gothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic Pro", Verdana, Geneva, Tahoma, sans-serif;
  color: #FFFFFF;
  text-align: center;
  line-height: 80px;
  letter-spacing: 0.2rem;
  transition: all 0.3s;
  cursor: pointer;
}
input[type=submit]:hover {
  background: #FFFFFF;
  color: #0083B4;
}

.submitbtn {
  max-width: 300px;
  margin: 0 auto;
}

.submitbtn-arrow {
  position: relative;
}
.submitbtn-arrow::after {
  content: "";
  position: absolute;
  right: 30px;
  top: 50%;
  width: 0;
  height: 0;
  margin-right: 0;
  border-style: solid;
  border-width: 8px 0px 8px 10px;
  border-color: transparent transparent transparent #FFFFFF;
  transform: translate(0, -50%);
  transition: all 0.3s;
}

.submitbtn-arrow:hover::after {
  right: 25px;
  border-color: transparent transparent transparent #0083B4;
}

.hissu {
  color: #E30551;
}

/* 入力画面 **************************/
.mw_wp_form_input .confirm-show {
  display: none;
}

/* 確認画面 **************************/
.mw_wp_form_confirm .input-show {
  display: none;
}
.mw_wp_form_confirm .hissu {
  display: none;
}

/* 完了画面 **************************/
.mw_wp_form_complete .input-show,
.mw_wp_form_complete .confirm-show {
  display: none;
}
.mw_wp_form_complete .compmes {
  padding: 2em 5%;
  font-weight: bold;
  width: 100%;
  max-width: 720px;
  margin: 30px auto;
  text-align: center;
}

@media screen and (max-width: 960px) {
  .contact__mailform {
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 768px) {
  .contact__mailform {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
  }
  .contact__mailform th {
    font-size: 1rem;
  }
  .contact__mailform td {
    font-size: 1rem;
  }
  .contact__mailform input[type=text], .contact__mailform input[type=tel], .contact__mailform input[type=date], .contact__mailform input[type=email], .contact__mailform input[type=radio] {
    font-size: 1rem;
  }
  .contact__mailform input[type=text].name {
    width: 100%;
  }
  .contact__mailform label {
    font-size: 1rem;
  }
  .contact__mailform textarea {
    font-size: 1rem;
  }
  input[type=submit] {
    max-width: 250px;
    width: 90%;
    height: 60px;
    font-size: 1rem;
    line-height: 3;
  }
  .submitbtn-arrow::after {
    right: 50px;
  }
  .hissu {
    font-size: 0.8125rem;
  }
}
#page_top {
  position: fixed;
  width: 65px;
  right: 5%;
  z-index: 9997;
}
#page_top img {
  display: block;
  width: 100%;
  margin-bottom: 10px;
}
#page_top p {
  text-align: center;
  font-size: 0.9375rem;
  line-height: 1.2;
}
#page_top:hover {
  cursor: pointer;
  text-decoration: none;
}

/* footer-contact **************************/
.footer-contact {
  background: #EDEFF8;
  padding: 6rem 0;
  box-sizing: border-box;
}
.footer-contact h2 {
  width: 90%;
  text-align: center;
  margin: 0 auto 4rem;
}
.footer-contact__tel {
  margin: 2rem auto 0;
  text-align: center;
}
.footer-contact__tel a {
  font-size: 3.125rem;
  font-family: "Hina Mincho", "Noto Serif JP", "Yu Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", "serif";
  color: #0083B4;
}
.footer-contact__tel a:hover {
  text-decoration: none;
}
.footer-contact__tel p {
  color: #0083B4;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .footer-contact__tel a {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 768px) {
  .footer-contact {
    padding: 4rem 0;
  }
  .footer-contact h2 {
    margin-bottom: 2rem;
  }
  .footer-contact__tel {
    margin-top: 1rem;
  }
  .footer-contact__tel a {
    font-size: 1.875rem;
  }
}

/* footer **************************/
.footer {
  width: 100%;
  background: #0083B4;
  padding: 6rem 0 2rem;
}
.footer p, .footer h2, .footer a {
  color: #FFFFFF;
}
.footer a:hover {
  text-decoration: none;
}
.footer .wrap {
  max-width: 1280px;
  width: 90%;
  margin: 0 auto;
}
.footer h2 {
  text-align: center;
  letter-spacing: 0.05em;
}

/* footer-menu */
.footer-menu__wrap {
  margin: 5rem auto 3.75rem;
}
.footer-menu__wrap ul {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 4rem;
}
.footer-menu__wrap li {
  width: 110px;
}

.footer-menu {
  display: block;
}
.footer-menu__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 60px;
  height: 60px;
  margin: 0 auto;
  border: 1px solid #FFFFFF;
  box-sizing: border-box;
  transform: rotate(-45deg);
  transition: all 0.3s;
}
.footer-menu__icon img {
  transform: rotate(45deg);
}
.footer-menu span {
  display: block;
  width: 1px;
  height: 30px;
  margin: 30px auto 10px;
  background: #FFFFFF;
  transition: all 0.3s;
}
.footer-menu p {
  font-size: 1.125rem;
  font-weight: 600;
  text-align: center;
}

.footer-menu:hover .footer-menu__icon {
  margin-top: 5px;
  margin-bottom: -5px;
}
.footer-menu:hover span {
  margin-bottom: 5px;
}

/* footer-address */
.footer-address {
  margin: 0 auto;
  text-align: center;
}
.footer-address a {
  font-family: "Hina Mincho", "Noto Serif JP", "Yu Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", "serif";
  font-size: 2.5rem;
}
.footer-address p {
  text-align: center;
}

/* copyright */
.copyright {
  margin-top: 3.75rem;
  text-align: center;
}

@media screen and (max-width: 960px) {
  .footer {
    padding-top: 5rem;
  }
  /* footer-menu */
  .footer-menu__wrap {
    margin: 4rem auto 2.75rem;
  }
  .footer-menu p {
    font-size: 1.0625rem;
  }
  /* footer-address */
  .footer-address a {
    font-size: 2.1875rem;
  }
}
@media screen and (max-width: 768px) {
  .footer {
    padding-top: 4rem;
  }
  /* footer-menu */
  .footer-menu__wrap {
    margin: 3rem auto 1.5rem;
  }
  .footer-menu__wrap ul {
    display: block;
  }
  .footer-menu__wrap li {
    width: 100%;
    margin-bottom: 30px;
  }
  .footer-menu {
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
  .footer-menu__icon {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 40px;
    height: 40px;
    margin-left: 0;
    border: 1px solid #FFFFFF;
    box-sizing: border-box;
    transform: rotate(-45deg);
  }
  .footer-menu__icon img {
    transform: rotate(45deg);
    width: 30px;
  }
  .footer-menu span {
    display: inline-block;
    width: 30px;
    height: 1px;
    margin: 0 20px 0 10px;
    background: #FFFFFF;
  }
  .footer-menu p {
    width: calc(100% - 117px);
    font-size: 1rem;
    text-align: left;
  }
  .footer-menu:hover .footer-menu__icon {
    margin-top: 0;
    margin-bottom: 0;
  }
  .footer-menu:hover span {
    margin-top: 0;
    margin-bottom: 0;
  }
  /* footer-address */
  .footer-address a {
    font-size: 1.875rem;
  }
}
.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-delay: 0.5s;
  animation-timing-function: ease-out;
  opacity: 0;
}
.animated.infinite {
  animation-iteration-count: infinite;
}

/* fadeIn **************************/
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
}

/* fadeInLeft **************************/
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-50%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInLeft {
  animation-name: fadeInLeft;
}

/* fadeInRight **************************/
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(50%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInRight {
  animation-name: fadeInRight;
}

/* fadeInUp **************************/
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInUp {
  animation-name: fadeInUp;
}

@keyframes rote {
  0%, 100% {
    transform: rotate(3deg);
  }
  50% {
    transform: rotate(-3deg);
  }
}
/* fluffy **************************/
@keyframes fluffy1 {
  0% {
    transform: translateY(0);
  }
  5% {
    transform: translateY(0);
  }
  10% {
    transform: translateY(0);
  }
  20% {
    transform: translateY(-10px);
  }
  25% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(-10px);
  }
  50% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes fluffy2 {
  0% {
    transform: translateY(0);
  }
  5% {
    transform: translateY(0);
  }
  10% {
    transform: translateY(0);
  }
  20% {
    transform: translateY(-5px);
  }
  25% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(-5px);
  }
  50% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(0);
  }
}
/* zoomIn **************************/
@keyframes zoomIn {
  from {
    transform: scale(0.8);
  }
  to {
    transform: scale(1);
  }
}
@keyframes zoomInFade {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.zoomInFade {
  animation-name: zoomInFade;
}

/* blurIn **************************/
@keyframes blurIn {
  from {
    opacity: 0;
    filter: blur(20px);
  }
  to {
    opacity: 1;
    filter: blur(0);
  }
}
.blurIn {
  animation-name: blurIn;
}

/* noFilter **************************/
@keyframes noFilter {
  100% {
    opacity: 1;
    filter: none;
  }
}
.noFilter {
  animation-name: noFilter;
}

@keyframes noTransform {
  100% {
    opacity: 1;
    transform: none;
  }
}
.noTransform {
  animation-name: noTransform;
}

/* lineanime **************************/
.lineanime {
  fill: none;
  stroke: #ffffff;
  stroke-width: 19;
  stroke-linejoin: round;
  stroke-miterlimit: 10;
  stroke-dasharray: 1800px;
  stroke-dashoffset: 1800px;
  animation: line 2.5s 0.1s forwards;
}
.lineanime.st2 {
  animation-delay: 0.3s;
}
.lineanime.st3 {
  animation-delay: 0.6s;
}
.lineanime.st4 {
  animation-delay: 0.9s;
}
.lineanime.st5 {
  animation-delay: 1.2s;
}
.lineanime.st6 {
  animation-delay: 1.5s;
}
.lineanime.st7 {
  animation-delay: 1.8s;
}

@keyframes line {
  0% {
    stroke-dashoffset: 1800px;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
/* scaleDown **************************/
@keyframes scaleDown {
  0% {
    transform: scale(1.2);
  }
  60% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
.scaleDown {
  animation-name: scaleDown;
  transform: scale(1.2);
  opacity: 1 !important;
}

/* scaleUP **************************/
@keyframes scaleUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}
.scaleUp {
  animation-name: scaleUp;
  transform: scale(1);
  opacity: 1 !important;
}

/* passing **************************/
.passing {
  display: block;
}

.passing .passing-bar {
  position: relative;
  display: inline-block;
  transform: translate3d(0, 0, 0);
}

.passing .passing-bar:before {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 1;
}

.passing .passing-txt {
  opacity: 0;
  transform: translate3d(0, 0, 0);
}

.passing.move .passing-txt {
  animation: passing-txt 0s ease 0.5s 1 normal forwards;
}

@keyframes passing-txt {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*passingLeft*/
.passingL.passing-bar:before {
  left: 0;
}

.passingL.move .passing-bar:before {
  animation: passing-barL 1s ease 0s 1 normal forwards;
}

@keyframes passing-barL {
  0% {
    left: 0;
    width: 0;
  }
  50% {
    left: 0;
    width: 100%;
  }
  51% {
    left: 0;
    width: 100%;
  }
  100% {
    left: 100%;
    width: 0;
  }
}
/*passingRight*/
.passingR.passing-bar:before {
  right: 0;
}

.passingR.move .passing-bar:before {
  animation: passing-barR 1s ease 0s 1 normal forwards;
}

@keyframes passing-barR {
  0% {
    right: 0;
    width: 0;
  }
  50% {
    right: 0;
    width: 100%;
  }
  51% {
    right: 0;
    width: 100%;
  }
  100% {
    right: 100%;
    width: 0;
  }
}
/* txt_popout **************************/
.txt_popout {
  overflow: hidden;
}

.txt_popout.move p {
  transform: translateY(2em);
  animation: textanimation 1s forwards;
}

.txt_popout p:nth-child(1) {
  animation-delay: 0.05s;
}

.txt_popout p:nth-child(2) {
  animation-delay: 0.1s;
}

.txt_popout p:nth-child(3) {
  animation-delay: 0.15s;
}

.txt_popout p:nth-child(4) {
  animation-delay: 0.2s;
}

.txt_popout p:nth-child(5) {
  animation-delay: 0.25s;
}

.txt_popout p:nth-child(6) {
  animation-delay: 0.3s;
}

.txt_popout p:nth-child(7) {
  animation-delay: 0.35s;
}

.txt_popout p:nth-child(8) {
  animation-delay: 0.4s;
}

.txt_popout p:nth-child(9) {
  animation-delay: 0.45s;
}

.txt_popout p:nth-child(10) {
  animation-delay: 0.5s;
}

.txt_popout p:nth-child(11) {
  animation-delay: 0.55s;
}

.txt_popout p:nth-child(12) {
  animation-delay: 0.6s;
}

@keyframes textanimation {
  0% {
    transform: translateY(2em);
  }
  100% {
    transform: translateY(0);
  }
}
/* txt_marker **************************/
.txt_marker {
  display: inline;
  position: relative;
}

.txt_marker::before {
  content: "";
  width: 0;
  display: block;
  position: absolute;
  top: -7px;
  left: 0;
  z-index: -2;
}

.txt_marker.move::before {
  animation: markerAnime 1s forwards ease;
}

@keyframes markerAnime {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
/* img-slide **************************/
.img-slide {
  position: relative;
  overflow: hidden;
  width: 100%;
  line-height: 0;
}

.img-slide:before {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 100%;
  z-index: 1;
  transform-origin: right center;
  transform: scaleX(1);
  transition: width 1s cubic-bezier(0.19, 1, 0.22, 1) 0s, transform 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0.5s;
}

.img-slide img {
  position: relative;
  width: 100%;
  height: auto;
  opacity: 0;
  top: -50%;
  left: -100%;
  transition: 0.7s;
}

.img-slide--move img {
  opacity: 1;
  left: 0;
}

.img-slide--move.img-slide:before {
  transform: scaleX(0);
  width: 100%;
}

/* slideIn **************************/
/*slideInL*/
.slideInL {
  position: relative;
  overflow: hidden;
}

.slideInL::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.slideInL--move::after {
  animation: slideInL 1.5s ease-in-out forwards;
}

@keyframes slideInL {
  0% {
    left: 0;
  }
  70% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}
/*slideInR*/
.slideInR {
  position: relative;
  overflow: hidden;
}

.slideInR::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  z-index: 1;
}

.slideInR--move::after {
  animation: slideInR 1.5s ease-in-out forwards;
}

@keyframes slideInR {
  0% {
    right: 0;
  }
  70% {
    right: 100%;
  }
  100% {
    right: 100%;
  }
}
/*slideInT*/
.slideInT {
  position: relative;
  overflow: hidden;
}

.slideInT::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.slideInT--move::after {
  animation: slideInT 1.5s ease-in-out forwards;
}

@keyframes slideInT {
  0% {
    top: 0;
  }
  70% {
    top: 100%;
  }
  100% {
    top: 100%;
  }
}
/*slideInB*/
.slideInB {
  position: relative;
  overflow: hidden;
}

.slideInB::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  z-index: 1;
}

.slideInB--move::after {
  animation: slideInB 1.5s ease-in-out forwards;
}

@keyframes slideInB {
  0% {
    bottom: 0%;
  }
  70% {
    bottom: 100%;
  }
  100% {
    bottom: 100%;
  }
}
/* slideOut **************************/
/*slideOutL*/
.slideOutL {
  position: relative;
  overflow: hidden;
}

.slideOutL::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 100%;
  z-index: 1;
}

.slideOutL--move::after {
  animation: slideOutL 1.5s ease-in-out forwards;
}

@keyframes slideOutL {
  0% {
    right: 100%;
  }
  70% {
    right: 0;
  }
  100% {
    right: 0;
  }
}
/*slideOutR*/
.slideOutR {
  position: relative;
  overflow: hidden;
}

.slideOutR::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 100%;
  z-index: 1;
}

.slideOutR--move::after {
  animation: slideOutR 1.5s ease-in-out forwards;
}

@keyframes slideOutR {
  0% {
    left: 100%;
  }
  70% {
    left: 0;
  }
  100% {
    left: 0;
  }
}
/*slideOutT*/
.slideOutT {
  position: relative;
  overflow: hidden;
}

.slideOutT::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 100%;
  left: 0;
  z-index: 1;
}

.slideOutT--move::after {
  animation: slideOutT 1.5s ease-in-out forwards;
}

@keyframes slideOutT {
  0% {
    bottom: 100%;
  }
  70% {
    bottom: 0;
  }
  100% {
    bottom: 0;
  }
}
/*slideOutB*/
.slideOutB {
  position: relative;
  overflow: hidden;
}

.slideOutB::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 100%;
  left: 0;
  z-index: 1;
}

.slideOutB--move::after {
  animation: slideOutB 1.5s ease-in-out forwards;
}

@keyframes slideOutB {
  0% {
    top: 100%;
  }
  70% {
    top: 0;
  }
  100% {
    top: 0;
  }
}
/* liner **************************/
/*linerLeft*/
.linerLeft:before {
  content: "";
  position: absolute;
  left: 0;
}

.linerLeft:before {
  animation: linerLeft 1s ease-in-out forwards;
}

@keyframes linerLeft {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
/*linerRight*/
.linerRight:before {
  content: "";
  position: absolute;
  left: 100%;
  transform: translateX(-100%);
  animation: linerRight 1s ease-in-out forwards;
}

@keyframes linerRight {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
/*linerTop*/
.linerTop:before {
  content: "";
  position: absolute;
  top: 0;
  animation: linerTop 1s ease-in-out forwards;
}

@keyframes linerTop {
  0% {
    height: 0%;
  }
  100% {
    height: 100%;
  }
}
/*linerBottom*/
.linerBottom:before {
  content: "";
  position: absolute;
  top: 100%;
  transform: translateY(-100%);
  animation: linerBottom 1s ease-in-out forwards;
}

@keyframes linerBottom {
  0% {
    height: 0%;
  }
  100% {
    height: 100%;
  }
}
/* main-visual **************************/
.main-visual {
  position: relative;
  width: 100%;
  height: 140vh;
}

/* mv-copy */
.mv-copy {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  max-width: 650px;
  width: 90%;
}
.mv-copy__h1--wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border: 1px solid #FFFFFF;
  transform: rotate(45deg);
  width: 200px;
  height: 200px;
  margin: 0 auto 80px;
}
.mv-copy h1 {
  transform: rotate(-45deg);
  padding-left: 7px;
  font-size: 2.8125rem;
  color: #FFFFFF;
  line-height: 1.1em;
  letter-spacing: 0.2em;
  text-align: center;
}
.mv-copy h1 span {
  display: block;
  padding-right: 8px;
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  text-align: center;
}
.mv-copy h2 {
  color: #FFFFFF;
  text-align: center;
}

/* mv-scroll */
.mv-scroll {
  position: absolute;
  bottom: calc(40vh - 50px);
  width: 100%;
  margin: 0 auto;
  z-index: 1;
}
.mv-scroll .wrap {
  position: relative;
  width: 0;
  height: 100px;
  margin: 0 auto;
  box-sizing: border-box;
}
.mv-scroll .wrap .linerTop:before {
  border-right: solid 1px #FFFFFF;
  animation-delay: 1s;
  left: 0;
}
.mv-scroll p {
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  font-family: "Hina Mincho", "Noto Serif JP", "Yu Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", "serif";
  color: #FFFFFF;
  letter-spacing: 0.1em;
}

/* mv-txt */
.mv-txt {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 40vh;
}
.mv-txt::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 131, 180, 0.7);
  mix-blend-mode: multiply;
  z-index: 0;
}
.mv-txt .wrap {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 600px;
  width: 90%;
  height: 100%;
  margin: 0 auto;
}
.mv-txt p {
  font-size: 1.25rem;
  color: #FFFFFF;
  text-align: center;
}

/* mv */
.mv-slide {
  position: relative;
  width: 100%;
  height: 140vh;
  overflow: hidden;
  z-index: -1;
}
.mv-slide .slide-image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  animation: slider-mv 24s linear infinite;
}
.mv-slide .slide-image:nth-child(1) {
  background-image: url(../images/mv_01.jpg);
  animation-delay: -2s;
}
.mv-slide .slide-image:nth-child(2) {
  background-image: url(../images/mv_02.jpg);
  animation-delay: 6s;
}
.mv-slide .slide-image:nth-child(3) {
  background-image: url(../images/mv_03.jpg);
  animation-delay: 14s;
}

@keyframes slider-mv {
  0% {
    opacity: 0;
    transform: scale(1);
  }
  4.16% {
    opacity: 1;
  }
  33.33% {
    opacity: 1;
  }
  41.66% {
    opacity: 0;
    transform: scale(1.2);
  }
  100% {
    opacity: 0;
  }
}
@media screen and (max-width: 1440px) {
  /* mv */
  .mv-slide .slide-image:nth-child(1) {
    background-image: url(../images/mv_01-1440.jpg);
  }
  .mv-slide .slide-image:nth-child(2) {
    background-image: url(../images/mv_02-1440.jpg);
  }
  .mv-slide .slide-image:nth-child(3) {
    background-image: url(../images/mv_03-1440.jpg);
  }
}
@media screen and (max-width: 960px) {
  /* mv-txt */
  .mv-txt p {
    font-size: 1.1875rem;
  }
}
@media screen and (max-width: 768px) {
  /* mv-txt */
  .mv-txt p {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 480px) {
  /* mv-copy */
  .mv-copy__h1--wrap {
    width: 130px;
    height: 130px;
    margin-bottom: 50px;
  }
  .mv-copy h1 {
    font-size: 1.875rem;
  }
  .mv-copy h1 span {
    font-size: 1rem;
  }
  .mv-copy h2 {
    font-size: 1rem;
  }
  /* mv-scroll */
  .mv-scroll {
    bottom: calc(40vh - 25px);
  }
  .mv-scroll .wrap {
    height: 50px;
  }
  .mv-scroll p {
    top: -30px;
  }
}
/* top common **************************/
.top .top-common {
  width: 100%;
  padding-top: 12.5rem;
  margin: 0 auto;
}
.top section h2 {
  margin-bottom: 40px;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .top .top-common {
    padding-top: 7rem;
  }
}
@media screen and (max-width: 768px) {
  .top .top-common {
    padding-top: 4rem;
  }
}

/* top-overview **************************/
.top-overview {
  position: relative;
}

.top-overview__img img {
  width: 100%;
}
.top-overview__img--01 div, .top-overview__img--02 div {
  opacity: 0;
}
.top-overview__img--01 {
  position: relative;
  width: 100%;
}
.top-overview__img--01 h2 {
  position: absolute;
  left: 100px;
  bottom: 100px;
  z-index: 1;
  margin-bottom: 0 !important;
  font-size: 3.75rem;
  text-align: left !important;
  color: #FFFFFF;
  line-height: 6rem;
}
.top-overview__img--01 .effectF {
  max-width: 1520px;
  width: 79%;
}
.top-overview__img--02 {
  position: absolute;
  max-width: 747px;
  width: 39%;
  top: 45%;
  right: 100px;
}

.top-overview__txt {
  max-width: 1280px;
  width: 90%;
  margin: 4rem auto 0;
}
.top-overview__txt h3 {
  font-family: "Hina Mincho", "Noto Serif JP", "Yu Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", "serif";
  font-size: 2.5rem;
  color: #0083B4;
}
.top-overview__txt .wrap {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 6rem;
  margin-top: 2rem;
}
.top-overview__txt .wrap p {
  max-width: 450px;
  font-size: 1.25rem;
  font-weight: 600;
}
.top-overview__txt .wrap .btn {
  margin-left: 0 !important;
}

@media screen and (max-width: 1440px) {
  .top-overview__img--01 h2 {
    font-size: 3.125rem;
    line-height: 5rem;
  }
  .top-overview__img--02 {
    top: 35%;
  }
}
@media screen and (max-width: 1280px) {
  .top-overview__img--01 h2 {
    left: 50px;
    bottom: 50px;
  }
  .top-overview__img--02 {
    top: 40%;
    right: 50px;
  }
  .top-overview__txt {
    margin-top: 2.5rem;
  }
  .top-overview__txt .wrap {
    gap: 2rem;
    margin-top: 1rem;
  }
}
@media screen and (max-width: 1024px) {
  .top-overview__img--01 h2 {
    font-size: 2.8125rem;
    line-height: 4.5rem;
  }
}
@media screen and (max-width: 960px) {
  .top-overview__img--01 {
    position: inherit;
    width: 90%;
    margin: 0 auto;
  }
  .top-overview__img--01 h2 {
    font-size: 2.5rem;
    text-align: center !important;
    position: inherit;
    margin-bottom: 30px !important;
    color: #0083B4;
  }
  .top-overview__img--02 {
    top: 42%;
    right: 5%;
  }
  .top-overview__txt {
    margin-top: 4rem;
  }
  .top-overview__txt h3 {
    font-size: 1.875rem;
    text-align: center;
  }
  .top-overview__txt .wrap {
    display: block;
    max-width: 100%;
  }
  .top-overview__txt .wrap p {
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
    font-size: 1.1875rem;
  }
  .top-overview__txt .wrap .btn {
    margin: 2rem auto 0 !important;
  }
}
@media screen and (max-width: 768px) {
  .top-overview__img--01 h2 {
    font-size: 1.875rem;
    line-height: 3rem;
  }
  .top-overview__img--02 {
    top: 35%;
  }
  .top-overview__txt h3 {
    font-size: 1.5625rem;
  }
  .top-overview__txt .wrap p {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 480px) {
  .top-overview__img--01 h2 {
    font-size: 1.5625rem;
    line-height: 2.5rem;
  }
  .top-overview__img--02 {
    top: 40%;
  }
  .top-overview__txt {
    margin-top: 2.5rem;
  }
  .top-overview__txt h3 {
    font-size: 1.25rem;
  }
  .top-overview__txt .wrap p {
    font-size: 0.875rem;
  }
}
/* top-service **************************/
.top-service__img {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-service__img a {
  position: relative;
  width: 50%;
  height: 800px;
}
.top-service__img a:hover {
  text-decoration: none;
  opacity: 0.7;
}
.top-service__img a p {
  position: absolute;
  font-size: 1.5625rem;
  font-family: "Hina Mincho", "Noto Serif JP", "Yu Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", "serif";
  color: #FFFFFF;
  bottom: 20px;
  right: 40px;
}
.top-service__img--boring {
  background: url(../images/top-boring.jpg);
  background-size: cover;
}
.top-service__img--anchor {
  background: url(../images/top-anchor.jpg);
  background-size: cover;
}
.top-service__txt {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  max-width: 960px;
  width: 90%;
  margin: 50px auto 0;
}
.top-service__txt p {
  font-size: 1.25rem;
  font-weight: 600;
}
@media screen and (max-width: 1440px) {
  .top-service__img a {
    height: 600px;
  }
}
@media screen and (max-width: 1024px) {
  .top-service__img a {
    height: 500px;
  }
}
@media screen and (max-width: 960px) {
  .top-service__img a {
    height: 400px;
  }
  .top-service__img a p {
    font-size: 1.25rem;
    bottom: 10px;
    right: 20px;
  }
}
.top-service__txt {
  margin-top: 40px;
}
.top-service__txt p {
  font-size: 1.1875rem;
}
@media screen and (max-width: 768px) {
  .top-service__img {
    display: block;
  }
  .top-service__img a {
    display: block;
    width: 100%;
    height: 400px;
  }
  .top-service__img a p {
    font-size: 1.125rem;
    bottom: 20px;
    right: 40px;
  }
  .top-service__img--boring {
    background-position: center;
  }
  .top-service__img--anchor {
    background-position: center;
  }
  .top-service__txt {
    display: block;
    margin-top: 30px;
  }
  .top-service__txt p {
    font-size: 1.125rem;
  }
  .top-service__txt .btn {
    margin-top: 30px;
  }
}
@media screen and (max-width: 480px) {
  .top-service__img a {
    height: 250px;
  }
  .top-service__img a p {
    font-size: 1rem;
    bottom: 10px;
    right: 20px;
  }
}

/* top-recruit **************************/
.top-recruit {
  position: relative;
  background: #EDEFF8;
  padding: 0 100px 100px 100px;
  box-sizing: border-box;
}
.top-recruit .wrap {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 100px;
}
.top-recruit .wrap::before {
  position: absolute;
  content: "";
  background: #FFFFFF;
  width: 100%;
  height: 30%;
  top: -1px;
}
.top-recruit__img, .top-recruit__txt {
  position: relative;
  z-index: 1;
}
.top-recruit__img {
  display: block;
  margin: 0 auto;
  text-align: center;
  opacity: 0;
}
.top-recruit__img img {
  max-width: 850px;
  width: 100%;
}
.top-recruit__txt {
  max-width: 590px;
  margin: 19% auto 0;
}
.top-recruit__txt p, .top-recruit__txt h2 {
  color: #0083B4;
  text-align: left !important;
}
.top-recruit__txt h2 {
  font-size: 2.8125rem;
}
.top-recruit__txt p {
  margin-bottom: 5rem;
  font-size: 1.25rem;
  font-weight: 600;
}
@media screen and (max-width: 1600px) {
  .top-recruit__txt {
    max-width: 500px;
  }
}
@media screen and (max-width: 1440px) {
  .top-recruit {
    padding: 0 70px 70px 70px;
  }
  .top-recruit .wrap {
    gap: 70px;
  }
  .top-recruit__img img {
    width: 600px;
  }
  .top-recruit__txt {
    margin-top: 12%;
  }
}
@media screen and (max-width: 1280px) {
  .top-recruit__img img {
    width: 550px;
  }
  .top-recruit__txt {
    margin-top: 20%;
  }
  .top-recruit__txt h2 {
    font-size: 2.5rem;
    line-height: 3.5rem;
  }
  .top-recruit__txt p {
    font-size: 1.125rem;
    margin-bottom: 3rem;
  }
}
@media screen and (max-width: 1024px) {
  .top-recruit__img img {
    width: 450px;
  }
  .top-recruit__txt h2 {
    font-size: 2.1875rem;
  }
  .top-recruit__txt p {
    font-size: 1rem;
  }
}
@media screen and (max-width: 960px) {
  .top-recruit .wrap {
    gap: 50px;
  }
  .top-recruit__img img {
    width: 350px;
  }
  .top-recruit__txt h2 {
    font-size: 1.5625rem;
    line-height: 2.5rem;
  }
  .top-recruit__txt p {
    font-size: 0.9375rem;
  }
}
@media screen and (max-width: 768px) {
  .top-recruit {
    padding: 0;
  }
  .top-recruit .wrap {
    display: block;
    margin: 0 auto;
  }
  .top-recruit .wrap::before {
    height: 20%;
  }
  .top-recruit__img {
    padding: 0 30px;
  }
  .top-recruit__img img {
    max-width: 350px;
    width: 100%;
  }
  .top-recruit__txt {
    max-width: 450px;
    width: 100%;
    margin-top: 30px;
    padding: 0 30px 4rem 30px;
  }
}

/* top-contact **************************/
.top-contact {
  width: 90% !important;
  margin-bottom: 8.5rem !important;
}
.top-contact p {
  max-width: 550px;
  margin: 0 auto 3rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: #0083B4;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .top-contact {
    margin-bottom: 6rem !important;
  }
  .top-contact p {
    margin-bottom: 30px;
    font-size: 1.1875rem;
  }
}
@media screen and (max-width: 768px) {
  .top-contact {
    margin-bottom: 4rem !important;
  }
  .top-contact p {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 480px) {
  .top-contact p {
    font-size: 1rem;
  }
}

/* company **************************/
.company dl {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
}
.company dt, .company dd {
  margin-bottom: 2.5rem;
}
.company dt {
  border-left: 5px solid #0083B4;
  padding: 5px 0 5px 40px;
  width: 171px;
  font-size: 1.125rem;
  font-weight: 600;
  color: #0083B4;
}
.company dd {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 5px;
  width: calc(100% - 171px);
}
.company dd hr {
  display: inline-block;
  width: 50px;
  height: 1px;
  margin: 13px 50px 0;
  border: none;
  background: #b5b5b5;
}
.company dd p, .company dd ul {
  width: calc(100% - 150px);
  display: inline-block;
  font-size: 1.125rem;
  font-weight: 600;
}
.company dd ul {
  list-style: disc;
  margin-left: 20px;
}
.company dd .att {
  font-size: 0.875rem;
}
@media screen and (max-width: 960px) {
  .company dt, .company dd {
    margin-bottom: 15px;
  }
  .company dt {
    font-size: 1.0625rem;
    padding-left: 30px;
    width: 151px;
  }
  .company dd {
    width: calc(100% - 151px);
    margin-bottom: 40px;
  }
  .company dd hr {
    margin: 13px 30px 0;
  }
  .company dd p, .company dd ul {
    width: calc(100% - 110px);
    font-size: 1.0625rem;
  }
  .company dd .att {
    font-size: 0.8125rem;
  }
}
@media screen and (max-width: 768px) {
  .company dl {
    display: block;
  }
  .company dt {
    width: 100%;
    padding-left: 15px;
    font-size: 1rem;
  }
  .company dd {
    width: 100%;
  }
  .company dd hr {
    margin-left: 0;
    margin-right: 20px;
  }
  .company dd p, .company dd ul {
    width: calc(100% - 70px);
    font-size: 1rem;
  }
  .company dd .att {
    font-size: 0.75rem;
  }
}

/* business-overview **************************/
.business-overview h2 {
  text-align: center;
}
.business-overview p {
  max-width: 1000px;
  width: 90%;
  margin: 3rem auto 3.5rem;
  font-size: 1.25rem;
  font-weight: 600;
}
@media screen and (max-width: 960px) {
  .business-overview p {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 768px) {
  .business-overview p {
    font-size: 1rem;
  }
}

/* business-service **************************/
.business-service h2 {
  text-align: center;
}
.business-service dl {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 4rem;
}
.business-service dl dt {
  width: 380px;
  font-size: 1.4375rem;
  font-weight: 600;
  color: #0083B4;
  text-align: center;
}
.business-service dl dd {
  max-width: 900px;
  width: calc(100% - 380px);
}
.business-service dl dd p, .business-service dl dd ol {
  font-weight: 600;
}
.business-service dl dd ol {
  margin: 20px auto;
  padding-left: 10px;
}
.business-service dl dd ol li {
  list-style: none;
}

/* slide */
.business-service__slide .slick-arrow::before, .business-service__slide .slick-arrow::after {
  content: "" !important;
}
.business-service__slide .slick-next, .business-service__slide .slick-prev {
  display: inline-block;
  vertical-align: middle;
  transition: all 0.3s;
  z-index: 1;
}
.business-service__slide .slick-next {
  right: 20px;
}
.business-service__slide .slick-next::after {
  border-style: solid;
  border-width: 0 1px 1px 0;
  content: "";
  display: inline-block;
  position: absolute;
  height: 20px;
  width: 20px;
  border-color: #FFFFFF;
  top: calc(50% - 20px / 2);
  transform: rotate(-45deg);
  right: 0;
}
.business-service__slide .slick-next:hover {
  right: 15px;
}
.business-service__slide .slick-prev {
  left: 20px;
}
.business-service__slide .slick-prev::after {
  border-style: solid;
  border-width: 0 1px 1px 0;
  content: "";
  display: inline-block;
  position: absolute;
  height: 20px;
  width: 20px;
  border-color: #FFFFFF;
  top: calc(50% - 20px / 2);
  transform: rotate(135deg);
  left: 0;
}
.business-service__slide .slick-prev:hover {
  left: 15px;
}
.business-service__slide .slick-dots {
  z-index: 1;
  margin: 20px auto;
  text-align: center;
}
.business-service__slide .slick-dots li {
  display: inline-block;
  margin: 0 20px;
}
.business-service__slide .slick-dots button {
  padding: 0;
  color: transparent;
  outline: none;
  width: 50px;
  border: unset;
  height: 5px;
  display: block;
  background: #fff;
  cursor: pointer;
}
.business-service__slide .slick-dots button::before {
  content: "" !important;
}
.business-service__slide .slick-dots .slick-active button {
  background: #0083B4;
}

@media screen and (max-width: 960px) {
  .business-service dl {
    margin-bottom: 3rem;
  }
  .business-service dl dt {
    width: 300px;
    font-size: 1.25rem;
  }
  .business-service dl dd {
    max-width: 900px;
    width: calc(100% - 300px);
  }
  .business-service dl dd ol {
    font-size: 0.9375rem;
  }
}
@media screen and (max-width: 768px) {
  .business-service dl {
    margin-bottom: 2rem;
    display: block;
  }
  .business-service dl dt {
    width: 100%;
    margin-bottom: 10px;
    font-size: 1.125rem;
    text-align: left;
  }
  .business-service dl dd {
    width: 100%;
  }
  .business-service dl dd ol {
    font-size: 0.875rem;
  }
  .business-service__slide .slick-arrow {
    top: 50% !important;
  }
  .business-service__slide .slick-next {
    right: 10px;
  }
  .business-service__slide .slick-next::after {
    border-style: solid;
    border-width: 0 1px 1px 0;
    content: "";
    display: inline-block;
    position: absolute;
    height: 15px;
    width: 15px;
    border-color: #FFFFFF;
    top: calc(50% - 15px / 2);
    transform: rotate(-45deg);
  }
  .business-service__slide .slick-next:hover {
    right: 10px;
  }
  .business-service__slide .slick-prev {
    left: 10px;
  }
  .business-service__slide .slick-prev::after {
    border-style: solid;
    border-width: 0 1px 1px 0;
    content: "";
    display: inline-block;
    position: absolute;
    height: 15px;
    width: 15px;
    border-color: #FFFFFF;
    top: calc(50% - 15px / 2);
    transform: rotate(135deg);
  }
  .business-service__slide .slick-prev:hover {
    left: 10px;
  }
}
/* recruit-mv **************************/
.recruit-mv {
  position: relative;
  width: 100%;
  height: 900px;
  margin-bottom: 9rem;
  background: url(../images/mv-recruit.jpg) no-repeat center;
  background-size: cover;
}
.recruit-mv h2 {
  position: absolute;
  left: 9rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 3.75rem;
  line-height: 2em;
}
@media screen and (max-width: 1440px) {
  .recruit-mv {
    background: url(../images/mv-recruit-1440.jpg) no-repeat center;
    background-size: cover;
  }
  .recruit-mv h2 {
    font-size: 3.125rem;
  }
}
@media screen and (max-width: 1024px) {
  .recruit-mv h2 {
    font-size: 2.8125rem;
  }
}
@media screen and (max-width: 960px) {
  .recruit-mv {
    height: 90vh;
    margin-bottom: 7rem;
  }
  .recruit-mv h2 {
    left: 5rem;
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 768px) {
  .recruit-mv {
    height: 50vh;
    margin-bottom: 4rem;
  }
  .recruit-mv h2 {
    width: calc(100% - 60px);
    left: 30px;
    font-size: 2.1875rem;
    line-height: 1.6em;
  }
}
@media screen and (max-width: 480px) {
  .recruit-mv h2 {
    font-size: 1.875rem;
    line-height: 1.5em;
  }
}

/* recruit-subtitle **************************/
.recruit-subtitle {
  width: 90%;
  margin: 0 auto 9rem;
}
.recruit-subtitle h2 {
  font-size: 2.1875rem;
  font-family: "游ゴシック", "Noto Sans JP", "Yu Gothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic Pro", Verdana, Geneva, Tahoma, sans-serif;
  font-weight: 600;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .recruit-subtitle {
    margin-bottom: 6rem;
  }
  .recruit-subtitle h2 {
    font-size: 1.875rem;
  }
}
@media screen and (max-width: 768px) {
  .recruit-subtitle {
    margin-bottom: 4rem;
  }
  .recruit-subtitle h2 {
    font-size: 1.5625rem;
  }
}
@media screen and (max-width: 480px) {
  .recruit-subtitle h2 {
    font-size: 1.25rem;
  }
}

/* recruit-overview **************************/
.recruit-overview dl {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 6rem;
  max-width: 1060px;
}
.recruit-overview dt {
  margin: 0 auto;
}
.recruit-overview dt .wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: #0083B4;
  transform: rotate(45deg);
  width: 162px;
  height: 162px;
}
.recruit-overview dt P {
  transform: rotate(-45deg);
  font-size: 2.1875rem;
  line-height: 1.2em;
  letter-spacing: 0.2rem;
  color: #FFFFFF;
  font-family: "Hina Mincho", "Noto Serif JP", "Yu Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", "serif";
  text-align: center;
}
.recruit-overview dd {
  max-width: 730px;
}
.recruit-overview dd p {
  font-weight: 600;
}
.recruit-overview__business {
  margin-top: 6rem;
  margin-bottom: 8rem;
}
@media screen and (max-width: 1184px) {
  .recruit-overview dt {
    padding-left: 30px;
  }
}
@media screen and (max-width: 960px) {
  .recruit-overview__business {
    margin-top: 4rem;
  }
  .recruit-overview dl {
    gap: 4rem;
  }
  .recruit-overview dt .wrap {
    width: 130px;
    height: 130px;
  }
  .recruit-overview dt p {
    font-size: 1.875rem;
  }
}
@media screen and (max-width: 768px) {
  .recruit-overview dl {
    display: block;
    margin-bottom: 2.5rem;
  }
  .recruit-overview__business {
    margin-top: 1rem;
  }
  .recruit-overview__benefits {
    margin-bottom: 0 !important;
  }
  .recruit-overview dt {
    padding: 30px 0 60px;
  }
  .recruit-overview dt .wrap {
    width: 100px;
    height: 100px;
    margin: 0 auto;
  }
  .recruit-overview dt p {
    font-size: 1.5625rem;
  }
}

/* recruit-interview **************************/
.recruit-interview__list {
  display: flex;
  justify-content: flex-start;
  align-items: normal;
  flex-wrap: wrap;
  gap: 40px;
  margin: 0 auto;
}
.recruit-interview__list li {
  width: 290px;
  height: 290px;
}
.recruit-interview__list li a {
  display: block;
  border: 3px solid #6AB0C9;
  border-radius: 10px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  text-align: center;
  padding: 20px;
  box-sizing: border-box;
}
.recruit-interview__list li a:hover {
  text-decoration: none;
  opacity: 0.5;
}
.recruit-interview__list li a img {
  max-width: 120px;
}
.recruit-interview__list li a h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #0083B4;
}
.recruit-interview__list li a h3 span {
  font-size: 80%;
}
.recruit-interview__list li a p {
  font-weight: 600;
  text-align: center;
}
.recruit-interview__list li a p.voice-btn {
  background: #0083B4;
  border-radius: 15px;
  max-width: 180px;
  height: 30px;
  margin: 15px auto 0;
  color: #FFFFFF;
}
.recruit-interview .voice__detail {
  width: 100%;
  padding: 0 20px 20px 20px;
}
.recruit-interview .voice__detail__title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
}
.recruit-interview .voice__detail__title img {
  max-width: 150px;
}
.recruit-interview .voice__detail__title p {
  font-weight: 600;
}
.recruit-interview .voice__detail__title p.name {
  font-size: 1.25rem;
  color: #0083B4;
}
.recruit-interview .voice__detail__title p.name span {
  font-size: 80%;
}
.recruit-interview .voice__detail__txt {
  display: grid;
  justify-content: space-between;
  align-items: normal;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  margin-top: 50px;
}
.recruit-interview .voice__detail__txt dl {
  max-width: 515px;
}
.recruit-interview .voice__detail__txt dl dt {
  border-left: 3px solid #0083B4;
  padding-left: 10px;
  font-size: 1rem;
  color: #0083B4;
  font-weight: 600;
  letter-spacing: 0em;
}
.recruit-interview .voice__detail__txt dl dd {
  padding-top: 10px;
}
@media screen and (max-width: 1280px) {
  .recruit-interview__list li {
    width: 250px;
    height: 250px;
  }
  .recruit-interview__list li a img {
    max-width: 110px;
  }
  .recruit-interview__list li a h3 {
    font-size: 1.125rem;
  }
  .recruit-interview__list li a p.voice-btn {
    margin: 5px auto 0;
  }
}
@media screen and (max-width: 960px) {
  .recruit-interview__list {
    gap: 30px;
  }
  .recruit-interview__list li a h3 {
    font-size: 1rem;
  }
  .recruit-interview .voice__detail__title {
    gap: 40px;
  }
  .recruit-interview .voice__detail__title p.name {
    font-size: 1.1875rem;
  }
  .recruit-interview .voice__detail__txt {
    gap: 40px;
    margin-top: 40px;
  }
  .recruit-interview .voice__detail__txt dl dt {
    font-size: 0.9375rem;
  }
  .recruit-interview .voice__detail__txt dl dd {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 768px) {
  .recruit-interview__list {
    gap: 20px;
  }
  .recruit-interview__list li {
    width: 47%;
    height: auto;
  }
  .recruit-interview__list li a img {
    max-width: 100px;
  }
  .recruit-interview__list li a p.voice-btn {
    font-size: 12px;
    border-radius: 15px;
    max-width: 150px;
    height: 20px;
  }
  .recruit-interview .voice__detail__title {
    gap: 30px;
  }
  .recruit-interview .voice__detail__title img {
    max-width: 120px;
  }
  .recruit-interview .voice__detail__title p.name {
    font-size: 1.125rem;
  }
  .recruit-interview .voice__detail__txt {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
    margin-top: 30px;
  }
  .recruit-interview .voice__detail__txt dl {
    max-width: 100%;
  }
  .recruit-interview .voice__detail__txt dl dt {
    font-size: 1rem;
  }
  .recruit-interview .voice__detail__txt dl dd {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 480px) {
  .recruit-interview__list li {
    width: 100%;
  }
  .recruit-interview .voice__detail__title {
    display: block;
    margin: 0 auto;
    text-align: center;
  }
  .recruit-interview .voice__detail__title img {
    max-width: 100px;
  }
  .recruit-interview .voice__detail__title div {
    width: 100%;
  }
  .recruit-interview .voice__detail__title div p {
    text-align: center;
  }
  .recruit-interview .voice__detail__title div p.name {
    font-size: 1rem;
  }
  .recruit-interview .voice__detail__txt {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
    margin-top: 30px;
  }
  .recruit-interview .voice__detail__txt dl {
    max-width: 100%;
  }
  .recruit-interview .voice__detail__txt dl dt {
    font-size: 1rem;
  }
  .recruit-interview .voice__detail__txt dl dd {
    font-size: 0.875rem;
  }
}

/* recruit-detail **************************/
.recruit-detail table {
  max-width: 1000px;
}
.recruit-detail tr {
  border: 1px solid #6AB0C9;
}
.recruit-detail th, .recruit-detail td {
  padding: 20px 30px;
  box-sizing: border-box;
  font-weight: 600;
}
.recruit-detail th {
  background: #EDEFF8;
  border-right: 1px solid #6AB0C9;
  width: 200px;
  color: #0083B4;
}
.recruit-detail ul {
  list-style: disc;
  margin-left: 20px;
  font-size: 1rem;
  line-height: 2em;
}
.recruit-detail ul.att-list {
  list-style: none;
  margin: 10px auto 0;
  font-size: 0.875rem;
}
@media screen and (max-width: 960px) {
  .recruit-detail th, .recruit-detail td {
    display: block;
    width: 100%;
    font-size: 0.9375rem;
  }
  .recruit-detail th {
    padding: 10px 20px;
    border-right: none;
    border-bottom: 1px solid #6AB0C9;
  }
  .recruit-detail td {
    padding: 20px;
  }
  .recruit-detail ul {
    font-size: 0.9375rem;
  }
  .recruit-detail ul.att-list {
    font-size: 0.8125rem;
  }
}
@media screen and (max-width: 768px) {
  .recruit-detail th, .recruit-detail td {
    font-size: 0.875rem;
  }
  .recruit-detail ul {
    font-size: 0.875rem;
  }
  .recruit-detail ul.att-list {
    margin-top: 5px;
    font-size: 0.75rem;
  }
}

/* contact **************************/
.contact {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 150px;
}
.contact .contact-mail, .contact .contact-tel {
  width: 50%;
}

/* contact-mail/contact-tel h2 */
.contact-mail h2, .contact-tel h2 {
  position: relative;
  margin-bottom: 5rem;
  padding-left: 70px;
  line-height: 1.5em;
}
.contact-mail h2::before, .contact-tel h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 60px;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}

.contact-mail h2::before {
  background: url(../images/icon-contact-mail.svg) no-repeat;
  background-size: 100%;
}

.contact-tel h2::before {
  background: url(../images/icon-contact-tel.svg) no-repeat;
  background-size: 100%;
}

/* contact-mail */
.contact-mail p.att {
  margin-bottom: 30px;
  color: #0083B4;
  font-weight: 600;
}
.contact-mail p.att span {
  color: #E30551;
}
.contact-mail p.att_02 {
  margin-top: 30px;
  font-weight: bold;
}

/* contact-tel */
.contact-tel a {
  font-size: 3.125rem;
  line-height: 0.5em;
  font-family: "Hina Mincho", "Noto Serif JP", "Yu Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", "serif";
  color: #0083B4;
}
.contact-tel a:hover {
  text-decoration: none;
}
.contact-tel p {
  margin-top: 20px;
  color: #0083B4;
  font-weight: bold;
}

@media screen and (max-width: 1280px) {
  .contact {
    gap: 100px;
  }
  .contact-mail h2, .contact-tel h2 {
    padding-left: 60px;
    font-size: 1.875rem;
  }
  .contact-mail h2::before, .contact-tel h2::before {
    width: 50px;
    height: 50px;
  }
}
@media screen and (max-width: 1024px) {
  .contact {
    gap: 50px;
  }
}
@media screen and (max-width: 960px) {
  .contact {
    display: block;
  }
  .contact .contact-mail, .contact .contact-tel {
    width: 100%;
  }
  .contact-mail, .contact-tel {
    margin-bottom: 7rem;
  }
  .contact-tel a {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 768px) {
  .contact-mail h2, .contact-tel h2 {
    font-size: 1.5625rem;
    padding-left: 50px;
  }
  .contact-mail h2::before, .contact-tel h2::before {
    width: 40px;
    height: 40px;
  }
  .contact-tel a {
    font-size: 1.875rem;
  }
}
/* mailcomp **************************/
/* mailcomp-title */
.mailcomp-title {
  text-align: center;
  width: 90%;
  margin-bottom: 30px !important;
}
.mailcomp-title h1 {
  font-size: 3.125rem;
}
.mailcomp-title p {
  max-width: 100%;
  font-family: "Hina Mincho", "Noto Serif JP", "Yu Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", "serif";
  text-align: center;
}
.mailcomp-title::after {
  content: "";
  display: block;
  background: #0083B4;
  width: 100px;
  height: 3px;
  margin: 30px auto;
}

/* mailcomp */
.mailcomp {
  width: 90%;
}
.mailcomp p {
  text-align: center;
  font-weight: 600;
}
.mailcomp__box {
  background: #EDEFF8;
  max-width: 650px;
  width: 100%;
  margin: 20px auto 0;
  padding: 40px 50px;
}
.mailcomp__box h2, .mailcomp__box p, .mailcomp__box li {
  font-weight: 600;
}
.mailcomp__box h2 {
  margin-bottom: 30px;
  font-size: 1.875rem;
  font-family: "游ゴシック", "Noto Sans JP", "Yu Gothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic Pro", Verdana, Geneva, Tahoma, sans-serif;
  line-height: 1.2em;
  text-align: center;
}
.mailcomp__box p {
  text-align: left;
}
.mailcomp__box ul {
  list-style: disc;
  margin: 20px 0 20px 40px;
}

@media screen and (max-width: 960px) {
  .mailcomp-title h1 {
    font-size: 2.5rem;
  }
  .mailcomp__box {
    padding: 30px 40px;
  }
  .mailcomp__box h2 {
    margin-bottom: 30px;
    font-size: 1.5625rem;
  }
  .mailcomp__box ul {
    font-size: 0.9375rem;
  }
}
@media screen and (max-width: 768px) {
  .mailcomp-title h1 {
    font-size: 1.875rem;
  }
  .mailcomp__box {
    padding: 25px 30px;
  }
  .mailcomp__box h2 {
    margin-bottom: 20px;
    font-size: 1.25rem;
  }
  .mailcomp__box ul {
    font-size: 0.875rem;
  }
}/*# sourceMappingURL=common_style.css.map */