@charset "UTF-8";

/* CSS Document */
html {
  font-size: 62.5%;
  /* 16px * 62.5% = 10px */
  width: 100%;
  scroll-behavior: smooth;
}

body {
  color: #333333;
  /* RGB */
  background-color: #ffffff;
  font-family: "zen-maru-gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.6rem;
  letter-spacing: 0.04rem;
  line-height: 2;
  text-align: center;
}

.mincho {
  font-family: "zen-old-mincho", sans-serif;
  font-weight: 400;
}

h2,
h3,
h4 {
  font-weight: 400
}

a {
  color: #333333;
}

a:hover {
  opacity: 0.7;
}

.clarity a:hover {
  opacity: 1;
}

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

img {
  width: 100%;
  display: block;
}

.pc_none {
  display: block;
}

.sp_none {
  display: none;
}

.is-hide {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.blue {
  color: #0b65b6;
}

.l_bl {
  color: #00a9ec;
}

.red {
  color: #ff0000;
}

.white {
  color: #ffffff;
}

.left {
  text-align: justify;
}

.ft_50 {
  font-size: 5.0rem;
}

.ft_30 {
  font-size: 3.0rem;
}

.ft_28 {
  font-size: 2.8rem;
}

.ft_18 {
  font-size: 1.8rem;
}

.bold {
  font-weight: 700;
}

.fadeInUpTrigger, .fadeInUpTrigger_once {
  opacity: 0;
}

header {
  height: 60px;
  padding: 0 2vw;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.8);
  width: 100%;
  z-index: 100;
}

.header_inner {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  width: 200px;
}

/* ham_menu */
.ham_btn {
  position: relative;
  cursor: pointer;
  width: 40px;
  height: 40px;
  z-index: 9999;
  margin: 0;
  z-index: 999;
}

.ham_btn span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 8px;
  height: 1px;
  background: #333333;
  width: 25px;
  top: 20px;
}

.ham_btn span:nth-of-type(1) {
  top: 13px;
}

.ham_btn span:nth-of-type(2) {
  top: 27px;
}

.ham_btn.active span:nth-of-type(1) {
  top: 16px;
  left: 4px;
  transform: translateY(6px) rotate(-45deg);
  width: 26px;
}

.ham_btn.active span:nth-of-type(2) {
  opacity: 0;
}

.ham_btn.active span:nth-of-type(3) {
  top: 28px;
  left: 4px;
  transform: translateY(-6px) rotate(45deg);
  width: 26px;
}

/* bottom_nav */
#sp-nav {
  position: fixed;
  bottom: 0;
  background-color: #0b65b6;
  display: flex;
  z-index: 100;
  width: 100%;
  justify-content: space-around;
}

#sp-nav>div {
  width: 15%;
  padding: 1%;
}

.nav_wrap {
  position: fixed;
  z-index: 100;
  top: 0;
  right: -120%;
  width: 100%;
  height: 100%;
  transition: all 0.6s;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background-color: #daf4ff;
  overflow-y: auto;
  padding: 60px;
}

.nav_wrap ul {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 40px;
}

.nav_wrap li {
  list-style: none;
  text-align: center;
  font-size: 1.6rem;
  line-height: 1;
  padding: 12px;
  margin-bottom: 8px;
  border-bottom: 1px solid #333333;
}

.nav_wrap li a {
  color: #333333;
  text-decoration: none;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.nav_wrap.show {
  right: 0;
}

.nav_wrap nav .sp_nav {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.nav_wrap nav .sp_nav li {
  border-bottom: 1px solid #ffffff;
}

.nav_wrap nav summary {
  color: #333333;
  padding: 10px
}

.nav_wrap nav summary::marker {
  color: #333333;
}

/* MV */
.MV {
  position: relative;
}

.MV_slide {
  margin-inline: auto;
  overflow: hidden;
}

.slide img {
  width: 100%;
}

@keyframes zoomUp {
  0% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

.MV_icon {
  width: 70%;
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
}

/* 共通 */
section {
  position: relative;
  padding-top: 80px;
}

.section_inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 0 6vw;
  position: relative;
  z-index: 5;
}

#top_01 {
  background-color: #daf4ff;
  overflow: hidden;
}

#top_01::before,
#top_01::after {
  content: "";
  width: 30vw;
  height: 30vw;
  background-image: url(../img/top_deco01@2x.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center bottom;
  position: absolute;
  top: -2vw;
  right: -2vw;
  z-index: 1;
}

#top_01::after {
  width: 50vw;
  height: 40vw;
  background-image: url(../img/top_deco02@2x.png);
  top: auto;
  bottom: 2vw;
  right: auto;
  left: 5vw;
  z-index: 1;
}

