@charset "utf-8";

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
}

html,
body {
  height: 100%;
}

body {
  font-family: 'BIZ UDゴシック', 'BIZ UDGothic','Noto Sans JP', 'Hiragino Kaku Gothic ProN','Yu Gothic', 'Meiryo', sans-serif;
  font-size: 100%;
  color: #000;
  background: #fff;
  word-break: break-word;
  margin: 0;
  padding: 0;
  letter-spacing: 0.03em;
}

a {
  color: #125690;
  text-decoration: underline;
}

a:hover, button:hover {
  text-decoration: none;
  color: #2f1780;
}
a:hover img {
  transform: scale(1.1);
  transition-duration: 0.5s;
}

button {
  cursor: pointer;
}
a:focus,
button:focus {
  outline: 2px solid #ef7c00;
  outline-offset: 4px;
  border-radius: 4px;
}

a, button {
  transition: color .3s ease, background-color .3s ease, box-shadow .3s ease;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border: 0;
  transition: transform .3s ease, opacity .3s ease;
}

ul,
ol {
  list-style: none;
}

button,
input,
select,
textarea {
  font: inherit;
  border: none;
  background: none;
  outline: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

#main {
  flex: 1;
  line-height: 1.8;
  margin-top: -150px;
  position: relative;
}
#main_content {
  width: 100%;
  max-width: 1160px;
  margin: 36px auto 0;
  padding: 0 0 200px;
}

.inner {
  max-width: 1160px;
  margin: 0 auto;
}

@media screen and (max-width: 1160px) {
  .inner {
    padding: 0 1.25rem;
  }
}

h2, h3, h4, section {
  scroll-margin-top: 60px;
}

/* ヘッダー */
#header {
  background: rgba(255, 255, 255, 0.75);
  width: 1100px;
  height: 150px;
  margin: auto;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}
#header .header-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.logo-area {
  display: flex;
  align-self: center;
  margin-top: 20px;
}
.logo-area h1 {
  margin: 0;
}
.logo-area h1 a:hover img {
  transform: none;
}
.logo-area h1.logo > a img {
  width: 209px;
}

@media screen and (max-width: 1160px) {
  #header .header-inner {
    align-items: flex-start;
    padding-left: 20px;
    padding-right: 50px;
    box-sizing: border-box;
    height: 70px;
  }
  .logo-area {
    height: 100%;
    align-self: flex-start;
  }
  .logo-area h1 a {
    margin-bottom: 0;
  }
  .logo-area .logo {
    display: flex;
    align-items: center;
  }
  .logo-area h1.logo > a.group img {
    width: 37px;
    margin-right: .5rem;
  }
}

.logo img {
  display: block;
  height: auto;
}
.logo a:first-of-type {
  display: block;
}
.logo a {
  text-decoration: none;
}

/* 右上ナビ */
#nav.global-nav {
  position: fixed;
  top: 12px;
  right: 12px;
  z-index: 1600;
}

#nav.global-nav ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  margin: 0;
}

#nav.global-nav li {
  margin: 0;
}

#nav.global-nav a,
#nav.global-nav button {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #b11a1a;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
  font-size: 12px;
  line-height: 1.2;
  text-align: center;
  padding: 10px 0 11px;
  box-sizing: border-box;
  cursor: pointer;
}

#nav.global-nav a::before,
#nav.global-nav button::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  margin-bottom: 6px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

#nav.global-nav a:hover,
#nav.global-nav button:hover {
  opacity: .75;
}

#nav.global-nav a:focus,
#nav.global-nav button:focus {
  outline: 2px solid #ef7c00;
  outline-offset: 3px;
  background-color: #b11a1a;
}

#nav.global-nav li:nth-child(1) a::before {
  background-image: url("/common_cgc/images/nav_side_icon01.png");
  width: 13px;
  height: 17px;
}

#nav.global-nav li:nth-child(2) a::before {
  background-image: url("/common_cgc/images/nav_side_icon02.png");
  height: 14px;
}

#nav.global-nav li:nth-child(3) a::before {
  background-image: url("/common_cgc/images/nav_side_icon03.png");
  width: 16px;
}

#nav.global-nav li.search button::before {
  background-image: url("/common_cgc/images/nav_side_icon04.png");
  width: 21px;
  height: 21px;
}

#nav.global-nav li.a11y button::before {
  background-image: url("/common_cgc/images/nav_side_icon05.png");
}

#nav.global-nav .search {
  position: static !important;
  bottom: auto !important;
  background: none !important;
  width: auto !important;
  height: auto !important;
  z-index: auto !important;
}

.setting_txt {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: auto;
  background: rgba(0, 0, 0, 0.88);
  z-index: 3000;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  padding: 2rem;
  box-sizing: border-box;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.setting_txt.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.setting_txt > div {
  padding: 1.5rem 0;
  width: 100%;
  margin-bottom: 0;
}
.setting_close {
  position: absolute;
  top: 1rem;
  right: 2rem;
  font-size: 2rem;
  color: #fff !important;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 3100;
}
button.setting_close:hover {
  text-decoration: none !important;
}
.setting_txt .inner {
  width: 100%;
  max-width: 1160px;
  align-items: flex-start;
}
.setting_txt .search {
  display: flex;
  position: relative;
  align-items: center;
  gap: initial;
  margin-bottom: 0;
  padding-bottom: 0;
  margin-right: 2rem;
  border-bottom: none;
  background: none;
  width: auto;
  height: auto;
}
.setting_txt .search .search-label {
  color: #fff;
  position: relative;
  padding-left: 20px;
  margin-right: 1rem;
  font-size: 100%;
}

.setting_txt .color {
  display: flex;
  margin-right: 2rem;
}
.setting_txt .color dl a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  width: 46px;
}
.setting_txt .color dd:first-of-type a {
  background: #0c4ad3;
}
.setting_txt .color dd:nth-of-type(2) a {
  background: #d7d243;
}
.setting_txt .color dd:nth-of-type(3) a {
  background: #000;
}
.setting_txt .color dd:nth-of-type(4) a {
  background: #cfcfcf;
  color: #000 !important;
  width: 64px;
}

.setting_txt .font_size {
  display: flex;
  align-items: center;
}
.setting_txt .font_size dl, .setting_txt .color dl {
  display: flex;
  align-items: center;
}
.setting_txt .font_size dt, .setting_txt .color dt {
  color: #fff !important;
  font-size: 100%;
  margin-right: 1rem;
  position: relative;
  padding-left: 22px;
}
.setting_txt .search .search-label::before, .setting_txt .font_size dt::before, .setting_txt .color dt::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  margin-right: 8px;
  background: url("/common_cgc/images/arw01.png") no-repeat center;
  background-size: contain;
  vertical-align: middle;
}
.setting_txt .font_size dl a, .setting_txt .color dl a {
  height: 46px;
  border: 2px solid #fff;
  text-decoration: none;
}
.setting_txt .font_size dd, .setting_txt .color dd {
  margin-right: 5px;
  font-size: 16px;
}
.setting_txt .font_size dl a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #cfcfcf;
  color: #000 !important;
  width: 66px;
}

