@charset "utf-8";
/* ==================================================
   common_sp
   375px基準
================================================== */
@media screen and (max-width: 768px) {
  html, body {
    width: 100%;
    overflow-x: hidden;
  }
  body {
    -webkit-text-size-adjust: 100%;
  }
  img {
    max-width: 100%;
    height: auto;
  }
  .sp_view {
    display: block;
  }
  .pc_view {
    display: none;
  }
  .hover:hover {
    opacity: 1;
  }
  html.fixed, body.fixed {
    overflow: hidden;
    width: 100%;
  }
  /* ==================================================
   header sp
================================================== */
  #header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    background: linear-gradient(90deg, #26314e 0%, #4e5d7d 100%);
    box-shadow: 0 0.6vh 1.8vh rgba(0, 0, 0, .12);
  }
  /* fixed分の余白 */
  #wrapper {
    padding-top: 9vh;
  }
  .header_inner {
    position: relative;
    width: 100%;
    height: 9vh;
    min-height: 9vh;
    padding: 0 5vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
  }
  /* PC用ナビはスマホでは非表示 */
  .header_nav {
    display: none;
  }
  .header_logo {
    order: 1;
    margin: 0;
    text-align: left;
  }
  .header_logo a {
    display: block;
  }
  .header_logo img {
    display: block;
    width: 16vw;
    height: auto;
  }
	.header_logo span {
		display: none;
	}
  /* ハンバーガーを左側へ */
  .sp_menu_btn {
    order: 2;
    position: relative;
    display: block;
    width: 11vw;
    height: 7vh;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    z-index: 10001;
  }
  .sp_menu_btn::before, .sp_menu_btn::after, .sp_menu_btn span {
    content: "";
    position: absolute;
    left: 0;
    width: 11vw;
    height: 0.35vh;
    background: #fff;
    border-radius: 999px;
    transition: .35s ease;
  }
  .sp_menu_btn::before {
    top: 2.1vh;
  }
  .sp_menu_btn span {
    top: 50%;
    transform: translateY(-50%);
  }
  .sp_menu_btn::after {
    bottom: 2.1vh;
  }
  /* open時 */
  .sp_menu_btn.active::before {
    top: 50%;
    transform: rotate(35deg);
  }
  .sp_menu_btn.active span {
    opacity: 0;
    transform: translateX(4vw);
  }
  .sp_menu_btn.active::after {
    bottom: auto;
    top: 50%;
    transform: rotate(-35deg);
  }
  /* スマホ用グローバルメニュー */
  .sp_global_menu {
    position: fixed;
    right: 0;
    top: 9vh;
    z-index: 10000;
    display: block;
    width: 100%;
    height: calc(100svh - 9vh);
    background: rgba(38, 49, 78, .96);
    backdrop-filter: blur(1.2vh);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-2vh);
    transition: opacity .4s ease, visibility .4s ease, transform .4s ease;
    pointer-events: none;
  }
  .sp_global_menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
  .sp_global_menu ul {
    width: 82vw;
    height: 100%;
    margin: 0 auto;
    padding: 8vh 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 3vh;
    box-sizing: border-box;
  }
  .sp_global_menu li {
    list-style: none;
  }
  .sp_global_menu a {
    position: relative;
    display: block;
    padding: 2.4vh 0;
    color: #fff;
    text-align: center;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, .25);
  }
  .sp_global_menu a::after {
    content: "";
    position: absolute;
    right: 2vw;
    top: 50%;
    width: 2.4vw;
    height: 2.4vw;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: translateY(-50%) rotate(45deg);
  }
  .sp_global_menu span {
    display: block;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 5vw;
    font-weight: 800;
    letter-spacing: .05em;
  }
  .sp_global_menu em {
    display: block;
    margin-top: 0.5vh;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 4vw;
    font-style: normal;
    font-weight: 700;
    letter-spacing: .04em;
  }
  /* スクロール固定用 */
  html.fixed, body.fixed {
    overflow: hidden;
    width: 100%;
  }
  /* ==================================================
     facilities page
  ================================================== */
  #facilities_page {
    width: 100%;
  }
  /* ==================================================
     facility mv
  ================================================== */
  .facility_mv {
    padding: 6vh 0 6vh;
    background-image: none, url("../images/bg_font.webp");
    background-size: 105vw auto, 64vw auto;
    background-position:
      center center, calc(50% + 18vw) 5vh;
  }
  .facility_slider {
    width: 88vw;
  }
  .facility_slide_area {
    height: auto;
    min-height: 82vh;
  }
  .facility_slide {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 4vh;
    transform: translateY(3vh);
  }
  .facility_text {
    padding-left: 0;
  }
  .facility_num {
    font-size: 15vw;
    padding-bottom: 2vh;
    margin-bottom: 3.5vh;
  }
  .facility_num::after {
    width: 42vw;
  }
  .facility_label {
    font-size: 4vw;
    margin-bottom: 1.8vh;
  }
  .facility_text h1 {
    font-size: 6.0vw;
    line-height: 1.2em;
    min-height: 4.5vh;
    letter-spacing: .025em;
    margin-bottom: 2vh;
  }
  .facility_desc {
    font-size: 3.9vw;
    line-height: 2.05;
    letter-spacing: .04em;
  }
  .facility_photo {
    padding-top: 0vh;
  }
  .facility_img {
    width: 100%;
    height: 28vh;
    border-radius: 3vw;
  }
  .facility_img::after {
    left: -8vw;
    bottom: -4vh;
    width: 56vw;
    height: 14vh;
  }
  .facility_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  /* arrows */
  .facility_arrow {
    top: 84vh;
    width: 12vw;
    height: 12vw;
    border-width: 1px;
  }
  .facility_arrow:hover {
    background: transparent;
    transform: translateY(-50%);
  }
  .facility_prev {
    left: -2vw;
  }
  .facility_next {
    right: -2vw;
  }
  .facility_arrow span {
    width: 2.8vw;
    height: 2.8vw;
    border-top-width: 1px;
    border-right-width: 1px;
  }
  /* bars */
  .facility_bars {
    gap: 3vw;
    margin-top: 8vh;
  }
  .facility_bars button {
    width: 14vw;
    height: 0.8vh;
  }
  .facility_bars button:hover {
    transform: none;
  }
  /* ==================================================
     facility thumb
  ================================================== */
  .facility_thumb_sec {
    display: none;
    padding: 4vh 0 9vh;
  }
  .facility_thumb_list {
    width: 88vw;
    display: grid;
    grid-template-columns: 1fr;
  }
  .facility_thumb {
    min-height: 36vh;
    padding: 5vh 5vw 4vh;
    border: 1px solid #e1e1e1;
    border-bottom: none;
    box-sizing: border-box;
  }
  .facility_thumb:last-child {
    border-bottom: 1px solid #e1e1e1;
  }
  .facility_thumb:nth-child(3n + 1), .facility_thumb:nth-child(-n + 3) {
    border-left: 1px solid #e1e1e1;
    border-top: 1px solid #e1e1e1;
  }
  .facility_thumb.is-active {
    border: 2px solid #ff7900;
  }
  .facility_thumb:hover {
    transform: none;
    box-shadow: none;
  }
  .thumb_num {
    left: 4vw;
    top: 3vh;
    width: 12vw;
    height: 12vw;
    font-size: 6.4vw;
    box-shadow: 0 0 0 1vw #fff;
  }
  .thumb_img {
    width: 68vw;
    height: 20vh;
    margin: 0 auto 3vh;
    border-radius: 2vw;
  }
  .facility_thumb:hover .thumb_img img {
    transform: none;
  }
  .thumb_label {
    font-size: 4vw;
    line-height: 1.5;
    margin-bottom: 1.5vh;
  }
  .facility_thumb strong {
    font-size: 4.5vw;
    line-height: 1.5;
  }
  .g-recaptcha {
    width: 82vw;
    margin: 0 auto 3vh !important;
    transform: scale(0.88);
    transform-origin: center top;
  }
  #concept {
    min-height: auto;
    background-position: 64% center;
  }
  #concept::before {
    background:
      linear-gradient(90deg, rgba(250, 225, 188, .94) 0%, rgba(250, 225, 188, .82) 55%, rgba(250, 225, 188, .35) 100%);
  }
  #concept::after {
    background: rgba(255, 227, 184, .16);
  }
  .concept_inner {
    width: 94vw;
    min-height: 100svh;
    padding: 10vh 0 9vh;
    align-items: center;
    box-sizing: border-box;
  }
  .concept_text {
    width: 100%;
    padding-top: 0;
  }
  .concept_en {
    margin: 0 0 6vh;
    font-size: 12vw;
    letter-spacing: .07em;
  }
  .concept_text h2 {
    font-size: 6.0vw;
    line-height: 1.5em;
    margin-left: 1vw;
    letter-spacing: .025em;
  }
  .concept_text h3 {
    margin-top: 7vh;
    font-size: 4.8vw;
    line-height: 1.75;
    letter-spacing: .05em;
  }
  .concept_lead {
    margin-top: 4vh;
    font-size: 3.8vw;
    line-height: 2.1;
    letter-spacing: .04em;
  }
  /* ==================================================
     common section head sp
  ================================================== */
  .section_head h2 {
    font-size: 8.5vw;
  }
  .section_head p {
    margin-top: 1.2vh;
    font-size: 4vw;
  }
  .section_head::after {
    width: 15vw;
    height: 0.5vh;
    margin-top: 2vh;
  }
  /* ==================================================
     news sp
  ================================================== */
  #news {
    padding: 9vh 0 8vh;
  }
  .news_inner {
    width: 88vw;
  }
  .news_list {
    grid-template-columns: 1fr;
    gap: 5vh;
    margin-top: 6vh;
  }
  .news_img {
    height: 28vh;
  }
  .news_item a:hover .news_img img {
    transform: none;
  }
  .news_item time {
    margin-top: 2vh;
    font-size: 3.6vw;
  }
  .news_item h3 {
    margin-top: 1.5vh;
    font-size: 4vw;
    line-height: 1.8;
  }
  .news_item a:hover h3 {
    color: #222;
  }
  .news_more {
    margin-top: 6vh;
  }
  .bt_more {
    width: 62vw;
    height: 6.5vh;
    font-size: 3.8vw;
  }
  .bt_more:hover {
    transform: none;
    opacity: 1;
  }
  .bt_more::after {
    width: 2vw;
    height: 2vw;
    margin-left: 3vw;
  }
  .bt_more:hover::after {
    transform: rotate(45deg);
  }
  /* ==================================================
     company sp
  ================================================== */
  #company {
    padding: 7vh 0 10vh;
  }
  .company_inner {
    width: 88vw;
  }
  .company_content {
    display: flex;
    flex-direction: column-reverse;
    gap: 5vh;
    margin-top: 6vh;
  }
  .company_text h3 {
    margin-bottom: 3vh;
    font-size: 5.6vw;
    line-height: 1.55;
  }
  .company_text p {
    font-size: 3.8vw;
    line-height: 2;
  }
  .company_info {
    margin-top: 4vh;
  }
  .company_info div {
    display: block;
    font-size: 3.8vw;
    line-height: 1.8;
  }
  .company_info div + div {
    margin-top: 1vh;
  }
  .company_info dt {
    display: inline;
    margin-right: 0;
  }
  .company_info dd {
    display: inline;
  }
  .company_recruit {
    margin-top: 3vh !important;
    padding: 1.8vh 4vw;
    border-radius: 1.2vw;
    font-size: 3.6vw !important;
    line-height: 1.7 !important;
  }
  .company_img {
    width: 100%;
    height: 30vh;
  }
  
  /* ==================================================
     contact
  ================================================== */
  #contact {
    padding: 18vw 0;
  }

  .contact_inner {
    width: 90vw;
    padding: 12vw 5.5vw 14vw;
    border-radius: 7vw;
    box-shadow: 0 4vw 7vw rgba(0, 0, 0, 0.14);
  }

  .contact_head h2 {
    font-size: 10.5vw;
  }

  .contact_head p {
    margin-top: 3vw;
    font-size: 3.8vw;
  }

  .contact_lead {
    margin-top: 9vw;
    text-align: center;
    font-size: 3.6vw;
    line-height: 2;
    letter-spacing: 0.025em;
  }

  .contact_form {
    margin-top: 10vw;
  }

  .contact_form dl {
    display: block;
    margin-bottom: 6vw;
  }

  .contact_form dt {
    justify-content: flex-start;
    gap: 3vw;
    padding-top: 0;
    margin-bottom: 2.5vw;
    font-size: 3.9vw;
  }

  .contact_form dt span {
    width: 9vw;
    height: 5vw;
    border-radius: 4vw;
    font-size: 2.7vw;
  }

  .contact_form input,
  .contact_form textarea {
    padding: 0 4vw;
    font-size: 4.27vw;
  }

  .contact_form input {
    height: 12vw;
  }

  .contact_form textarea {
    height: 52vw;
    padding-top: 4vw;
  }

  .contact_form input:focus,
  .contact_form textarea:focus {
    box-shadow: 0 0 0 0.8vw rgba(248, 181, 0, 0.18);
  }

  .privacy_box {
    margin-top: 10vw;
    padding: 6vw 5vw 7vw;
  }

  .privacy_title {
    font-size: 3.8vw;
    padding: 4vw 0;
  }

  .privacy_text {
    margin-top: 5vw;
    max-height: 38vw;
  }

  .privacy_text p {
    font-size: 3.6vw;
    line-height: 1.9;
  }

  .agree_check {
    gap: 3vw;
    margin-top: 7vw;
  }

  .agree_check input {
    width: 5.8vw;
    height: 5.8vw;
  }

  .agree_check input:checked::after {
    left: 1.6vw;
    top: 0.5vw;
    width: 1.8vw;
    height: 3.5vw;
  }

  .agree_check span {
    font-size: 3.6vw;
  }

  .recaptcha_area {
    margin-top: 7vw;
  }

  .recaptcha_area img {
    width: 56vw;
  }

  .submit_area {
    margin-top: 9vw;
  }

  .submit_area button {
    width: 66vw;
    height: 14vw;
    font-size: 4vw;
    letter-spacing: 0.25em;
  }

  .submit_area button:hover {
    transform: none;
    box-shadow: none;
  }
  
  
  /* ==================================================
     footer sp
  ================================================== */
  #footer {
    padding: 7vh 0 4vh;
  }
  .footer_inner {
    width: 88vw;
  }
  .footer_logo img {
    width: 28vw;
  }
  .footer_nav {
    margin-top: 4vh;
    padding-bottom: 4vh;
  }
  .footer_nav ul {
    flex-wrap: wrap;
    gap: 2.5vh 0;
  }
  .footer_nav li {
    width: 50%;
    padding: 0;
    box-sizing: border-box;
  }
  .footer_nav li:not(:last-child)::after {
    display: none;
  }
  .footer_nav a {
    font-size: 3.5vw;
    letter-spacing: .08em;
  }
  .footer_nav a:hover {
    opacity: 1;
  }
  .copyright {
    margin-top: 3vh;
    font-size: 3.2vw;
  }
  
  /* ===============================
     個人情報保護方針ページ用CSS
  =============================== */
  .poli_wrap {
    padding: 2.5vw 2.5vw 5vw;
  }

  .privacy-policy {
    font-size: 3.6vw;
    height: 64vw;
    padding: 7vw 6vw;
    line-height: 1.7;
  }

  .privacy-policy::-webkit-scrollbar {
    width: 3vw;
  }

  .privacy-policy::-webkit-scrollbar-thumb {
    border-radius: 2.5vw;
    border: 0.8vw solid transparent;
  }

  .privacy-policy h4 {
    font-size: 4.6vw;
    margin-bottom: 6vw;
  }

  .privacy-policy p {
    margin: 0 0 1.2em;
  }

  .privacy-policy h5 {
    font-size: 4vw;
    margin: 2em 0 0.8em;
  }

  .privacy-policy h5::before {
    font-size: 4vw;
    margin-right: 1.5vw;
  }

  .privacy-policy ol,
  .privacy-policy ul {
    padding-left: 1.5em;
    margin-bottom: 1.2em;
  }

  .privacy-policy ol li,
  .privacy-policy ul li {
    margin-bottom: 0.5em;
  }

  .privacy-policy address,
  .privacy-policy .contact {
    padding: 3vw 4vw;
    border-left: 0.8vw solid #ccc;
    margin: 1em 0;
  }

  #policy_agree {
    width: 88vw;
    font-size: 4.2vw;
    margin: 0 auto 5vw;
  }

  #policy_agree label {
    display: inline-block;
  }

  #bt_submit {
    margin-bottom: 9vw;
  }

  #bt_submit input[type="submit"] {
    width: 74vw;
    height: 14vw;
    font-size: 4.5vw;
    border-radius: 999px;
  }

  #bt_submit input[type="submit"]:hover {
    background: #505050;
  }

  .g-recaptcha {
    width: 82vw;
    margin: 0 auto 5vw !important;
    transform: scale(0.88);
    transform-origin: center top;
  }
  
  
  
}