@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Noto+Serif+JP:wght@400;500;600;700&display=swap');

/**======================================
	contents
======================================**/

/*--------------------------------------
	heading
---------------------------------------*/
/* heading */
.hgroup {
  position: relative;
  margin: 0 auto;
  width: 90%;
  max-width: 1280px;
}

.hgroup::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 100%;
  background-color: var(--text_color);
  transform: scaleX(0); /* ← 初期状態 */
  transform-origin: left;
  animation: underlineExpand 1s ease forwards;
  animation-delay: 0.6s;
}

@keyframes underlineExpand {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}
@media screen and (min-width: 600px) {
  .hgroup {
    padding-left: 0;
    padding-right: 0;
  }
}

.heading01 {
  margin-bottom: 20px;
  font-family: YakuHanJP, 'Roboto Condensed', 'Noto Sans JP', sans-serif;
  font-size: 4rem;
  font-weight: 600;
  color: var(--text_color);
  line-height: 1.4em;
  opacity: 0;
  transform: translateY(15px);
  animation: fadeInUp 0.6s ease-out forwards;
  animation-delay: 1s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media screen and (min-width: 600px) {
  .heading01 {
    margin-bottom: 30px;
    font-size: 5.6rem;
    line-height: 1.2em;
  }
}

@media screen and (min-width: 1025px) {
  .heading01 {
    font-size: 7.2rem;
    margin-bottom: 50px;
  }
}

.heading02,
.heading03,
.heading04,
.heading05 {
  margin-bottom: 0.5em;
  line-height: 1.3em;
  font-weight: 500;
  font-family: YakuHanJP, 'Noto Sans JP', sans-serif;
}

.heading02 {
  font-size: 2.4rem;
}

.heading03 {
  font-size: 2.2rem;
}

.heading04 {
  font-size: 2rem;
}

@media screen and (min-width: 600px) {
  .heading02 {
    font-size: 3rem;
  }

  .heading03 {
    font-size: 2.4rem;
  }

  .heading04 {
    font-size: 2rem;
  }
}

.box > * > .heading03:not(:first-child),
.box > * > .heading04:not(:first-child),
.part > * > .heading03:not(:first-child),
.part > * > .heading04:not(:first-child) {
  margin-top: 1em;
}

/*--------------------------------------
	inline -text
---------------------------------------*/
/* common */
.texts p,
p.text {
  margin-bottom: 1em;
  line-height: 1.8em;
}
.texts p a,
p.text a {
  word-break: break-all;
  word-wrap: break-word;
}

/* list */
.texts ul,
.texts ol,
ul.text,
ol.text {
  margin-bottom: 1em;
}
.texts ul > li,
ul.text > li {
  position: relative;
  margin-bottom: 2px;
  padding-left: 24px;
  line-height: 1.5em;
}
.texts ol > li,
ol.text > li {
  position: relative;
  margin-bottom: 2px;
  padding-left: 28px;
  line-height: 1.5em;
}
.texts ul > li::before,
.texts ul > li::after,
.texts ol > li::before,
.texts ol > li::after,
ul.text > li::before,
ul.text > li::after,
ol.text > li::before,
ol.text > li::after {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.texts ul > li ul,
.texts ul > li ol,
.texts ol > li ul,
.texts ol > li ol,
ul.text > li ul,
ul.text > li ol,
ol.text > li ul,
ol.text > li ol {
  margin-top: 6px;
}

.texts ul > li::before,
ul.text > li::before {
  content: '';
  top: 0.6em;
  left: 0.2em;
  width: 6px;
  height: 6px;
  background-color: var(--text_color);
  border-radius: 100%;
}

.texts ol > li,
ol.text > li {
  counter-increment: num;
  color: var(--text_color);
}
.texts ol > li::after,
ol.text > li::after {
  content: counter(num, decimal-leading-zero) '. ';
  width: 1.5em;
  color: var(--text_color);
}

/* catch / supple / caption / kome */
.catch {
  font-size: 2.2rem !important;
  line-height: 1.5em !important;
  color: var(--text_color);
}

.supple {
  font-size: 1.2rem !important;
  line-height: 1.5em !important;
}

.caption {
  font-size: 1.2rem !important;
  line-height: 1.3em !important;
}

.icon_kome {
  position: relative;
  padding-left: 1.5em !important;
  list-style: none !important;
}
.icon_kome::before {
  content: '※';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 1em;
}

.center {
  text-align: center !important;
}

/*--------------------------------------
	inline -img
---------------------------------------*/
.texts img {
  margin-bottom: 0.5em;
  width: 100%;
}

.pic {
  margin-bottom: 0.5em;
}
.pic img {
  width: 100%;
  vertical-align: bottom;
}

.pic a:active img,
.btn a:active img,
.pic a:hover img {
  opacity: 0.75;
}

/* object_fit ( for cms ) */
.object_fit {
  display: block;
  position: relative;
  margin-bottom: 0.5em;
}
.object_fit::before {
  content: '';
  display: block;
  padding-top: 75%;
}
.object_fit img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (min-width: 600px) {
  /* for ie11& edge */
  .object_fit img {
    font-family: 'object-fit: cover;';
  }
}

/*--------------------------------------
	button
---------------------------------------*/

/* button */

a.button {
  display: inline-block;
  position: relative;
  margin: 0.5em 0 0.8em;
  padding: 0;
  text-decoration: none;
  overflow: hidden;
  cursor: pointer;
}

a.button span {
  display: block;
  border: 1px solid var(--text_color);
  padding: 0.7em 2em;
  font-size: 1.6rem;
  font-weight: 500;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--text_color);
  transition: 0.5s;
}

a.button:hover span,
a.button:active span {
  background: var(--text_color);
  color: var(--background_color);
  transition: 0.5s;
}

a.button:hover span i.icon::before,
a.button:hover span i.icon::after,
a.button:active span i.icon::before {
  color: var(--background_color);
  transition: 0.5s;
}

/* btn_small */

@media screen and (min-width: 600px) {
  .btn_small {
    min-width: 250px;
  }
}

/* btn_modoru */

a.btn_modoru {
  display: inline-block;
  margin-bottom: 20px;
  text-decoration: none;
}

a.btn_modoru:hover {
  transform: translateX(-10px);
  color: inherit;
}

a.btn_modoru i.icon-arrow_left::before {
  font-size: 4rem;
}

@media screen and (min-width: 600px) {
  a.btn_modoru i.icon-arrow_left::before {
    font-size: 6rem;
  }

  a.btn_modoru:hover {
    transform: translateX(-20px);
  }
}

/* btn_more */

.btn_more {
  position: relative;
  display: inline-block;
  background: #fff;
  color: #333;
  padding: 13px 21px 15px;
  padding: 1.3rem 2.1rem 1.5ren;
  border: 1px solid #333;
  transition: color 0.1s cubic-bezier(0.16, 0.08, 0.355, 1),
    background 0.1s cubic-bezier(0.16, 0.08, 0.355, 1);
  min-width: 200px;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transition: background-color 300ms ease-out;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.1);
}

.btn_more span {
  display: inline-block;
  position: relative;
  transition: all 300ms ease-out;
  will-change: transform;
}

.btn_more:hover span,
.btn_more:active span {
  transform: translate3d(-1rem, 0, 0);
  color: #fff;
}

.btn_more .icon {
  position: absolute;
  width: 0.6em;
  right: 0px;
  right: 0rem;
  opacity: 0;
  top: 50%;
  transform: translateY(-40%);
  transition: all 300ms ease-out;
  will-change: right, opacity;
}

.btn_more .icon * {
  stroke-width: 5;
  stroke-color: transparent;
}

a.btn_more span i.icon::before {
  color: #fff;
}

.btn_more:hover,
.btn_more:active {
  background: #333;
  color: #fff;
}

.btn_more:hover .icon,
.btn_more:active .icon {
  opacity: 1;
  right: -2rem;
}

@media screen and (max-width: 1024px) {
  .btn_more span {
    transition: all 100ms ease-out;
  }

  .btn_more .icon {
    transition: all 100ms ease-out;
  }
}

@media screen and (min-width: 1025px) {
}

/* pager */

.navigation.pagination {
  text-align: left;
}

.navigation.pagination .screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.navigation.pagination a {
  text-decoration: none;
}

.navigation.pagination i::before {
  font-size: 1.4rem;
}

.navigation.pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0 5px;
}

.navigation.pagination .page-numbers {
  display: inline-block;
  margin-bottom: 5px;
  padding: 0;
  width: 35px;
  height: 35px;
  line-height: 33px;
  text-align: center;
}

.navigation.pagination .page-numbers.current {
  color: var(--background_color);
  background: var(--text_color);
  border: 1px solid var(--text_color);
  font-weight: 500;
}

.navigation.pagination a.page-numbers {
  border: 1px solid var(--text_color);
  color: var(--text_color);
  font-weight: 500;
  font-size: 1.4rem;
}

.navigation.pagination a.page-numbers:hover,
.navigation.pagination a.page-numbers:focus-visible {
  background: var(--text_color);
  border: 1px solid var(--text_color);
  color: var(--background_color);
}

.navigation.pagination .page-numbers.dots {
  width: auto;
  font-size: 2rem;
  border: none;
}

@media screen and (min-width: 600px) {
  .navigation.pagination .page-numbers {
    width: 35px;
    height: 35px;
    line-height: 33px;
  }
}

