@charset "UTF-8";

html {
  font-size: 100%;
}

body {
  font-family: "Montserrat", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  line-height: 1.8;
  color: #333;
  letter-spacing: 0.05em;
  font-size: 15px;
  font-size: 0.9375rem;
  border:solid 0px #e62929;

}
@media screen and (max-width: 768px) {
  body {
    font-size: 14px;
    font-size: 0.875rem;
   
  }
}

.icon {
  font-size: 30px;
}

a {
  transition: 0.3s;
  text-decoration: none;
  color: #391e88;
}
a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

::-moz-selection {
  color: #fff;
  background-color: #391e88;
}

::selection {
  color: #ffffff;
  background-color: #e9672a;
}

/*メインビジュアルの下に出てくるスクロール動くやつ*/
@-webkit-keyframes scrollDownLine {
  0% {
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
  }
  50% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
  }
  50.1% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: 0 100%;
    transform-origin: 0 100%;
  }
  100% {
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    -webkit-transform-origin: 0 100%;
    transform-origin: 0 100%;
  }
}
@keyframes scrollDownLine {
  0% {
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
  }
  50% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
  }
  50.1% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: 0 100%;
    transform-origin: 0 100%;
  }
  100% {
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    -webkit-transform-origin: 0 100%;
    transform-origin: 0 100%;
  }
}
.l-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  border: solid 0px #045f27;
}

/*ヘッダー*/
.l-header {
	display: flex;
	position: fixed;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	height: 110px;
	padding-top: 0;
	padding-right: 20px;
	padding-left: 10px;
	padding-bottom: 0;
	transition: all 0.2s;
	z-index: 10;
  border: solid 0px #3814ff;
}

.l-header__nav {
  padding-top: 0;
	padding-right: 20px;
	padding-left: 20px;
	padding-bottom: 0;
	z-index: 10;
  border: solid 0px #2a1fca;

}

@media screen and (max-width: 768px) {
  .l-header {
	height: 120px;
	padding: 0 15px;
  }
}

.l-header.is-active {
	height: 80px;
	background-color: #fff;
}
@media screen and (max-width: 768px) {
  .l-header__logo {    
	width: 200px;
	height: auto;
  border: solid 0px #ca1f1f;
  }
}

/*言語切替え*/
.c-language  { 
  text-align: center;
  font-size: 10px;
  font-size: 0.625rem;
}

.c-language__link {
  text-decoration: none;
  color: #333;
}
.c-language__link:hover {
  text-decoration: none;
  color: #ad2d2d;
  opacity: 0.8;
}



/*言語切替ボタン*/

.language-select-wrapper {
  width: 100px;
  position: relative;
 
  border: solid 3px #2a1fca;
  padding: 0px 0px 0px px ;
}

.language-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding: 10px;
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: white;
  background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 2048 2048"><path d="M0 0h2048L1024 1024z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 12px 12px;
  cursor: pointer;

}

.language-select:focus {
  outline: none;
  border-color: #f87218;
}

.language-select:hover {
  border-color: #f87218;
}



  
  .l-btn {
    position: relative;
    font-weight: bold;
    line-height: 1.4;
    display: inline-block;
    width: 220px;
    padding: 18px 0;
    transition: 0.3s;
    text-align: center;
    text-decoration: none;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff;
    border-radius: 50px;
    background-image: linear-gradient(to right, #7633a4 0%, #250d65 51%, #7633a4 100%);
    background-size: 200% auto;
    font-size: 14px;
    font-size: 0.875rem;
  }
  .l-btn::after {
    position: absolute;
    top: 50%;
    right: 1.5em;
    font-family: "Font Awesome 7 Free";
    font-weight: 900;
    content: "\f0da";
    transition: 0.3s;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 14px;
    font-size: 0.875rem;
  }
  .l-btn:hover {
    text-decoration: none;
    background-position: right center;
  }
  .l-btn:hover::after {
    right: 1.2em;
  }
  @media screen and (max-width: 768px) {
    .l-btn:hover::after {
      right: 1.5em;
    }
  }


/*フッター*/
.l-footer {
  padding: 60px 40px;
  background-color: #f5f5f5;
}

.l-footer-nav__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  border: 0px solid #000;  
 
}
@media screen and (max-width: 768px) {
  .l-footer-nav__list {
    justify-content: center;
    margin-bottom: -10px;
  }
}
.l-footer-nav__item {
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #e9e1d1;
  font-size: 12px;
  font-size: 0.75rem;
}
@media screen and (max-width: 768px) {
  .l-footer-nav__item {
    margin-bottom: 10px;
  }
}
.l-footer-nav__item:not(:last-child) {
  margin-right: 10px;
}
.l-footer-nav__link {
  line-height: 1;
  padding: 5px;
  color: #333;
}
.l-footer-nav__link:hover {
  text-decoration: none;
  opacity: 0.8;
}

