@charset "utf-8";

/* ============================================================ */
/* contents */
/* ============================================================ */
.l-content {
  width: 100%;
  position: relative;
  padding: 160px 0;
}

.l-content__inner {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 30px;
  border-radius: 40px 0 40px 0;
}

.bg-contents {
  width: 100%;
  position: relative;
  padding: 160px 0;
  padding: 112px 0;
}

.bg-contents._bg_ {
  position: relative;
  border-radius: 40px 0 40px 0;
}

.bg-contents._bg_::before,
.bg-contents._bg_::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  bottom: 0;
  right: 0;
}

.bg-contents._bg_::before {
  width: 40px;
}

.bg-contents._bg_::after {
  border-radius: 0 0 40px 0;
}

/* 白背景 */
.bg-contents._bg-white_ {

}
.bg-contents._bg-white_::before {
  background-color: var(--gray1);
}
.bg-contents._bg-white_::after {
  background-color: var(--white);
}

/* グレー背景 */
.bg-contents._bg-gray_ {
  background-color: var(--gray1);
}
.bg-contents._bg-gray_::before {

  background-color: var(--white);
}
.bg-contents._bg-gray_::after {
  background-color: var(--gray1);
}

/* 最後の背景 */
.bg-contents._bg-radius-end_::before,
.bg-contents._bg-radius-end_::after {
  bottom: auto;
  right: auto;
  top: 0;
  left: 0;
  rotate: -180deg;
}

.pre {
  overflow: auto;
  word-wrap: break-word;
  width: 100%;
}

/* ============================================================ */
/* テキストスタイル */
/* ============================================================ */
.txt_center {
  text-align: center;
}

.txt_right {
  text-align: right;
}

.txt_left {
  text-align: left;
}

/* ============================================================ */
/* c-contents-mv */
/* ============================================================ */
.c-contents-ttl {
  margin-top: 230px;
  position: relative;

}
.c-contents-ttl._mb140_ {
  margin-bottom: 140px;
}
.c-contents-ttl._mb170_ {
  margin-bottom: 170px;
}
.c-contents-ttl__inner {
  max-width: 1460px;
  margin: 230px auto 0;
  padding: 0 30px;
}
.c-contents-ttl .e-h1 {
  margin-bottom: 25px;
}
.c-contents-ttl__slide {
  position: absolute;
  left: 0;
  top: 48px;
  width: 100%;
  z-index:-1;
}
.c-contents-ttl__slide .__txt {
  width: 100%;
  height: 163px;
  height: 126px;
  background: repeat-x 0 0 / cover;
  animation: slide_txt 40s linear 0s infinite;
}

@keyframes slide_txt {
  0% {
    background-position: 0 top;
  }
  100% {
    background-position: -200rem top;
  }
}

@media screen and (max-width: 900px) {

}

@media screen and (max-width: 1100px) {

  
}

/* ============================================================ */
/* c-contents-mv */
/* ============================================================ */
.c-contents-mv {

  padding: 0 30px;
}
.c-contents-mv .__pic {
  margin: 0 auto;
  border-radius: 40px;
  overflow: hidden;
  height: 400px;
  height: clamp(200px, 20.83svw, 400px);
  display: block;
  max-width: 1520px;
}
.c-contents-mv .__img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

/* ============================================================ */
/* h1 */
/* ============================================================ */
.e-h1 {
}
.e-h1 .__txt {
  font-size: 5rem;
  font-weight: 700;
  line-height: 1.3;
}

/*----- h2 -----*/
.e-h2 {
  
}

.e-h2 .__en {
  font-size: 5rem;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 5px;
  display: block;
  font-family: "Figtree", serif;
}

.e-h2 .__jp {
  font-size: 2rem;
  font-weight: 600;
  color: var(--orange);
}

/* ラージ */
.e-h2._large_ .__en {
  font-size: 14rem;
  margin-bottom: 5px;
}
.e-h2._large_ .__jp {
  font-size: 3rem;
}
@media screen and (max-width: 1240px) {
	.e-h2._large_ .__en {
    font-size:12.5rem;
  }
}

/* ミドル */
.e-h2._medium_ .__en {
  font-size: 10rem;
}
.e-h2._medium_ .__jp {
  font-size: 2.4rem;
}
 

/*----- h3 -----*/
.e-h3 {
 
}

.e-h3 .__num {
  color: var(--orange);
  font-size: 2.8rem;
  font-weight: 700;
}

.e-h3 .__txt {
  font-size: 2.8rem;
  font-weight: 700;
  margin-left: 20px;
}
/*----- h4 -----*/
.e-h4 {

}

/*----- h5 -----*/
.e-h5 {

}

/*----- h6 -----*/
.e-h6 {
}


/* ============================================================ */
/* インデントスタイル */
/* ============================================================ */
.m-indent {
  display: table;
}