@media screen and (max-width: 1160px) {
  .global-menu.active {
    display: block !important;
    position: fixed !important;
    inset: 0 !important;
    width: 100vw !important;
    height: 100dvh !important;
    z-index: 9999 !important;
    background: #fff !important;
    overflow-y: auto !important;
    pointer-events: auto !important;
    line-height: 1.5;
  }
  #nav.global-nav {
    display: none !important;
  }
  #header .global-menu.active .global-nav-sp {
    display: block !important;
    width: 100% !important;
    z-index: 10000;
  }
  #header .global-nav-sp .global-nav {
    display: block !important;
  }

  .global-menu.active .global-nav-sp {
    display: block !important;
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .global-nav-sp .global-nav ul {
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;
  }

  .global-nav-sp .global-nav li a {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    padding: 0 !important;
    color: #dc2f2f !important;
    font-size: 15px !important;
    font-weight: 700;
    text-align: left !important;
    background: none !important;
    height: auto !important;
  }

  .global-nav-sp .global-nav li a::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 12px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    flex-shrink: 0;
  }

  .global-nav-sp .global-nav ul li:nth-child(1) a::before { 
    background-image: url("/common_cgc/images/nav_side_icon01.png") !important; 
  }
  .global-nav-sp .global-nav ul li:nth-child(2) a::before { 
    background-image: url("/common_cgc/images/nav_side_icon02.png") !important; 
  }
  .global-nav-sp .global-nav ul li:nth-child(3) a::before { 
    background-image: url("/common_cgc/images/nav_side_icon03.png") !important; 
  }
  .global-nav-sp .global-nav ul li:nth-child(4) a::before { 
    background-image: url("/common_cgc/images/nav_side_icon05.png") !important;
  }

  .global-nav-sp .search.sp,
  .global-nav-sp .setting_txt_sp {
    background: initial;
  }

  .global-nav-sp .search-form {
    display: flex;
    width: 100%;
  }

  .global-nav-sp .search-form input {
    flex: 1;
    padding: 10px;
    border: 1px solid #dc2f2f;
  }
}

@media screen and (max-width: 1160px) {
  .search.sp {
    display: flex;
    align-items: center;
    gap: initial;
    padding-bottom: 0;
    margin: 0 0 2rem;
    border-bottom: none;
  }  
  .setting_txt_sp .color {
    display: flex;
    margin-right: 2rem;
    margin-bottom: 1rem;
  }
  .setting_txt_sp .color dl a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    width: 35px;
    filter: none;
    margin-bottom: 1rem;
  }
  .setting_txt_sp .color dd:first-of-type a {
    background: #0c4ad3;
  }
  .setting_txt_sp .color dd:nth-of-type(2) a {
    background: #d7d243;
  }
  .setting_txt_sp .color dd:nth-of-type(3) a {
    background: #000;
  }
  .setting_txt_sp .color dd:nth-of-type(4) a {
    background: #cfcfcf;
    color: #000 !important;
    width: 48px;
  }

  .setting_txt_sp .font_size dl, .setting_txt_sp .color dl {
    display: flex;
    align-items: center;
  }
  .setting_txt_sp .font_size dt, .setting_txt_sp .color dt {
    color: #fff !important;
    font-size: 14px;
    margin-right: 1rem;
    position: relative;
    padding-left: 17px;
  }
  .setting_txt_sp .search .search-label::before, .setting_txt_sp .font_size dt::before, .setting_txt_sp .color dt::before {
    content: "";
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    margin-right: 5px;
    background: url("/common_cgc/images/arw01.png") no-repeat center;
    background-size: contain;
    vertical-align: middle;
  }
  #recruit .setting_txt_sp .search .search-label::before, #recruit .setting_txt_sp .font_size dt::before, #recruit .setting_txt_sp .color dt::before {
    background: url("/common_cgc/images/arw03.png") no-repeat center;
  }
  .setting_txt_sp .font_size dl a, .setting_txt_sp .color dl a {
    height: 35px;
    border: 2px solid #fff;
    text-decoration: none;
    padding: 0 !important;
    margin-bottom: 0 !important;
  }
  .setting_txt_sp .font_size dd, .setting_txt_sp .color dd {
    margin-right: 5px;
    font-size: 16px;
  }
  .setting_txt_sp .font_size dl a {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #cfcfcf;
    color: #000 !important;
    width: 66px;
    filter: none;
    padding: 0;
  }
}
.menu-toggle {
  display: none;
}

@media (max-width: 1160px) {
  #header_inner {
    padding: 0;
  }
  #logout_btn {
    height: 70px;
    padding-bottom: 10px;
  }
  .menu-toggle.active:hover {
    background: initial;
  }

  .menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #e83112 !important;
    transition: all 0.3s ease;
  }

  .menu-toggle span+span {
    margin-top: 6px;
  }

  .menu-toggle {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    width: 70px;
    height: 70px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: transparent;
    border: none;
    cursor: pointer;
  }
  
  .menu-toggle.active span {
    background: #e83112 !important;
  }
  .menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

.global-nav-sp {
  display: none;
}

@media screen and (max-width: 1160px) {
  #header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    height: 70px;
    border-radius: 0;
    background: #fff;
  }
  #header .global-nav {
    display: none;
  }
  .logo-area {
    margin-top: 0;
  }

  .global-nav-sp {
    display: block;
    margin-top: 1rem;
    z-index: 10;
    position: relative;
  }

  .global-nav-sp .global-nav {
    color: #fff;
    margin-bottom: 4rem;
  }

  .global-nav-sp .global-nav ul {
    display: block;
    padding: 0;
    margin-bottom: 2rem;
  }

  .global-nav-sp .global-nav li {
    margin-bottom: .5rem;
  }

  .global-nav-sp .global-nav a,
  .global-nav-sp .global-nav button:not(.search-form button) {
    display: inline-flex;
    align-items: center;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    background-repeat: no-repeat;
    background-size: 16px 16px;
    background-position: left center;
    filter: brightness(0) invert(1);
  }

  .global-nav-sp .global-nav a:hover {
    text-decoration: underline;
  }
  .header-inner {
    flex-wrap: wrap;
  }
  #header .global-menu-list a,
  #header .global-nav-sp .global-nav button,
  #header .global-nav-sp .setting_txt_sp dt,
  #header .global-nav-sp .search-label {
    color: #dc2f2f !important;
    -webkit-text-fill-color: #dc2f2f !important;
  }
}

/* グローバルメニュー */
.global-menu {
  position: static;
  margin-top: 15px;
  z-index: 100;
  flex-grow: 1;
  display: flex;
  justify-content: flex-end;
  pointer-events: none;
  width: 100%;
}
.global-menu .logo{
  display: none;
}
.global-menu.is-fixed .logo{
  display: flex;
}
.global-menu .inner {
  max-width: none;
  margin: 0;
  width: 100%;
}
.global-menu .logo a {outline:9999px solid transparent}

.global-menu .logo a.group {
  margin-right: .5rem;
}
.global-menu .logo a.group img {
  height: 36px;
}

.global-menu{position:relative;z-index:200}
.global-menu .logo{position:relative;z-index:201}
.global-menu .logo a{display:inline-flex;align-items:center;pointer-events:auto}
.global-menu .logo img {
  height:40px;
  width:auto
}
.global-menu .logo span img {
  height:auto;
  width:auto
}

.global-menu .inner::before,
.global-menu .inner::after{pointer-events:none}

/* .submenu-container{pointer-events:none} */
.has-submenu:hover .submenu-container,
.has-submenu.open .submenu-container{pointer-events:auto}
#header.is-fixed .logo {
  display: none;
}