#top_01 .content .section_ttl {
  width: 120px;
  margin: 0 auto;
}

#top_01 .news_list_wrap {
  padding: 20px 0 40px;
  text-align: justify;
}

#top_01 .news_list_wrap li {
  border-bottom: 1px solid #707070;
  padding: 12px 0;
}

#top_01 .content:nth-of-type(2) .section_ttl {
  width: 200px;
}

/* 追加（ここから） */
#top_01 li.fadeInUpTrigger_once > a {
  display: grid;
  grid-template-columns: 80px 1fr;
  grid-template-rows: auto auto;
  column-gap: 20px;
  row-gap: 4px;
  align-items: start;
  text-decoration: none;
}

#top_01 li.fadeInUpTrigger_once .date {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
  white-space: nowrap;
}

#top_01 li.fadeInUpTrigger_once .ttl {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
  margin: 0;
}

#top_01 li.fadeInUpTrigger_once .content_body {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
  margin: 0;
}

#top_01 li.fadeInUpTrigger_once .ttl:empty {
  display: none;
}

#top_01 li.fadeInUpTrigger_once .ttl:empty + .content_body {
  grid-row: 1 / 2; /* タイトルが空の場合、日付と同じ高さに本文 */
}

@media screen and (max-width: 760px) {
#top_01 li.fadeInUpTrigger_once > a {
  display: block;
  grid-template-columns: 80px 1fr;
  grid-template-rows: auto auto;
  column-gap: 20px;
  row-gap: 4px;
  align-items: start;
  text-decoration: none;
}
}
/* 追加（ここまで） */

#top_01 .content:nth-of-type(2) .section_ttl {
  width: 200px;
}

.table_wrap {
  padding: 20px 0;
  max-width: 600px;
  margin: 0 auto;
}

.time-table {
  width: 100%;
  margin-bottom: 10px;
}

.biz-hour {
  width: 100%;
  border-collapse: collapse;
}

.biz-hour td,
.biz-hour th {
  text-align: center;
  line-height: 2.4;
  font-weight: 500;
}

.biz-hour th:first-of-type {
  width: 100px;
}

.biz-hour th {
  width: calc(100% / 7);
}

.biz-hour tr {
  border-bottom: 1px solid #0b65b6;
}

#top_02 {
  padding: 120px 0 160px;
}

#top_02::before {
  content: "";
  width: 100%;
  height: 100px;
  background-image: url(../img/arch.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center bottom;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) scaleY(-1);
}

#top_02 .bnr {
  width: 88%;
  margin: 0 auto;
}

.accordion-002 {
  padding: 0 6vw;
  margin-top: 40px;
}

.accordion-002 summary {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding: 1em 0;
  background-color: #daf4ff;
  margin: 0 auto;
  color: #2B2B2B;
  font-size: 5vw;
  cursor: pointer;
}

.accordion-002 summary::-webkit-details-marker {
  display: none;
}

.accordion-002 summary::after {
  content: "";
  position: absolute;
  transform: translateY(25%) rotate(225deg);
  /* 初期角度を変更 */
  width: 11px;
  height: 11px;
  margin-top: 2rem;
  border-top: 3px solid #00a9ec;
  /* 矢印の形状を変更 */
  border-left: 3px solid #00a9ec;
  /* 矢印の形状を変更 */
  transition: transform .3s;
  bottom: 10px;
}

.accordion-002[open] summary::after {
  transform: translateY(-25%) rotate(45deg);
  /* 開いたときの角度を変更 */
  bottom: 0;
}

.accordion-open {
  transform: translateY(-10px);
  opacity: 1;
  margin: 0;
  padding: 12vw 0;
  transition: transform .5s, opacity .5s;
}

.accordion-open[open] {
  transform: none;
  opacity: 1;
}

#top_02 .section_inner {
  padding: 30vw 6vw 40px;
}

#top_02 .section_inner::before {
  content: "";
  width: 40vw;
  height: 40vw;
  background-image: url(../img/top_deco03@2x.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center bottom;
  position: absolute;
  top: -2vw;
  right: 0vw;
  z-index: 1;
}