/* open_close */
@media screen and (max-width: 599px) {
  .open_close_wrap .open_close_handle {
    display: block;
    position: relative;
    padding: 0;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    overflow: hidden;
    cursor: pointer;
  }
  .open_close_wrap .open_close_handle span {
    display: block;
    border: 1px solid #444;
    padding: 0.7em 1em 0.65em;
    background: #222;
    font-size: 1.6rem;
    font-weight: 500;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #fff;
  }
  .open_close_wrap .open_close_handle:visited span {
    color: #fff;
  }
  .open_close_wrap .open_close_handle:active span {
    border: 1px solid #aaa;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
    background: #333;
  }
  .open_close_wrap .open_close_handle:focus:not(:focus-visible) {
    outline: none;
  }
  .open_close_wrap .open_close_handle:focus-visible {
    outline: 2px solid var(--text_color);
    outline-offset: 4px;
  }
  .open_close_wrap .open_close_handle,
  .open_close_wrap .open_close_handle::before,
  .open_close_wrap .open_close_handle::after,
  .open_close_wrap .open_close_handle > *,
  .open_close_wrap .open_close_handle > *::before,
  .open_close_wrap .open_close_handle > *::after,
  .open_close_wrap .open_close_handle > * > * {
    font-weight: 500;
    color: #fff;
  }
  .open_close_wrap .open_close_handle span {
    border-radius: 0.4em;
  }
  .open_close_wrap .open_close_handle.minus span {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  .open_close_wrap .open_close_handle.plus span {
    position: relative;
  }
  .open_close_wrap .open_close_handle.plus span::before {
    content: '\f067';
    width: 22px;
    height: 22px;
    font-size: 22px;
    font-family: 'icomoon';
    line-height: 22px;
    display: block;
    position: absolute;
    top: 50%;
    margin-top: -11px;
    right: 0.5em;
  }
  .open_close_wrap .open_close_handle.minus span {
    position: relative;
  }
  .open_close_wrap .open_close_handle.minus span::before {
    content: '\f068';
    width: 22px;
    height: 22px;
    font-size: 22px;
    font-family: 'icomoon';
    line-height: 22px;
    display: block;
    position: absolute;
    top: 50%;
    margin-top: -11px;
    right: 0.5em;
  }
  .open_close_wrap .open_close_target {
    padding: 1.2em 1em 0.25em;
    background-color: #fff;
    border-left: 1px solid #999;
    border-right: 1px solid #999;
    border-bottom: 1px solid #999;
    border-bottom-left-radius: 0.4em;
    border-bottom-right-radius: 0.4em;
  }
  .open_close_wrap.type_menu .open_close_target {
    margin-top: 0;
    padding: 0;
    border: none;
  }
  .open_close_wrap.type_menu .open_close_target.btn_group_sp {
    margin-top: 0;
  }
  .open_close_wrap.type_menu
    .open_close_target.btn_group_sp
    :first-child
    a
    span {
    border-top: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
}
@media screen and (min-width: 600px) {
  .open_close_wrap .open_close_handle {
    padding: 10px 0 10px 25px;
  }
  .open_close_wrap .open_close_handle.plus {
    position: relative;
  }
  .open_close_wrap .open_close_handle.plus::before {
    content: '\f067';
    width: 18px;
    height: 18px;
    font-size: 18px;
    font-family: 'icomoon';
    line-height: 18px;
    display: block;
    position: absolute;
    top: 50%;
    margin-top: -9px;
  }
  .open_close_wrap .open_close_handle.minus {
    position: relative;
  }
  .open_close_wrap .open_close_handle.minus::before {
    content: '\f068';
    width: 18px;
    height: 18px;
    font-size: 18px;
    font-family: 'icomoon';
    line-height: 18px;
    display: block;
    position: absolute;
    top: 50%;
    margin-top: -9px;
  }
  .open_close_wrap .open_close_handle:hover {
    color: #999;
    cursor: pointer;
  }
  .open_close_wrap .open_close_target {
    padding-bottom: 20px;
  }
  .open_close_wrap.type_menu .open_close_target {
    margin-top: 0;
    padding: 0;
    border: none;
    background-color: inherit;
  }
}

/*--------------------------------------
	box > part > * 
---------------------------------------*/

/* flext_box */
@media screen and (max-width: 599px) {
  /* reset */
  .image_cont,
  .texts_cont,
  .left_cont,
  .right_cont,
  .list_cont {
    margin-bottom: 1em;
  }

  /* image_texts left_right float ( sp ) */
  .image_texts_sp {
    display: flex;
    justify-content: space-between;
  }
  .image_texts_sp > .image_cont {
    flex-basis: 30%;
    order: 1;
    max-width: 30%;
  }
  .image_texts_sp > .texts_cont {
    flex-basis: 65%;
    order: 2;
    max-width: 65%;
  }

  .texts_image_sp {
    display: flex;
    justify-content: space-between;
  }
  .texts_image_sp > .image_cont {
    flex-basis: 30%;
    order: 2;
    max-width: 30%;
  }
  .texts_image_sp > .texts_cont {
    flex-basis: 65%;
    order: 1;
    max-width: 65%;
  }

  .left_right_sp {
    display: flex;
    justify-content: space-between;
  }
  .left_right_sp > .left_cont {
    flex-basis: 48%;
    max-width: 48%;
    order: 1;
  }
  .left_right_sp > .right_cont {
    flex-basis: 48%;
    max-width: 48%;
    order: 2;
  }

  .float_left_sp > .image_cont {
    float: left;
    margin: 0 1em 0.6em 0;
    width: 20%;
  }

  .float_right_sp > .image_cont {
    float: right;
    margin: 0 0 0.6em 1em;
    width: 30%;
  }

  .image_cont .caption,
  .image_cont .texts,
  .image_cont .text,
  .image_cont .supple {
    padding-left: 0.3em;
    padding-right: 0.3em;
  }

  /* clm_box ( sp ) */
  .clm2_sp,
  .clm3_sp,
  .clm4_sp,
  .clm5_sp {
    display: flex;
    flex-wrap: wrap;
  }
  .clm2_sp > .list_cont .caption,
  .clm2_sp > .list_cont .texts,
  .clm2_sp > .list_cont .text,
  .clm3_sp > .list_cont .caption,
  .clm3_sp > .list_cont .texts,
  .clm3_sp > .list_cont .text,
  .clm4_sp > .list_cont .caption,
  .clm4_sp > .list_cont .texts,
  .clm4_sp > .list_cont .text,
  .clm5_sp > .list_cont .caption,
  .clm5_sp > .list_cont .texts,
  .clm5_sp > .list_cont .text {
    padding-left: 0.3em;
    padding-right: 0.3em;
  }
  #contents_wrap .contents .main_area .box .part.clm2_sp,
  #contents_wrap .contents .main_area .box .part.clm3_sp,
  #contents_wrap .contents .main_area .box .part.clm4_sp,
  #contents_wrap .contents .main_area .box .part.clm5_sp {
    margin-bottom: -1em;
  }

  .clm2_sp > .list_cont {
    margin-right: 2%;
    flex-basis: 49%;
    max-width: 49%;
  }
  .clm2_sp > .list_cont:nth-child(2n) {
    margin-right: 0;
  }

  .clm3_sp > .list_cont {
    margin-right: 2%;
    flex-basis: 32%;
    max-width: 32%;
  }
  .clm3_sp > .list_cont:nth-child(3n) {
    margin-right: 0;
  }

  .clm4_sp > .list_cont {
    margin-right: 2%;
    flex-basis: 23.5%;
    max-width: 23.5%;
  }
  .clm4_sp > .list_cont:nth-child(4n) {
    margin-right: 0;
  }

  .clm5_sp > .list_cont {
    margin-right: 2.5%;
    flex-basis: 18%;
    max-width: 18%;
  }
  .clm5_sp > .list_cont:nth-child(5n) {
    margin-right: 0;
  }
}
@media screen and (min-width: 600px) and (max-width: 1024px) {
  /* reset */
  .image_cont,
  .texts_cont,
  .left_cont,
  .right_cont,
  .list_cont {
    margin-bottom: 1em;
  }

  /* image_texts left_right float ( tb ) */
  .image_texts_tb {
    display: flex;
    justify-content: space-between;
  }
  .image_texts_tb > .image_cont {
    flex-basis: 30%;
    order: 1;
    max-width: 30%;
  }
  .image_texts_tb > .texts_cont {
    flex-basis: 65%;
    order: 2;
    max-width: 65%;
  }

  .texts_image_tb {
    display: flex;
    justify-content: space-between;
  }
  .texts_image_tb > .image_cont {
    flex-basis: 30%;
    order: 2;
    max-width: 30%;
  }
  .texts_image_tb > .texts_cont {
    flex-basis: 65%;
    order: 1;
    max-width: 65%;
  }

  .left_right_tb {
    display: flex;
    justify-content: space-between;
  }
  .left_right_tb > .left_cont {
    flex-basis: 48%;
    order: 1;
    max-width: 48%;
  }
  .left_right_tb > .right_cont {
    flex-basis: 48%;
    order: 2;
    max-width: 48%;
  }

  .float_left_tb > .image_cont {
    float: left;
    margin: 0 1em 0.6em 0;
    width: 20%;
  }

  .float_right_tb > .image_cont {
    float: right;
    margin: 0 0 0.6em 1em;
    width: 30%;
  }

  .image_cont .caption,
  .image_cont .texts,
  .image_cont .text,
  .image_cont .supple {
    padding-left: 0.3em;
    padding-right: 0.3em;
  }

  /* clm_box ( tb ) */
  .clm2_tb,
  .clm3_tb,
  .clm4_tb,
  .clm5_tb {
    display: flex;
    flex-wrap: wrap;
  }
  .clm2_tb > .list_cont .caption,
  .clm2_tb > .list_cont .texts,
  .clm2_tb > .list_cont .text,
  .clm3_tb > .list_cont .caption,
  .clm3_tb > .list_cont .texts,
  .clm3_tb > .list_cont .text,
  .clm4_tb > .list_cont .caption,
  .clm4_tb > .list_cont .texts,
  .clm4_tb > .list_cont .text,
  .clm5_tb > .list_cont .caption,
  .clm5_tb > .list_cont .texts,
  .clm5_tb > .list_cont .text {
    padding-left: 0.3em;
    padding-right: 0.3em;
  }
  #contents_wrap .contents .main_area .box .part.clm2_tb,
  #contents_wrap .contents .main_area .box .part.clm3_tb,
  #contents_wrap .contents .main_area .box .part.clm4_tb,
  #contents_wrap .contents .main_area .box .part.clm5_tb {
    margin-bottom: -1em;
  }

  .clm2_tb > .list_cont {
    margin-right: 2%;
    flex-basis: 49%;
    max-width: 49%;
  }
  .clm2_tb > .list_cont:nth-child(2n) {
    margin-right: 0;
  }

  .clm3_tb > .list_cont {
    margin-right: 2%;
    flex-basis: 32%;
    max-width: 32%;
  }
  .clm3_tb > .list_cont:nth-child(3n) {
    margin-right: 0;
  }

  .clm4_tb > .list_cont {
    margin-right: 2%;
    flex-basis: 23.5%;
    max-width: 23.5%;
  }
  .clm4_tb > .list_cont:nth-child(4n) {
    margin-right: 0;
  }

  .clm5_tb > .list_cont {
    margin-right: 2.5%;
    flex-basis: 18%;
    max-width: 18%;
  }
  .clm5_tb > .list_cont:nth-child(5n) {
    margin-right: 0;
  }
}
@media screen and (min-width: 1025px) {
  /* reset */
  .image_cont,
  .texts_cont,
  .left_cont,
  .right_cont,
  .list_cont {
    margin-bottom: 1.5em;
  }

  /* image_texts left_right float ( pc ) */
  .image_texts_pc {
    display: flex;
    justify-content: space-between;
  }
  .image_texts_pc > .image_cont {
    flex-basis: 30%;
    order: 1;
    max-width: 30%;
  }
  .image_texts_pc > .texts_cont {
    flex-basis: 65%;
    order: 2;
    max-width: 65%;
  }

  .texts_image_pc {
    display: flex;
    justify-content: space-between;
  }
  .texts_image_pc > .image_cont {
    flex-basis: 30%;
    order: 2;
    max-width: 30%;
  }
  .texts_image_pc > .texts_cont {
    flex-basis: 65%;
    order: 1;
    max-width: 65%;
  }

  .left_right_pc {
    display: flex;
    justify-content: space-between;
  }
  .left_right_pc > .left_cont {
    flex-basis: 48%;
    order: 1;
    max-width: 48%;
  }
  .left_right_pc > .right_cont {
    flex-basis: 48%;
    order: 2;
    max-width: 48%;
  }

  .float_left_pc > .image_cont {
    float: left;
    margin: 0 1em 0.6em 0;
    width: 20%;
  }

  .float_right_pc > .image_cont {
    float: right;
    margin: 0 0 0.6em 1em;
    width: 30%;
  }

  .image_cont .caption,
  .image_cont .texts,
  .image_cont .text,
  .image_cont .supple {
    padding-left: 0.3em;
    padding-right: 0.3em;
  }

  /* clm_box ( pc ) */
  .clm2_pc,
  .clm3_pc,
  .clm4_pc,
  .clm5_pc {
    display: flex;
    flex-wrap: wrap;
  }
  .clm2_pc > .list_cont .caption,
  .clm2_pc > .list_cont .texts,
  .clm2_pc > .list_cont .text,
  .clm3_pc > .list_cont .caption,
  .clm3_pc > .list_cont .texts,
  .clm3_pc > .list_cont .text,
  .clm4_pc > .list_cont .caption,
  .clm4_pc > .list_cont .texts,
  .clm4_pc > .list_cont .text,
  .clm5_pc > .list_cont .caption,
  .clm5_pc > .list_cont .texts,
  .clm5_pc > .list_cont .text {
    padding-left: 0.3em;
    padding-right: 0.3em;
  }
  #contents_wrap .contents .main_area .box .part.clm2_pc,
  #contents_wrap .contents .main_area .box .part.clm3_pc,
  #contents_wrap .contents .main_area .box .part.clm4_pc,
  #contents_wrap .contents .main_area .box .part.clm5_pc {
    margin-bottom: -1em;
  }

  .clm2_pc > .list_cont {
    margin-right: 2%;
    flex-basis: 49%;
    max-width: 49%;
  }
  .clm2_pc > .list_cont:nth-child(2n) {
    margin-right: 0;
  }

  .clm3_pc > .list_cont {
    margin-right: 2%;
    flex-basis: 32%;
    max-width: 32%;
  }
  .clm3_pc > .list_cont:nth-child(3n) {
    margin-right: 0;
  }

  .clm4_pc > .list_cont {
    margin-right: 2%;
    flex-basis: 23.5%;
    max-width: 23.5%;
  }
  .clm4_pc > .list_cont:nth-child(4n) {
    margin-right: 0;
  }

  .clm5_pc > .list_cont {
    margin-right: 2.5%;
    flex-basis: 18%;
    max-width: 18%;
  }
  .clm5_pc > .list_cont:nth-child(5n) {
    margin-right: 0;
  }
}
/*--------------------------------------
	table
---------------------------------------*/
table {
  margin: 0 0 0.6em;
  width: 100%;
}
table th {
  padding: 0.5em;
  vertical-align: top;
  line-height: 1.4em;
}
@media screen and (min-width: 600px) {
  table th {
    padding: 15px 10px;
  }
  table td {
    padding: 15px 10px;
  }
}