@media screen and (max-width: 1160px) {
  .global-menu::after{
    display: none;
  }
  .global-menu {
    position: fixed;
    top: 0;
    right: 0;
    height: 100dvh;
    z-index: 2000;
    transform: translateX(100%);
    transition: transform .3s ease;
    will-change: transform;
    overflow-y: auto;
    margin: 0;
    padding-top: 0;
    background: #fff;
  }

  .global-menu.active {
    transform: translateX(0);
  }

  .global-menu a,
  #header.scrolled a {
    color: #dc2f2f;
  }

  .global-menu {
    padding-top: 72px;
  }

  .global-menu ul {
    flex-direction: column;
    padding: 0;
  }
}
.global-menu-list {
  display: flex;
  width: 100%;
  height: 100%;
  list-style: none;
  margin: 0;
  pointer-events: auto;
  justify-content: flex-start;
  flex-wrap: nowrap;
  column-gap: clamp(24px, 5vw, 54px);
  padding: 0 clamp(16px, 4vw, 44px);
}


.global-menu-list li {
  margin-bottom: 0;
  padding-left: 0;
}

.global-menu-list a {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 3rem 0 1.125rem;
  text-decoration: none;
  width: auto;
  height: 100%;
  text-align: center;
}

.global-menu-list > li {
  flex: 0 0 auto;
  text-align: center;
  padding: 0;
  box-sizing: border-box;
}
.global-menu-list > li > a {
  position: relative;
}

.global-menu-list > li > a::after {
  content: "";
  position: absolute;
  top: 64px;
  left: 10%;
  width: 80%;
  height: 4px;
  background: #dc2f2f;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.global-menu.is-fixed .global-menu-list > li > a::after {
  top: initial;
  bottom: 10px;
}
.global-menu-list > li:hover > a::after {
  transform: scaleX(1);
}

.global-menu-list > li > a::before {
  content: "";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 20px;
  margin-bottom: 10px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.global-menu-list > li:nth-child(1) > a::before {
  background-image: url("/common_cgc/images/nav_icon01.png");
}
.global-menu-list > li:nth-child(2) > a::before {
  background-image: url("/common_cgc/images/nav_icon02.png");
  width: 17px;
  height: 21px;
}
.global-menu-list > li:nth-child(3) > a::before {
  background-image: url("/common_cgc/images/nav_icon03.png");
  width: 16px;
}
.global-menu-list > li:nth-child(4) > a::before {
  background-image: url("/common_cgc/images/nav_icon04.png");
  width: 31px;
  height: 19px;
}
.global-menu-list > li:nth-child(5) > a::before {
  background-image: url("/common_cgc/images/nav_icon05.png");
  width: 18px;
}
.global-menu-list > li:nth-child(6) > a::before {
  background-image: url("/common_cgc/images/nav_icon06.png");
  width: 28px;
  height: 25px;
}

@media screen and (max-width: 1160px) {
  .global-menu-list > li > a{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    padding: 16px 20px;
    text-align: left;
    color: #dc2f2f;
    white-space: nowrap;
  }
  .global-menu-list > li > a::before{
    content: "";
    display: inline-block;
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    margin-right: 10px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
  }
}

.global-menu-list > li > a:hover:before {
  opacity: .5;
}
.global-menu-list > li.submenu-open > a {
  background: rgba(255, 255, 255, 0.85);
  color: #fff;
}

.global-menu-list a:hover {
  opacity: .8;
  color: #dc2f2f;
}

/* メガメニュー */
.has-submenu {
  position: relative;
}

.has-submenu.open .submenu {
  display: block;
}
.global-menu .inner{
  position: relative;
}

.has-submenu,
.has-submenu > a{
  position: static;
}

.has-submenu:hover .submenu-container,
.has-submenu.open .submenu-container{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.global-menu .submenu-container {
  position: absolute;
  top: calc(100% - 10px); 
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.85);
  padding: 20px 0;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  pointer-events: none;
  border-radius: 15px;
}
.has-submenu:hover .submenu-container {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.has-submenu > a {
  position: relative;
  display: flex;
  align-items: center;
  text-decoration: none;
  outline: none;
  padding: 0 0 45px !important;
  font-size: 93.8%;
  font-weight: 700;
  color: #000;
  white-space: nowrap;
  z-index: 10;
}
.has-submenu > a:focus {
  border-radius: 0;
}

.submenu {
  width: 1100px;
  max-width: 95%;
  margin: 0 auto;
  padding: 0;
}

.submenu ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.submenu li {
  display: block;
}

.submenu li a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 15px;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 10px;
  color: #333;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  box-sizing: border-box;
}

.submenu li a:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: #dc2f2f;
  color: #dc2f2f;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

@media screen and (min-width: 1161px) {
  .submenu li.sp {
    display: none;
  }
}

/* スクロール時 */
#header.is-fixed {
  height: 70px;
}
#header.is-fixed .global-nav {
  display: none;
}
#header.is-fixed .logo img {
  height: 40px;
}

.global-menu.is-fixed {
  height: 70px;
  margin-top: 0;
}
#header.is-fixed .logo-area {
  margin-top: 0;
}

.global-menu.is-fixed .inner {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 1100px;
  height: 70px;
  margin: 0 auto;
  padding: 0 44px;
  box-sizing: border-box;
}

.global-menu.is-fixed .logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  z-index: 2;
  display: block !important;
}
.global-menu.is-fixed .logo img {
  display: block;
  height: 37px !important;
  width: auto;
}

.global-menu.is-fixed .global-menu-list {
  display: flex;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  justify-content: flex-start;
  flex-wrap: nowrap;
  box-sizing: border-box;
  align-items: center;
  column-gap: clamp(24px, 4vw, 54px);
  position: relative;
}
.global-menu.is-fixed .global-menu-list > li:nth-child(3) {
  margin-right: 95px;
}

.global-menu.is-fixed .global-menu-list > li {
  flex: 0 0 auto;
  min-width: 0;
}

.global-menu.is-fixed .global-menu-list > li > a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 !important;
  margin-bottom: 0 !important;
  height: 70px !important;
  white-space: nowrap;
  font-size: 13px;
  position: relative;
}

.global-menu.is-fixed .global-menu-list > li > a::before {
  content: none;
  display: none;
}

.global-menu.is-fixed .submenu-container {
  top: 85px !important;
  width: 1100px !important;
  left: 50% !important;
  transform: translateX(-50%);
  max-width: 95vw;
}

.global-menu.is-fixed .global-menu-list > li:hover > a::after {
  content: "";
  position: absolute;
  top: auto !important;
  bottom: 10px !important;
  left: 10%;
  width: 80%;
  height: 4px;
  background: #dc2f2f;
  pointer-events: none;
}

.global-menu.is-fixed .has-submenu > a::before {
  content: "" !important;
  display: block !important;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 110px;
  background: transparent;
  z-index: -1;
}

.global-menu.is-fixed .global-menu-list > li:not(.has-submenu) > a::before {
  display: none !important;
}

@media screen and (min-width: 1181px) {
  .menu-close {
    display: none !important;
  }
}