.text_wap {
  position: relative;
  z-index: 10;
}

.text_wap .lead {
  font-size: 5.4vw;
  line-height: 1.5;
  padding: 20px 0;
}

.btn {
  width: 90%;
  max-width: 360px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

#top_02::after {
  content: "";
  width: 50vw;
  height: 40vw;
  background-image: url(../img/top_deco04@2x.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center bottom;
  position: absolute;
  top: auto;
  bottom: 0;
  right: auto;
  left: 0;
  z-index: 1;
}

#top_03 {
  background-color: #daf4ff;
  padding-top: 120px;
}

#top_03::before {
  content: "";
  width: 100%;
  height: 70px;
  background-image: url(../img/arch.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 30% bottom;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

#top_03 h2 {
  font-size: 3.0rem;
  line-height: 1.5;
  padding-bottom: 40px;
}

#top_03 h2 span {
  display: block;
}

#top_03 .section_inner {
  padding: 60px 6vw;
}

#top_03 .section_inner::before {
  content: "";
  width: 30vw;
  height: 30vw;
  background-image: url(../img/top_deco05@2x.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center bottom;
  position: absolute;
  top: 20vw;
  right: 0;
  z-index: 1;
}

#top_03 .section_inner h3 {
  width: 130px;
  margin: 0 auto;
}

.more {
  width: 250px;
  margin: 40px auto;
}

#top_04 {
  padding-top: 60px;
  background-color: #daf4ff;
}

#top_04 .section_lead {
  position: relative;
}

#top_04 .section_lead p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  font-weight: 900;
  padding: 0 6vw;
  font-size: 5.0rem;
}

#top_04 h2 {
  font-size: 3.0rem;
  line-height: 1.5;
  padding: 40px 0 60px;
  font-weight: 700;
}

#top_04 h2 span {
  display: block;
  font-weight: 900;
}

#top_04 .item {
  padding: 20px 5%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#top_04 .item_icon {
  width: 90%;
  margin: 0 auto;
}

#top_04 h4 {
  font-size: 3.0rem;
  display: flex;
  flex-direction: column;
  line-height: 1.5;
  font-weight: 900;
}

#top_04 .item p {
  border-top: 1px solid #333333;
  padding-top: 20px;
}

#top_04 .item .more {
  margin: 20px auto;
}

#top_05 {
  padding-top: 0;
}

#top_slide {
  padding: 80px 0;
}

#top_slide .slide {
  margin-left: 20px;
  width: 70vw;
}

.recruit {
  padding: 0 6vw 30vw;
  overflow: hidden;
}

.recruit .content_inner {
  background-color: #daf4ff;
  border-radius: 8%;
  padding: 40px 6vw 42vw;
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
}

.recruit .content_inner p {
  padding: 20px 0;
}

.recruit .content_img {
  width: calc(100% - 1vw);
  position: absolute;
  bottom: -30vw;
}

.recruit .section_ttl {
  font-weight: 900
}

footer {
  position: relative;
  background-color: #71d7ff;
  padding: 40px 0;
}

footer::before {
  content: "";
  width: 100%;
  height: 70px;
  background-image: url(../img/arch2.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 30% bottom;
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
}

footer .section_inner {
  padding-bottom: 40px;
}

footer .content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 1.6rem;
}

footer .logo {
  width: 90%;
  margin: 0 auto;
}

footer .tel a {
  color: #333333;
  display: block;
  margin-bottom: 40px;
}

footer .tel p {
  position: relative;
  display: inline-block;
  font-size: 3.0rem;
}

footer .tel p::before {
  content: "";
  position: absolute;
  height: 30px;
  width: 30px;
  left: -15%;
  top: 50%;
  transform: translateY(-50%);
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../img/tel@2x.png);
  z-index: 5;
}

footer .access {
  display: inline-block;
  margin: 0 auto;
  padding-bottom: 20px;
}

footer .table_wrap {
  padding: 10px 10px 0;
  background-color: #ffffff;
  width: 100%;
}

.map {
  padding: 0;
}

.map iframe {
  display: block;
  width: 100%;
  height: 450px;
}

.footer_nav {
  background-color: #daf4ff;
  padding: 20px 6vw;
}

.footer_nav ul {
  text-align: left;
  width: 90%;
  margin: 0 auto;
}