/*フッター　コピーライト*/
.c-copyright {
  margin-top: 30px;
  text-align: center;
  font-size: 10px;
  font-size: 0.625rem;
}
.c-copyright__link {
  text-decoration: none;
  color: #333;
}
.c-copyright__link:hover {
  text-decoration: none;
  opacity: 0.8;
}



.l-section {
  padding: 20px 0;
  border: 0px solid #000;
}
@media screen and (max-width: 768px) {
  .l-section {
    padding: 40px 0;
  }
}

/*各見出し*/
.c-heading-secondary {
  font-weight: bold;
  line-height: 1;
  color: #333;
  font-size: 32px;
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .c-heading-secondary {
    font-size: 24px;
    font-size: 1.5rem;
  }
}

/*各見出し　サブタイトル*/
.c-heading-primary {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #333;
  font-size: 36px;
  font-size: 2.25rem;
  border: 0px solid #000;
  
}
@media screen and (max-width: 768px) {
  .c-heading-primary {
    font-size: 30px;
    font-size: 1.875rem;
  }
}

.c-heading-primary__sub {
  display: block;
  margin-top: 5px;
  margin-bottom: 5px;
  letter-spacing: 0.05em;
  font-size: 13px;
  font-size: 0.8125rem;
  text-align: center;
}

.c-heading-primary__sub2 {
  display: inline-block;
  margin-top: 5px;
  letter-spacing: 0.05em;
  font-size: 13px;
  font-size: 0.8125rem;
  text-align: center;
}



/*角丸ボタン*/
.c-btn {
  position: relative;
  font-weight: bold;
  line-height: 1.4;
  display: inline-block;
  width: 400px;
  padding: 15px 0;
  transition: 0.3s;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #333;
  border-radius: 40px;
  border: 2px solid  #777777;
  background:#fff;

  font-size: 14px;
  font-size: 0.875rem;
}
.c-btn::after {
  position: absolute;
  top: 50%;
  right: 1.5em;
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  content: "";
  transition: 0.3s;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 16px;
  font-size: 1rem;
}
.c-btn:hover {
  text-decoration: none;
  background-position: right center;
  background-color: #ffffff;
  color: #f87218;
  border: 2px solid  #f87218;
}
.c-btn:hover::after {
  right: 1.2em;
}
@media screen and (max-width: 768px) {
  .c-btn:hover::after {
    right: 1.5em;
  }
}

/*SPサイズメニュー
.c-btn--block {
  display: block;
  max-width: 300px;
  margin: 0 auto;
}
.c-btn--center {
  display: block;
  margin-right: auto;
  margin-left: auto;
}
.c-btn--transparent {
  border: 0px solid #ad2424;
  background: none;
}
.c-btn--transparent:hover {
  opacity: 0.8;
}

.c-btn-grad {
  background-image: linear-gradient(to right, #314755 0%, #26a0da 51%, #314755 100%);
}

.c-btn-grad {
  display: block;
  margin: 10px;
  padding: 15px 45px;
  transition: 0.5s;
  text-align: center;
  text-transform: uppercase;
  color: rgb(218, 24, 24);
  border-radius: 10px;
  background-size: 200% auto;
  box-shadow: 0 0 50px #b62424;
}

.c-btn-grad:hover {
  text-decoration: none;
  color: #100e9e;
  background-position: right center;
}
*/



/*ページ上部に戻るボタン*/
.c-page-top {
  position: fixed;
  right: 30px;
  bottom: 45px;
  z-index: 1;
  display: none;
}
@media screen and (max-width: 768px) {
  .c-page-top {
    right: 20px;
    bottom: 20px;
  }
}
.c-page-top__link {

  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  content: "\f0da";
  font-size: 12px;

  display: block;
  width: 80px;
  height: 80px;
  padding: 8px;
  top: 0px;


  text-align: center;
  text-decoration: none;
  color: #333;
  box-shadow: 0 0 0px rgba(0, 0, 0, 0.2);

  border-radius: 40%; 
}