.m-indent__item {
  display: table-cell;
  white-space: nowrap;
}

.m-indent._space_ .__item {
  padding-right: 1em;
}

/* ============================================================ */
/* flexスタイル */
/* ============================================================ */
.u-al-fc {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.u-al-fc > * {
  flex: 0 0 auto;
}

.u-al-fr {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.u-al-fl {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
}

._no-wrap_ {
  flex-wrap: nowrap;
}

.u-al-fl2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
}

.u-al-fb {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.u-al-fa {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

._flex1_ {
  flex: 1;
  width: auto;
}

/* ============================================================ */
/* table */
/* ============================================================ */
.m-table {
  font-size: 1.6rem;
  line-height: 1.8;
  width: 100%;
  word-break: break-all;
  word-wrap: break-word;
  border-collapse: collapse;
  border-spacing: 0;
  font-weight: 400;
}

.m-table._border_ th,
.m-table._border_ td {
  background-clip: padding-box;
  text-align: left;
  vertical-align: middle;
}

.m-table._border_ th,
.m-table._border_ td {
  padding: 35px 0;
}

.m-table._pop_ th,
.m-table._pop_ td {
  padding: 35px 0 15px;
  border-bottom: 2px solid var(--line-gray);
}

.m-table._border_ td {
  border-bottom: 1px solid var(--line-gray);
  padding-left: 40px;
  padding-right: 40px;
}

.m-table._border_ th {
  border-bottom: 1px solid var(--orange);
  font-weight: 700;
}

.m-table._pop_ th {
  font-family: "Dela Gothic One", sans-serif;
  font-weight: 400;
  color: var(--brown);
}

.m-table tr:first-child th,
.m-table tr:first-child td {
  padding-top: 0;
}

.m-table._no-border_ th,
.m-table._no-border_ td {
  border-bottom: none;
  padding: 0 0 40px;
}

/* ============================================================ */
/* labelスタイル */
/* ============================================================ */
.e-label {
  display: inline-block;
  text-align: center;
  padding: 3px 0;
  min-width: 90px;
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 4px;
}

.e-label._required_ {
  background-color: var(--orange);
  border: solid 1px var(--orange);
  color: var(--white);
}

/* ============================================================ */
/* accordion */
/* ============================================================ */
.accordion,
.accordion-sp {
  cursor: pointer;
  position: relative;
  color: var(--black);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid var(--line-gray1);
  padding: 15px 25px;
  border-radius: 4px;
  transition: all 0.3s;
}

.accordion._active_,
.accordion-sp._active_ {
  border: 1px solid var(--line-gray1);
  border-bottom: none;
  border-radius: 4px 4px 0 0;
}

.accordion__hide {
  display: none;
  border: 1px solid var(--line-gray1);
  border-top: none;
  border-radius: 0 0 4px 4px;
  padding: 0 25px 25px;
}

.accordion .__txt,
.accordion-sp .__txt {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.6;
}

.accordion .__ico,
.accordion-sp .__ico {
  line-height: 1;
  color: var(--green);
}

.accordion._active_ .__ico,
.accordion-sp._active_ .__ico {
  transform: rotate(180deg);
}

/* ============================================================ */
/* アイコン */
/* ============================================================ */
.e-icon {
  line-height: 1;
}
.e-icon::before {
  content: "";
  display: inline-block;
  background: no-repeat center / contain;
  line-height: 1;
}

.e-icon._pdf_::before {
  mask: url(../../img/common/ico_pdf.svg) no-repeat center / contain;
  width: 20px;
  height: 20px;
  background-color: var(--white);
}

/* 矢印 */
.e-icon._arrow_::before {
  mask: url(../../img/common/ico_arrow.svg) no-repeat center / contain;
  width: 30px;
  height: 30px;
  background-color: var(--arrow);
}

/* 矢印 オレンジ色 */
.e-icon._arrow_._orange_::before {
  background-color: var(--orange);
}

/* 矢印 白色 */
.e-icon._arrow_._white_::before {
  background-color: var(--white);
}

/* 矢印 グレー */
.e-icon._arrow_._gray_::before {
  background-color: var(--white);
}

/* ============================================================ */
/* btn */
/* ============================================================ */
.e-btn {
  transition: all 0.4s ease;
  position: relative;
  border: solid 2px var(--orange);
  border-radius: 8px;
  background-color: var(--orange);
  overflow: hidden;
  min-width: 350px;
  min-height: 80px;
  width: max-content;
  display: flex;
  align-items: center;
  padding: 0 30px;
  cursor: pointer;
}
.e-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 80px;
  translate: 0 -50%;
  display: block;
  width: 1px;
  height: calc(100% - 40px);
  background-color: var(--white);
  opacity: 0.4;
}

.e-btn .__txt {
  color: var(--white);
  font-size: 2rem;
  font-weight: 700;
  transition: inherit;
  background-color: transparent !important;
}

.e-btn .e-icon {
  position: absolute;
  right: 30px;
  top: 50%;
  translate: 0 -50%;
  transition: all 0.4s ease;
}

.e-btn .e-icon::before {
  width: 20px;
  height: 20px;
}

/* 逆向き */
.e-btn._back_ {
  padding-left: 112px;
}
.e-btn._back_::after {
  right: auto;
  left: 80px;
}
.e-btn._back_ .e-icon {
  right: auto;
  left: 30px;
  rotate: -180deg;
}

/* グレー */
.e-btn._gray_ {
  background-color: var(--arrow);
  border-color: var(--arrow);
}

/* ホバー */
.e-btn:hover {
  background-color: var(--white);
  color: var(--orange);
}
.e-btn:hover::after {
  background-color: var(--orange);
}
.e-btn:hover .__txt {
  color: var(--orange);
}
.e-btn:hover .e-icon::before {
  background-color: var(--orange);
  animation: arrow_slide 0.4s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
}

.e-btn._gray_:hover {
  background-color: var(--white);
  color: var(--arrow);
}

.e-btn._gray_:hover::after {
  background-color: var(--arrow);
}

.e-btn._gray_:hover .__txt {
  color: var(--arrow);
  background-color: var(--white);
}

.e-btn._gray_:hover .e-icon::before {
  background-color: var(--arrow);
}

/* ============================================================ */
/* パンくずリスト */
/* ============================================================ */
.c-breadcrumb {

}

.c-breadcrumb__list {
  display: flex;
  align-items: center;
}

.c-breadcrumb__item {
  display: flex;
  align-items: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.c-breadcrumb__item:first-child::before{
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: var(--orange);
  border-radius: 50%;
  margin-right: 10px;
}
.c-breadcrumb__item:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 1px;
  margin: 0 15px;
  background-color: var(--gray2);
}

.c-breadcrumb__item a {
  text-decoration: underline;
  color: var(--orange);
  opacity: 1;
  transition: opacity 0.3s ease;
}

.c-breadcrumb__item:has(span) {
  max-width: 900px;
}

.c-breadcrumb__item span {
  /* white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden; */
}

.c-breadcrumb__item a:hover {
  opacity: 0.5;
}

/* ============================================================ */
/* iframeスタイル */
/* ============================================================ */
.e-iframe {
  position: relative;
  padding-bottom: 56.22%;
  width: 100%;
  height: 0;
  overflow: hidden;
}

.e-iframe > iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ============================================================ */
/* カテゴリーナビ */
/* ============================================================ */
.e-category {
  width: 280px;
}
.e-category-nav {
  overflow: hidden;
  padding-bottom: 11px;
}

.e-category__item {
  display: flex;
  align-items: center;
  column-gap: 10px;
}

.e-category__item:not(:last-child) {
  margin-bottom: 20px;
}

.e-category__item::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--orange);
}