/* table01
table.table01 {
  border-bottom: 1px solid #ddd;
}
table.table01 th {
  border-top: 1px solid #ddd;
  background: #eee;
  font-weight: 500;
}
table.table01 td {
  background: #fff;
}

/* table02
table.table02 {
  border-top: 1px solid #ddd;
  background: #fff;
}
table.table02 th {
  border-bottom: 1px solid #ddd;
  font-weight: 500;
}
table.table02 td {
  border-bottom: 1px solid #ddd;
}

/* table03
table.table03 {
  background: #fff;
}
table.table03 th,
table.table03 td {
  border: 1px solid #ddd;
}
table.table03 th,
table.table03 th p {
  background: #eee;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 599px) {
  table.table03 thead {
    display: none;
  }
  table.table03 tbody tr {
    display: block;
    margin-bottom: 1em;
  }
  table.table03 tbody th {
    display: block;
    text-align: left;
  }
  table.table03 tbody td {
    display: flex;
    padding: 0;
    border-top: none;
  }
  table.table03 tbody td::before,
  table.table03 tbody td p {
    padding: 0.5em 0.75em;
  }
  table.table03 tbody td::before {
    content: attr(data-title);
    background: #eee;
    font-weight: 500;
  }
}

/* table04
table.table04 th,
table.table04 td {
  padding: 0.5em 0.75em;
  border: 1px solid #ddd;
}
table.table04 th {
  background: #f8f8f8;
}
*/

/* table_reset */
table.table0 {
  margin: 0;
}
table.table0 th {
  background: none;
}
table.table0 td {
  background: none;
}

@media screen and (max-width: 599px) {
  /* table_block */
  table.table_block_sp th {
    display: block;
    padding: 0.5em;
    /*    border-top: 1px solid #ddd; */
    text-align: center;
  }
  table.table_block_sp td {
    display: block;
    padding: 0.5em;
  }
}
@media screen and (max-width: 1024px) {
  /* scroll_table */
  .scroll_table {
    overflow: auto;
    white-space: nowrap;
  }
  .scroll_table::-webkit-scrollbar {
    height: 5px;
  }
  .scroll_table::-webkit-scrollbar-track {
    background: #f1f1f1;
  }
  .scroll_table::-webkit-scrollbar-thumb {
    background: #bcbcbc;
  }
  .scroll_table table {
    width: 100%;
  }
}

/*--------------------------------------
	form
---------------------------------------*/
/* input_text, textarea */
form input.input_text,
form select.input_text {
  margin: 0.5em 0;
  padding: 0.4em 1em;
  border: 1px solid #ddd;
  border-radius: 0.2em;
  width: 100%;
  min-height: 2.2em;
  background-color: #fff;
}
form input.input_text.size_m {
  width: 40%;
  display: inline-block;
}
form input.input_text.size_s {
  width: 25%;
  display: inline-block;
}
form input.input_text.size_ss,
form select.input_text.size_ss {
  width: 15%;
  display: inline-block;
}
form input.input_text:hover,
form input.input_text:focus {
  background-color: #fafafa;
  border: 1px solid #c5c5c5;
}
form input.input_text[disabled],
form input.input_text[disabled]:hover {
  background-color: #eee;
  border: 1px solid #c5c5c5;
}

