@charset "utf-8";

/* =========================

  base

=========================*/
:root {
  /*color*/
  --fontcolor: #50434F;
  --maincolor: #BFA2BD;
  --subcolor: #817180;
  --accentcolor: #AF32AF;
  --beige: #E3DFE3;
  --font: "Zen Maru Gothic", sans-serif, "ヒラギノ丸ゴ Pro W4","ヒラギノ丸ゴ Pro","Hiragino Maru Gothic Pro","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","HG丸ｺﾞｼｯｸM-PRO","HGMaruGothicMPRO";
  --yugo: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  --container-max: 1450px;
}

body {
  color: var(--fontcolor);
  font-size: 16px;
  font-family: var(--font);
  font-weight: 400;
  line-height: 1.8em;
  letter-spacing: 0.08em;
  background-color: #F8F8F8;
}
a {
  color: #333333;
  text-decoration: none;
  transition: all 0.3s ease 0s;
}
a:hover {
  color: var(--maincolor);
  opacity: 0.6;
  transition: all 0.3s ease 0s;
}
img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  vertical-align: bottom;
  object-fit: cover;
}
@media screen and (max-width:750px) {
  body {
    font-size: 14px;
    line-height: 1.6em;
  }
}
/* =========================

  contents

=========================*/
.section__contents {
  width: 100%;
  margin-bottom: 80px;
}
.section__contents:last-child {
  margin-bottom: 0;
}
.section__contents p {
  margin-bottom: 30px;
}
.section__contents p:last-child {
  margin-bottom: 0;
}
.section__contents__inner {
  width: 1450px;
  margin: auto;
}
.contents__block {
  margin-bottom: 100px;
}
.contents__block:last-child {
  margin-bottom: 0;
}
.post_margin {
  margin-bottom: 120px;
}
.post_margin:last-child {
  margin-bottom: 0;
}
@media screen and (max-width:1460px) {
  .section__contents__inner {
    width: 92%;
  }
}
@media screen and (max-width:750px) {
  .contents__block {
    margin-bottom: 60px;
  }
  .section__contents {
    margin-bottom: 80px;
  }
}

/* ------------------------
  img
------------------------*/
.img__box {
  width: 80%;
  height: 490px;
  margin: auto;
  overflow: hidden;
}
@media screen and (max-width:750px) {
  .img__box {
    width: 100%;
    height: 150px;
  }
}