.e-category__item .__txt {
  font-size: 1.8rem;
  font-weight: 600;
  transition: color 0.3s ease;
}

.e-category__item._current_ .__txt {
  color: var(--orange);
}

.e-category__item .__txt:hover {
  color: var(--orange);
}

/* ============================================================ */
/* listスタイル */
/* ============================================================ */
.e-list {
}

.e-list__item {
  margin: 0 0;
}

.e-list__item:last-of-type {
  margin: 0;
}

/* list-circle */
.e-list._list-circle_ {
}

.e-list._list-circle_ .e-list__item {
  position: relative;
  padding-left: 0.5em;
}

.e-list._list-circle_ .e-list__item::before {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  left: 0;
  display: block;
  background: var(--orange);
  width: 3px;
  height: 3px;
  border-radius: 50%;
}

/* list-number */
.e-list-number {
  counter-reset: number 0;
}

.e-list-number .e-list-number__item {
  counter-increment: number;
  position: relative;
  padding: 0 0 0 20px;
}

.e-list-number .e-list-number__item:last-child {
  margin: 0;
}

.e-list-number .e-list-number__item::before {
  content: counter(number) ". ";
  position: absolute;
  top: 4px;
  left: 0;
  line-height: 1.2;
}

/* list-circle-number */
.e-list-circle-number {
  counter-reset: number;
  list-style-type: none;
}

.e-list-circle-number__item {
  position: relative;
}

.e-list-circle-number__item::before {
  content: counter(number);
  counter-increment: number;
  padding-inline: 0.35em 0;
  font-size: 1.4rem;
  margin-right: 0.5em;
}

.e-list-circle-number__item::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
  display: block;
  width: 1em;
  height: 1em;
  border: solid 1px var(--black);
  border-radius: 50%;
}