.global-menu-list > li:hover > a::after {
  content: "";
  position: absolute;
  top: 64px; 
  left: 10%;
  width: 80%;
  height: 4px;
  background: #dc2f2f;
  bottom: auto;
}
.submenu-container {
  background: rgba(255, 255, 255, 0.7) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

@media screen and (max-width: 1160px) {
  .global-menu-list > li:hover > a::after {
    content: none !important;
    display: none !important;
  }

  .global-menu {
    position: fixed;
    inset: 0;
    height: 100dvh;
  }

  body.menu_open {
    overflow: hidden;
  }

  .global-menu .inner {
    height: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    display: flex;
    flex-direction: column;
  }

  .menu-close {
    position: fixed;
    top: 5px;
    right: 14px;
    font-size: 2rem;
    color: #fff !important;
    background: none;
    border: none;
    z-index: 3000;
    cursor: pointer;
  }

  .global-menu-list {
    position: static;
    height: auto;
    background: transparent;
    display: flex;
    flex-direction: column;
    padding: 50px 0 30px;
    z-index: auto;
  }

  .global-menu-list li {
    width: 100%;
    border: none;
    margin: 0;
    border-bottom: 1px solid #dc2f2f;
  }

  .global-menu-list a,
  .global-menu-list .has-submenu > a {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    padding: 16px 0 !important;
    width: 100% !important;
    height: auto !important;
    margin: 0 !important;
    text-decoration: none;
    color: #dc2f2f;
    background: none;
    text-align: left !important;
  }

  .global-menu-list a:hover {
    background: initial;
  }

  .global-menu-list > li > a::before {
    margin-bottom: 0 !important;
    margin-right: 10px !important;
    flex-shrink: 0;
  }

  .global-menu-list .has-submenu > a::after {
    content: "";
    position: relative;
    display: inline-block;
    width: 8px;
    height: 8px;
    background: url('/common_cgc/images/arw03.png') no-repeat center;
    background-size: contain;
    margin-left: auto;
    transform: initial;
  }

  .global-menu-list .has-submenu.open > a::after {
    transform: rotate(90deg);
  }

  .global-menu .global-nav-sp {
    display: none;
  }

  .global-menu.active .global-nav-sp {
    display: block;
    margin-top: 3rem;
    color: #dc2f2f;
  }

  .global-menu .submenu-container {
    display: none;
    position: static;
    width: 100%;
    padding: 0;
    background: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .has-submenu.open > .submenu-container {
    display: block;
  }

  .submenu {
    width: 100%;
    max-width: 100%;
    margin: 0;
  }

  .submenu ul {
    display: block;
    padding: 0;
    margin: 0 0 1.5rem;
  }

  .submenu li {
    padding: 0;
    border: none;
    min-height: auto;
    justify-content: flex-start;
  }

  .submenu li a {
    display: flex !important;
    color: #dc2f2f;
    text-decoration: none;
    background: none;
    padding: 10px 0 0 34px !important;
    font-size: 87.5% !important;
    text-align: left !important;
    justify-content: flex-start !important;
  }

  .submenu li a::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-right: 10px;
    background: url('/common_cgc/images/arw01.png') no-repeat center;
    background-size: contain;
  }

  .submenu li a:hover {
    color: #fff;
  }
  .global-nav-sp .global-nav ul li a,
  .global-nav-sp .global-nav ul li button,
  .global-menu-list > li > a {
    color: #dc2f2f !important;
    filter: none !important;
    background-image: none !important;
    display: flex !important;
    align-items: center !important;
    text-decoration: none !important;
    -webkit-text-fill-color: #dc2f2f !important;
  }
  .global-nav-sp .global-nav a::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 12px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    filter: brightness(0) saturate(100%) invert(26%) sepia(85%) saturate(2253%) hue-rotate(345deg) brightness(91%) contrast(93%) !important;
  }
  .global-nav-sp .global-nav .setting_txt_sp a::before {
    content: none;
  }
}

@media screen and (min-width: 1161px) {
  #header {
    position: sticky;
    top: 0;
    z-index: 100;
  }
}

/* メインビジュアル */
.main-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 1920 / 672;
  height: 672px;
  overflow: hidden;
}
.main-visual .inner {
  position: relative;
  z-index: 1;
  max-width: 100vw;
  margin: 0 auto;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  height: 100%;
}
.main-visual .inner > div:first-child {
  position: absolute;
  /* flex: 0 0 auto;
  display: flex;
  align-items: center;
  margin: auto 0; */
  z-index: 100;
}
.main-visual .inner > div:first-child img {
  display: block;
  height: auto;
}
.mv_catch {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  pointer-events: none;
}

.mv_catch img {
  max-width: min(713px, 80vw);
  height: auto;
}
@media screen and (max-width: 1160px) {
  .main-visual {
    aspect-ratio: 430 / 700;
    margin-top: 1rem;
    overflow: visible;
    min-height: 700px;
  }
  .main-visual .inner {
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    padding: 0;
  }
  .main-slide-wrapper {
    margin-top: -100px;
    z-index: 2;
    position: relative;
  }
  .slider {
    margin-top: -100px;
    position: relative;
    z-index: 2;
  }
  .main-slide {
    width: calc(100% - 26.4%);
    margin: 0 auto;
  }
  .main-visual .inner > p {
    width: 100%;
    height: 385px;
  }
   .main-visual-bg {
    height: 385px;
  }
  .main-visual-bg-sp {
    position: absolute;
    top: 385px;
    display: block;
    width: 100%;
    height: 400px;
    background: url(/common_cgc/images/sp_bg.png) no-repeat center/cover;
    background-size: cover;
  }
  .mv_catch {
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: none;
    margin-top: 70px;
    position: absolute;
    left: 50%;
    top: calc(50% + 4px);
    transform: translate(-50%, -50%);
    pointer-events: none;
  }
}
#slider {
  position: relative;
  width: 100%;
}
#slider img {
  display: block;
  width: 100%;
  height: auto;
}
#sliderSp {
  display: none;
}
#main_visual .inner,
#slider,
#slider .slick-list,
#slider .slick-track,
#slider .slick-slide {
  height: 100%;
}

#slider .slick-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 1180px) {
  #slider {
    display: none;
  }
  #sliderSp {
    display: block;
    width: 100%;
    aspect-ratio: 430 / 700;
    overflow: hidden;
    min-height: 700px;
  }
  #sliderSp .slick-list,
  #sliderSp .slick-track,
  #sliderSp .slick-slide {
    height: 100%;
  }
  #sliderSp img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

#pickup {
  padding: 0 !important;
  margin: 30px 0 60px;
}

#slide_pickup {
  width: 100%;
  margin: auto;
}

@media print, screen and (max-width: 1240px) {
  #pickup {
    margin: 30px 0;
  }
  #slide_pickup {
    position: relative;
    bottom: initial;
    right: 0;
    left: 0;
    width: 90%;
    margin-top: 3rem;
  }
}

#slide_pickup .inner {
  position: relative;
  max-width: 100%;
}
#pickupSlider {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}
#pickupSlider .slide_item {
  box-sizing: border-box;
  margin: 0 2rem;
  overflow: hidden;
}
#pickupSlider .slide_item a {
  display: block;
  width: 100%;
}
#pickupSlider .slide_item a {
  display: block;
  width: 100%;
}
#pickupSlider .slide_item img {
  width: 100%;
  height: auto;
}
#pickupSlider .slide_item a:hover img {
  transform: scale(1.1);
  transition-duration: 0.5s;
}
#pickupSlider .slide_arrow {
	z-index: 9;
	position: absolute;
	top: calc(50% - 15px);
	cursor: pointer;
	border: none;
	background-color: transparent;
}
#pickupSlider .next_arrow {
	right: 2%;
}
#pickupSlider .prev_arrow {
	left: 2%;
}

@media print, screen and (max-width: 1240px) {
  #pickupSlider .slide_item img {
    width: 100vw;
  }
  #pickupSlider .slide_item a {margin: auto;
    width: 65%;
  }
  #pickupSlider .next_arrow {
    right: -10%;
  }
  #pickupSlider .prev_arrow {
    left: -10%;
  }
}