/* ------------------------
  txt__img
------------------------*/
.txt__img {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.txt__img .txt__area {
  width: 65%;
}
.txt__img .img__area {
  width: 30%;
}
@media screen and (max-width:990px) {
  .txt__img {
    display: block;
  }
  .txt__img .txt__area {
    width: 100%;
  }
  .txt__img .img__area {
    width: 40%;
    margin: 4% auto 0;
  }
}
@media screen and (max-width:750px) {
  .txt__img .img__area {
    width: 70%;
    margin: 10% auto 0;
  }
}

/* =========================
  ttl
=========================*/
.section__ttl, .subpage h2 {
  color: var(--accentcolor);
  margin-bottom: 60px;
  display: flex;
  align-items: center;
  padding-left: 85px;
}
.section__ttl h2,
.subpage h2 {
  position: relative;
  font-size: 2.5em;
  font-weight: 500;
  line-height: 1.4em;
  letter-spacing: 0.2em;
}
.subpage h2 {
  font-size: 2em;
}
.section__ttl h2::before,
.subpage h2::before {
  content: "";
  width: 65px;
  height: 2px;
  background-color: var(--accentcolor);
  position: absolute;
  left: -85px;
  top: 0;
  bottom: 0;
  margin: auto;
}
.subpage h2::before {
  left: 0;
}
.section__ttl .subttl {
  font-family: var(--yugo);
  font-weight: bold;
  line-height: 1.4em;
  position: relative;
  margin-left: 45px;
}
.section__ttl .subttl::before {
  content: "";
  width: 43px;
  height: 1px;
  background-color: var(--accentcolor);
  transform: rotate(-55deg);
  position: absolute;
  top: 0;
  bottom: 0;
  left: -45px;
  margin: auto;
}
.section__contents .h3 {
  font-size: 1.6em;
  line-height: 1.4em;
  letter-spacing: 0.1em;
  position: relative;
  padding-bottom: 40px;
  margin-bottom: 40px;
}
.section__contents .h3::before {
  content: "";
  width: 80px;
  height: 4px;
  background-color: var(--accentcolor);
  position: absolute;
  bottom: 0;
  border-radius: 100vh;
}
@media screen and (max-width:750px) {
  .section__ttl {
    display: block;
    margin-bottom: 40px;
    padding-left: 60px;
  }
  .section__ttl h2 {
    font-size: 2.2em;
  }
  .section__ttl h2::before {
    width: 32px;
    left: -60px;
  }
  .subpage h2::before { 
    width: 32px;
    left: 0;
  }
  .section__ttl .subttl {
    margin-left: 0;
  }
  .section__ttl .subttl::before {
    content: none;
  }
}

/* =========================
  icon
=========================*/
.icon_bg {
  width: 32px;
  height: 32px;
  background-color: var(--fontcolor);
  position: relative;
  border-radius: 100vw;
  display: block;
}
.icon_x::before {
  content: "";
  width: 14px;
  height: 14px;
  background-image: url(../images/common/icon_x.svg);
  background-size: cover;
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
}
.icon_subpage::before {
  content: "";
  width: 61px;
  height: 56px;
  background-image: url(../images/common/icon_subpage.png);
  background-size: cover;
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
}
.sub__kv .icon_bg {
  width: 108px;
  height: 108px;
  background-color: #FFFFFF;
}
@media screen and (max-width:750px) {
  .sub__kv .icon_bg {
    width: 50px;
    height: 50px;
    background-color: #FFFFFF;
  }
  .icon_subpage::before {
    width: 31px;
    height: 28px;
  }
}

/* =========================

  header / nav

=========================*/
.sp_nav {
  display: none;
}
header {
  position: fixed;
  width: 100%;
  background-color: rgba(255, 255, 255, .9);
  z-index: 9999;
  top: 0;
  box-shadow: 0px 0px 6px 0px rgba(105, 80, 105, .38);
}
.header_inner {
  width: 85%;
  padding: 20px 0;
  margin: auto;
}
.fixed-header {
  position: fixed;
  top: 12px;
  right: 0;
  left: 0;
  width: 96%;
  margin: auto;
  border-radius: 100vw;
}
.logo {
  width: 200px;
}
.logo a {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.logo img {
  width: 200px;
  border-radius: 0;
}
.logo .logo_txt {
  font-family: var(--yugo);
  font-size: 19px;
  text-align: center;
}
.logo .logo_txt span {
  font-size: 17px;
}
.logo_nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav a:hover {
  color: var(--maincolor);
}
.nav,.nav_inner {
  display: flex;
  gap: 1.5rem;
}
.nav .nav_inner li.nav_list {
  font-size: 1.15rem;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 1600px){
}
/* hamburger menu */
#sp-nav {
  position: fixed;
  z-index: 9999;
  top: 0;
  right: -120%;
  width: 100%;
  height: 100vh;
  background: #F8F8F8;
  transition: all 0.6s;
  overflow: scroll;
}
#sp-nav.panelactive {
  right: 0;
}
#sp-nav .sp-nav_inner {
  width: 100%;
  position: absolute;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
}
#sp-nav nav ul li {
  font-size: 16px;
  font-weight: bold;
  list-style: none;
  border-bottom: 1px solid var(--accentcolor);
  position: relative;
}
#sp-nav nav ul li:first-child {
  border-top: 1px solid var(--accentcolor);
}
#sp-nav .sp-nav_inner nav a,
#sp-nav .accordion-js .accordion-title {
  width: calc(100% - 20px);
  display: block;
  padding: 20px 10px;
}
#sp-nav .sp-nav_inner nav a {
  color: var(--accentcolor);
  position: relative;
}
#sp-nav .sp-nav_inner nav a::after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: solid 2px var(--accentcolor);
  border-right: solid 2px var(--accentcolor);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 28px;
  margin: auto;
  transform: rotate(45deg);
}
#sp-nav .accordion-js .accordion-content {
  border-color: #E1E7F0;
  background-color: #F1F4FA;
}
#sp-nav .multiple_btn {
  width: 90%;
  margin: 0 auto 150px;
}
.sp_nav.lower_page_nav {
  padding: 15px 0;
}
.openbtn {
  position: absolute;
  z-index: 99999;
  width: 55px;
  height: 55px;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 15px;
  cursor: pointer;
}
.openbtn span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background-color: #FFFFFF;
  width: 50%;
}
.openbtn span:nth-of-type(1) {
  top: 17px;
}
.openbtn span:nth-of-type(2) {
  top: 26px;
}
.openbtn span:nth-of-type(3) {
  top: 35px;
}
.openbtn.active span:nth-of-type(1) {
  top: 20px;
  left: 14px;
  transform: translateY(6px) rotate(-45deg);
  width: 50%;
}
.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}
.openbtn.active span:nth-of-type(3) {
  top: 32px;
  left: 14px;
  transform: translateY(-6px) rotate(45deg);
  width: 50%;
}
@media screen and (max-width:1680px) {
  .header_inner {
    width: 98%;
  }
  .logo a {
    gap: 1rem;
  }
  .logo img {
    width: 150px;
  }
  .logo .logo_txt {
    font-size: 16px;
    line-height: 1.4em;
  }
  .logo .logo_txt span {
    font-size: 15px;
  }
  .nav .nav_inner li.nav_list {
    font-size: 1rem;
  }
}
@media screen and (max-width:1200px) {
  .sp_nav {
    display: block;
  }
  .pc_nav {
    display: none;
  }
  #sp-nav .sp-nav_inner .nav_inner {
    display: block;
  }
  .logo img {
    width: 130px;
  }
  .header_inner {
    width: 90%;
    padding: 0;
  }
  .fixed-header nav .nav_inner > li {
    margin-right: 0;
  }
  .openbtn {
    z-index: 99999;
    cursor: pointer;
    width: 55px;
    height: 55px;
    position: fixed;
    top: 20px;
    bottom: unset;
    right: 80px;
    background-color: var(--accentcolor);
    border-radius: 100vh;
  }
  #sp-nav .sp-nav_inner .nav_inner {
    padding-bottom: 60px;
  }
  #sp-nav .nav {
    display: block;
  }
}
@media screen and (max-width: 750px) {
  .logo a {
    gap: 0.5rem;
  }
  .logo img {
    width: 100px;
  }
  .logo .logo_txt {
    font-size: 12px;
  }
  .logo .logo_txt span {
    font-size: 11px;
  }
  #sp-nav nav ul li {
    font-size: 14px;
  }
  #sp-nav .sp-nav_inner nav a,
  #sp-nav .accordion-js .accordion-title {
    width: calc(100% - 20px);
    display: block;
    padding: 20px 10px !important ;
  }
  .openbtn {
    top: 21px;
    right: 26px;
    width: 46px;
    height: 46px;
  }
  .openbtn span {
    left: 11px;
    width: 52%;
  }
  .openbtn span:nth-of-type(1) {
    top: 14px;
  }
  .openbtn span:nth-of-type(2) {
    top: 22px;
  }
  .openbtn span:nth-of-type(3) {
    top: 30px;
  }
  .openbtn.active span:nth-of-type(1) {
    top: 17px;
    left: 11px;
    width: 52%;
  }
  .openbtn.active span:nth-of-type(3) {
    top: 29px;
    left: 11px;
    width: 52%;
  }
  .sns {
    display: flex;
    justify-content: center;
  }
}

