@charset "UTF-8";

/*!
 * Common Style
 * Author: SSTA
 * Date: 2026-06-16
 */

/* =================================================
   0. Page Loading
   ================================================= */
#loading {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

#loading_logo {
  font-size: 1.2rem;
  color: #4a5f70;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  visibility: visible;
  opacity: 1;
}

.fade {
  opacity: 0;
  animation: fadeIn 0.8s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* =================================================
   1. Sub Page Header
   ================================================= */
.sub_page_header {
  position: relative;
  padding: 80px 20px;
  text-align: center;
  overflow: hidden;
}

.sub_page_header .header_bg_img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  animation: fadeIn 0.5s ease forwards;
}

.sub_page_header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(40, 57, 73, 0.85);
  z-index: 1;
}

.sub_page_header .inner {
  position: relative;
  z-index: 2;
  animation: fadeIn 0.7s ease forwards;
}

.sub_page_header .en {
  display: block;
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  color: #b89a5e;
  letter-spacing: 0.4em;
  font-weight: 700;
  margin-bottom: 8px;
}

.sub_page_header .ja {
  font-size: 28px;
  color: #fff;
  font-weight: 500;
  margin: 0;
  letter-spacing: 0.05em;
  text-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

/* --- Tablet & SP Layout (~1100px) --- */
@media screen and (max-width: 1100px) {
  .sub_page_header {
    padding: 60px 15px;
  }

  .sub_page_header .en {
    font-weight: 600;
  }

  .sub_page_header .ja {
    font-size: 22px;
  }
}

/* =================================================
   2. Sub Page Section
   ================================================= */
.sub_page_section {
  padding: 60px 0 100px;
}

/* --- Tablet & SmallPC Layout (769~1200px) --- */
@media screen and (min-width: 769px) and (max-width: 1200px) {
  .sub_page_section {
    padding: 50px 0 100px;
  }
}
/* --- SP Layout (~768px) --- */
@media screen and (max-width: 768px) {
  .sub_page_section {
    padding: 40px 0 60px;
  }
}

/* =================================================
   3. Typography & Headers
   ================================================= */
.section_header {
  margin-bottom: 40px;
}

.section_header.text_center {
  text-align: center;
}

.section_header .section_en {
  color: #b89a5e;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3em;
  line-height: 1;
  display: block;
}

.section_header .section_ttl {
  color: #444;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1;
  margin-top: 12px;
}

.section_header .section_ttl.text_navy {
  color: #4a5f70;
  margin-bottom: 20px;
}
.section_header .section_ttl.text_white {
  color: #fff;
  margin-bottom: 20px;
}

.text_catch {
  display: block;
  white-space: normal;
  word-break: keep-all;
  overflow-wrap: break-word;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
  color: #444;
  margin-bottom: 20px;
}

.text_catch br.pc_only {
  display: block !important;
}

.text_desc {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 35px;
}

.text_desc_s {
  font-size: 15px;
  color: #555;
  margin-bottom: 25px;
  line-height: 1.7;
}

#top_gallery .text_desc {
  color: #fff;
  margin-bottom: 25px;
  line-height: 1.7;
  letter-spacing: 0.03em;
  z-index: 100;
}
.section_btn_area {
  margin-top: 40px;
}

.section_btn_area.text_center {
  text-align: center;
}

.top_gallery .section_btn_area {
  margin-top: 0;
  text-align: left;
}

.top_contact .section_btn_area {
  margin-top: 0;
  display: flex;
  justify-content: center;
}

/* --- SP Layout (~768px) --- */
@media screen and (max-width: 768px) {
  .section_header {
    margin-bottom: 20px;
  }

  .section_header .section_en {
    font-size: 13px;
    font-weight: 500;
  }

  .section_header .section_ttl {
    margin-top: 12px;
    font-size: 20px;
  }

  .section_header .section_ttl.text_navy,
  .section_header .section_ttl.text_white {
    margin-bottom: 10px;
  }

  .text_catch {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 10px;
  }

  .text_desc {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
    padding: 0 10px;
  }

  .text_lead {
    font-size: 13.5px;
    margin-bottom: 25px;
  }

  .text_lead br {
    display: none;
  }

  .section_btn_area {
    margin-top: 30px;
  }
}