.none {
  display: none;
}

.slick-dots li button:hover ,.slick-dots li button:focus ,.slick-dots li.slick-active button {
  width: 15px;
  height: 15px;
  display: flex;
  background-color: #fff !important;
  border: 2px solid #009b6a !important;
  display: inline-block;
  vertical-align: middle;
}


.important a[href$=".pdf"]::before {
  content: "PDF";
  background: #bb1d67;
}

.important a[href$=".doc"]::before,
.important a[href$=".docx"]::before {
  content: "WORD";
  background: #005d82;
}

.important a[href$=".xls"]::before,
.important a[href$=".xlsx"]::before {
  content: "EXCEL";
  background: #1f8614;
}
.important a[href$=".pdf"]::before,
.important a[href$=".doc"]::before,
.important a[href$=".docx"]::before,
.important a[href$=".xls"]::before,
.important a[href$=".xlsx"]::before {
  display: inline-block;
  vertical-align: top;
  margin: .1rem .5rem 0 0;
  padding: 0.1rem 0.4rem;
  color: #fff;
  font-size: 75%;
  font-weight: 700;
  border-radius: 3px;
  white-space: nowrap;
}


/* キーワードから探す */
.search {
  position: absolute;
  bottom: 0;
  background: rgba(0, 0, 0, 0.40);
  width: 100%;
  height: 80px;
  z-index: 10;
}
.search .inner {
  display: flex;
  position: relative;
  align-items: center;
  padding: 2rem 0;
  width: 582px;
}
.search .inner::before {
  content: "";
  position: absolute;
  right: 0;
  top: -53px;
  width: 111px;
  height: 69px;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url("/common_cgc/images/search_img.png");
}

@media screen and (max-width: 1160px) {
  .search {
    height: auto;
  }
  .search .inner {
    display: block;
    padding: 1.5rem 1.25rem;
    width: 100%;
  }
  .search .inner::before {
    right: 1rem;
  }
}

.search-form {
  display: flex;
  flex: 1;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
  border: 2px solid #9f2222;
  background: #fff;
  border-radius: 10px;
}

.search-form input {
  width: 100%;
  height: 45px;
  padding: 5px 15px;
  border: none;
  box-sizing: border-box;
  font-size: 1em;
  outline: none;
}
#pickup .search-form input, .search.sp .search-form input  {
  width: calc(100% - 50px);
}

.search-form input::placeholder {
  color: #777;
}

.search-form button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 45px;
  border: none;
  background-color: #9f2222;
  cursor: pointer;
}

.search-form button::after {
  content: '';
  display: inline-block;
  width: 26px;
  height: 26px;
  background-color: #fff;
  -webkit-mask-image: url('/common_cgc/images/search.png');
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  mask-image: url('/common_cgc/images/search.png');
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}
.setting_txt .inner{
  display: flex;
  justify-content: center;
  align-items: center;
}

/* purpose */
#purpose{
  width:100%;
  background: #f2f2f2;
}

#purpose_inner{
  max-width:1160px;
  margin:0 auto;
  display:flex;
  align-items:stretch;
  gap:43px;
}

#purpose_list,
#purpose_list_2{
  display:flex;
  gap:43px;
  padding:0;
  margin:30px 0;
  list-style:none;
  flex:1 1 0;
}

#purpose_list li,
#purpose_list_2 li{
  flex:1 1 0;
}

#purpose_list a,
#purpose_list_2 a{
  display:block;
  height:100%;
  background:#fff;
  border-radius:20px;
  overflow:hidden;
  text-decoration:none;
  color:inherit;
}

#purpose_list a:hover .purpose_txt,
#purpose_list_2 a:hover .purpose_txt{
  opacity: .8;
}

#purpose .purpose_img{
  display:block;
  background:#f2f2f2;
  overflow: hidden;
}

#purpose .purpose_img img{
  display:block;
  width:100%;
  height:auto;
}

#purpose .purpose_txt{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:120px;
  padding:20px 10px;
  text-align:center;
  line-height:1.5;
  font-size: 125%;
  color: rgba(0, 0, 0, 0.8);
  letter-spacing: .15rem;
}

#purpose_message{
  width:110px;
  background:#dc2f2f;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 2rem 0;
}

#purpose_message span{
  display:block;
  writing-mode:vertical-rl;
  text-orientation:mixed;
  color:#fff;
  font-weight:700;
  letter-spacing:0.08em;
  font-size: 125%;
}
@media screen and (max-width:1180px){
  #purpose_inner{
    max-width:100%;
    padding:0 20px;
    gap:14px;
  }

  #purpose_list,
  #purpose_list_2{
    flex-direction:column;
    gap:14px;
  }

  #purpose_message{
    width:54px;
  }

  #purpose .purpose_txt{
    min-height:auto;
    padding:16px 10px;
    font-size:15px;
    letter-spacing: .05rem;
  }
}

/* guide */
#guide{
  background:url("/common_cgc/images/guide_bg.jpg") center/cover no-repeat;
  padding:90px 0 260px;
  position:relative;
}
#guide::before{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.25);
}
#guide .inner{
  position:relative;
  max-width:1160px;
  margin:0 auto;
  padding:0 40px;
}
#guide h2{
  text-align:center;
  color:#fff;
  font-weight:700;
  font-size:20px;
  letter-spacing:.06em;
  margin:0 0 90px;
}
#guide ul{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  grid-template-columns:repeat(5,210px);
  gap:30px 25px;
  justify-content:center;
}
#guide li{
  margin:0;
}
#guide a{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  width:210px;
  height:130px;
  border-radius:14px;
  background:rgba(255,255,255,.85);
  text-decoration:none;
  color:#222;
  text-align:center;
  font-weight:700;
  font-size:14px;
  line-height:1.35;
  padding:18px 14px 16px;
  box-sizing:border-box;
  position:relative;
}
#guide a::before{
  content:"";
  width:33px;
  height:33px;
  background:var(--icon) center/contain no-repeat;
  margin:0 0 10px;
  flex:0 0 auto;
}
#guide li:nth-child(2) a::before{
  background-size:37px 27px;
}
#guide li:nth-child(3) a::before{
  background-size:33px 25px;
}
#guide li:nth-child(4) a::before{
  background-size:41px 25px;
}
#guide li:nth-child(5) a::before{
  background-size:33px 28px;
}
#guide li:nth-child(6) a::before{
  background-size:25px 23px;
}
#guide li:nth-child(7) a::before{
  background-size:30px 26px;
}
#guide li:nth-child(8) a::before{
  background-size:39px 27px;
}
#guide li:nth-child(9) a::before{
  /* background-size:28px 36px; */
}
#guide li:nth-child(10) a::before{
  /* background-size:38px 30px; */
}
#guide a:hover{
  background:rgba(255,255,255,.98);
}
#guide a:focus-visible{
  outline:3px solid rgba(255,255,255,.9);
  outline-offset:3px;
}
@media screen and (max-width:1180px){
  #guide{
    padding:50px 0;
  }
  #guide h2{
    margin:0 0 40px;
  }
  #guide .inner{
    padding:0 20px;
  }
  #guide ul{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:14px;
  }
  #guide a{
    width:100%;
    min-height:130px;
    height:auto;
  }
}