.c-page-top__link:hover {
  opacity: 0.8;
  color: #ff2b2b;
  background-color: #ffffff;
  text-decoration: none;
 
}

@media screen and (max-width: 768px) {
  .c-page-top__link:hover {
    opacity: 1;
  }
}

/*NEWS カテゴリタイトル*/
.c-label-category {
  font-weight: bold;
  display: block;
  width: 80px;
  padding: 2px 10px;
  text-align: center;
  color: #333;
  border-radius: 5px;
  background-color: #fff2d6;
  border : solid 1px #e9be00 ;
  font-size: 12px;
  font-size: 0.75rem;
}
@media screen and (max-width: 768px) {
  .c-label-category {
    padding: 2px 8px;
    font-size: 11px;
    font-size: 0.6875rem;
  }
}

/*ロゴ*/
.logo {
  line-height: 1;
  border: solid 0px #ca1f1f;
}
.logo__img {
  display: block;
  border: solid 0px #521fca;
}

/*センターについて*/
.p-organaiza__heading {
  text-align: center;
  margin-bottom: 30px;
}

.p-organaiza__heading h2 {
  padding-top: 80px;
  margin-top:60px;

  border-top: dashed 2px #cddaee;
}

@media screen and (max-width: 768px) {
  .p-organaiza__heading {
    margin-right: 0;
    margin-bottom: 30px;
    text-align: center;
  }
}

.p-organaiza__body {
  margin-bottom: 30px;
}
.p-organaiza__link {
  text-align: center;
}

.c-organaiza {
  display: flex;
  border: 0px solid #000000;
}
@media screen and (max-width: 768px) {
  .c-organaiza {
    display: block;
  }
}
.c-organaiza__img-wrapper {
  flex: 0 1 55%;
  margin-right: 15px;

}

@media screen and (max-width: 768px) {
  .c-organaiza__img-wrapper {
    margin-right: 0;
    margin-bottom: 20px;
  }
}

.c-organaiza__img {
  width: 100%;
  height: auto;
}

.c-organaiza__body {
  flex: 1;
  border: solid 0px #ca1f1f;
}

.c-organaiza__title {
  margin-bottom: 20px;
  font-size: 24px;
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
  .c-organaiza__title {
    line-height: 1.2;
    margin-bottom: 15px;
    text-align: center;
    font-size: 18px;
    font-size: 1.125rem;
  }
}

.p-link__link {
  margin-top: 40px;
  text-align: center;
}


/*メンバーについて*/
.c-member__body {
  display: flex;
  flex-direction: column;
}
.c-member__img-wrapper {
  margin-bottom: 15px;
}
.c-member__img {
  width: 100%;
  height: auto;
}
.c-member__body {
  color: #333;
}
.c-member__title {
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 15px;
  text-align: center;
  font-size: 18px;
  font-size: 1.125rem;
}
.c-member__text {
  text-align: center;
} 

@media screen and (max-width: 768px) {
  .c-member__title {
    margin-bottom: 10px;
  }

}
.c-member__caption {
  text-align: center;
  font-size: 16px;
  font-size: 1rem;
}

.c-member-wrapper {
  margin-bottom: -30px;
}
@media screen and (max-width: 768px) {
  .c-member-wrapper {
    display: block;
    margin-bottom: 0;
  }
}
.c-member-wrapper .c-member {
  margin-bottom: 30px;
}
.c-member-wrapper--col3 {
  display: flex;
  flex-wrap: wrap;
}
.c-member-wrapper--col3 .c-member {
  width: calc(33.33333% - 20px);
  margin-right: 30px;
}
@media screen and (max-width: 768px) {
  .c-member-wrapper--col3 .c-member {
    width: 100%;
    margin-right: 0;
    margin-bottom: 40px;
  }
}
.c-member-wrapper--col3 .c-member:nth-child(3n) {
  margin-right: 0;
}
.c-member-wrapper--col3 .c-member:last-child {
  margin-bottom: 0;
}