/* =================================================
   4. Components (Buttons)
   ================================================= */
.c_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-weight: bold;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.3s ease;
  height: 52px;
  padding: 0 48px 0 28px;
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: 0.05em;
  box-sizing: border-box;
}

.top_news .c_btn {
  font-weight: 600;
  letter-spacing: 0.1em;
}

.c_btn::after {
  content: "";
  position: absolute;
  right: 20px;
  width: 14px;
  height: 14px;
  background-repeat: no-repeat;
  background-size: contain;
  transition: all 0.3s ease;
}

.btn_outline_gold {
  color: #b89a5e;
  border: 1px solid #b89a5e;
  background: transparent;
}

.btn_outline_gold::after {
  background-image: url("../images/arrow_gold.svg");
}

@media (hover: hover) {
.btn_outline_gold:hover {
  background: #b89a5e;
  border-color: #b89a5e;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(74, 95, 112, 0.25);
}
}

.btn_outline_gold:hover::after {
  background-image: url("../images/arrow_white.svg");
  transform: translateX(4px);
}

.btn_solid_gold {
  min-width: 180px;
  background: #b89a5e;
  border: 1px solid #b89a5e;
  color: #fff;
  box-shadow: 0 4px 12px rgba(184, 154, 94, 0.2);
}

.btn_solid_gold::after {
  background-image: url("../images/arrow_white.svg");
}

@media (hover: hover) {
.btn_solid_gold:hover {
  background: #4a5f70;
  border-color: #4a5f70;
  color: #fff;
  box-shadow: 0 8px 24px rgba(74, 95, 112, 0.25);
  transform: translateY(-2px);
}
}

.btn_solid_gold:hover::after {
  transform: translateX(4px);
}

.btn_solid_gold_large {
  min-width: 260px;
  background: #b89a5e;
  border: 1px solid #b89a5e;
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn_solid_gold_large::after {
  background-image: url("../images/arrow_white.svg");
}

@media (hover: hover) {
.btn_solid_gold_large:hover {
  background: #4a5f70;
  border-color: #4a5f70;
  color: #fff;
  box-shadow: 0 8px 24px rgba(74, 95, 112, 0.25);
  transform: translateY(-2px);
}
}

.btn_solid_gold_large:hover::after {
  background-image: url("../images/arrow_white.svg");
  transform: translateX(4px);
}

.c_btn_link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: #4a5f70;
  border-bottom: 2px solid rgba(74, 95, 112, 0.7);
  font-weight: bold;
  font-size: 16px;
  padding-bottom: 9px;
  position: relative;
  transition: all 0.3s ease;
}

.c_btn_link::after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-bottom: -1.5px;
  margin-left: 8px;
  background-image: url("../images/arrow_navy.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transition: all 0.3s ease;
}

@media (hover: hover) {
.c_btn_link:hover {
  color: #b89a5e;
  border-bottom-color: #b89a5e;
  padding-left: 10px;
}

.c_btn_link:hover::after {
  background-image: url("../images/arrow_gold.svg");
}
}

.c_btn.is-reverse {
  padding: 0 28px 0 48px;
}

.c_btn.is-reverse::after {
  left: 20px;
  right: auto;
  transform: rotate(180deg);
  margin-top: 1px;
}

.c_btn.is-reverse:hover::after {
  transform: rotate(180deg) translateX(4px);
}

/* --- SP Layout (~768px) --- */
@media screen and (max-width: 768px) {
  .c_btn {
    height: 45px;
    padding: 0 40px 0 20px;
    font-size: 14px;
  }

  .c_btn::after {
    right: 15px;
    width: 12px;
    height: 12px;
  }

  .c_btn:hover {
    transform: none !important;
    box-shadow: none !important;
  }

  .btn_solid_gold {
    min-width: 160px;
    margin-top: 15px;
  }

  .btn_solid_gold_large {
    min-width: 240px;
    max-width: 340px;
  }

  .btn_outline_gold {
    padding: 12px 30px 12px 20px;
    min-width: 160px;
    font-size: 14px;
    border-radius: 50px;
    white-space: normal;
  }

  .btn_outline_gold::after {
    right: 16px;
    width: 12px;
    height: 12px;
  }

  .c_btn_link {
    margin: 5px auto 0;
    font-size: 15px;
  }

  .c_btn_link::after {
    width: 13px;
    height: 13px;
  }

  .c_btn.is-reverse {
    padding: 0 20px 0 40px;
  }

  .c_btn.is-reverse::after {
    left: 15px;
  }
}