/* =========================

  kv

=========================*/
.kv {
  position: relative;
  margin: 125px 0 80px; 
}
.kv img {
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}
@media screen and (max-width:750px) {
  .kv {
    margin: 90px 0 60px; 
  }
}

/* =========================

  dropdown / megamenu

=========================*/
.nav_megamenu_box, .dropdown_box {
  display: none;
}
.nav_megamenu:hover .nav_megamenu_box,
.dropdown:hover .dropdown_box {
  display: block;
  position: absolute;
  animation: appear .3s ease;
  z-index: 99;
}
.dropdown:hover .dropdown_box {
  width: 242px;
  text-align: center;
  padding: 0 15px;
  display: block;
  position: absolute;
  left: 50%;
  right: 0;
  transform: translateX(-50%);
  margin: auto;
  box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, .16);
}
@keyframes appear {
  0%{
    opacity: 0;
  }
  100%{
    opacity: 1;
  }
}
.dropdown {
  position: relative;
}
.dropdown li {
  font-size: 16px;
  border-bottom: 1px solid #E1E7F0;
  position: relative;
}
.dropdown li:last-child {
  border-bottom: none;
}
/* .dropdown li:after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: solid 1px #E1E7F0;
  border-right: solid 1px #E1E7F0;
  position: absolute;
  right: 6px;
  top: 0;
  bottom: 0;
  margin: auto;
  transform: rotate(45deg);
} */
.dropdown li a {
  color: #333333;
  width: 100%;
  height: 100%;
  display: block;
  padding: 15px 0;
}
.dropdown_box {
  background-color: #FFFFFF;
  border-radius: 15px;
}
.nav_megamenu_box {
  width: calc(100% - 50px);
  left: 0;
  background-color: #FFFFFF;
  padding: 30px;
}
.nav_megamenu:hover .nav_megamenu_box .col3 {
  justify-content: center;
}
.nav_megamenu:hover .nav_megamenu_box .megamenu_item {
  margin-right: 6vw;
}
.nav_megamenu:hover .nav_megamenu_box .megamenu_item:last-child {
  margin-right: 0;
}
.nav_megamenu:hover .nav_megamenu_box .megamenu_item .megamenu_ttl {
  width: 100%;
  line-height: 1.0;
  text-align: center;
  border-bottom: 1px solid #CCCCCC;
  margin-bottom: 20px;
  padding-bottom: 12px;
}
@media screen and (max-width:1200px) {
  .dropdown:hover .dropdown_box {
    width: 206px;
    padding: 0 10px;
  }
  .dropdown li {
    font-size: 15px;
  }
  .dropdown li a {
    padding: 12px 0;
  }
}