form .textarea {
  margin: 0.5em 0;
  padding: 0.4em 1em;
  border: 1px solid #ddd;
  width: 100%;
  min-height: 3.2em;
  background-color: #fff;
  border-radius: 0.2em;
}
form .textarea:hover,
form .textarea:focus {
  background-color: #fafafa;
  border: 1px solid #c5c5c5;
}

/* radio */
form .radio_label input[type='radio'] {
  display: none;
}
form .radio_label label span {
  position: relative;
  margin-right: 25px;
  padding-left: 35px;
}
form .radio_label label span::before {
  content: '';
  display: block;
  position: absolute;
  top: -1.5px;
  left: 0;
  border: 1px solid #ddd;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  background: #fff;
  transition: 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
form .radio_label label span::after {
  content: '';
  display: block;
  position: absolute;
  top: 11.5px;
  left: 13px;
  border-radius: 50%;
  width: 0;
  height: 0;
  background: #333;
  opacity: 0;
  transition: 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
form .radio_label input[type='radio']:checked + span::after {
  top: 3.5px;
  left: 5px;
  width: 15px;
  height: 15px;
  opacity: 1;
}

/* checkbox */
form .checkbox_label input[type='checkbox'] {
  display: none;
}
form .checkbox_label label span {
  position: relative;
  margin-right: 25px;
  padding-left: 35px;
}
form .checkbox_label label span::before {
  content: '';
  display: block;
  position: absolute;
  top: -1.5px;
  left: 0;
  border: 1px solid #ddd;
  width: 25px;
  height: 25px;
  background: #fff;
  transition: 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

form .checkbox_label label span::after {
  content: '';
  display: block;
  position: absolute;
  top: 17.1px;
  left: 9px;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  width: 0;
  height: 0;
  background: #fff;
  transform: rotate(45deg);
  transition: 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
form .checkbox_label input[type='checkbox']:checked + span::before {
  background: #333;
}
form .checkbox_label input[type='checkbox']:checked + span::after {
  top: 3px;
  left: 9px;
  width: 8px;
  height: 12px;
  background: #333;
}

@media screen and (min-width: 600px) {
  form .radio_vertical .wpcf7-list-item:not(:last-child),
  .checkbox_vertical .wpcf7-list-item:not(:last-child) {
    display: block;
  }
}

/* 同意確認用 */
form .wpcf7-acceptance input[type='checkbox'] {
  display: none;
}

form .wpcf7-acceptance .wpcf7-list-item {
  margin-left: 0;
}
form .wpcf7-acceptance label {
  display: inline-block;
  vertical-align: top;
  cursor: pointer;
}

form .wpcf7-acceptance label span.wpcf7-list-item-label {
  position: relative;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 35px;
  display: inline-block;
}

form .wpcf7-acceptance label span.wpcf7-list-item-label::before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  border: 1px solid #ddd;
  width: 25px;
  height: 25px;
  background: #fff;
  transition: 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

form .wpcf7-acceptance label span.wpcf7-list-item-label::after {
  content: '';
  display: block;
  position: absolute;
  top: 17.1px;
  left: 9px;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  width: 0;
  height: 0;
  background: #fff;
  transform: rotate(45deg);
  transition: 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

form
  .wpcf7-acceptance
  input[type='checkbox']:checked
  + span.wpcf7-list-item-label::before {
  background: #333;
}

form
  .wpcf7-acceptance
  input[type='checkbox']:checked
  + span.wpcf7-list-item-label::after {
  top: 3px;
  left: 9px;
  width: 8px;
  height: 12px;
  background: #333;
}

/* select */
form .input_select_wrap {
  position: relative;
}
form .input_select_wrap::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 20px;
  z-index: 2;
  width: 7px;
  height: 7px;
  margin-top: -4px;
  border-right: 1.5px solid var(--text_color);
  border-bottom: 1.5px solid var(--text_color);
  pointer-events: none;
  transform: rotate(45deg);
}

form select {
  color: #333;
}

form .input_select_wrap select {
  margin: 0.5em 0;
  padding: 0.4em 1em;
  border: 1px solid #ddd;
  width: 100%;
  height: 3em;
  background-color: #fff;
  border-radius: 0.2em;
  -webkit-appearance: none;
  cursor: pointer;
}

/* date */
form input[type='date'] {
  width: 100%;
  height: 3em;
  background-color: #fff;
  border-radius: 0.2em;
  -webkit-appearance: none;
}

/* hidden */
.form_input_set .hidden_cont p {
  margin: 0.5em 0;
  padding: 0.4em 1em;
  border: 1px solid #ddd;
  border-radius: 0.2em;
  width: 100%;
  min-height: 2.2em;
  background-color: #f2f2f2;
}
#confirm_form .form_input_set .hidden_cont p {
  margin: 0.5em 0;
  padding: 0.4em;
  border: none;
  background-color: inherit;
}

/* other */
.form_scroll_cont {
  margin: 0.6em 0 0.4em;
  padding: 0.6em;
  border: 2px solid #ddd;
  background-color: #fafafa;
  height: 6em;
  overflow-y: scroll;
}
.form_scroll_cont h4,
.form_scroll_cont p {
  font-size: 1.3rem;
  line-height: 1.3em;
}

/* submit */
form input[type='submit'] {
  -webkit-appearance: none;
}

/* validate, other */
form label.error {
  display: block;
  margin-top: 0.4em;
  font-size: 1.3rem;
  color: #c00;
}

form span.must {
  margin-left: 0.6em;
  font-size: 1.3rem;
  color: #c00;
}

.form_caption {
  padding-top: 0.4em;
  color: #888;
}

/* form_set */
@media screen and (max-width: 599px) {
  /* radio, checkbox */
  form .radio_horizon,
  form .radio_vertical,
  form .checkbox_horizon,
  form .checkbox_vertical {
    margin: 0.5em 0;
    padding: 1px;
  }
  form .radio_horizon .wpcf7-list-item,
  form .radio_vertical .wpcf7-list-item,
  form .checkbox_horizon .wpcf7-list-item,
  form .checkbox_vertical .wpcf7-list-item {
    display: inline-block;
    position: relative;
  }
  form .radio_horizon label span,
  form .radio_vertical label span,
  form .checkbox_horizon label span,
  form .checkbox_vertical label span {
    display: block;
    position: relative;
    padding: 0.5em 1em 0.5em 2.8em;
    border-radius: inherit;
    font-weight: 500;
    z-index: 3;
  }
  form .radio_horizon label:first-child span,
  form .radio_vertical label:first-child span,
  form .checkbox_horizon label:first-child span,
  form .checkbox_vertical label:first-child span {
    border-top-left-radius: inherit;
    border-top-right-radius: inherit;
  }
  form .radio_horizon label:nth-last-of-type(1),
  form .radio_vertical label:nth-last-of-type(1),
  form .checkbox_horizon label:nth-last-of-type(1),
  form .checkbox_vertical label:nth-last-of-type(1) {
    border-bottom: none;
  }
  form .radio_horizon label:nth-last-of-type(1) span,
  form .radio_vertical label:nth-last-of-type(1) span,
  form .checkbox_horizon label:nth-last-of-type(1) span,
  form .checkbox_vertical label:nth-last-of-type(1) span {
    border-bottom-left-radius: inherit;
    border-bottom-right-radius: inherit;
  }
  form .radio_horizon .radio_label label span,
  form .radio_vertical .radio_label label span,
  form .checkbox_horizon .radio_label label span,
  form .checkbox_vertical .radio_label label span {
    margin-right: 0;
    padding-left: 45px;
  }
  form .radio_horizon .radio_label label span::before,
  form .radio_vertical .radio_label label span::before,
  form .checkbox_horizon .radio_label label span::before,
  form .checkbox_vertical .radio_label label span::before {
    top: calc(50% - 12.5px);
    left: 10px;
  }
  form .radio_horizon .radio_label label span::after,
  form .radio_vertical .radio_label label span::after,
  form .checkbox_vertical .radio_label label span::after {
    top: 50%;
    left: 22.5px;
  }
  form .radio_horizon .radio_label input[type='radio']:checked + span::after,
  form .radio_vertical .radio_label input[type='radio']:checked + span::after,
  form
    .checkbox_vertical
    .radio_label
    input[type='radio']:checked
    + span::after {
    top: calc(50% - 7.5px);
    left: 15px;
  }
  form .radio_horizon .checkbox_label label span,
  form .radio_vertical .checkbox_label span,
  form .checkbox_horizon .checkbox_label label span,
  form .checkbox_vertical .checkbox_label label span {
    margin-right: 0;
    padding-left: 45px;
  }
  form .radio_horizon .checkbox_label label span::before,
  form .radio_vertical .checkbox_label label span::before,
  form .checkbox_horizon .checkbox_label label span::before,
  form .checkbox_vertical .checkbox_label label span::before {
    top: calc(50% - 12.5px);
    left: 10px;
  }
  form .radio_horizon .checkbox_label label span::after,
  form .radio_vertical .checkbox_label label span::after,
  form .checkbox_horizon .checkbox_label label span::after,
  form .checkbox_vertical .checkbox_label label span::after {
    top: 50%;
    left: 22.5px;
  }
  form
    .radio_horizon
    .checkbox_label
    input[type='checkbox']:checked
    + span::after,
  form
    .radio_vertical
    .checkbox_label
    input[type='checkbox']:checked
    + span::after,
  form
    .checkbox_vertical
    .checkbox_label
    input[type='checkbox']:checked
    + span::after,
  form
    .checkbox_horizon
    .checkbox_label
    input[type='checkbox']:checked
    + span::after {
    top: calc(50% - 9px);
    left: 18px;
  }
  form#confirm_form .radio_horizon,
  form#confirm_form .radio_vertical,
  form#confirm_form .checkbox_horizon,
  form#confirm_form .checkbox_vertical {
    border: none;
  }

  /* form_set ( sp ) */
  form .form_input_set .form_fieldset {
    margin-bottom: 0.7em;
    padding-bottom: 0.7em;
  }
  form .form_input_set .form_fieldset .form_legend p {
    font-size: 1.3rem;
    font-weight: 500;
  }
  form .form_input_set .form_fieldset .form_cont .input_cover_start,
  form .form_input_set .form_fieldset .form_cont p {
    font-size: 1.5rem;
  }
  form .form_submit_set {
    margin-top: 1em;
  }
  form .form_submit_set .submit_send {
    width: 100%;
  }

  /* form_set01 */
  .form_set01 {
    padding-top: 1em;
    border-top: 2px solid #ddd;
  }
  .form_set01 .form_fieldset {
    border-bottom: 1px dashed #ddd;
  }

  /* form_set02 */
  .form_set02 {
    padding-top: 1em;
    border-top: 2px solid #ddd;
  }
  .form_set02 .form_fieldset {
    border-bottom: 1px dashed #ddd;
  }
}
@media screen and (min-width: 600px) {
  /* input */
  form input {
    margin: 0;
  }

  /* select */
  form select option {
    padding: 5px;
  }

  /* radio, checkbo */
  form .radio_label label,
  form .checkbox_label label {
    display: inline-block;
    margin: 15px 25px 0 0;
    vertical-align: top;
    cursor: pointer;
  }
  form .radio_label input,
  form .checkbox_label input {
    margin-right: 10px;
  }

  /* form_set ( pc ) */
  /* PCでは横並び
  form .form_input_set .form_fieldset {
    display: table;
    width: 100%;
    table-layout: fixed;
  }
  form .form_input_set .form_fieldset .form_legend {
    display: table-cell;
    margin-bottom: 1px;
    padding: 20px 10px;
    width: 25%;
    vertical-align: top;
  }
  form .form_input_set .form_fieldset .form_cont {
    display: table-cell;
    padding: 6px;
    vertical-align: top;
  }
*/
  form .form_fieldset {
    padding-bottom: 1em;
  }
  form .form_input_set .form_fieldset .form_legend p {
    font-weight: 500;
  }
  form .form_input_set .form_fieldset .form_cont .form_caption {
    padding-top: 5px;
    color: #888;
  }
  form .form_submit_set {
    margin-top: 1.5em;
    text-align: center;
  }
  form#confirm_form .form_input_set .form_cont {
    padding: 25px 15px;
  }
  form#confirm_form .form_submit_set .form_buttons {
    display: flex;
    justify-content: center;
  }
  form#confirm_form .form_submit_set .form_buttons .submit_send {
    order: 2;
  }
  form#confirm_form .form_submit_set .form_buttons .submit_back {
    order: 1;
    margin-right: 1em;
  }

  /* form_set01 */
  .form_set01 .form_input_set .form_fieldset .form_legend {
    border-bottom: 1px solid #ddd;
    font-weight: 500;
  }
  .form_set01 .form_input_set .form_fieldset .form_cont {
    border-bottom: 1px solid #ddd;
  }

  /* form_set02 */
  .form_set02 .form_input_set {
    border-bottom: 1px solid #ddd;
  }
  .form_set02 .form_input_set .form_fieldset .form_legend {
    border-top: 1px solid #ddd;
    border-bottom: none;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    background: #fcfcfc;
  }
  .form_set02 .form_input_set .form_fieldset .form_cont {
    border-top: 1px solid #ddd;
    border-bottom: none;
    border-left: none;
    border-right: 1px solid #ddd;
  }

  /* checkbox_text */
  .checkboxtext_left {
    float: left;
    width: 200px;
  }

  .checkboxtext_right {
    float: left;
    width: 200px;
  }
}