/*グローバルメニュー*/
@media screen and (max-width: 768px) {
  .p-global-nav{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    display: flex;
    visibility: hidden;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 40%;
    transition: opacity 0.2s ease;
    opacity: 0;
    background-image: linear-gradient(135deg, #f5f534, #fdfd6d);
    border: solid 0px #ff00dd;
  }

  .p-global-nav.is-show {
    visibility: visible;
    opacity: 1;
  }


}
.p-global-nav__list {
  display: flex;
  padding-left: 20px;
  padding-right: 10px;
  list-style: none;
  border: solid 0px #ca1f1f;
}

@media screen and (max-width: 768px) {
  .p-global-nav__list {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    padding: 0;
  }
}
.p-global-nav__item {
  font-weight: bold;
  text-transform: uppercase;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (max-width: 960px) {
  .p-global-nav__item {
    font-size: 12px;
    font-size: 0.75rem;
  }
}
@media screen and (max-width: 768px) {
  .p-global-nav__item {
    margin-bottom: 20px;
    font-size: 16px;
    font-size: 1rem;
  }
}
.p-global-nav__item:not(:last-child) {
  margin-right: 25px;
}
@media screen and (max-width: 768px) {
  .p-global-nav__item:not(:last-child) {
    margin-right: 0;
  }
}
.p-global-nav__link {
	position: relative;
	display: inline-block;
	color: #333;
}
.p-global-nav__link::after {
  position: absolute;
  bottom: -5px;
  left: 0;
  display: block;
  width: 0;
  height: 2px;
  content: "";
  transition: width 0.2s;
  background-color: #f87218;
}
@media screen and (max-width: 768px) {
  .p-global-nav__link::after {
    display: none;
  }
}
.p-global-nav__link:hover {
  text-decoration: none;
  color: #f87218;
}
.p-global-nav__link:hover::after {
  width: 100%;
}




/*パンくずリスト*/
.p-breadcrumb {
  position: sticky;
  top: 30px;
  margin-bottom: 50px;
  z-index: 1;
  padding: 8px 0;
  list-style: none;
  background-color: #f5f5f5;
  border:solid 0px #000;
}
@media screen and (max-width: 768px) {
  .p-breadcrumb {
    padding: 5px 0;
  }
}
.p-breadcrumb__list {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.p-breadcrumb__item {
  display: inline;
  list-style: none;
  text-transform: uppercase;
  font-size: 12px;
  font-size: 0.75rem;
}
@media screen and (max-width: 768px) {
  .p-breadcrumb__item {
    font-size: 11px;
    font-size: 0.6875rem;
  }
}
.p-breadcrumb__item::after {
  padding: 0 0.5em;
  content: "▶";
  color: #555;
}
.p-breadcrumb__item:last-child:after {
  content: "";
}

.p-breadcrumb:before,
.p-breadcrumb:after {
  content: "";
  display: table;
}





.c-btn-menu {
  display: none;
}
@media screen and (max-width: 768px) {
  .c-btn-menu {
    position: relative;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 5px;
    cursor: pointer;
    text-align: center;
    opacity: 0.9;
    border: none;
    outline: none;
    background: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-size: 12px;
    font-size: 0.75rem;
  }
}

/*SPメニュー右の三本線*/
.c-btn-menu__line {
  position: relative;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  transition: all 0.4s;
  border-radius: 4px;
  background-color: #333;
}
.c-btn-menu__line::before, .c-btn-menu__line::after {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  transition: inherit;
  border-radius: 4px;
  background-color: inherit;
}
.c-btn-menu__line::before {
  top: -8px;
}
.c-btn-menu__line::after {
  top: 8px;
}
.c-btn-menu.is-active .c-btn-menu__line {
  background-color: transparent;
}
.c-btn-menu.is-active .c-btn-menu__line::before, .c-btn-menu.is-active .c-btn-menu__line::after {
  top: 0;
  background-color: #333;
}
.c-btn-menu.is-active .c-btn-menu__line::before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.c-btn-menu.is-active .c-btn-menu__line::after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}




.swiper-container {
  padding-bottom: 30px;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  position: absolute;
  top: 50%;
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  display: block;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #ffffff;
  font-size: 32px;
  font-size: 2rem;
}

.swiper-button-next::after {
  content: "\f105";
  
}

.swiper-button-prev::after {
  content: "";
}

.swiper-container-horizontal > .swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 0;
  text-align: right;
}

.swiper-pagination-bullet-active {
  background: #e79e00;
}


/*メインビジュアル*/
.warapper-1080{
 max-width: 1920px;
 padding: 10px 20px;
 margin: 0px auto;
 border:solid 0px #000;
 }

.mainvisual{
background-color: #fffffe;
padding: 70px 0 ;
border:solid 0px #ac2b2b;

 }

 .mainvisual .inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
 }

 .mainvisual .img{
  max-width: 1920px;
  margin-top: 0px;
 }