/* =========================

  btn

=========================*/
.btn_wrap {
  margin-top: 50px;
}
.btn a {
  color: #FFFFFF;
  font-weight: 500;
  background-color: var(--accentcolor);;
  border: 2px solid var(--accentcolor);
  border-radius: 100vh;
  display: block;
  padding: 10px 60px;
}
.btn a:hover {
  color: var(--accentcolor);
  background-color: #FFFFFF;
  opacity: 1.0;
}
.btn a .arrow::before {
  border-color: #FFFFFF;
  top: 3px;
}
.btn a:hover .arrow::before {
  border-color: var(--accentcolor);
}
.btn .fa-chevron-right {
  font-size: 12px;
  vertical-align: middle;
  margin-left: 5px;
}
.other_btn {
  border-radius: 100vh;
}
.other_btn a {
  color: #FFFFFF;
  font-weight: bold;
  padding: 15px 40px;
  display: block;
  border: 2px solid var(--accentcolor);
  border-radius: 100vh;
}
.other_btn a:hover {
  color: var(--accentcolor);
  background-color: #FFFFFF;
  opacity: 1;
}
.other_btn.bg_blue01 a {
  border-color: var(--accentcolor);
}
.other_btn.bg_blue01 a:hover {
  color: var(--accentcolor);
}
.other_btn.bg_blue02 a {
  border-color: #B8C5DB;
}
.other_btn.bg_blue02 a:hover {
  color: #B8C5DB;
}
.other_btn.bg_purple01 a {
  border-color: #BDA8D3;
}
.other_btn.bg_purple01 a:hover {
  color: #BDA8D3;
}
.multiple_btn {
  display: flex;
  justify-content: center;
}
.multiple_btn li {
  width: 280px;
  text-align: center;
  margin-right: 15px;
}
.multiple_btn li:last-child {
  margin-right: 0;
}

