@charset "UTF-8";
/**======================================
	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: 6rem;
}

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

  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;
  outline: none;
  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 */

.wp-pagenavi a {
  text-decoration: none;
}

.wp-pagenavi i::before {
  font-size: 1.4rem;
}

.wp-pagenavi span.current,
.wp-pagenavi a.page,
.wp-pagenavi a.previouspostslink,
.wp-pagenavi a.nextpostslink,
.wp-pagenavi a.first,
.wp-pagenavi a.last {
  display: inline-block;
  margin-bottom: 5px;
  margin-right: 5px;
  padding: 0;
  width: 35px;
  line-height: 31px;
  text-align: center;
}

.wp-pagenavi .pages {
  display: none;
}

.wp-pagenavi span.current {
  color: var(--background_color);
  background: var(--text_color);
  border: 1px solid var(--text_color);
  font-weight: 500;
}

.wp-pagenavi a.page,
.wp-pagenavi a.previouspostslink,
.wp-pagenavi a.nextpostslink,
.wp-pagenavi a.first,
.wp-pagenavi a.last {
  border: 1px solid var(--text_color);
  color: var(--text_color);
  font-weight: 500;
  font-size: 1.4rem;
}

.wp-pagenavi a.page:hover,
.wp-pagenavi a.previouspostslink:hover,
.wp-pagenavi a.nextpostslink:hover,
.wp-pagenavi a.first:hover,
.wp-pagenavi a.last:hover {
  background: var(--text_color);
  border: 1px solid var(--text_color);
  color: var(--background_color);
}

.wp-pagenavi .extend {
  margin-right: 5px;
  font-size: 2rem;
  border: none;
}

@media screen and (min-width: 600px) {
  .wp-pagenavi span.current,
  .wp-pagenavi a.page,
  .wp-pagenavi a.previouspostslink,
  .wp-pagenavi a.nextpostslink,
  .wp-pagenavi a.first,
  .wp-pagenavi a.last {
    width: 35px;
    line-height: 31px;
  }
}

/* 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 {
    outline: none !important;
  }
  .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;
    left: 0;
  }
  .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;
    left: 0;
  }
  .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::before {
  content: '\e906';
  width: 22px;
  height: 22px;
  font-family: 'icomoon';
  line-height: 22px;
  display: block;
  position: absolute;
  top: 32px;
  margin-top: -11px;
  right: 0.5em;
  font-weight: 900;
  font-size: 14px;
  z-index: 2;
  color: #666;
}

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;
  border: 1px solid #999;
}
.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 {
  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: 8px;
  height: 8px;
  border: 0px;
  border-bottom-width: 2px;
  border-bottom-style: solid;
  border-bottom-color: var(--text_color);
  border-right-width: 2px;
  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: 12px;
  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 40px 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: 2.8rem;
  }

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

  .archive_ul li .date::before {
    top: 13px;
  }
}

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

.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-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;
  }
}
