/* ========================================
   PC：日本語メニューの English を目立たせる
======================================== */

@media screen and (min-width: 769px) {

  .main_header nav ul li:last-child a {
    display: inline-block;
    padding: 10px 18px;
    margin-left: 8px;
    background: #b9dbe6;
    border-radius: 22px;
    color: #333;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
  }

  .main_header nav ul li:last-child a:hover {
    opacity: 0.8;
  }
}


/* ========================================
   スマホ：言語切替＋三本線
======================================== */

@media screen and (max-width: 768px) {

  .main_header .container {
    position: relative;
  }

  .sp-header-controls {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    z-index: 10000;

    display: flex !important;
    align-items: center;
    gap: 10px;
  }

  .sp-language-switch {
    display: inline-block;
    padding: 7px 14px;
    background: #b9dbe6;
    border-radius: 20px;
    color: #333 !important;
    font-size: 14px;
    line-height: 1;
    font-weight: 600;
    text-decoration: none !important;
    white-space: nowrap;
  }

  .sp-language-switch:hover {
    opacity: 0.8;
  }

  .sp-header-controls .drawer-hamburger {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    left: auto !important;

    width: 42px;
    height: 42px;
    padding: 0 !important;
    margin: 0 !important;

    display: block !important;
  }

  .sp-header-controls .drawer-hamburger-icon {
    margin-top: 0;
  }
}


/* ========================================
   英語トップページ
   上部タイトルを非表示
======================================== */

body.page-id-2320 .entry-header,
body.page-id-2320 .page-header,
body.page-id-2320 .page-title,
body.page-id-2320 .page_title {
  display: none !important;
}


/* ========================================
   英語トップページ
   上部の不要な余白をなくす
======================================== */

body.page-id-2320 .entry-content,
body.page-id-2320 .site-main,
body.page-id-2320 .content-area {
  margin-top: 0 !important;
  padding-top: 0 !important;
}


/* ========================================
   英語トップ：メイン写真
======================================== */

body.page-id-2320 .en-welcome-photo {
  position: relative;
  left: 50%;
  width: 100vw;
  max-width: none !important;

  margin-top: 0 !important;
  margin-left: -50vw;
  margin-right: -50vw;
  margin-bottom: 0 !important;

  overflow: hidden;
}

body.page-id-2320 .en-welcome-photo img {
  display: block;
  width: 100%;
  height: min(48vw, 680px);

  object-fit: cover;
  object-position: center center;
}


/* ========================================
   英語トップ：スマホ
======================================== */

@media screen and (max-width: 768px) {

  body.page-id-2320 .en-welcome-photo img {
    width: 100%;
    height: 55vh;
    min-height: 360px;
    max-height: 520px;

    object-fit: cover;
    object-position: center center;
  }

  body.page-id-2320 .en-welcome {
    margin-top: 0;
    padding-top: 55px;
  }
}


/* ========================================
   英語トップ：横スクロール防止
======================================== */

body.page-id-2320 {
  overflow-x: hidden;
}