@media screen and (max-width:750px) {
  .btn_wrap {
    margin-top: 30px;
  }
  .btn {
    width: 100%;
  }
}

/* =========================

  img slide

=========================*/
.img__slide {
  margin-bottom: 80px;
}
.img__slide__wrap {
  display: flex;
  overflow: hidden;
}
.img__slide__list {
  display: flex;
  list-style: none;
}
.img__slide__list {
animation:infinity-scroll-left 95s infinite linear 0.5s both;
}
.img__slide__item {
  width: calc(100vw / 5);
  margin-right: 30px;
}
.img__slide__item > img{
   width: 100%;
}
@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@media screen and (max-width:1500px) {
  .img__slide {
    margin-bottom: 80px;
  }
  .img__slide__item {
    width: calc(160vw / 5);
    margin-right: 15px;
  }
}

/* =========================

  accordion

=========================*/
.accordion-js dl {
  width: 100%;
  margin: 10px auto;
}
.accordion-js .accordion {
  text-align: left;
  margin-bottom: 20px;
  cursor: pointer;
  background-color: #FFFFFF;
  border: 2px solid #E1E7F0;
  border-radius: 20px;
}
.accordion-js .accordion:last-child {
  margin-bottom: 0;
}
.accordion-js .accordion-title {
  line-height: 1.4em;
  position: relative;
  font-size: 1.35em;
  font-weight: bold;
  padding: 40px 74px 40px 40px;
  display: flex;
  align-items: center;
}
.accordion-js .accordion-content {
  display: none;
  font-size: 15px;
  padding: 30px 0 40px;
  margin: 0 40px;
  border-top: 3px dotted #E1E7F0;
  overflow: hidden;
  cursor: initial;
}
.accordion-js .toggle_btn {
  width: 40px;
  height: 40px;
  right: 0;
}
.accordion-js .accordion-title .toggle_btn::before {
  display: block;
	content: "";
	position: absolute;
	top: 0; 
	right: 40px;
	bottom: 0;
	margin:auto;
	width: 30px;
	height: 3px;
	background-color: var(--accentcolor);
	transition: .2s;
	transform: rotate(90deg);
	-webkit-transform: rotate(90deg);
  transition: transform 0.5s;
  border-radius: 100vh;
}
.accordion-js .accordion-title .toggle_btn::after {
  display: block;
	content: "";
	position: absolute;
	top: 0; 
	right: 40px;
	bottom: 0;
	margin: auto;
	width: 30px;
	height: 3px; 
	background-color: var(--accentcolor);
	transition: .3s;
  border-radius: 100vh;
}
.accordion-js .accordion-title.open .toggle_btn::before{
	transform: rotate(0deg);
	-webkit-transform: rotate(0deg);
}
.accordion-js .accordion-title.open .toggle_btn::after{
	background-color: transparent;
}
.accordion-js .accordion.accordion_none {
  cursor: default;
}
.accordion-js span.icon_q {
  position: relative;
  width: 60px;
  height: 60px;
  display: table;
  background-color: var(--accentcolor);
  border-radius: 100vh;
  vertical-align: middle;
  margin-right: 20px;
}
.accordion-js span.icon_q::after,
.accordion-js span.icon_a::after {
  content: "Q";
  color: #FFFFFF;
  font-size: 30px;
  font-weight: bold;
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}
.accordion-js span.icon_a {
  position: relative;
  width: 60px;
  height: 60px;
  display: table;
  background-color: #BDA8D3;
  border-radius: 100vh;
  vertical-align: middle;
  margin-right: 20px;
}
.accordion-js span.icon_a::after {
  content: "A";
}
/* col2 */
.accordion-js.accordion_col2 {
  overflow: hidden;
}
.accordion-js.accordion_col2 .accordion {
  width: 42%;
  float: left;
  padding: 3vw;
  margin-right: 2.5vw;
}
.accordion-js.accordion_col2 .accordion:nth-child(2n) {
  margin-right: 0;
}
.accordion-js.accordion_col2 .accordion-title .accordion-title-inner {
  border-bottom: 1px solid #CCCCCC;
  padding: 0 35px 12px 0;
}
.accordion-js.accordion_col2 .accordion-title {
  padding: 0;
}
.accordion-js.accordion_col2 .accordion-title .toggle_btn::before {
	right: 0;
}
.accordion-js.accordion_col2 .accordion-title .toggle_btn::after {
	right: 0;
}
.accordion-js.accordion_col2 .accordion-content {
  font-size: 13px;
  line-height: 2em;
  border: none;
  margin: 0;
}
@media screen and (max-width:1099px) {
  #sp-nav .accordion-js .accordion {
    border: none;
    background-color: transparent;
  }
  #sp-nav .accordion-js .accordion-title {
    font-size: 16px;
    color: var(--accentcolor);
  }
  #sp-nav nav .accordion-js .accordion-content {
    width: 100%;
    margin: 0;
    padding: 0;
    border: none;
  }
  #sp-nav nav .accordion-js .accordion-content ul li {
    border: none;
  }
  #sp-nav nav .accordion-js .accordion-content ul li a {
    width: calc(100% - 30px);
    margin: auto;
    padding: 10px 10px 10px 20px;
    text-stroke: unset;
    -webkit-text-stroke: unset;
  }
}
@media screen and (max-width:1099px) {
  .accordion-js .accordion-title .toggle_btn::before,
  .accordion-js .accordion-title .toggle_btn::after {
    width: 20px;
    right: 20px;
    right: 25px;
  }
  .accordion-js .accordion-content {
    margin: 0 25px;
    padding: 30px 0;
  }
}
@media screen and (max-width:1000px) {
  .accordion-js.accordion_col2 {
    display: block;
  }
  .accordion-js.accordion_col2 .accordion {
    width: calc(100% - 60px);
    margin: 0 0 25px 0;
    float: none;
  }
}
@media screen and (max-width:750px) {
  .accordion-js .accordion-title {
    font-size: 16px;
    padding: 25px 20px;
  }
  .accordion-js .accordion-title .ttl {
    width: 70%;
  }
  .accordion-js .accordion-content {
    font-size: 14px;
    margin: 0 20px;
  }
  .accordion-js .accordion-content .flex {
    display: block;
  }
  .accordion-js.accordion_col2 .accordion {
    padding: 20px;
  }
  .accordion-js.accordion_col2 .accordion .accordion-content .flex {
    display: block;
  }
  .accordion-js span.icon_a,
  .accordion-js span.icon_q {
    width: 45px;
    height: 45px;
  }
  .accordion-js span.icon_a {
    margin: 0 0 10px 0;
  }
  .accordion-js span.icon_q::after, 
  .accordion-js span.icon_a::after {
    font-size: 24px;
  }
  #sp-nav .accordion-js .accordion-content {
    margin: 0;
  }
  #sp-nav .accordion-js .accordion-title {
    font-size: 14px;
  }
  #sp-nav .accordion-js .accordion-title .toggle_btn::before,
  #sp-nav .accordion-js .accordion-title .toggle_btn::after {
    height: 2px;
  }
}