/*--------------------------------------
	Contact Form 7
---------------------------------------*/

.wpcf7 .form_cont {
  width: 100%;
}

.wpcf7 .form_buttons {
  text-align: center;
}

.wpcf7 .submit_button {
  display: inline-block;
  padding: 0.6em 2em 0.65em;
  min-width: 200px;
  border: 1px solid var(--text_color);
  text-align: center;
  vertical-align: baseline;
  color: var(--text_color);
  transition: 0.5s;
  background: none;
  border-radius: 0;
  font-weight: 500;
}

.wpcf7 .submit_button:hover {
  background: var(--text_color);
  color: var(--background_color);
  transition: 0.5s;
  cursor: pointer;
}

.wpcf7 .wpcf7-response-output,
.wpcf7 .wpcf7-validation-errors {
  margin-top: 30px;
  padding: 15px 25px;
  border: 2px solid #ff0000;
}

.wpcf7 .wpcf7-mail-sent-ok {
  border: 5px solid #ccc !important;
}

.wpcf7 .wpcf7-response-output.wpcf7-display-none {
  display: none;
}

.wpcf7 .wpcf7-not-valid-tip {
  display: block;
  color: #ff0000;
}

.wpcf7 .ajax-loader {
  display: block;
}

.wpcf7 .form_submit_set .form_buttons {
  position: relative;
}

.wpcf7 .form_submit_set .form_buttons .wpcf7-spinner {
  position: absolute;
  top: 10px;
  right: 10px;
}

/* 挙動を上書き */

.wpcf7 .input_radio_wrap .wpcf7-radio .wpcf7-list-item,
.wpcf7 .input_checkbox_wrap .wpcf7-checkbox .wpcf7-list-item {
  margin-left: 0;
}

/*--------------------------------------
	utility
---------------------------------------*/
.mrcut {
  margin-right: 0 !important;
}

.mbcut {
  margin-bottom: 0 !important;
}

/* fadein */

.fadein {
  animation-name: fadein;
  animation-duration: 1.2s;
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* display none */
@media screen and (max-width: 599px) {
  .display_none_sp {
    display: none !important;
  }
}
@media screen and (min-width: 600px) and (max-width: 1024px) {
  .display_none_tb {
    display: none !important;
  }
}
@media screen and (min-width: 1025px) {
  .display_none_pc {
    display: none !important;
  }
}
/* [ js ] table stripe */
table .stripe {
  background: #eeeeee;
}

/* [ js ] hover (for bigtarget) */
.bt_hover {
  background: #eeeeee;
  cursor: pointer;
}

/* tooltip */
#easy_tooltip {
  z-index: 10;
}

/* fixed navi */
@media screen and (min-width: 600px) {
  .side_fixed {
    position: fixed !important;
    top: 70px !important;
    left: inherit !important;
    z-index: 999999 !important;
  }
}

/*--------------------------------------
	contents_set
---------------------------------------*/

/* entry_cont */

.entry_cont {
  line-height: 1.8em;
}
.entry_cont p,
.entry_cont div {
  margin-bottom: 1em;
  line-height: 1.8em;
}
.entry_cont img {
  float: none !important;
  margin-bottom: 0.4em;
  max-width: 100%;
  height: auto;
}
.entry_cont .aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.entry_cont .alignright {
  display: block;
  margin-left: auto;
  margin-right: 0;
}
.entry_cont .alignleft {
  display: block;
  margin-left: 0;
  margin-right: auto;
}
.entry_cont a {
  word-break: break-all;
  word-wrap: break-word;
}

.entry_cont a:hover {
  opacity: 0.8;
}

.entry_cont ul,
.entry_cont ol {
  margin-bottom: 20px;
  margin-left: 1.2em;
}

.entry_cont ul li {
  margin-bottom: 0.2em;
  list-style: disc;
}

.entry_cont ol li {
  margin-bottom: 0.2em;
  list-style: decimal;
}

.entry_cont h2,
.entry_cont h3,
.entry_cont h4,
.entry_cont h5 {
  margin-top: 1.4em;
  margin-bottom: 0.4em;
  font-weight: 500;
  line-height: 1.3em;
}

.entry_cont > h2:first-child,
.entry_cont > h3:first-child,
.entry_cont > h4:first-child,
.entry_cont > h5:first-child {
  margin-top: 0;
}

.entry_cont h2 {
  font-size: 2.4rem;
}

.entry_cont h3 {
  font-size: 2.2rem;
}

.entry_cont h4 {
  font-size: 2rem;
}

.entry_cont strong {
  font-weight: 500;
}

.entry_cont blockquote {
  background-repeat: no-repeat;
  background-position: left top;
  padding-top: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 20px;
  border: 1px solid var(--text_color);
}

.entry_cont iframe {
  max-width: 100%;
}

.entry_cont form .form_fieldset,
.entry_cont form div {
  margin-bottom: 0;
}
.entry_cont form .form_fieldset p {
  margin-bottom: 0;
  line-height: 1.6em;
}

@media screen and (max-width: 599px) {
  .entry_cont form .form_fieldset {
    margin-bottom: 0;
  }
}

@media screen and (min-width: 600px) {
  .entry_cont h2 {
    font-size: 3rem;
  }

  .entry_cont h3 {
    font-size: 2.4rem;
  }

  .entry_cont h4 {
    font-size: 2rem;
  }
}