.footer_nav ul li {
  padding: 8px 0;
}

.footer_nav ul li a {
  color: #0b65b6;
}

.cr {
  padding: 16px 0;
  background-color: #0b65b6;
  color: #ffffff;
  font-size: 1.6rem;
  text-align: center;
}

#go_top {
  width: 40px;
  position: fixed;
  bottom: 60px;
  right: 15px;
  z-index: 900;
}

@media screen and (max-width: 480px) {
  #top_03 h2 {
    font-size: 6vw;
  }

  #top_04 .section_lead p {
    font-size: 5.4vw;
  }

  #top_04 h4 {
    font-size: 5.4vw;
  }

  footer .content {
    font-size: 3.4vw;
  }

  footer .tel p {
    font-size: 6.6vw;
  }

  footer .tel p::before {
    height: 5.8vw;
    width: 5.8vw;
  }

  #top_04 h2 {
    font-size: 6vw;
  }
}

/* pcスタイル */
@media screen and (min-width: 760px) {}

/* pcスタイル */
@media screen and (min-width: 960px) {
  .sp_none {
    display: block;
  }

  .pc_none {
    display: none;
  }

  #sp-nav {
    display: none;
  }

  header {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    height: 100px;
  }

  .header_inner {
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
  }

  .header_inner .logo {
    width: 340px;
  }

  .header_right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-around;
    padding-right: 2vw;
    height: 100%;
    width: calc(100% - 360px);
    max-width: 700px;
    padding-bottom: 8px;
  }

  .header_right .tel a {
    color: #0b65b6;
    padding: 0 20px;
    height: 100px;
    justify-content: center;
    gap: 6px;
    font-size: 3.0rem;
    position: relative;
    line-height: 1.2;
  }

  .header_right .tel a::before {
    content: "";
    width: 30px;
    height: 30px;
    background-image: url(../img/tel_bl@2x.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center bottom;
    position: absolute;
    top: 50%;
    left: -20px;
    z-index: 1;
    transform: translateY(-60%);
  }

  .pc_nav {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
  }

  .nav_parent {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding-bottom: 0px;
  }

  .U_line {
    display: flex;
    justify-content: space-between;
    position: relative;
  }

  .U_line>a {
    width: 100%;
    color: #0b65b6;
    line-height: 1;
    position: relative;
    font-size: 1.8rem;
  }

  .U_line>a::after {
    content: "";
    width: 80%;
    height: 1px;
    background-color: #0b65b6;
    position: absolute;
    top: 24px;
    left: 10%;
    transition: all .3s;
    transform: scale(0, 1);
    transform-origin: left top;
  }

  .U_line>a:hover:after {
    transform: scale(1, 1);
  }

  .U_line a img {
    width: auto;
    width: 90px;
    margin: 0 auto;
  }

  .nav_child {
    position: absolute;
    left: 50%;
    top: 40px;
    transform: translate(-50%);
    z-index: 4;
    width: 137px;
    visibility: hidden;
    opacity: 0;
    transition: all .3s;
    display: flex;
    flex-direction: column;
  }

  .nav_child li {
    background: #00a9ec;
  }

  .has-child li a {
    display: block;
    padding: 6px 0;
    width: 100%;
    font-size: 1.5rem;
    height: 100%;
  }

  nav li.has-child:hover>ul,
  nav li.has-child ul li:hover>ul,
  nav li.has-child:active>ul,
  nav li.has-child ul li:active>ul {
    visibility: visible;
    opacity: 1;
  }

  /*ナビゲーションaタグの形状*/
  .nav_child li a {
    color: #333;
    border-bottom: solid 1px rgba(255, 255, 255, 0.6);
    width: 137px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
  }

  nav li.has-child ul li:last-child a {
    border-bottom: none;
  }

  nav li.has-child ul li a:hover,
  nav li.has-child ul li a:active {
    background: #0b65b6;
    opacity: 1;
  }

  .MV_icon {
    width: 30%;
    left: auto;
    right: 6vw;
    transform: translateX(0);
  }

  section {
    padding-top: 80px;
  }

  .section_inner {
    flex-direction: row;
    width: 90%;
    max-width: 1400px;
    padding: 0;
    margin: 0 auto;
    gap: 40px;
    justify-content: space-between;
  }

  .content {
    width: 100%;
  }

  /* #top_01 {
    padding: 140px 0 200px
  } */

  #top_01 .section_inner {
    gap: 20px;
  }

  #top_01 .content .section_ttl {
    margin-left: 0;
  }

  .news_list_wrap {
    width: 96%;
    margin: 40px auto;
  }

  .news_list_wrap li a {
    display: flex;
    gap: 40px;
  }

  #top_01 .table_wrap {
    width: 80%;
    font-size: 2rem;
    margin-top: 70px;
  }

  #top_01::before,
  #top_01::after {
    width: 20%;
    height: 20%;
    top: -10px;
    right: 4vw;
  }

  #top_01::after {
    width: 25%;
    height: 25%;
    top: auto;
    bottom: 2vw;
    right: auto;
    left: -5%;
    z-index: 1;
  }

  #top_02 {
    padding-top: 12vw;
  }

  #top_02::before {
    content: "";
    width: 100%;
    height: 9vw;
  }

  #top_02 .bnr {
    max-width: 990px;
    margin: 40px auto;
  }

  .accordion-002 {
    width: 90%;
    max-width: 1280px;
    margin: 80px auto;
    padding: 0;
  }

  .accordion-002 summary {
    padding: 20px 0;
    font-size: 3.0rem;
  }

  .accordion-open {
    padding: 80px;
  }

  #top_02 .section_inner {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 200px 0;
  }

  #top_02 .itemWrap {
    display: flex;
    justify-content: space-between;
    gap: 10%;
    flex-wrap: wrap;
  }

  #top_02 .item {
    width: calc(80% / 3);
    margin-bottom: 40px;
  }

  .text_wap {
    width: 50%;
  }

  .text_wap .lead {
    font-size: 2.8rem;
    padding: 40px 0;
  }

  #top_02 .section_inner::before {
    width: 25%;
    height: 25%;
    top: -7%;
  }

  #top_02::after {
    width: 18%;
    height: 18%;
    left: 5%;
    bottom: 5%;
  }

  #top_03 {
    padding-top: 12vw;
  }

  #top_03::before {
    height: 10vw;
  }

  #top_03 .section_inner {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto 0 auto;
    padding: 0;
    padding-bottom: 40px;
    align-items: center;
  }

  #top_03 .section_inner:nth-of-type(odd) {
    flex-direction: row-reverse;
  }

  #top_03 .section_inner .text_warp,
  #top_03 .section_inner .content_img {
    width: calc((100% - 40px)/ 2);
  }

  #top_03 .section_inner::before {
    width: 20%;
    height: 30%;
    top: 10%;
  }

  #top_03 .section_inner:nth-of-type(even)::before {
    left: -5%;
  }

  #top_04 .section_lead p {
    text-align: center;
    transform: translate(-50%, -80%);
    font-size: min(3vw, 5.0rem);
  }

  #top_04 .section_inner {
    flex-wrap: wrap;
    justify-content: center;
  }

  #top_04 .section_inner .item {
    width: calc((100% - 80px)/ 3);
  }

  #top_slide {
    padding: 120px 0;
  }

  #top_slide .slide {
    margin-left: 40px;
    width: 20vw;
  }

  .recruit {
    padding-bottom: 120px;
  }

  .recruit .content_inner {
    border-radius: 40px;
    padding: 40px 30px 40px 20px;
    display: flex;
    flex-direction: row;
    gap: 40px;
    position: relative;
    max-width: 1280px;
    margin: 80px auto;
  }
  .recruit .content_inner::before {
    content: "";
    width: 40%;
    height: 50%;
    background-image: url(../img/top_deco06@2x.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center bottom;
    position: absolute;
    bottom: -40%;
    right: -20%;
    z-index: -1;
    }
    
  .recruit .section_ttl .blue {
    font-weight: 900;
    font-size: 7.5rem;
  }

  .recruit .content_textWrap {
    width: 50%;
  }

  .recruit .content_textWrap p {
    width: 80%;
    margin: 0 auto;
    padding: 40px 0;
  }

  .recruit .content_img {
    position: static;
    width: 50%;
    margin-top: -5%;
  }

  footer {
    padding-top: 3%;
    padding-bottom: 0;
  }

  footer::before {
    top: -8vw;
    height: 10vw;
  }

  footer .content {
    width: 40%;
  }

  footer .content:nth-of-type(2) {
    width: 60%;
    max-width: 700px;
  }

  footer .table_wrap {
    font-size: 2.4rem;
    max-width: 700px;
  }

  .footer_nav ul {
    display: flex;
    justify-content: space-between;
    max-width: 830px;
  }

  #go_top {
    width: 60px;
    bottom: 40px;
    right: 20px;
  }
}
/********************************************
下層ページ
*******************************************/
.h2_ttl
{
    text-align: center;
    padding: max(14vw , 10rem) 0 max(8vw , 6rem);
    font-size: max(3vw , 3rem);
    color: #FFFFFF;
    background: url("../img/h2_ttl.png") no-repeat center / cover;
    font-weight: 700;
}
.sec01
{
    padding: 3% 0;
}
.wrap
{
    max-width: calc(1200px + 6%);
    padding: 3%;
    margin: 0 auto;
}
.h3_ttl
{
    font-size: max(2vw , 2rem);
    font-weight: 700;
    margin-bottom: 1%;
    padding-bottom: 1%;
    position: relative;
}
.h3_ttl::before
{
    content: "";
    height: 2px;
    width: 10rem;
    position: absolute;
    left: 50%;
    bottom: 0;
    background: #00a9ec;
    transform: translateX(-50%);
}