/* タブ */
#tabsSection {
  width: 860px;
}
.tabs-section {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.tabs-header {
  position: relative;
  background-image: none !important;
}
@media (max-width: 1160px) {
#tabsSection {
  width: 100%;
  margin-bottom: 2rem;
}
  .tabs-header::before,
  .tabs-header::after {
    width: 1.25rem;
  }
}
.tabs-header::before {
  left: 0;
}
.tabs-header::after {
  right: 0;
}
.tabs-section {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.tabs {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  z-index: 1;
  width: 100%;
}
.tabs li {
  position: relative;
  flex: 1;
  text-align: center;
  padding: 10px;
  color: rgba(0, 0, 0, .55);
  cursor: pointer;
  border-right: 1px solid #9e9e9e;
  border-top: 1px solid #9e9e9e;
  border-bottom: 1px solid #9e9e9e;
}
.tabs li:first-child {
  border-left: 1px solid #9e9e9e;
}
@media (max-width: 1160px) {
  .tabs li {
    font-size: 12px;
    padding: .5rem;
    line-height: 1.5;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.tabs li:last-child {
  margin-right: 0;
}
.tabs li.active {
  border-bottom: 3px solid transparent;
  color: rgba(0, 0, 0, 1);
}

.tabs-content {
  padding: 2rem 0 0;
  color: #fff;
  min-height: 290px;
}
.tab-pane {
  display: none;
  width: 100%;
}
.tab-pane.active {
  display: block;
}

.guide-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 2.5rem;
}
.guide-card {
  flex: 1 1 calc(50% - 10px);
  background: #fff;
  text-decoration: none;
  color: #000;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  padding: 1rem;
}

.guide_img {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.guide_img img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
  transform-origin: center center;
}

.guide-card:hover .guide_img img {
  transform: scale(1.1);
}

.guide-card p {
  text-align: center;
  margin: 0;
}
.guide-card p:last-child {
  padding-top: 1rem;
  font-weight: 700;
}
.guide-card:hover p:last-child {
  color: #000;
}

@media (max-width: 1160px) {
  .guide-card {
    flex: 1 1 100%;
  }
}

/* contact */
#contact {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #f3d7d7;
  display: block !important;
  visibility: visible !important;
  padding: 12px 0;
  z-index: 10;
}

#contact.contact_stop {
  position: static;
  width: 100%;
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  #contact {
    padding: 10px 0;
  }
}

#contact .inner {
  max-width: 100vw;
  padding-right: 10px;
}

.contact_list {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.contact_item {
  margin: 0;
  font-size: clamp(11px, 2vw, 18px);
}

.contact_btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  padding: 0 20px 0 65px;
  background: #fff;
  border-radius: 10px;
  text-decoration: none;
  color: #000;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.contact_btn::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  width: 27px;
  height: 27px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.contact_online .contact_btn::before {
  background-image: url("/common_cgc/images/contact_icon01.png");
  width: 25px;
  height: 28px;
}

.contact_mail .contact_btn::before {
  background-image: url("/common_cgc/images/contact_icon02.png");
}

.contact_tel .contact_btn::before {
  background-image: url("/common_cgc/images/contact_icon03.png");
  width: 18px;
  height: 34px;
}
.contact_btn:hover img {
    transform: none;
}

.contact_tel .contact_btn {
  padding-left: 55px;
  padding-bottom: 6px;
  align-items: flex-end;
}

.contact_tel_txt {
  font-size: clamp(11px, 2vw, 16px);
  margin-right: 10px;
  color: #000;
}
.contact_tel_num {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 20px;
  color: #0a7a3a;
  letter-spacing: .02em;
}

.contact_tel_img {
  width: 180px;
  height: auto;
}

.contact_btn:hover {
  opacity: .9;
}

.contact_btn:focus {
  outline: 2px solid #ef7c00;
  outline-offset: 4px;
}

@media screen and (max-width: 1160px) {
  #contact .inner {
    padding: 0 10px;
  }

  .contact_list {
    justify-content: space-between;
    gap: 8px;
  }

  .contact_item {
    flex: 1;
    min-width: 0;
  }

  .contact_btn {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
    text-align: center;
    width: 100%;
    height: 60px;
    letter-spacing: -.03rem;
  }

  .contact_btn::before {
    position: static;
    transform: none;
    margin-bottom: 6px;
    width: 18px !important;
  }

  .contact_tel_num {
    font-size: 12px;
  }
    .contact_tel .contact_btn::before {
    content: none;
    display: none;
  }

  .contact_tel .contact_btn {
    padding: 12px 3px;
    align-items: center;
  }

  .contact_tel_txt {
    display: block;
    margin: 0 0 6px;
  }

  .contact_tel_num {
    flex-direction: column;
    gap: 4px;
    font-size: 14px;
  }
}



#banner {
  padding: 40px 0;
  background: #f2f2f2;
}

#banner ul {
  display:flex;
  flex-wrap:wrap;
  column-gap: calc((100% - 210px*5) / 4);
  justify-content:flex-start;
  gap: 11px 27px;
  list-style:none;
  margin:0;
  padding:0;
}

#banner ul li {
  width:210px;
  box-sizing:border-box;
  border:1px solid #cfcfcf;
  overflow:hidden;
}

#banner ul li img {
  width: 100%;
  height: auto;
  display: block;
}

@media screen and (max-width: 1160px) {
  #banner ul {
    gap: 1rem 0.5rem;
  }
  #banner ul li {
    width: calc((100% - 0.5rem) / 2);
  }
}

/* お知らせ */
#info {
  padding: 80px 0;
}

#info.infomodule {
  padding: 0 0 50px 0;
}

#info h2 {
  position: relative;
  color: #009b6a;
  font-size: 112.5%;
  margin-bottom: 2.5rem;
  padding-left: 38px;
}
#info h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 28px;
  background-image: url('/common_cgc/images/news_icon.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 24px;
}
#info .inner {
  display: flex;
  justify-content: space-between;
}

#info .info_nav {
  width: 250px;
}

#info .news_item {
  display: flex;
  gap: 30px;
  margin-bottom: 1.5rem;
}
#info .news_item_link {
  display: block;
  color: inherit;
  text-decoration: none;
}
#info .news_item_link:hover {
  opacity: 0.8;
}

#info .news_img {
  width: 200px;
  flex-shrink: 0;
  width: 165px;
  height: 106px;
  overflow: hidden;
  border-radius: 8px;
}

#info .news_img img {
  width:100%;
  height:100%!important;
  max-width:none;
  object-fit:cover;
  object-position:center;
  display:block;
  transition: transform 0.3s ease;
  transform-origin: center center;
}

#info .news_item_link:hover .news_img img {
  transform: scale(1.1);
}
#info .news_text h3 {
  font-size: 87.5%;
  font-weight: 700;
  margin: 0;
  color: #125690;
  text-decoration: underline;
}

#info .news_text p {
  font-size: 87.5%;
  color: #555;
  letter-spacing: 0;
}

#info .news_head {
  display: flex;
  align-items: center;
  gap: .5rem;
}

#info .news_date {
  font-size: 87.5%;
  color: #666;
  margin-right: 0.5rem;
  margin-left: 26px;
  min-width: 145px;
}
#info .news_item .news_text .news_date {
  display: inline-block;
}