/* youtube */
.youtube_cont {
  position: relative;
  padding-top: 56.25% !important;
  width: 100%;
}
.youtube_cont iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

/* monthy_list_part category_select_part */

.select_part .select_wrap {
  position: relative;
  display: inline-block;
}

.select_part .select_wrap select:hover {
  cursor: pointer;
}

.select_part .select_wrap::after {
  content: '';
  width: 7px;
  height: 7px;
  border: 0px;
  border-bottom-width: 1.5px;
  border-bottom-style: solid;
  border-bottom-color: var(--text_color);
  border-right-width: 1.5px;
  border-right-style: solid;
  border-right-color: var(--text_color);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 20px;
  margin-top: -4px;
  z-index: 1;
}

.select_part .select_wrap select.select_list {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  height: 40px;
  position: relative;
  z-index: 1;
  padding: 0 48px 0 10px;
  background: var(--background_color);
  border: none;
  border-radius: 4px;
  color: var(--text_color);
  font-weight: 500;
}

.select_part .select_wrap select.select_list:hover option {
  cursor: pointer;
}
.select_part .select_wrap select::-ms-expand {
  display: none;
}

.select_list option {
  background-color: var(--background_color) !important;
  color: var(--text_color) !important;
}

/* archive_ul */

.archive_ul a {
  display: block;
  text-decoration: none;
}

.archive_ul li {
  margin-bottom: 20px;
}

.archive_ul a:hover {
  color: inherit;
  transform: translateX(10px);
}

.archive_ul li .date {
  position: relative;
  display: inline-block;
  padding-left: 26px;
}

.archive_ul li .date::before {
  content: '';
  position: absolute;
  top: 11px;
  left: 0;
  width: 20px;
  height: 2px;
  background: var(--text_color);
}

.archive_ul li .date time {
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 500;
  line-height: 1em;
}

.archive_ul li .title,
.archive_ul li .title a {
  margin-bottom: 0.2em;
  font-size: 1.8rem;
  line-height: 1.4em;
  font-weight: 500;
  font-family: YakuHanJP, 'Noto Sans JP', sans-serif;
}

@media screen and (min-width: 600px) {
  .archive_ul a:hover {
    transform: translateX(20px);
  }

  .archive_ul li {
    margin-bottom: 40px;
  }

  .archive_ul li .date::before {
    top: 11px;
    height: 2px;
    width: 30px;
  }

  .archive_ul li .date {
    padding-left: 40px;
  }

  .archive_ul li .date time {
    font-size: 2rem;
  }

  .archive_ul li .title,
  .archive_ul li .title a {
    font-size: 2.4rem;
  }
}

@media screen and (min-width: 1025px) {
  .archive_ul li .date time {
    font-size: 2rem;
  }

  .archive_ul li .title,
  .archive_ul li .title a {
    font-size: 2.4rem;
  }
}

/* ページ内リンクの位置調整 */

.anchor::before {
  display: block;
  height: 71px;
  margin-top: -71px;
  content: '';
}

/*--------------------------------------
	icomoon
---------------------------------------*/

@font-face {
  font-family: 'icomoon';
  src: url('icomoonfonts/icomoon.eot?pw061v');
  src: url('icomoonfonts/icomoon.eot?pw061v#iefix') format('embedded-opentype'),
    url('icomoonfonts/icomoon.ttf?pw061v') format('truetype'),
    url('icomoonfonts/icomoon.woff?pw061v') format('woff'),
    url('icomoonfonts/icomoon.svg?pw061v#icomoon') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^='icon-'],
[class*=' icon-'] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-calendar:before {
  content: '\e918';
}
.icon-bandcamp:before {
  content: '\e917';
}
.icon-note:before {
  content: '\e916';
}
.icon-amazonmusic:before {
  content: '\e915';
}
.icon-x:before {
  content: '\e914';
}
.icon-slick_arrow_next:before {
  content: '\e912';
}
.icon-slick_arrow_prev:before {
  content: '\e911';
}
.icon-arrow_left:before {
  content: '\e90e';
}
.icon-arrow_right:before {
  content: '\e90f';
}
.icon-linktree:before {
  content: '\e90c';
}
.icon-arrow_more:before {
  content: '\e900';
}
.icon-arrow-to-top:before {
  content: '\e901';
}
.icon-chevron-double-left:before {
  content: '\e903';
}
.icon-chevron-double-right:before {
  content: '\e904';
}
.icon-chevron-down-solid:before {
  content: '\e906';
}
.icon-chevron-left-solid:before {
  content: '\e907';
}
.icon-chevron-right-solid:before {
  content: '\e908';
}
.icon-chevron-up-solid:before {
  content: '\e909';
}
.icon-fast-backward:before {
  content: '\e90a';
}
.icon-fast-forward:before {
  content: '\e90b';
}
.icon-applemusic:before {
  content: '\e910';
}
.icon-line:before {
  content: '\e905';
}
.icon-tiktok:before {
  content: '\e902';
}
.icon-home:before {
  content: '\e90d';
}
.icon-location2:before {
  content: '\e948';
}
.icon-headphones:before {
  content: '\e913';
}
.icon-sphere:before {
  content: '\e9c9';
}
.icon-plus:before {
  content: '\f067';
}
.icon-minus:before {
  content: '\f068';
}
.icon-search:before {
  content: '\f002';
}
.icon-mail:before {
  content: '\f003';
}
.icon-zoom:before {
  content: '\f00e';
}
.icon-play-circle-o:before {
  content: '\f01d';
}
.icon-exclamation-circle:before {
  content: '\f06a';
}
.icon-shopping-cart:before {
  content: '\f07a';
}
.icon-external-link:before {
  content: '\f08e';
}
.icon-tel:before {
  content: '\f095';
}
.icon-twitter:before {
  content: '\e914';
}
.icon-facebook:before {
  content: '\f09a';
}
.icon-link:before {
  content: '\f0c1';
}
.icon-ellipsis-h:before {
  content: '\f141';
}
.icon-play-circle:before {
  content: '\f144';
}
.icon-ticket:before {
  content: '\f145';
}
.icon-youtube:before {
  content: '\f16a';
}
.icon-instagram:before {
  content: '\f16d';
}
.icon-car:before {
  content: '\f1b9';
}
.icon-spotify:before {
  content: '\f1bc';
}
.icon-soundcloud:before {
  content: '\f1be';
}
.icon-bus:before {
  content: '\f207';
}
.icon-train:before {
  content: '\f238';
}

/* pager */

.fa-chevron-left:before {
  content: '\e907';
  font-family: 'icomoon' !important;
}
.fa-chevron-right:before {
  content: '\e908';
  font-family: 'icomoon' !important;
}
.fa-angle-double-left:before {
  content: '\e90a';
  font-family: 'icomoon' !important;
}
.fa-angle-double-right:before {
  content: '\e90b';
  font-family: 'icomoon' !important;
}
.fa-ellipsis-h:before {
  content: '\f141';
  font-family: 'icomoon' !important;
}

/*--------------------------------------
	[ module ] clearfix
---------------------------------------*/

@media screen and (min-width: 600px) {
  .clearfix::after {
    content: '';
    display: block;
    clear: both;
  }
}

/*--------------------------------------
	BOTANIC lower pages
---------------------------------------*/

body:not(.home):not(.front-page) {
  background:
    radial-gradient(circle at 8% 8%, color-mix(in srgb, var(--color-accent) 10%, transparent), transparent 30vw),
    linear-gradient(180deg, var(--color-background) 0%, color-mix(in srgb, var(--color-background) 90%, #ffffff) 52%, var(--color-background) 100%);
  color: var(--color-text);
}

body:not(.home):not(.front-page)::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    linear-gradient(color-mix(in srgb, var(--color-text) 4.5%, transparent) 1px, transparent 1px),
    linear-gradient(90deg, color-mix(in srgb, var(--color-text) 3%, transparent) 1px, transparent 1px);
  background-size: 34px 34px, 34px 34px;
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
}

body:not(.home):not(.front-page) .container,
body:not(.home):not(.front-page) #contents_wrap,
body:not(.home):not(.front-page) #footer_wrap {
  position: relative;
  z-index: 1;
}

body:not(.home):not(.front-page) #header_wrap {
  background: color-mix(in srgb, var(--color-background) 88%, transparent) !important;
  border-bottom: 1px solid color-mix(in srgb, var(--color-text) 10%, transparent);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--color-text) 4%, transparent);
  z-index: 1000;
}

body:not(.home):not(.front-page) #footer_wrap {
  padding: 38px 0 30px;
  background: color-mix(in srgb, var(--color-background) 82%, var(--color-accent));
}

body:not(.home):not(.front-page) #sns_wrap .sns_icon li .icon::before,
body:not(.home):not(.front-page) #copyright_wrap #copyright small {
  color: var(--color-text);
}

body:not(.home):not(.front-page) #header #gnav {
  font-family: 'Cormorant Garamond', 'Noto Serif JP', serif;
  letter-spacing: 0.03em;
}

body:not(.home):not(.front-page) #header #gnav #gnav_list > li > a > span {
  font-weight: 600;
}

body:not(.home):not(.front-page) #gnav_list > li > a span::after {
  bottom: -8px;
  height: 1px;
  background-color: var(--color-accent);
}

@media screen and (max-width: 1024px) {
  body:not(.home):not(.front-page) #header #gnav.open {
    background: color-mix(in srgb, var(--color-background) 96%, transparent) !important;
    z-index: 1001;
  }
}