/* =========================

  top news, top blog

=========================*/
.news_item_wrap dl,
.blog_item_wrap dl {
  padding: 40px;
  border-radius: 1.5rem;
  background-color: #FFFFFF;
}
.news_item_wrap .btn_wrap,
.blog_item_wrap .btn_wrap {
  margin-top: 30px;
}
.news_item_wrap .news_item,
.blog_item_wrap .blog_item {
  border-bottom: 1px solid var(--beige);
  margin-bottom: 40px;
  padding-bottom: 12px;
}
.news_item_wrap .news_item:last-child,
.blog_item_wrap .blog_item:last-child {
  margin-bottom: 0;
}
.news_item_wrap .news_item .news_item_inner a,
.blog_item_wrap .blog_item .blog_item_inner a {
  display: flex;
  align-items:flex-start;
}
.news_item_wrap ul li.news_item img {
  aspect-ratio: 448 / 250;
  object-fit: cover;
}
.news_item_wrap .news_item .news_item_inner a dd,
.blog_item_wrap .blog_item .blog_item_inner a dd {
  margin-right: 20px;
}
.news_item_wrap .news_item h3,
.blog_item_wrap .blog_item h3 {
  font-weight: normal;
  margin: 0;
  bottom: 0;
}
.news_item_wrap .news_item h3::before {
  content: none;
}
#news_list .section__ttl,
#blog_list .section__ttl {
  margin: 0;
  padding: 0;
}
#news_list h2, #blog_list h2 {
  margin-top: 0;
}
#news_list .news_item_wrap .news_item .news_item_inner a dd,
#blog_list .blog_item_wrap .blog_item .blog_item_inner a dd {
  width: fit-content;
}
#news_list .news_item_inner .ttl_btn,
#blog_list .blog_item_inner .ttl_btn {
  width: 100%;
}
#news_list .btn_basic,
#blog_list .btn_basic {
  color: var(--accentcolor);
  padding: 7px 60px;
  border: 2px solid var(--accentcolor);
  border-radius: 100vh;
  background-color: #FFFFFF;
  transition: all 0.3s ease 0s;
}
#news_list .news_item_inner a:hover,
#blog_list .blog_item_inner a:hover {
  opacity: 1.0;
}
#news_list .news_item_inner a:hover .btn_basic,
#blog_list .blog_item_inner a:hover .btn_basic {
  color: #FFFFFF;
  background-color: var(--accentcolor);
}
#top_news .news_item_wrap ul {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
}
#top_news .news_item_wrap ul li.news_item {
  width: calc(32% - 1rem);
}
#top_news .news_item_wrap .news_item .news_item_inner a {
  flex-flow: column;
  gap: 20px;
}
#top_news .news_item_wrap .news_item .news_post .news_post_name {
  margin-bottom: 20px;
}
#top_news .news_item_wrap .news_item,
#top_news .blog_item_wrap .blog_item {
  border-bottom: none;
  padding: 0;
  margin: 0;
}
@media screen and (max-width:750px) {
  .news_item_wrap .news_item, .blog_item_wrap .blog_item {
    margin-bottom: 15px;
    padding-bottom: 15px;
  }
  .news_item_wrap .news_item .news_item_inner a,
  .blog_item_wrap .blog_item .blog_item_inner a {
    display: block;
  }
  .news_item_wrap .news_item .news_item_inner a dd,
  .blog_item_wrap .blog_item .blog_item_inner a dd {
    margin: 0 0 5px 0;
  }
  .news_item_wrap dl,
  .blog_item_wrap dl {
    padding: 20px;
  }
  .news_item_wrap .news_item h3,
  .blog_item_wrap .blog_item h3 {
    padding-left: 0 !important;
  }
  #news_list .news_item_inner .ttl_btn,
  #blog_list .blog_item_inner .ttl_btn {
    width: 100%;
  }
  #news_list .news_item_inner .btn_wrap,
  #blog_list .blog_item_inner .btn_wrap {
    justify-content: center;
  }
  #top_news .news_item_wrap ul {
    gap: 1rem;
  }
  #top_news .news_item_wrap ul li.news_item {
    width: calc(50% - 0.5rem);
  }
  #top_news .news_item_wrap .news_item .news_item_inner a, #top_blog .blog_item_wrap .blog_item .blog_item_inner a {
    flex-flow: column !important;
    display: grid;
    gap: 10px;
  }
  #top_news .news_item_wrap .news_item .news_post .news_post_name {
    margin-bottom: 10px;
  }
}
/* =========================

  top about

=========================*/
#top_about {
  --gutter: calc((100% - var(--container-max)) / 2);
}
#top_about .txt__img {
  padding-left: var(--gutter);
  gap: 3%;
  justify-content: flex-end;
}
#top_about .txt__img .txt__area {
  width: 42%;
  padding: 3% 0;
}
#top_about .txt__img .img__area {
  width: 52%;
}
#top_about .txt__img .img__area img {
  border-radius: 0;
}
@media screen and (max-width:1500px) {
  #top_about .txt__img .img__area {
    width: 45%;
  }
}
@media screen and (max-width:1000px) {
  #top_about .txt__img {
    display: block;
  }
  #top_about .txt__img .img__area {
    width: 100%;
  }
  #top_about .txt__img .txt__area {
    width: 90%;
    margin: auto;
    padding: 50px 0 0;
  }
}
@media screen and (max-width:750px) {
}