#info .info_main .info_newstext_green,
#info .info_main .info_newstext_gray,
#info .info_main .info_newstext_blue,
#info .info_main .info_newstext_red,
#info .info_main .info_newstext_black {
  display: inline-block;
  color: #fff;
  font-size: 75%;
  padding: 0 0.4rem;
  border-radius: 5px;
  margin-right: 0.5rem;
}
#info .info_main .info_newstext_green {
  background: #009b6a;
}
#info .info_main .info_newstext_gray {
  background: #9e9e9e;
}
#info .info_main .info_newstext_blue {
  background: #115691;
}
#info .info_main .info_newstext_red {
  background: #ac234d;
}
#info .info_main .info_newstext_black {
  background: #000;
}

#info .news_cat {
  display: inline-block;
  background: #dc2f2f;
  color: #fff;
  font-size: 68.8%;
  padding: 0 0.4rem;
  border-radius: 5px;
  margin-right: 0.5rem;
  min-width: 135px;
  text-align: center;
  letter-spacing: 0;
}
#info .news_cat.event {
  background: #b9237b;
}
#info .news_cat.update {
  background: #6a6a6a;
}
#info .news_list {
  list-style: none;
  padding: 0;
  margin: 0;
}

#info .news_list li {
  display:grid;
  position: relative;
  grid-template-columns:auto auto auto 1fr;
  align-items:start;
  column-gap:10px;
  margin-bottom: 1rem;
  padding-left: 0;
}
.news_list li > p{
  margin:0;
  line-height: 1.3;
}
.news_list li .news_date,
.news_list li .news_cat,
.news_list li p{
  align-self:start;
}
.news_list li p{
  margin:0;
}
.news_list li .news_cat{
  padding-top: .15em !important;
}
.news_list li > span{
  display:inline-flex;
  align-items:center;
  align-self:start;
  white-space:nowrap;
}
#info .news_list li::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 0.7rem;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: url('/common_cgc/images/arw01.png') no-repeat center/contain;
  background-size: cover;
}
#info .news_list a {
  color: #005d82;
  font-size: 87.5%;
  font-weight: 700;
}

#info .news_list a:hover {
  text-decoration: underline;
}

#info .news_more{
  text-align:right;
  margin-top:1rem;
}
#info .news_more a{
  display:inline-block;
  background:#dc2f2f;
  color:#fff;
  padding:.32em 1.2em;
  border-radius:6px;
  text-decoration:none;
  font-weight:700;
  font-size: 87.5%;
}

#info .info_nav ul {
  list-style: none;
  margin: 0;
  padding-left: 0;
}
#info .info_nav li {
  margin-bottom: 7px;
  position: relative;
}
#info .info_nav li:last-child {
  padding-bottom: 0;
}

#info .info_nav a {
  display: flex;
  align-items: center;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  position: relative;
  padding-left: 95px;
  min-height: 79px;
  color: #000;
  overflow: hidden;
}
#info .info_nav a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 79px;
  height: 79px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 15px;
  transition: color .3s ease, background-color .3s ease, box-shadow .3s ease;
}

#info .info_nav li:nth-child(1) a::before {
  background-image: url("/common_cgc/images/info_nav01.jpg");
}
#info .info_nav li:nth-child(2) a::before {
  background-image: url("/common_cgc/images/info_nav02.jpg");
}
#info .info_nav li:nth-child(3) a::before {
  background-image: url("/common_cgc/images/info_nav03.jpg");
}
#info .info_nav li:nth-child(4) a::before {
  background-image: url("/common_cgc/images/info_nav04.jpg");
}
#info .info_nav a:hover::before {
  opacity: .75;
}

@media (max-width: 1160px) {
  #info {
    padding: 40px 0 100px;
  }
  #info .info_nav ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  #info .info_nav a {
    padding-left: 60px;
    min-height: 50px;
    line-height: 1.3;
  }
  #info .info_nav a::before {
    width: 50px;
    height: 50px;
    border-radius: 10px;
  }
  #info .news_list li {
    row-gap: .25rem;
  }

  #info .news_list li > p {
    grid-column: 1 / -1;
  }
  #info .info_main {
    margin-bottom: 1rem;
  }
  #info .inner {
    flex-direction: column;
    padding: 0 1rem;
  }
  #info .info_main,
  #info .info_nav {
    width: 100%;
  }
  #info .news_item {
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
  }
  #info .news_item:last-child {
    margin-bottom: 1rem;
  }
  #info .news_img {
    width: auto;
    height: 200px;
  }
  #info .news_list a {
    display: block;
  }
  #info .news_list li::before {
    top: 10px;
    transform: initial;
  }
}



/* フッター */
#footer {
  background-color: #dc2f2f;
  background-repeat: repeat-x;
  background-position: left 3px;
  color: #fff;
}

#footer .logo-area {
}
#footer .logo-area h1.logo > a img {
  width: auto;
}
#footer .logo a:first-of-type {
  display: block;
  width: 275px;
  margin: 0 auto 1rem;
}
#footer .logo a:last-of-type {
  display: none;
}

@media screen and (max-width: 1160px) {
  #footer .logo-area .logo {
    display: block;
  }
}
.footer_links {
  margin: 20px;
  font-size: 87.5%;
}

.footer_links ul:first-child {
  padding: 0;
  margin: 0;
}
.footer_links ul {
  display: flex;
  flex-wrap: wrap;
  padding: 1rem 0 0;
  margin: 0;
}

.footer_links a {
  text-decoration: underline;
  color: #fff;
}

.footer_links a:hover {
  text-decoration: none;
}

.footer_links li::before {
  content: "|";
  display: inline-block;
  margin: 0 10px;
  vertical-align: middle;
}
.footer_links li:first-child:before {
  content: none;
}
@media screen and (max-width: 1160px) {  
  .footer_links ul {
    flex-direction: column;
  }
  .footer_links li {
    margin-bottom: 1rem;
  }
  .footer_links li::before {
    content: none;
  }
}

.footer_links .pdf {
  display: inline-block;
  font-weight: 700;
  color: #fff;
  padding: 0.1rem 0.4rem;
  margin-right: .5rem;
  border-radius: 3px;
  background-color: #bb1d67;
  font-size: 75%;
}
.footer_links li.eme::before {
  content: none;
}
.footer_links .eme a {
  background: #fff;
  border-radius: 3px;
  color: #bb1d67;
  font-size: 125%;
  text-decoration: none;
  padding: 0 .4rem .2rem;
}

.footer-bottom {
  text-align: left;
  margin: 50px 20px;
}

.address,
.etc {
  font-size: 75%;
}

.address {
  margin-bottom: 2rem;
}

.etc {
  margin-bottom: 5rem;
}

.copyright {
  text-align: center;
  font-size: 68.8%;
  margin: 1rem;
}

#page_top{
  position: fixed;
  right: 24px;
  bottom: 100px;
  width: 30px;
  height: 20px;
  background-color: #d52a29;
  -webkit-mask: url(../images/pagetop.png) no-repeat center / contain;
  mask: url(../images/pagetop.png) no-repeat center / contain;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .25s ease, transform .25s ease;
}
#page_top.is_footer {
  background-color: #fff;
}

#page_top.is_show{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce){
  #page_top{
    transition: none;
  }
}

/* ▼ 矢印（CSS） */
.arrow {
  display: inline-block;
  width: 32px;
  height: 32px;
  border-top: 4px solid #009b6a;
  border-right: 4px solid #009b6a;
  transform: rotate(-45deg); /* ＞を上向きに */
  margin-top: 10px;
  transition: border-color 0.3s ease;
}

/* ▼ footer上では白く */
.pagetop_btn.white .arrow {
  border-color: #ffffff;
}