/* ============================================================ */
/* e-news */
/* ============================================================ */
.e-news {

}
.e-news__link {
  display: flex;
  align-items: flex-start;
  height: 100%;
  width: 100%;
  background-color: var(--white);
  padding: 40px 45px;
  column-gap: 35px;
}

.e-news__img {
  width: 150px;
  height: 107px;
}

.e-news__wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 20px;
}

.e-news-category {
  font-size: 1.4rem;
  width: 120px;
  height: 30px;
  font-weight: 500;
  border: solid 1px var(--line);
  border-radius: 4px;
  display: grid;
  place-content: center;
}

.e-news__date {
  color: var(--orange);
  font-size: 1.8rem;
  display: inline-block;
  font-weight: 500;
}

.e-news__ttl {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.63;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  width: 100%;
}

.e-news-icon {
  align-self: center;
}
@media screen and (max-width: 1100px) {
  .e-news-icon {
    margin-left: auto;
  }
}

.e-news-icon._arrow_::before {
  transition: background-color 0.4s ease;
}

/* ホバー */
.e-news__link:hover .e-news-icon::before {
  animation: arrow_slide 0.4s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
}
.e-news__link:hover .e-news-icon._arrow_::before {
  background-color: var(--orange);
}

/* ============================================================ */
/* pager */
/* ============================================================ */
.e-pager {
}

.e-pager-list {
  display: flex;
  align-items: center;
  column-gap: 10px;
  justify-content: center;
}

.e-pager-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  border: solid 1px var(--gray);
  border-radius: 50%;
  height: 60px;
  width: 60px;
  font-size: 2rem;
  font-weight: 500;
  color: var(--orange);
  background-color: var(--light-orange);
  transition: all 0.3s ease;
  overflow: hidden;
}

.e-pager-numbers:hover {
  opacity: 0.3;
}

.e-pager-item.current .e-pager-numbers {
  background-color: var(--orange);
  color: var(--white);
  pointer-events: none;
}

.e-pager-link {
  position: relative;
  width: 20px;
  height: 20px;
  background-color: transparent;
}


.e-pager-link::after {
  content: "";
  display: block;
  background-color: var(--orange);
  border: none;
  width: 100%;
  height: 100%;
  mask: url(../../img/common/ico_arrow.svg) no-repeat center / contain;
}

.e-pager-link.prev {
  rotate: 180deg;
}

.e-pager-item:has(.prev) {
  margin-right: 20px;
}

.e-pager-item:has(.next) {
  margin-left: 20px;
}

.e-pager-link.deactive {
  opacity: 0.5;
}


/* ============================================================ */
/* columnスタイル */
/* ============================================================ */
.column {
  display: flex;
  flex-wrap: wrap;
}

.column > * {
  margin-bottom: 15px;
}

.column > * * {
  max-width: 100%;
}

.column > * img {
  outline: 1px solid transparent;
}

.column1 > *,
.column > * img:not([class*="wd-a"]) {
  width: 100%;
}

.column2 {
  margin-left: -20px;
  margin-right: -20px;
}

.column2 > * {
  margin-left: 20px;
  margin-right: 20px;
  width: calc(50% - 40px);
}

.column3 {
  margin-left: -22.5px;
  margin-right: -22.5px;
}

@media only screen and (min-width: 768px) and (max-width: 1110px) {
  .column3 {
    margin-left: -15px;
    margin-right: -15px;
  }
}

.column3 > * {
  margin-left: 22.5px;
  margin-right: 22.5px;
  width: calc((100% - 135px) / 3);
}

@media only screen and (min-width: 768px) and (max-width: 1110px) {
  .column3 > * {
    margin-left: 15px;
    margin-right: 15px;
    width: calc((100% - 90px) / 3);
  }
}

.column4 {
  margin-left: -20px;
  margin-right: -20px;
}

.column4 > * {
  margin-left: 20px;
  margin-right: 20px;
  width: calc(25% - 40px);
}

.column5 {
  margin-left: -5px;
  margin-right: -5px;
}

.column5 > * {
  margin-left: 5px;
  margin-right: 5px;
  width: calc(20% - 10.2px);
}

.column6 {
  margin-left: -5px;
  margin-right: -5px;
}

.column6 > * {
  margin-left: 5px;
  margin-right: 5px;
  width: calc(16.66667% - 10.16667px);
}

.flex-column {
  display: flex;
  justify-content: space-between;
}

.flex-column > * {
  flex: 0 0 auto;
}

.flex-column > * * {
  max-width: 100%;
}


/* ============================================================ */
/* e-rise */
/* ============================================================ */
.e-rise-part {
  position: absolute;
  z-index: -1;
}
/* ============================================================ */
/* 予備 */
/* ============================================================ */
.not-found .c-contents-ttl__slide .__txt {
  background-image: url(../../img/common/bg_ttl.svg);
}
/* ============================================================ */
/* 予備 */
/* ============================================================ */