.flex
{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.flex-2
{
    width: 48%;
}
.flex-2 p
{
    text-align: left;
}
.h4_ttl
{
    font-size: max(1.6vw , 2rem);
    color: #00a9ec;
    margin-bottom: 5%;
    padding-bottom: 1rem;
    font-weight: 700;
    position: relative;
}
.h4_ttl::before
{
    content: "";
    height: 5px;
    width: 5rem;
    position: absolute;
    left: 50%;
    bottom: 0;
    background: #00a9ec;
    border-radius: 10px;
    transform: translateX(-50%)
}
.name
{
    text-align: right!important;
    font-weight: 700;
    margin-top: 3%;
    font-size: max(1.2vw , 1.8rem);
}
.career li
{
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px dashed #333333;
}
.career dl
{
    display: flex;
    justify-content: space-between;
    text-align: left;
}
.career dt
{
    width: 20%;
}
.career dd
{
    width: 78%;
}
.flow .item {
    padding: 35px 2%;
    background: #daf4ff;
    margin-bottom: 90px;
    position: relative;
    z-index: 1;
}
.flow .item::before {
    content: "▼";
    color: #0B65B6;
    font-size: 50px;
    position: absolute;
    bottom: -80px;
    right: 50%;
    transform: translateX(50%);
    z-index: 1;
}
.flow .item .ttl {
    display: flex;
    align-items: center;
    margin-bottom: 3%;
    border-bottom: none;
    font-size: max(1.4vw , 2rem);
}
.flow .item .ttl .number {
    font-size: max(3vw , 3rem);
    width: max(5vw , 5rem);
    color: #0B65B6;
    position: relative;
    z-index: 1;
    text-align: center;
    line-height: 1;
}
.flow .item .ttl .number::before {
    content: "STEP";
    font-size: 16px;
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}
.txt p {
    margin-bottom: 30px;
    line-height: 1.8;
    letter-spacing: 0.06em;
    font-size: max(0.9vw , 1.6rem);
    text-align: left;
}
.flow .item:last-child::before {
	display: none;
}
.re
{
    flex-direction: row-reverse;
}
.num li
{
    text-align: left;
    line-height: 3;
}

/*==================================================
スライダーのためのcss
===================================*/
.slider {/*横幅94%で左右に余白を持たせて中央寄せ*/
    width:94%;
    margin:0 auto;
}

.slider img {
    width:60vw;/*スライダー内の画像を60vwにしてレスポンシブ化*/
    height:auto;
}

.slider .slick-slide {
  transform: scale(0.8);/*左右の画像のサイズを80%に*/
  transition: all .5s;/*拡大や透過のアニメーションを0.5秒で行う*/
  opacity: 0.5;/*透過50%*/
}

.slider .slick-slide.slick-center{
  transform: scale(1);/*中央の画像のサイズだけ等倍に*/
  opacity: 1;/*透過なし*/
}


/*矢印の設定*/

/*戻る、次へ矢印の位置*/
.slick-prev, 
.slick-next {
    position: absolute;/*絶対配置にする*/
    top: 42%;
    cursor: pointer;/*マウスカーソルを指マークに*/
    outline: none;/*クリックをしたら出てくる枠線を消す*/
    border-top: 2px solid #666;/*矢印の色*/
    border-right: 2px solid #666;/*矢印の色*/
    height: 15px;
    width: 15px;
}

.slick-prev {/*戻る矢印の位置と形状*/
    left: -1.5%;
    transform: rotate(-135deg);
}
button {
  border: none;
}

.slick-next {/*次へ矢印の位置と形状*/
    right: -1.5%;
    transform: rotate(45deg);
}

/*ドットナビゲーションの設定*/

.slick-dots {
    text-align:center;
  margin:20px 0 0 0;
}

.slick-dots li {
    display:inline-block;
  margin:0 5px;
}

.slick-dots button {
    color: transparent;
    outline: none;
    width:8px;/*ドットボタンのサイズ*/
    height:8px;/*ドットボタンのサイズ*/
    display:block;
    border-radius:50%;
    background:#ccc;/*ドットボタンの色*/
}

.slick-dots .slick-active button{
    background:#00a9ec;/*ドットボタンの現在地表示の色*/
}
.flex-3
{
    width: 30%;
}
.sum
{
    font-size: max(1.2vw , 1.8rem);
    font-weight: 700;
    padding: 3% 0;
    margin-bottom: 3%;
    border-bottom: 1px solid #333333;
}
.flex-3 p + p
{
    text-align: left;
}
.sec01 .table_wrap {
  max-width: 1000px;
  margin: 0 auto;
    font-size: max(1.2vw , 1.8rem);
}
.sec01:last-child {
  margin-bottom: 8vw;
}
.table_recruit
{
    max-width: 900px;
    width: 100%;
    margin: 0 auto 3%;
}
.table_recruit th,.table_recruit td
{
    padding: 1rem 3rem;
    font-size: max(0.9vw , 1.6rem);
    text-align: left;
    border: 1px solid #CCCCCC;
}
.table_recruit th
{
    background: #71d7ff;
    font-weight: 700;
    vertical-align: middle;
}
.sub_ttl
{
    font-size: max(1vw , 1.8rem);
    font-weight: 700;
    margin: 1%;
    color: #0b65b6;
}
@media screen and (max-width: 760px) {
    .flex-2
{
    width: 100%;
}
    .flex-3
{
    width: 100%;
}
    .num li {
  text-align: left;
  line-height: 3;
  margin-left: 2rem;
}
}

/* single */
#top_01.single {
  padding: 0 !important;
}