@media screen and (min-width: 1025px) {
  body:not(.home):not(.front-page) #header_wrap #header {
    width: 100%;
    max-width: none;
  }

  body:not(.home):not(.front-page) #header #gnav {
    flex: 0 1 auto;
    margin-left: auto;
  }

  body:not(.home):not(.front-page) #header #gnav #gnav_list {
    justify-content: flex-end;
  }

  body:not(.home):not(.front-page) #header #gnav #gnav_list > li {
    flex-grow: 0;
  }
}

body:not(.home):not(.front-page) #contents_wrap {
  padding-top: clamp(18px, 3.5vw, 48px);
}

body:not(.home):not(.front-page) .area {
  padding-top: clamp(30px, 4.5vw, 64px);
  padding-bottom: clamp(66px, 9vw, 124px);
}

body:not(.home):not(.front-page) .hgroup {
  display: grid;
  gap: 12px;
  width: 88%;
  max-width: 1180px;
  margin-bottom: clamp(32px, 5vw, 56px);
  padding-bottom: 18px;
}

body:not(.home):not(.front-page) .hgroup::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 72px;
  height: 1px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left;
  animation: underlineExpand 0.9s ease forwards;
  animation-delay: 0.45s;
}

body:not(.home):not(.front-page) .hgroup::after {
  left: 80px;
  right: auto;
  width: calc(100% - 80px);
  background-color: color-mix(in srgb, var(--color-text) 20%, transparent);
  animation-delay: 0.58s;
}

body:not(.home):not(.front-page) .heading01 {
  margin-bottom: 0;
  font-family: 'Cormorant Garamond', 'Noto Serif JP', serif;
  font-size: clamp(4rem, 8vw, 8.4rem);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: 0;
  color: var(--color-text);
}

body:not(.home):not(.front-page) .heading02,
body:not(.home):not(.front-page) .heading03,
body:not(.home):not(.front-page) .heading04,
body:not(.home):not(.front-page) .heading05 {
  font-family: 'Noto Serif JP', 'Noto Sans JP', serif;
  color: var(--color-text);
  font-weight: 500;
  letter-spacing: 0.01em;
}

body:not(.home):not(.front-page) .area > .box {
  width: 88%;
  max-width: 1180px;
}

body:not(.home):not(.front-page) .box.w800 {
  max-width: 880px;
}

body:not(.home):not(.front-page) .part {
  margin-bottom: clamp(28px, 4vw, 44px);
}

body:not(.home):not(.front-page) .select_part {
  display: flex;
  justify-content: flex-end;
}

body:not(.home):not(.front-page) .select_part .select_wrap {
  min-width: min(100%, 280px);
}

body:not(.home):not(.front-page) .select_part .select_wrap select.select_list {
  min-height: 46px;
  padding: 0 44px 0 18px;
  border: 1px solid color-mix(in srgb, var(--color-text) 24%, transparent);
  border-radius: 999px;
  background-color: color-mix(in srgb, var(--color-background) 82%, #ffffff) !important;
  color: var(--color-text);
  font-family: 'Cormorant Garamond', 'Noto Serif JP', serif;
  font-size: 1.6rem;
  box-shadow: 0 12px 28px color-mix(in srgb, var(--color-text) 5%, transparent);
}

body:not(.home):not(.front-page) .archive_ul {
  display: grid;
  gap: 18px;
}

body:not(.home):not(.front-page) .archive_ul li {
  margin-bottom: 0;
}

body:not(.home):not(.front-page) .archive_ul > li.archive_li,
body:not(.home):not(.front-page) .archive_ul > li:not([class]) {
  position: relative;
  padding: 26px;
  border: 1px solid color-mix(in srgb, var(--color-text) 14%, transparent);
  border-radius: 16px;
  background: color-mix(in srgb, var(--color-background) 80%, #ffffff);
  box-shadow: 0 18px 42px color-mix(in srgb, var(--color-text) 6%, transparent);
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

body:not(.home):not(.front-page) .archive_ul > li.archive_li:hover,
body:not(.home):not(.front-page) .archive_ul > li.archive_li:focus-within {
  border-color: color-mix(in srgb, var(--color-text) 32%, transparent);
  box-shadow: 0 24px 52px color-mix(in srgb, var(--color-text) 10%, transparent);
  transform: translateY(-3px);
}

body:not(.home):not(.front-page) .archive_ul a:hover {
  transform: none;
}

body:not(.home):not(.front-page) .archive_ul li .date {
  padding-left: 0;
  color: color-mix(in srgb, var(--color-text) 74%, var(--color-accent));
}

body:not(.home):not(.front-page) .archive_ul li .date::before {
  display: none;
}

body:not(.home):not(.front-page) .archive_ul li .date time {
  font-family: 'Cormorant Garamond', 'Noto Serif JP', serif;
  font-size: 1.65rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

body:not(.home):not(.front-page) .archive_ul li .title,
body:not(.home):not(.front-page) .archive_ul li .title a {
  margin-top: 0.55em;
  margin-bottom: 0;
  font-family: 'Noto Serif JP', 'Noto Sans JP', serif;
  font-size: clamp(1.8rem, 2.2vw, 2.4rem);
  line-height: 1.55;
  font-weight: 500;
}

body:not(.home):not(.front-page) .entry_cont,
body:not(.home):not(.front-page) #schedule_single_contents .schedule_part,
body:not(.home):not(.front-page) #discography_single_contents #disco_box .disco_part {
  color: color-mix(in srgb, var(--color-text) 88%, var(--color-background));
}

body:not(.home):not(.front-page) .box.w800 > .part:first-child,
body:not(.home):not(.front-page) #single_news_box > .part:first-of-type,
body:not(.home):not(.front-page) #schedule_single_contents #schedule_box .schedule_part,
body:not(.home):not(.front-page) #discography_single_contents #disco_box .disco_part {
  padding: clamp(26px, 4.6vw, 48px);
  border: 1px solid color-mix(in srgb, var(--color-text) 14%, transparent);
  border-radius: 18px;
  background: color-mix(in srgb, var(--color-background) 82%, #ffffff);
  box-shadow: 0 22px 56px color-mix(in srgb, var(--color-text) 7%, transparent);
}

body.page #contents_wrap .contents .area .box.w800 > .part:first-child {
  box-sizing: border-box;
  overflow: hidden;
  padding: clamp(26px, 4.6vw, 48px);
  border: 1px solid color-mix(in srgb, var(--color-text) 14%, transparent);
  border-radius: 18px;
  background: color-mix(in srgb, var(--color-background) 82%, #ffffff);
  box-shadow: 0 22px 56px color-mix(in srgb, var(--color-text) 7%, transparent);
}

#page_contents .entry_cont > *:first-child {
  margin-top: 0;
}

#page_contents .entry_cont > *:last-child {
  margin-bottom: 0;
}

#page_contents .entry_cont .alignwide,
#page_contents .entry_cont .alignfull {
  width: 100%;
  max-width: 100%;
  margin-right: 0;
  margin-left: 0;
}

body:not(.home):not(.front-page) .entry_cont p,
body:not(.home):not(.front-page) .entry_cont div,
body:not(.home):not(.front-page) .entry_cont li {
  line-height: 1.9;
}

body:not(.home):not(.front-page) .entry_cont h2,
body:not(.home):not(.front-page) .entry_cont h3,
body:not(.home):not(.front-page) .entry_cont h4 {
  font-family: 'Noto Serif JP', 'Noto Sans JP', serif;
}

body:not(.home):not(.front-page) .wpcf7-form-control-wrap {
  position: relative;
  display: block;
  width: 100%;
  max-width: 100%;
}

body:not(.home):not(.front-page) .wpcf7-form-control-wrap[data-name^='acceptance'],
body:not(.home):not(.front-page) .wpcf7-form-control-wrap:has(.wpcf7-acceptance) {
  display: inline-block;
  width: auto;
  max-width: 100%;
  vertical-align: middle;
}

body:not(.home):not(.front-page) .wpcf7-acceptance {
  display: inline-block;
  vertical-align: middle;
}

body:not(.home):not(.front-page) .wpcf7-acceptance + .icon_kome,
body:not(.home):not(.front-page) .wpcf7-form-control-wrap[data-name^='acceptance'] + .icon_kome,
body:not(.home):not(.front-page) .wpcf7-form-control-wrap:has(.wpcf7-acceptance) + .icon_kome {
  display: inline-block;
  margin-left: 0.35em;
  vertical-align: middle;
}