/*
.p-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 20vh;
  color: #fff;
  background-image: url(../img/main-visual2.png);
  background-repeat: no-repeat;
  background-position: top center;
  background-color: #ffffff;
  border: 0px solid #000;

  object-fit: contain;
  background-size: cover;

}
.p-hero__scroll {
  display: inline-block;
  position: absolute;
  right: 20px;
  bottom: 0;
  color: #333;
  padding: 10px 10px 90px;
  letter-spacing: 0.2em;
  line-height: 1;
  text-decoration: none;
  text-decoration: none;
  text-transform: uppercase;
  overflow: hidden;
  -ms-writing-mode: tb-rl;
  -ms-writing-mode: tb-lr;
  -webkit-writing-mode: vertical-lr;
  writing-mode: vertical-lr;
  font-size: 12px;
  font-size: 0.75rem;
  border: 0px solid #000;

  
}

@media screen and (max-width: 768px) {
  .p-hero__scroll {
    right: 5px;
    padding: 10px 10px 60px;
  }
}
.p-hero__scroll::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 80px;
  background: #525252;
  content: "";
  -webkit-animation: scrollDownLine 1.5s infinite;
  animation: scrollDownLine 1.5s infinite;
}

@media screen and (max-width: 768px) {
  .p-hero__scroll::after {
    height: 50px;
  }
}

 */