.wrap_single {
  max-width: calc(1200px + 6%);
  padding: 3%;
  padding-top: 0;
  margin: 0 auto;
}

#top_01.single::after {
    content: none !important;
  }

  #top_01.single .news_list_wrap li {
  border-bottom: none !important;
}

#top_01.single .news_list_wrap {
    max-width: 700px;
    margin: 0 auto;
    padding-bottom: 0;
}

#top_01.single .news-detail__content-flex {
  font-family: "zen-old-mincho", sans-serif;
  font-weight: 400;
}

.news-detail__content-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 800px;
  margin: 5px auto;
  padding: 5px 10px;
  gap: 20px;
}
.news-detail__link {
  text-decoration: underline;
  color: #333;
  font-size: 16px;
  transition: color 0.3s ease;
}

.news-detail__link:hover {
  color: #666;
}

.news-detail__content-flex {
  margin-bottom: 150px;
}


  @media screen and (min-width: 761px) {
#top_01.single li.fadeInUpTrigger_once > a,
#top_01.single li.fadeInUpTrigger_once {
  display: grid;
  grid-template-columns: 80px 1fr;
  grid-template-rows: auto auto;
  column-gap: 20px;
  row-gap: 4px;
  align-items: start;
  text-decoration: none;
}

#top_01.single li.fadeInUpTrigger_once .date {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
  font-weight: bold;
  white-space: nowrap;
}

#top_01.single li.fadeInUpTrigger_once .ttl {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
  margin: 0;
}

#top_01.single li.fadeInUpTrigger_once .content_body {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
  margin: 0;
}

/* タイトル空の場合 */
#top_01.single li.fadeInUpTrigger_once .ttl:empty {
  display: none !important;
}

#top_01.single li.fadeInUpTrigger_once .ttl:empty + .content_body {
  grid-row: 1 / 2 !important;
}
}