/* =================================================
   5. Page Top Button
   ================================================= */
.page_top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.page_top.is_show {
  opacity: 1;
  visibility: visible;
}

.page_top a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 20px;
  background: #fff;
  opacity: 0.8;
  color: #888;
  border: 1px solid #f7f7f7;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

@media (hover: hover) {
.page_top a:hover {
  background: #f0f0f0;
  color: #333;
  border: 1px solid #f0f0f0;
  transform: translateY(-5px);
}
}

/* --- SP Layout (~768px) --- */
@media screen and (max-width: 768px) {
  .page_top {
    right: 15px;
    bottom: 15px;
  }

  .page_top a {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
}

/* =================================================
   2. News List ( Top Page & News Page)
   ================================================= */
/* --- PC Layout (1201px~) --- */

.news_list {
  max-width: 900px;
  margin: 0 auto;
  list-style: none;
  border-top: 1px dotted #ccc;
}

.news_list li {
  border-bottom: 1px dotted #ccc;
}

.news_list li a {
  display: flex;
  position: relative;
  align-items: center;
  padding: 25px 15px;
  color: #333;
  text-decoration: none;
  transition: all 0.3s;
}

@media (hover: hover) {
.news_list li a:hover {
  padding-left: 20px;
  background: #f4f6f8;
}
}

.news_meta {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  width: 210px;
}

.news_meta .date {
  color: #999;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  margin-right: 20px;
  width : 82px;
}

.news_meta .category {
  padding: 2px 12px 3px;
  color: #fff;
  font-size: 11.5px;
  font-weight: 500;
  border-radius: 3px;
  letter-spacing: 0.07em;
}

.category.cat_event     { background: #666; }
.category.cat_national  { background: #b89a5e; }
.category.cat_info      { background: #4a5f70; }


.news_title {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1;
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  padding-right: 30px;
}

.arrow {
  width: 14px;
  height: 14px;
  background-image: url('../images/arrow_gold.svg');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transition: transform 0.3s ease;
}

.news_list li a:hover .arrow {
  transform: translateX(5px);
}

/* --- SP Layout (~768px) --- */
@media screen and (max-width: 768px) {
  .news_list li a {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px 10px;
  }

  .news_meta {
    margin-bottom: 5px;
  }

  .news_meta .date {
    font-size: 13.5px;
    line-height: 0.9;
    width: 76px;
  }

  .news_meta .category {
    padding: 4px 8px 5px;
    font-size: 10.5px;
    line-height: 1;
  }

  .news_title {
    white-space: normal;
    padding-right: 0;
    font-size: 14px;
    line-height: 1.4;
  }

  .arrow {
    display: none;
  }
}

.delighter {
  opacity: 0;
  transform: translateY(20px);
  transition: all .4s ease-out;
}

.delighter.started {
  opacity: 1;
  transform: none;
}

.faderight.delighter {
  opacity: 0;
  transform: translateX(10px);
  transition: all .4s ease-out;
}

.faderight.delighter.started {
  opacity: 1;
  transform: none;
}

.fadeleft.delighter {
  opacity: 0;
  transform: translateX(-10px);
  transition: all .4s ease-out;
}

.fadeleft.delighter.started {
  opacity: 1;
  transform: none;
}


/* =================================================
   2. Breadcrumb
   ================================================= */
/*
.breadcrumb {
  background: #f9f9f9;
  padding: 10px 0;
  font-size: 13px;
  color: #666;
}

.breadcrumb .inner ol {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.breadcrumb .inner ol li:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-top: 1px solid #999;
  border-right: 1px solid #999;
  transform: rotate(45deg);
  margin: 0 12px;
  vertical-align: 2px;
}

.breadcrumb a {
  color: #4a5f70;
  text-decoration: none;
  transition: 0.3 ease;
}

.breadcrumb a:hover {
  color: #b89a5e;
}

@media screen and (max-width: 768px) {
  .breadcrumb {
    padding: 8px 15px;
  }
}
*/