/* =========================

  top_interview

=========================*/
/* #top_interview .section__contents__inner {
  overflow: hidden;
} */
#top_interview .interview_item_wrap ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#top_interview .interview_item_wrap ul li.interview_item {
  width: calc(32% - 1rem);
}
#top_interview .interview_post_name {
  margin-top: 20px;
}

.interview_slider {
  max-width: 1450px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  overflow: visible;
}
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  z-index: 10;
  cursor: pointer;
}
.swiper-button-next, .swiper-button-prev {
  color: var(--accentcolor) !important;
}
.swiper-button-prev { left: -20px; }
.swiper-button-next { right: -20px; }
.swiper-button-prev:hover,
.swiper-button-next:hover {
  opacity: 0.7;
}
.interview_slider a {
  width: 100%;
}
.interview_slider .thumbnail {
  aspect-ratio: 448 / 250;
}
.interview_slider img {
  box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, .1);
}

/* =========================

  bnr

=========================*/
.bnr_jsir {
  width: 90%;
  max-width: 750px;
  margin: 20px auto;
}
.bnr img {
  border-radius: 0;
}

.bnr_j-circle {
  width: 30%;
  max-width: 200px;
  margin: auto;
}

/* =========================

  footer

=========================*/
footer {
  background-color: var(--subcolor);
  margin-top: 100px;
}
.footer_inner, .footer_nav {
  width: 1240px;
  margin: auto;
}
.footer_inner {
  padding: 50px 0 40px;
  display: flex;
  justify-content: space-between;
}
.footer_nav {
  display: flex;
  align-items: center;
  justify-content: center;
}
footer .footer_nav > li {
  text-align: center;
}
footer .footer_nav > li a {
  color: #FFFFFF;
  font-size: 15px;
  display: block;
  line-height: 1.4em;
  padding: 10px 40px;
  position: relative;
}
footer .footer_nav > li a::after,
footer .footer_nav > li:first-of-type > a::before {
  content: "";
  border-right: 1px solid #FFFFFF;
  position: absolute;
  width: 1px;
  height: 30px;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
footer .footer_nav > li:first-of-type > a::before {
  left: 0;
  right: auto;
}
footer .copy {
  color: #FFFFFF;
  width: 100%;
  text-align: center;
  padding: 20px 0;
}
@media screen and (max-width:1240px) {
  .footer_inner, .footer_nav {
    width: 92%;
  }
  .footer_nav {
    flex-wrap: wrap;
  }
}
@media screen and (max-width:1100px) {
  .footer_inner {
    display: block;
  }
  footer .footer_inner .detail, footer .footer_inner .access_contact {
    width: 100%;
  }
  .tel_fax {
    text-align: center;
  }
  footer .footer_inner .footer_btn {
    display: block;
    width: fit-content;
    margin: auto;
  }
  footer .footer_inner .access_contact {
    margin-top: 50px;
  }
}

@media screen and (max-width: 750px) {
  footer {
    margin-top: 100px;
  }
  footer .footer_nav > li a {
    padding: 5px 10px;
  }
  .footer_inner, .footer_nav {
    width: 95%;
  }
  .footer_inner {
    padding: 30px 0 0;
  }
}