/* ▼ メディアクエリ（既存に合わせて） */
@media print,
screen and (max-width: 1160px) {
  #page-top {
    right: 10px;
    bottom: 10px;
  }

  .pagetop_btn a {
    width: 40px;
    height: 40px;
    padding-top: 5px;
  }

  .arrow {
    width: 16px;
    height: 16px;
    border-width: 3px;
    margin-top: 8px;
  }
}


/* 初期化 */
.sp, .pc {
  display: none;
}

/* スマホのみ表示 */
@media screen and (max-width: 1160px) {
  .sp {
    display: block !important;
  }
  .pc {
    display: none !important;
  }
}

/* PCのみ表示 */
@media screen and (min-width: 1181px) {
  .sp {
    display: none !important;
  }
  .pc {
    display: block !important;
  }
}


p.voice_navi {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0;
}

.skip {
  position: absolute;
  overflow: hidden;
  width: 0;
  margin: 0;
  padding: 0;
}

a.skip {
  text-align: center;
  padding: 2px 0;
  top: 0;
}

a.skip:active, a.skip:focus {
  display: block;
  font-size: 100%;
  line-height: 1.6;
  top: 0;
  left: 0;
  z-index: 3000;
  height: auto;
}

a.skip:active {
  width: 100%;
}

a.skip:focus {
  width: 99.99%;
}

/* @media screen and (max-width: 1160px) {★★
  .submenu-container {
    display: none;
  }

  .has-submenu.open .submenu-container {
    display: block;
  }
} */

caption {
  display: none;
}

.col_width_01{width: 1% !important;}
.col_width_02{width: 2% !important;}
.col_width_03{width: 3% !important;}
.col_width_04{width: 4% !important;}
.col_width_05{width: 5% !important;}
.col_width_06{width: 6% !important;}
.col_width_07{width: 7% !important;}
.col_width_08{width: 8% !important;}
.col_width_09{width: 9% !important;}
.col_width_10{width: 10% !important;}
.col_width_11{width: 11% !important;}
.col_width_12{width: 12% !important;}
.col_width_13{width: 13% !important;}
.col_width_14{width: 14% !important;}
.col_width_15{width: 15% !important;}
.col_width_16{width: 16% !important;}
.col_width_17{width: 17% !important;}
.col_width_18{width: 18% !important;}
.col_width_19{width: 19% !important;}
.col_width_20{width: 20% !important;}
.col_width_21{width: 21% !important;}
.col_width_22{width: 22% !important;}
.col_width_23{width: 23% !important;}
.col_width_24{width: 24% !important;}
.col_width_25{width: 25% !important;}
.col_width_26{width: 26% !important;}
.col_width_27{width: 27% !important;}
.col_width_28{width: 28% !important;}
.col_width_29{width: 29% !important;}
.col_width_30{width: 30% !important;}
.col_width_31{width: 31% !important;}
.col_width_32{width: 32% !important;}
.col_width_33{width: 33% !important;}
.col_width_34{width: 34% !important;}
.col_width_35{width: 35% !important;}
.col_width_36{width: 36% !important;}
.col_width_37{width: 37% !important;}
.col_width_38{width: 38% !important;}
.col_width_39{width: 39% !important;}
.col_width_40{width: 40% !important;}
.col_width_41{width: 41% !important;}
.col_width_42{width: 42% !important;}
.col_width_43{width: 43% !important;}
.col_width_44{width: 44% !important;}
.col_width_45{width: 45% !important;}
.col_width_46{width: 46% !important;}
.col_width_47{width: 47% !important;}
.col_width_48{width: 48% !important;}
.col_width_49{width: 49% !important;}
.col_width_50{width: 50% !important;}
.col_width_51{width: 51% !important;}
.col_width_52{width: 52% !important;}
.col_width_53{width: 53% !important;}
.col_width_54{width: 54% !important;}
.col_width_55{width: 55% !important;}
.col_width_56{width: 56% !important;}
.col_width_57{width: 57% !important;}
.col_width_58{width: 58% !important;}
.col_width_59{width: 59% !important;}
.col_width_60{width: 60% !important;}
.col_width_61{width: 61% !important;}
.col_width_62{width: 62% !important;}
.col_width_63{width: 63% !important;}
.col_width_64{width: 64% !important;}
.col_width_65{width: 65% !important;}
.col_width_66{width: 66% !important;}
.col_width_67{width: 67% !important;}
.col_width_68{width: 68% !important;}
.col_width_69{width: 69% !important;}
.col_width_70{width: 70% !important;}
.col_width_71{width: 71% !important;}
.col_width_72{width: 72% !important;}
.col_width_73{width: 73% !important;}
.col_width_74{width: 74% !important;}
.col_width_75{width: 75% !important;}
.col_width_76{width: 76% !important;}
.col_width_77{width: 77% !important;}
.col_width_78{width: 78% !important;}
.col_width_79{width: 79% !important;}
.col_width_80{width: 80% !important;}
.col_width_81{width: 81% !important;}
.col_width_82{width: 82% !important;}
.col_width_83{width: 83% !important;}
.col_width_84{width: 84% !important;}
.col_width_85{width: 85% !important;}
.col_width_86{width: 86% !important;}
.col_width_87{width: 87% !important;}
.col_width_88{width: 88% !important;}
.col_width_89{width: 89% !important;}
.col_width_90{width: 90% !important;}
.col_width_91{width: 91% !important;}
.col_width_92{width: 92% !important;}
.col_width_93{width: 93% !important;}
.col_width_94{width: 94% !important;}
.col_width_95{width: 95% !important;}
.col_width_96{width: 96% !important;}
.col_width_97{width: 97% !important;}
.col_width_98{width: 98% !important;}
.col_width_99{width: 99% !important;}

@media screen and (max-width: 1160px) {
  .global-menu .search.sp {
    position: relative;
    z-index: 2001;
    pointer-events: auto;
  }
  .global-menu .search.sp input,
  .global-menu .search.sp button {
    position: relative;
    z-index: 2002;
  }
}

/* ===== main-visual search ===== */

.main-visual { position: relative; }

.main-visual .search {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
}

.main-visual .search.is-fixed {
  position: fixed;
  left: 0;
  right: 0;
  z-index: 1600;
}

.main-visual .search.is-stop {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 5;
}

/* js-scroll */
.js-scroll {
  overflow-y: hidden !important;
}

.font_bold {font-weight: bold !important;}
.font_red {color: #dc2f2f !important;}
.font_blue {color: #274ca1 !important;}
.font_orange {color: #cf6d32 !important;}
.font_gray {color: #9a9a9a !important;}

.infomodule_page {
    padding-bottom: 2rem;
}

.infomodule_page ul {
    width: 100%;
    margin: 0 !important;
    display: flex;
    flex-flow: row wrap;
    justify-content: left;
    gap: 1px
}

.infomodule_page li {
    margin: 0 !important;
    padding-left: 0.2rem !important;
    margin-bottom: 0.3rem !important;
}

.infomodule_page li a,
.infomodule_page li span {
    font-size: 80%;
    display: block;
    color: #000000;
    padding: 3px 12px;
    background-color: #F2F2F2;
    border: 1px solid #999;
    text-decoration: none;
    border-radius: 7px;
}

.infomodule_page ul li::before {
    content: none !important;
}

.infomodule_page li span {
    color: #fff;
    background-color: #7F7F7F;
}

.infomodule_page li a:hover {
    color: #fff;
    background-color: #7F7F7F;
}