body:not(.home):not(.front-page) form input.input_text,
body:not(.home):not(.front-page) form select.input_text,
body:not(.home):not(.front-page) form .textarea,
body:not(.home):not(.front-page) .wpcf7 input[type='text'],
body:not(.home):not(.front-page) .wpcf7 input[type='email'],
body:not(.home):not(.front-page) .wpcf7 input[type='tel'],
body:not(.home):not(.front-page) .wpcf7 input[type='url'],
body:not(.home):not(.front-page) .wpcf7 input[type='number'],
body:not(.home):not(.front-page) .wpcf7 textarea,
body:not(.home):not(.front-page) .wpcf7 select,
body:not(.home):not(.front-page) .wpcf7 .wpcf7-form-control:not(.wpcf7-submit):not(.wpcf7-radio):not(.wpcf7-checkbox):not(.wpcf7-acceptance) {
  box-sizing: border-box;
  display: block;
  width: 100% !important;
  max-width: 100%;
  min-height: 44px;
  margin: 0.5em 0;
  padding: 0.65em 1em;
  border: 1px solid color-mix(in srgb, var(--color-text) 16%, transparent);
  border-width: 1px !important;
  border-style: solid !important;
  border-radius: 12px;
  background: color-mix(in srgb, var(--color-background) 76%, #ffffff);
  background-clip: padding-box;
  color: var(--color-text);
  box-shadow: none !important;
  appearance: none;
}

body:not(.home):not(.front-page) form input.input_text.size_m {
  display: inline-block;
  width: 40% !important;
}

body:not(.home):not(.front-page) form input.input_text.size_s {
  display: inline-block;
  width: 25% !important;
}

body:not(.home):not(.front-page) form input.input_text.size_ss,
body:not(.home):not(.front-page) form select.input_text.size_ss {
  display: inline-block;
  width: 15% !important;
}

body:not(.home):not(.front-page) .wpcf7-form-control-wrap:has(.input_text.size_m) {
  display: inline-block;
  width: 40%;
  max-width: 100%;
  vertical-align: middle;
}

body:not(.home):not(.front-page) .wpcf7-form-control-wrap:has(.input_text.size_s) {
  display: inline-block;
  width: 25%;
  max-width: 100%;
  vertical-align: middle;
}

body:not(.home):not(.front-page) .wpcf7-form-control-wrap:has(.input_text.size_ss) {
  display: inline-block;
  width: 15%;
  max-width: 100%;
  vertical-align: middle;
}

body:not(.home):not(.front-page) .wpcf7-form-control-wrap:has(.input_text.size_m) .input_text.size_m,
body:not(.home):not(.front-page) .wpcf7-form-control-wrap:has(.input_text.size_s) .input_text.size_s,
body:not(.home):not(.front-page) .wpcf7-form-control-wrap:has(.input_text.size_ss) .input_text.size_ss {
  width: 100% !important;
}

body:not(.home):not(.front-page) .wpcf7-form-control-wrap:has(select)::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 20px;
  z-index: 2;
  width: 7px;
  height: 7px;
  margin-top: -4px;
  border-right: 1.5px solid var(--text_color);
  border-bottom: 1.5px solid var(--text_color);
  pointer-events: none;
  transform: rotate(45deg);
}

body:not(.home):not(.front-page) form .textarea,
body:not(.home):not(.front-page) .wpcf7 textarea {
  min-height: 180px;
  resize: vertical;
}

body:not(.home):not(.front-page) form input.input_text:hover,
body:not(.home):not(.front-page) form input.input_text:focus,
body:not(.home):not(.front-page) form .textarea:hover,
body:not(.home):not(.front-page) form .textarea:focus,
body:not(.home):not(.front-page) .wpcf7 input:focus,
body:not(.home):not(.front-page) .wpcf7 textarea:focus,
body:not(.home):not(.front-page) .wpcf7 select:focus {
  border-color: color-mix(in srgb, var(--color-accent) 70%, transparent);
  outline: none;
  background: color-mix(in srgb, var(--color-background) 76%, #ffffff);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--color-accent) 12%, transparent);
}
body:not(.home):not(.front-page) .button,
body:not(.home):not(.front-page) .btn_small,
body:not(.home):not(.front-page) .btn_modoru {
  border-radius: 999px;
}

body:not(.home):not(.front-page) .button,
body:not(.home):not(.front-page) .btn_small {
  border: 1px solid color-mix(in srgb, var(--color-text) 30%, transparent);
  background: color-mix(in srgb, var(--color-background) 72%, #ffffff);
  color: var(--color-text);
  box-shadow: 0 12px 28px color-mix(in srgb, var(--color-text) 6%, transparent);
}

body:not(.home):not(.front-page) .button span,
body:not(.home):not(.front-page) .btn_small span {
  border: 0;
  background: transparent;
  color: inherit;
}

body:not(.home):not(.front-page) .button:hover span,
body:not(.home):not(.front-page) .button:active span,
body:not(.home):not(.front-page) .btn_small:hover span,
body:not(.home):not(.front-page) .btn_small:active span {
  background: transparent;
  color: inherit;
}

body:not(.home):not(.front-page) .button:hover,
body:not(.home):not(.front-page) .btn_small:hover {
  background: var(--color-accent);
  color: color-mix(in srgb, var(--color-background) 92%, #ffffff);
}

body:not(.home):not(.front-page) .btn_modoru {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 48px;
  height: 48px;
  border: 1px solid color-mix(in srgb, var(--color-text) 30%, transparent);
  background: color-mix(in srgb, var(--color-background) 82%, #ffffff);
  box-shadow: 0 12px 28px color-mix(in srgb, var(--color-text) 6%, transparent);
  transform: none;
  transition:
    background-color 0.35s ease,
    color 0.35s ease,
    box-shadow 0.35s ease;
}

body:not(.home):not(.front-page) .btn_modoru span {
  position: relative;
  display: block;
  width: 22px;
  height: 12px;
}

body:not(.home):not(.front-page) .btn_modoru span::before,
body:not(.home):not(.front-page) .btn_modoru span::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
}

body:not(.home):not(.front-page) .btn_modoru span::before {
  width: 22px;
  height: 1px;
  background: currentColor;
  transform: translateY(-50%);
}

body:not(.home):not(.front-page) .btn_modoru span::after {
  width: 7px;
  height: 7px;
  border-bottom: 1px solid currentColor;
  border-left: 1px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}

body:not(.home):not(.front-page) .btn_modoru:hover {
  background: var(--color-accent);
  color: color-mix(in srgb, var(--color-background) 92%, #ffffff);
  opacity: 1;
  transform: none;
  box-shadow: 0 16px 34px color-mix(in srgb, var(--color-text) 12%, transparent);
}

body:not(.home):not(.front-page) .navigation.pagination {
  display: flex;
  justify-content: center;
}

body:not(.home):not(.front-page) .navigation.pagination .nav-links {
  justify-content: center;
  gap: 8px;
}

body:not(.home):not(.front-page) .navigation.pagination .page-numbers {
  border-radius: 999px;
}

body:not(.home):not(.front-page) .navigation.pagination .page-numbers.current {
  border-color: var(--color-accent);
  background: var(--color-accent);
  color: color-mix(in srgb, var(--color-background) 92%, #ffffff);
}

body:not(.home):not(.front-page) .navigation.pagination a.page-numbers {
  border-color: color-mix(in srgb, var(--color-text) 28%, transparent);
  background: color-mix(in srgb, var(--color-background) 78%, #ffffff);
  color: var(--color-text);
}

body:not(.home):not(.front-page) .navigation.pagination a.page-numbers:hover,
body:not(.home):not(.front-page) .navigation.pagination a.page-numbers:focus-visible {
  border-color: var(--color-accent);
  background: var(--color-accent);
  color: color-mix(in srgb, var(--color-background) 92%, #ffffff);
}

@media screen and (min-width: 1025px) {
  body:not(.home):not(.front-page) .archive_ul {
    gap: 22px;
  }

  body:not(.home):not(.front-page) #news_index_contents .archive_ul,
  body:not(.home):not(.front-page) #schedule_index_contents .archive_ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media screen and (max-width: 599px) {
  body:not(.home):not(.front-page) #contents_wrap {
    padding-top: 8px;
  }

  body:not(.home):not(.front-page) .area {
    padding-bottom: 42px;
  }

  body:not(.home):not(.front-page) #footer_wrap {
    padding: 30px 0 24px;
  }

  body:not(.home):not(.front-page) .hgroup {
    margin-bottom: 28px;
    padding-bottom: 15px;
  }

  body:not(.home):not(.front-page) #news_single_contents .hgroup,
  body:not(.home):not(.front-page) #schedule_single_contents .hgroup,
  body:not(.home):not(.front-page) #discography_single_contents .hgroup,
  body:not(.home):not(.front-page) #single_contents .hgroup {
    display: none;
  }

  body:not(.home):not(.front-page) #news_single_contents .area,
  body:not(.home):not(.front-page) #schedule_single_contents .area,
  body:not(.home):not(.front-page) #discography_single_contents .area,
  body:not(.home):not(.front-page) #single_contents .area {
    padding-top: 28px;
  }

  body:not(.home):not(.front-page) .hgroup::after {
    width: calc(100% - 80px);
  }

  body:not(.home):not(.front-page) .heading01 {
    font-size: clamp(3.4rem, 13vw, 5.4rem);
    line-height: 1;
    overflow-wrap: anywhere;
  }

  body:not(.home):not(.front-page) #discography_index_contents .heading01,
  body:not(.home):not(.front-page) #discography_single_contents .heading01 {
    font-size: clamp(3.2rem, 12vw, 4.9rem);
  }

  body:not(.home):not(.front-page) .select_part {
    justify-content: flex-start;
  }

  body:not(.home):not(.front-page) .archive_ul > li.archive_li,
  body:not(.home):not(.front-page) .archive_ul > li:not([class]) {
    padding: 20px;
    border-radius: 14px;
  }

  body:not(.home):not(.front-page) .box.w800 > .part:first-child,
  body:not(.home):not(.front-page) #single_news_box > .part:first-of-type,
  body:not(.home):not(.front-page) #schedule_single_contents #schedule_box .schedule_part,
  body:not(.home):not(.front-page) #discography_single_contents #disco_box .disco_part {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  body.page #contents_wrap .contents .area .box.w800 > .part:first-child {
    overflow: visible;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }
}