/*各ページヘッダー*/
.p-sub-hero {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  height: 300px;
  color: #fff;
  background-image: url(../img/.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .p-sub-hero {
    height: 250px;
  }
}
.p-sub-hero__inner {
  padding: 150px 40px 10px 40px;
  text-align: center;
  border:solid 0px #000;
}




.p-message {
  margin-bottom: 30px;
  text-align: center;
  background-repeat: no-repeat, no-repeat;
  background-position: center center, center center;
  background-size: cover, cover;
}
.p-message__heading {
  font-weight: bold;
  line-height: 1;
  display: inline-block;
  margin-bottom: 40px;
  font-size: 40px;
  font-size: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-message__heading {
    line-height: 1.5;
    font-size: 32px;
    font-size: 2rem;
  }
}
.p-message__underline {
  background: linear-gradient(transparent 70%, #f5f534 0%);
}


.p-contact {
  margin-top: 40px;
  padding: 80px 0;
  text-align: center;
  background-color: #f0f0f0;
}
@media screen and (max-width: 768px) {
  .p-contact {
    padding: 60px 0;
  }
}
.p-contact__heading {
  margin-bottom: 30px;
}
.p-contact__body {
  margin-bottom: 20px;
}



/*NEWSお知らせ*/
.p-news__inner {
  display: flex;
  max-width: 950px;
  border:solid 0px #e62929;
}
@media screen and (max-width: 768px) {
  .p-news__inner {
    display: block;
  }
}
.p-news__heading {
  margin-right: 0px;
  border:solid 0px #000;
  text-align: center;
}

.p-news__heading h2 {
  
  padding-top: 80px;
  margin-top:-80px;
  border:solid 0px #3105f5;
}


@media screen and (max-width: 768px) {
  .p-news__heading {
    margin-right: 0;
    margin-bottom: 0px;
    text-align: center;
  }
}
.p-news__body {
  flex: 1;
}


.p-news-list__list {
  list-style: none;
  border:solid 0px #000;
}
.p-news-list__item {
  display: flex;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .p-news-list__item {
    display: block;
  }
}
.p-news-list__item:not(:last-child) {
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .p-news-list__item:not(:last-child) {
    margin-bottom: 30px;
  }
}
.p-news-list__heading {
  display: flex;
}
@media screen and (max-width: 768px) {
  .p-news-list__heading {
    margin-bottom: 3px;
  }
}
.p-news-list__body {
  flex: 1;
}
.p-news-list__link {
  color: #333;
}
.p-news-list__date {
  margin-right: 20px;
}
.p-news-list__label {
  margin-right: 20px;
}

.p-news-list-wrapper__inner {
  max-width: 780px;
}
.p-news-list-wrapper__body {
  margin-bottom: 40px;
}





.article-wrapper__inner {
  max-width: 750px;
}

/*ページ送りパーツ*/
.pagination {
  display: flex;
  justify-content: center;
}
.pagination__page {
  font-weight: bold;
  display: block;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  margin: 0 5px;
  border-radius: 50%;
  background-color: #ffffff;
  font-size: 20px;
  font-size: 1.25rem;
}
.pagination__link {
  color: #2e2c2c;
  background-image: linear-gradient(135deg, #ffe44d,  #ffe44d);
  background-color: #ffa76c;
  border: 0px solid #f87218;
}
.pagination__link:hover {
  text-decoration: none;
  border:2px solid #f87218;
  opacity: 1;
  color: #f87218;
}


.p-pagination {
  display: flex;
  justify-content: center;
}

.p-pagination__page {
  font-weight: bold;
  display: block;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  margin: 0 5px;
  border-radius: 50%;
  background-color: #f5f5f5;

  font-size: 20px;
  font-size: 1.25rem;
}
.p-pagination__link {
  color: #f87218;
  background-image: linear-gradient(135deg, #ffe601, #ffd000);
  background-color:#f87218;
}
.p-pagination__link:hover {
  text-decoration: none;
  opacity: 0.9;
}

/*コンテンツページ*/

.contents__title {
  margin-bottom: 15px;
  font-size: 20px;
  text-align: left;
  border: 0px solid #f87218;
}

#contents .contents-list{
    font-size: 13px;
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:15px;
  list-style:none;
  border: 0px solid #f87218;
}

.contents-list-item{
  text-align: center;
  border: 0px solid #f87218;
}

.contents__subtext{
  text-align: center;
  border: 0px solid #181cf8;
}




.p-contents {
  padding: 60px 0 40px 0;
}
@media screen and (max-width: 768px) {
  .p-contents {
    padding: 0;
  }
}
.p-contents__inner {
  position: relative;
  display: flex;
  align-items: center;
  padding: 40px 20px 60px 0px;
  max-width: 1200px;
    border: 0px solid #f8186e;
}
@media screen and (max-width: 768px) {
  .p-contents__inner {
    display: block;
    padding: 30px 20px 60px 20px;
      border: 0px solid #f8186e;
  }
}
.p-contents__inner::after {
  position: absolute;
  top: 50%;
  right: 0;
  z-index: -1;
  display: block;
  width: 60%;
  height: 100%;
  content: "";
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: #ffff;
}
@media screen and (max-width: 768px) {
  .p-contents__inner::after {
    top: auto;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 68%;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.p-contents__img-wrapper {
  flex: 1;
  text-align: center;
 
  
  width: 100%;
  margin-right: 30px;
  border: 0px solid #18f836;
}
@media screen and (max-width: 768px) {
  .p-contents__img-wrapper {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
}
.p-contents__desc {
  flex: 1;
  text-align: center;
   border: 0px solid #181cf8;
}
.p-contents__heading {
  margin-bottom: 30px;
}
.p-contents__body {
  margin-bottom: 30px;
}




.p-company {
  text-align: center;
  padding: 0;
}
.p-company__inner {
  padding: 100px 0;
  max-width: 1300px;
  background-image: url(img/bg-circle.png), url(img/bg-face.png);
  background-position: center center, center center;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .p-company__inner {
    padding: 60px 0;
    background-image: url(img/sp_bg-circle.png);
    background-position: center center;
    background-size: 375px;
  }
}
.p-company__heading {
  margin-bottom: 30px;
}
.p-company__body {
  margin-bottom: 30px;
}

.p-recruit-message {
  text-align: center;
}
.p-recruit-message__heading {
  margin-top: 30px;
  margin-bottom: 20px;
  padding: 0 15px;
  color: #391e88;
}
@media screen and (max-width: 768px) {
  .p-recruit-message__heading {
    margin: 20px 0;
  }
}
.p-recruit-message__title {
  line-height: 1;
  margin-bottom: 10px;
  font-size: 72px;
  font-size: 4.5rem;
}
@media screen and (max-width: 768px) {
  .p-recruit-message__title {
    line-height: 1.2;
    font-size: 48px;
    font-size: 3rem;
  }
}
.p-recruit-message__subtitle {
  font-size: 32px;
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .p-recruit-message__subtitle {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
.p-recruit-message__body {
  margin-bottom: 40px;
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (max-width: 768px) {
  .p-recruit-message__body {
    font-size: 15px;
    font-size: 0.9375rem;
  }
}
.p-recruit-message__img-wrapper img {
  -webkit-clip-path: polygon(0 15%, 100% 0, 100% 85%, 0% 100%);
  clip-path: polygon(0 15%, 100% 0, 100% 85%, 0% 100%);
}

@media screen and (max-width: 768px) {
  .p-recruit {
    padding: 0;
  }
}
.p-recruit__inner {
  display: flex;
}
@media screen and (max-width: 768px) {
  .p-recruit__inner {
    flex-direction: column-reverse;
  }
}
.p-recruit__desc {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: center;
  background-color: #f0f0f0;
  padding: 70px 40px;
}
.p-recruit__heading {
  margin-bottom: 30px;
  text-align: center;
}
.p-recruit__img-wrapper {
  width: 60%;
  background-image: url(img/recruit.jpg);
  background-position: center center;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .p-recruit__img-wrapper {
    width: 100%;
    height: 200px;
  }
}
.p-recruit__body {
  margin-bottom: 30px;
}

.p-organaiza-list .c-organaiza:not(:last-child) {
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .p-organaiza-list .c-organaiza:not(:last-child) {
    margin-bottom: 40px;
  }
}

.p-contents-list .c-member__img {
  border: 0px solid #ececec;
}

.p-greeting {
  padding: 100px 0 70px;
  background-image: url(/img/bg-circle.png), url(/img/bg-face.png);
  background-position: center -20px, center 40px;
}
@media screen and (max-width: 768px) {
  .p-greeting {
    padding: 60px 0 60px;
    background-image: url(/img/sp_bg-circle.png);
    background-position: center -20px;
    background-size: 375px;
  }
}
.p-greeting__heading {
  margin-bottom: 30px;
  text-align: center;
}
.p-greeting__message {
  margin-bottom: 160px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-greeting__message {
    margin-bottom: 60px;
  }
}

.p-company-info__heading {
  text-align: center;
  margin-bottom: 30px;
}
.p-company-info__table {
  margin-bottom: 60px;
}

.p-access__map {
  margin-bottom: 5px;
}
.p-access__map iframe {
  height: 400px;
  vertical-align: bottom;
}
@media screen and (max-width: 768px) {
  .p-access__map iframe {
    height: 240px;
  }
}
.p-access__map-link {
  font-size: 14px;
  font-size: 0.875rem;
}

.p-job-list {
  padding-top: 0;
}
.p-job-list__heading {
  margin-bottom: 30px;
  text-align: center;
}
.p-job-list__name {
  margin-bottom: 30px;
  text-align: center;
  font-size: 24px;
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
  .p-job-list__name {
    margin-bottom: 20px;
    font-size: 16px;
    font-size: 1rem;
  }
}
.p-job-list__detail {
  padding: 60px 95px;
  border: 0px solid #b067cf;
  border-radius: 6px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .p-job-list__detail {
    padding: 30px 20px;
  }
}
.p-job-list__table {
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .p-job-list__table {
    margin-bottom: 40px;
  }
}
.p-job-list__link {
  text-align: center;
}
.p-job-list__link-note {
  display: block;
  margin-top: 5px;
  font-size: 12px;
  font-size: 0.75rem;
}

.p-company-video__heading {
  margin-bottom: 40px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-company-video__heading {
    margin-bottom: 30px;
  }
}

.p-contact-form__inner {
  max-width: 780px;
}
.p-contact-form__lead {
  margin-bottom: 40px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-contact-form__lead {
    margin-bottom: 30px;
  }
}
.p-contact-form__body {
  padding: 90px;
  background-color: #f7f7f7;
}
@media screen and (max-width: 768px) {
  .p-contact-form__body {
    padding: 30px;
  }
}

.u-center {
  text-align: center !important;
}

.u-text-bold {
  font-weight: bold !important;
}

.u-text-big {
  font-size: 1.5em;
}

.u-sp-only {
  display: none;
}
@media screen and (max-width: 768px) {
  .u-sp-only {
    display: block;
  }
}

/*# sourceMappingURL=style.css.map */
