@charset "UTF-8";

/* -------------------------- 変数 */

:root{
  --dps-green: #3BB14D;
  --dps-yellow: #FABE00;
  --dps-blue: #1a59a6;
  --bg-footer: #FFFF6A;

  --label-orange:#ffc37f;

  --list-head-bg: #F5EAD9;
  --list-data-bg: #fff;
  --list-border-color: #533600;

  --ribbon-border-width: .7rem;
}

/* -------------------------- 基本 */

html{
  scroll-behavior: smooth;
  scroll-padding-top: 0;
  font-size: 100%;
  /* background-color: var(--dps-yellow); */
}

img{
  vertical-align: bottom;
}

#page {
  opacity: 0;
  transition: opacity 1s ease;
}
#page.fade-in {
  opacity: 1;
}

body{
  font-family: "M PLUS 1p", sans-serif;
  background-color: var(--dps-yellow);
  line-height: 1.7;
  overflow-x: hidden;

  /* opacity: 0; */
  transition: opacity 0.5s ease-in;
}

/* 初期表示は非表示 */
/* .home, .home::after {
  opacity: 0;
  transition: opacity 2s;
}

.fade-visible{
  opacity: 1;
} */

p{
  margin: 1rem 0;
}
p:first-child{
  margin-top: 0;
}
p:last-child{
  margin-bottom: 0;
}

/* -------------------------- リンク */

a,
a:link,
a:visited{
  color: var(--dps-blue);
  text-decoration: underline;
}

a:hover{
  opacity: .5;
  text-decoration: none; 
}

/* -------------------------- 言語切り替え */

.ja, .en {
  display: none;
}
.visible {
  display: inline;
}

/* トグルボタンのスタイル */
.btn-languageToggle {
  user-select: none;
  cursor: pointer;
  display: inline-block;
  position: relative;
  font-size: 1.2em;
  font-weight: bold;
}

/* アンダーバーのアニメーション */
.btn-languageToggle::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 50%;
  height: 2px;
  background-color: #333;
  /* transition: left 0.1s ease-in-out; */
}
    
.lang-ja .btn-languageToggle::after { left: 0; }
.lang-en .btn-languageToggle::after { left: 50%; }

.lang-ja .btn-languageToggle .nav-en { opacity: 0.5; }
.lang-en .btn-languageToggle .nav-ja { opacity: 0.5; }

.lang-en .only-ja{
  display: none;
}


/* -------------------------- 定義リスト */

dl.horizontal{
  border-bottom: 1px solid var(--list-border-color);
  margin: 2rem 0;
  display: grid;
  gap: 0;
  grid-template-columns: [key] minmax(150px, min-content) [value] 1fr;
}
dl.horizontal:first-child{
  margin-top: 0;
}
dl.horizontal:last-child{
  margin-bottom: 0;
  border: 0;
}

dl.horizontal dt,
dl.horizontal dd{
  padding: 1.5rem 1.5rem;
  border-top: 1px solid var(--list-border-color);
}
dl.horizontal:first-child dt:first-child,
dl.horizontal:first-child dd:first-of-type{
  border: 0;
}

dl.horizontal dt{
  grid-column: key;
  white-space: nowrap;
  font-weight: bold;
  display: flex;
  align-items: center;
}
dl.horizontal.colored dt{
  grid-column: key;
  white-space: nowrap;
  background-color: var(--list-head-bg);
  font-weight: bold;
  display: flex;
  align-items: center;
}
dl.horizontal.dt2 dt{
  grid-column: span 2;
}

dl.horizontal dd{
  grid-column: value;
  background-color: var(--list-data-bg);
}

/* -------------------------- フォーム */

dl.horizontal.form{
  border-bottom: 1px solid var(--list-border-color);
  margin: 2rem 0;
  display: grid;
  gap: 0;
  grid-template-columns: [key] minmax(320px, min-content) [value] 1fr;
}

dl.horizontal.colored dt,
dl.horizontal.form dt{
  background-color: #F5EAD9;
}

/* -------------------------- 必須 */

.required{
  position: relative;
  padding-right: 4rem;
}

.required::after{
  content: '必須';
  display: block;
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  padding: .3rem .8rem;
  font-size: .8rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  background-color: #EB5C50;
  border-radius: 2rem;
  letter-spacing: .1rem;
}
.lang-en .required::after{
  content: 'required';
}

/* -------------------------- フォーム */

.form label{
  margin-right: 1rem;
}

::placeholder {
  color: #999;
}

input[type="text"],
input[type="tel"],
input[type="email"],
select,
textarea {
  -webkit-appearance: none;
  padding: .5rem 1rem;
  border: 1px solid #ccc;
  border-radius: .7rem;
  width: 100%;
}

input[type="radio"] {
  position: relative;
  width: 16px;
  height: 16px;
  border: 1px solid #000;
  border-radius: 50%;
  vertical-align: -2px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin-right: .5rem;
}

input[type="radio"]:checked:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #4EA5D2;
  content: '';
}

textarea{
  min-height: 8rem;
}

select{
  color: #999;
  background: url(../images/icon-angle-down.svg) no-repeat right 12px center / 18px auto;
}
select option:checked{
  color: #000;
}

select[id="year"],
select[id="month"],
select[id="date"]
{
  width: 25%;
}

select[id="age"]{
  width: 50%;
}

.notice{
  font-size: .9rem;
  margin-top: 3rem;
}

.form ul{
  list-style: none;
  padding: 0;
}
.form ul li{
  margin: .5rem 0;
}

.error_messe{
  margin: .5rem 0;
}

.mw_wp_form_input .for_input{ display: block;}
.mw_wp_form_input .for_confirm{ display: none;}

.mw_wp_form_confirm .for_input{ display: none;}
.mw_wp_form_confirm .for_confirm{ display: block;}


/* -------------------------- クラス */

span.fig{
  margin: 0 .3rem;
}

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

.fit img,
img.fit{
  width: 100%;
  height: auto;
}

.no-scroll{
  position: fixed;
  left: 0;
  right: 0;
  overflow: hidden;
}

.flex{ 
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.for-pc    { display: block; }
img.for-pc { display: inline-block; }
.for-sp,
img.for-sp { display: none; }

.inner{
  max-width: 1280px;
  
  margin: 0 auto;
  padding: 1rem;
}


/* -------------------------- 戻るボタン */

.btn-return-top{
  position: fixed;
  bottom: 50px;
  right: 50px;
  z-index: 100;
}

.btn-return-top a{
  position: relative;
  display: block;
  width: 60px;
  height: 45px;
  opacity: 0;
  transition: .5s ease-out;
}
.btn-return-top a.disabled{
  cursor: default;
  pointer-events: none;
}

.btn-return-top img{
  max-width: 100%;
  object-fit: contain;
  object-position: 50%;
}

.btn-return-top a::after{
  content: '';
  display: block;
  opacity: 0;
  width: 100px;
  height: 50px;
  background: url(../images/btn-return-top-fuki-ja.svg) no-repeat 50% 50% / contain;
  pointer-events: none;
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translate(0, -100%);
  transition: .3s ease-out;
  scale: .2;
  margin-left: -50px;
}

body.lang-en .btn-return-top a::after{
  background-image: url(../images/btn-return-top-fuki-en.svg);
}

.btn-return-top a:hover{
  opacity: 1;
  scale: 1.1;
}

.btn-return-top a:hover::after{
  opacity: 1;
  scale: 1.1;
}

/* ======= ヘッダー */

.site-header{
  /* background-color: #fff; */
  margin-bottom: 1rem;
  padding-top: 1rem;
}

.site-header img{
  width: 100%;
  height: auto;
}

.site-header .inner{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1rem;
}

.logo,
.nav-header{
  flex-shrink: 0;
}

.logo{
  position: relative;
  width: 260px;
  height: 150px;
  text-align: center;
  /* padding: 24px 0; */
  padding: 0 0;
  display: flex;
  align-items: center;
}
.logo::before{
  content: '';
  background-color: #fff;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 5;
  transform: translate(-50%,-50%);
}
.logo img{
  display: block;
  position: relative;
  z-index: 10;
  margin: 0 auto;
}

.home .logo{
  width: 380px;
  /* height: auto; */
}
.home .logo::before{
  width: 240px;
  height: 240px;
}

.logo a{
  display: block;
  position: relative;
  z-index: 10;
  color: #000;
  text-decoration: none;
}

.parent-com{
  background-color: #fff;
  padding: .6rem 1.5rem;
  border-radius: 3rem;
  width: 400px;
}



/* ======= ナビゲーション */

.hide{
  display: none !important;
}

.utils{
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 2rem;
  margin: 0 0 1.7rem;
}

.toggle-lang{
  /* display: none; */
  font-size: 1.15rem;
  font-weight: bold;
}
.menu-global .toggle-lang{
  display: none;
}

.menu-global .logo{
  display: none;
  height: auto;
}

.menu-global .nav-list{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  font-size: 1.3rem;
  font-weight: bold;
  list-style: none;
  margin: 0;
  padding: 0;
}
.menu-global a{
  position: relative;
  display: block;
  padding: .3rem .5rem;
  color: #000;
  text-decoration: none;
  white-space: nowrap;
  min-height: 45px;
}
.menu-global .nav-list li{
  margin-right: 1rem;
}
.menu-global .nav-list li:last-child{
  margin-right: 0;
}
.menu-global a:hover{
  /* color: var(--dps-green); */
}

.btn-menu-burger,
.btn-menu-close,
#cb-mobile-menu{
  display: none;
}

.btn-menu-burger{
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  width: 45px;
  height: 45px;
}
.btn-menu-burger img{
  width: 100%;
  height: auto;
}


/* ======= フッター */

.site-footer{
  position: relative;
  z-index: 10;
  padding: 2rem 0;
  background-color: var(--dps-yellow);
}

.site-footer .inner{
  position: relative;
  padding: 0 1rem;
  padding-left: 40%;
  text-align: right;
}

.logo-footer{
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 300px;
  text-align: center;
}


.copyright{
  font-size: .75rem;
}

.nav-footer ul{
  display: flex;
  justify-content: flex-end;
  list-style: none;
  margin: 0 0 .5rem;
  padding: 0;
}
.nav-footer a{
  display: block;
  color: #000;
  padding: .5rem;
  text-decoration: none;
}
.nav-footer a:hover{
  opacity: .5;
}



/* ======= コンテンツ */

.container{
  position: relative;
  background-color: #fff;
  padding: 1rem 0;
  border-radius: 1rem;
  width: calc(100% - 2rem);
  max-width: 1280px;
  margin: 0 auto;
  line-height: 1.7;
}

.container-inner{
  padding: 0 2rem 2rem;
  margin: 0 auto;
  max-width: 1000px;
}

main{
  padding:0;
}

main ul,
main ol{
  list-style-position: inside;
}

.main-header{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 2rem;
  margin-bottom: 1.5rem;
  line-height: 1.3;
  min-height: 80px;
}

.page-title .heading{
  font-size: 2.25rem;
  font-weight: 800;
}

.page-title .heading .sub{
  display: block;
  font-size: 1.125rem;
}

.nav-page{
  background-color: #000;
  border-radius: 2rem 0 0 2rem;
  padding: .2rem 1rem;
  /* margin-top: 1rem; */
  min-width: 500px;
}
.nav-page ul{
  list-style: none;
  margin: 0;
  padding: 0;
  /* text-align: right; */
  letter-spacing: .6rem;
}
.nav-page ul li{
  display: inline-block;
}
.nav-page ul li a{
  display: block;
  text-align: center;
  letter-spacing: 0;
  padding: .3rem .5rem;
  color: #fff;
  text-decoration: none;
}


/* ======= ページタイトル各種 */

.page-header{
  text-align: center;
  margin-bottom: 3rem;
}


/* -------- ラインマーカー */
.page-header.lined .heading{
  /* display: inline-block; */
  display: inline;
  background-image: linear-gradient(to bottom, transparent 65%, var(--label-orange) 65%);
  padding: 0 1rem;
}

/* -------- リボン */
.ribboned .heading{
  display: inline-block;
  background-color: var(--dps-yellow);
  padding: .3rem .5rem;
  position: relative;
  margin-left: calc(var(--ribbon-border-width) * 2 + 10px);
  margin-right: calc(var(--ribbon-border-width) * 2 + 10px);
}
.ribboned .heading::before,
.ribboned .heading::after{
  content: '';
  display: block;
  width: 0;
  height: 0;
  border: var(--ribbon-border-width) solid var(--dps-yellow);
  border-top-width: calc(var(--ribbon-border-width) * 1.5);
  border-bottom-width: calc(var(--ribbon-border-width) * 1.5);
  position: absolute;
  bottom: -15%;
}
.ribboned .heading::before{
  border-left-color: transparent;
  left: calc(-2rem - 5px);
}
.ribboned .heading::before{
  border-left-color: transparent;
  left: calc( (var(--ribbon-border-width) * 2 + 5px) * -1 );
}
.ribboned .heading::after{
  border-right-color: transparent;
  right: calc( (var(--ribbon-border-width) * 2 + 5px) * -1 );
}

/* ======= セクション */

.section{
  margin: 5rem 0;
  padding: 0 2rem;
}
.section:last-child{
  margin-bottom: 0;
}

.section-inner{
  max-width: 1000px;
  padding: 0;
  position: relative;
}
.section:not(.plain) .section-inner::before,
.section:not(.plain) .section-inner::after{
  content: '';
  display: block;
  background-color: #000;
  position: absolute;
}
.section:not(.plain) .section-inner::before{
  width: 2px;
  height: calc(100% - 50px);
  left: 24px;
  top: 25px;
  z-index: 10;
}
.section:not(.plain) .section-inner::after{
  content: '';
  display: block;
  background-color: #000;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  
  bottom: 11px;
  left: 25px;
  transform: translate(-50%,-50%);
}

.section:not(.plain):nth-of-type(even) .section-inner::before{
  left: auto;
  right: 24px;
}
.section:not(.plain):nth-of-type(even) .section-inner::after{
  left: auto;
  right: 10px;
}

.section.plain .section-header{
  text-align: center;
}

.section:not(.plain) .section-header{
  position: relative;
}
.section:not(.plain):nth-of-type(even) .section-header{
  text-align: right;
}

.section:not(.plain) .section-header::before{
  content: '';
  display: block;
  background-color: #000;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translate(0,-50%);
}
.section:not(.plain):nth-of-type(even) .section-header::before{
  left: auto;
  right: 15px;
}

.section:not(.plain) .section-header .heading{
  display: inline-block;
  background-color: var(--dps-yellow);
  border-radius: 3rem;
  padding: .5rem 2rem;
  padding-left: 3.5rem;
}
.section:not(.plain):nth-of-type(even) .section-header .heading{
  padding: .5rem 2rem;
  padding-right: 3.5rem;
}

.section:not(.plain) .section-content{
  padding: 3rem 2rem;
  padding-left: 70px;
}
.section:not(.plain):nth-of-type(even) .section-content{
  padding: 3rem 2rem;
  padding-right: 70px;
}
.section-content.demo{
  min-height: 300px;
}

.sdgs-section{
  text-align: center;
}
.sdgs-section .section-content{
  padding-bottom: 3rem;
}

.flex{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.flex-item{
  flex-shrink: 0;
  flex-grow: 1;
}
.flex-item img{
  width: 100%;
  height: auto;
}

.grid{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
}


/* ===================== お問合せ .contact */

/* 振分けページ */
.contact-list{
  list-style: none;
  margin: 3rem 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
}
.contact-list li{
  flex-grow: 1;
  flex-shrink: 0;
}

.contact-list li a{
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  justify-content: center;

  color: #000;
  background-color: var(--dps-yellow);
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2rem;
  padding: 3rem 1.5rem;
  border-radius: 1.5rem;
  height: 100%;
}

.contact-list li a strong{
  display: block;
  font-size: 2.5rem;
  line-height: 1.3;
}

/* ===================== プライバシーポリシー .privacy-policy */
.privacy-policy ol{
  /* list-style: none; */
  list-style-position: outside;
  margin: 5rem 0;
  margin-left: 2rem;
}

.privacy-policy .container li{
  margin: 3rem 0;
}
.privacy-policy .container li::marker{
  font-size: 1.2rem;
  font-weight: bold;
}

.privacy-policy .container li strong{
  display: block;
  font-size: 1.2rem;
  margin-bottom: .6rem;
}

.privacy-policy .notice{
  font-size: 1rem;
  border: 1px solid #000;
  padding: 2rem;
  margin-top: 3rem;
}

/* ===================== トップページ .home */

.home{
  background-image: linear-gradient(to bottom, var(--dps-yellow), #FAAD00 1000px);
}

.home::after{
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: calc( 100% + 300px );
  background: url(../images/home-bg-dots.svg) repeat 50% 0;
  mix-blend-mode: screen;
}
.home #page{
  position: relative;
  z-index: 2;
}

.teaser main{
  min-height: 500px;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
}
.home main{
  background: none;
  min-height: 0;
}

.home .btn{
  display: inline-block;
  min-width: 400px;
  font-size: 1.25rem;
}

.home .container{
  background: none;
  max-width: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
}

.home .inner{
  padding: 0 1em;
  margin: 0 auto;
  max-width: 1280px;
}


/* ------------- トップページ：セクション（共通） */

.home .section-header{
  text-align: center;
  margin-bottom: 2rem;
}
.home .section-header .heading{
  font-size: 2.5rem;
}
.home .section-header .sub{
  font-weight: bold;
  font-size: 1.2rem;
}

/* ------------- トップページ：カバー */

.home .cover-section{
  min-height: 1100px;
  position: relative;
  background: url(../images/home-part-melt.svg) repeat-x 65% 100%;
}
.home .cover-section::before,
.home .cover-section::after{
  content: '';
  display: block;
  position: absolute;
  border-radius: 50%;
  background-color: #fff;
}

.home .cover-section::before{
  width: 230px;
  height: 230px;
  bottom: 300px;
  left: calc( 50% - 100px );
}
.home .cover-section::after{
  width: 100px;
  height: 100px;
  bottom: 230px;
  left: calc( 50% + 400px );
}

.home .cover-section .inner{
  /* padding-right: calc( 100% - 500px); */
  min-width: 1280px;
  position: relative;
}

.home .part-company-info{
  position: relative;
  padding-top: 15vh;
  font-size: 1.125rem;
  line-height: 2;
}
.home .part-company-info .part-content{
  position: relative;
  z-index: 10;
}
.home .part-company-info::after{
  content: '';
  display: block;
  position: absolute;
  top: 70%;
  left: 0;
  background-color: #fff;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.home .part-company-info .catchcopy{
  margin-bottom: 3rem;
}

.home .part-company-info .catchcopy img{
  width: 480px;
  height: auto;
}

.home .part-company-info p{
  margin: 0;
}

.slides{
  /* flex-shrink: 0; */
  position: absolute;
  top: -30px;
  right: -50px;
  width: 800px;
  padding-bottom: 50px;
  overflow: hidden;
}
.slides::after{
  content: '';
  display: block;
  background-image: url(../images/home-mask-slides1.svg);
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: contain;
  width: 800px;
  height: 600px;
  position: absolute;
  top: 60px;
  left: -10px;
  z-index: 1;
}

.slides img{
  max-width: 100%;
  width: 800px;
  height: 600px;
  object-fit: cover;
  object-position: 50% 50%;
}

.swiper-home {
  position: relative;
  z-index: 10;
  mask-image: url(../images/home-mask-slides1.svg);
  mask-repeat: no-repeat;
  mask-position: 50% 50%;
  mask-size: contain;
}


/* ------------- トップページ：商品情報 */

.home .products-section{
  background-color: #fff;
}
.home.lang-en .products-section .inner{
  /* padding-bottom: 10rem; */
  padding-bottom: 5rem;
}
.home .products-section .section-content{
  text-align: center;
}

.home .products-section .products{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.home .products-section .products .item{
  text-align: center;
  font-weight: bold;
  font-size: 1.2rem;
}

.home .products-section .products .item > span,
.home .products-section .products .item a{
  display: block;
}
.home .products-section .products .item a{
  color: #000;
  text-decoration: none;
}


/* ------------- トップページ：お知らせ */

.home .news-section{
  position: relative;
  background-color: #fff;
  padding: 10vh 0;
  padding: 200px 0;
  overflow-x: hidden;
  margin: -1px 0;
}
.home .news-section::before{
  content: '';
  display: block;
  /* height: 100%; */
  height: 500px;
  width: 130vw;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  background-color: #FF8900;
  transform:translate(-50%,-50%) rotate(-6deg);
}

.home .news-section .inner{
  position: relative;
  z-index: 2;
  /* color: #fff; */
}

.home .news-section .section-header{
  color: #fff;
}
.home .news-section .section-content{
  background-color: #fff;
  border-radius: 1rem;
  padding: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

.home .news-section dl.horizontal dd{
  background-color: transparent;
}

/* ------------- トップページ：採用情報 */

.home .recruit-section{
  background-color: #fff;
  text-align: left;
  padding: 2rem 0;
}

.home .recruit-section .section-header{
  text-align: left;
}

.home .recruit-section .inner{
  display: flex;
  gap: 6rem;
  align-items: flex-end;
}

.home .recruit-section .desc{
  padding-bottom: 3rem;
}

.home .recruit-section .senpai{
  padding-bottom: 150px;
}

.home .recruit-section .feature,
.home .recruit-section .senpai .photo{
  position: relative;
}

.home .recruit-section .feature .catch{
  position: absolute;
  /* top: 5rem; */
  top: 0;
  right: calc( 100% + 5rem );
}

.home .recruit-section .senpai .photo{
  padding-right: 2rem;
}

.home .recruit-section .senpai .photo::before{
  content: '';
  display: block;
  background-color: var(--dps-yellow);
  width: 80%;
  height: 80%;
  position: absolute;
  top: -20px;
  left: -20px;
  z-index: 1;
}
.home .recruit-section .senpai .photo img{
  position: relative;
  z-index: 2;
  max-width: 100%;
}

.home .recruit-section .senpai .caption{
  background-color: var(--dps-yellow);
  padding: 2rem;

  width: 70%;
  
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 3;
}

.home .recruit-section .senpai .caption .message{
  font-weight: bold;
  font-size: 1.25rem;
  margin-bottom: 2rem;
}
.home .recruit-section .senpai .caption .name{
  font-weight: bold;
  font-size: 1.6rem;
}


/* ===================== 商品情報 .products */

/* ------------- アーカイブページ（ルート） */

.archive-products .section{
  /* margin-top: 3rem; */
  margin: 0;
}

.archive-products .section .section-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 100%;
  border-top : 1px solid #000;
  padding: 3rem 0;
}
.archive-products .section:first-of-type .section-inner{
  border: 0;
  padding-top: 0;
}

.archive-products .section-header{
  position: relative;
  flex-shrink: 0;
  width: 260px;
  height: 260px;
  background: var(--dps-yellow)  no-repeat 50% 50% / cover;
  /* background-blend-mode:soft-light; */
  /* background-blend-mode:luminosity; */
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 2rem;
}
.archive-products .section-header::before{
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--dps-yellow);
  opacity: .6;
  border-radius: 2rem;
  z-index: 1;
}

.archive-products .cheese-section .section-header{
  background-image: url(../images/products-h-cheese.jpg);
}
.archive-products .others-section .section-header{
  background-image: url(../images/products-h-others.jpg);
}
.archive-products .others-section .item-thumbnail img{
  border-radius: 50%;
  border: 1px solid #ccc;
}


.archive-products .section-header .heading{
  position: relative;
  z-index: 10;
  color: #fff;
  text-shadow: 2px 2px 1px rgba(0, 0, 0, 0.2);
}

.archive-products .section-content{
  flex-shrink: 0;
  flex-grow: 1;
  width: calc(100% - 260px);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
}
.archive-products.lang-en .section-content{
  gap: 25px;
}

.archive-products .others-section .section-content{
  /* max-width: 800px; */
  padding: 0 100px;
}

.archive-products .item-products{
  max-width: 230px;
}
.archive-products.lang-en .item-products{
  max-width: 270px;
}

.products .item-thumbnail img{
  max-width: 100%;
}

.products .item-header{
  margin: 2rem 0;
}
.archive-products .others-section .item-header{
  margin-top: -2rem;
}

.archive-products .others-section .ribboned .heading{
  background-color: var(--dps-green);
  color: #fff;
}
.archive-products .others-section .ribboned .heading::before,
.archive-products .others-section .ribboned .heading::after
{
  border: var(--ribbon-border-width) solid var(--dps-green);
  border-top-width: calc(var(--ribbon-border-width)* 1.5);
  border-bottom-width: calc(var(--ribbon-border-width)* 1.5);
}
.archive-products .others-section .ribboned .heading::before{
  border-left-color: transparent;
}
.archive-products .others-section .ribboned .heading::after{
  border-right-color: transparent;
}

.products .item-header .heading{
  display: block;
  text-align: center;
}
.products.lang-en .item-header .heading{
  font-size: 1rem;
}

/* ------------- タクソノミー（商品分類） */

.archive-cheeno .group .section-header .heading{
  font-size: 1.2rem;
}


.archive-cheeno .section-inner{
  max-width: 1200px;
}

.archive-cheeno .section{
  padding-bottom: 3rem;
}

.archive-cheeno .section .grid{
  grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
  gap: 5rem 0;
}

.archive-cheeno .group .inner-grid{
  margin-top: 1.5rem;
  display: grid;
  /* grid-template-columns: repeat(auto-fill, minmax(330px, 1fr)); */
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.archive-cheeno .group.colspan2{
  grid-column: span 2;
}
.archive-cheeno .group.colspan3{
  grid-column: span 3;
}

.archive-cheeno .item-products{
  max-width: 380px;
}

.archive-cheeno .item-products a{
  display: block;
  color: #000;
  text-decoration: none;
}

.archive-cheeno .product-name{
  font-weight: bold;
  text-align: center;
}
.archive-cheeno .product-thumbnail{
  padding: 0 1rem;
}
.product-thumbnail img{
  max-width: 100%;
}

/* --------------------- 商品詳細（シングルページ） */

.single-cheeno .product-info{
  display: flex;
  align-items: center;
}
.single-cheeno .product-thumbnail,
.single-cheeno .product-content
{
  flex-shrink: 0;
  width: 50%;
}

.single-cheeno .product-thumbnail{
  padding-right: 1.5rem;
}

.single-cheeno .product-content .name{
  font-size: 2rem;
  margin-bottom: 2rem;
  line-height: 1.3;
}
.single-cheeno .product-content .description{

}

.about-cheeno{
  margin-top: 2rem;
  color: #400909;
  background-color: #FFDD6C;
  border-radius: 1rem;
  padding: 1.5rem;
  font-size: .875rem;
}
.about-cheeno .heading{
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  font-weight: bold;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}


.small{
  font-size: 75%;
}
.single-cheeno .product-details{
  margin: 5rem 0;
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fill, calc(50% - 2rem));
}

.single-cheeno .product-details .heading{
  font-size: 1.3rem;
  line-height: 1.3;
  padding: .5rem 0;
  padding-left: 1.3rem;
  border-left: 5px solid hsla(32, 100%, 50%, 0.5);
}

.single-cheeno .product-details dl{
  border-bottom: 1px solid #000;
  margin-top: 1rem;
}

/* スライド */
.swiper-container{
  position: relative;
  max-width: 80%;
  margin: 0 auto;
}

.swiper-container .swiper-pagination{
  bottom: -50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
}

.swiper-pagination-bullet{
  width: .8rem;
  height: .8rem;
  background-color: #666;
  transition: .5s;
  /* border: 2px solid #999; */
}

.swiper-pagination-bullet-active{
  width: 1rem;
  height: 1rem;
  background-color: var(--dps-yellow);
}

.swiper-container .swiper-button-prev{
  left: -60px;
}
.swiper-container .swiper-button-next{
  right: -60px;
}

.swiper-button-prev,
.swiper-button-next{
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--dps-yellow);
}
.swiper-button-prev{
  left: 0px;
}

.swiper-button-prev::after,
.swiper-button-next::after{
  font-size: 1.5rem;
  color: #000;
}

.single-cheeno aside{
  padding-bottom: 6rem;
}
/* .single-cheeno .swiper{
  max-width: 1000px;
  margin: 0 auto;
} */

.slide-item{
  text-align: center;
  /* max-width: 200px; */
}
.slide-item a{
  display: block;
  color: #000;
  text-decoration: none;
  font-size: .9rem;
}
.slide-item img{
  max-width: 90%;
}


/* 英語版のみ両端揃え */
/*.archive-products.lang-en p,
.archive-cheeno.lang-en p,*/
.cheeno.lang-en .product-info {
  text-align: justify;
}


/* ===================== 企業情報 */

/* --------------------- 代表あいさつ */
.company-info{}

.message-footer{
  margin-top: 3rem;
  gap: 3rem;
  /* align-items: center; */
}

.message-footer .flex-item{
  /* width: 50%; */
}

.message-footer .photo{
  grid-column: span 2;
}
.message-footer .president{
  grid-column: span 2;
  padding-top: 3rem;
}

.message-footer .subject{
  font-weight: bold;
  font-size: 1rem;
}
.message-footer .name{
  font-weight: bold;
  font-size: 2rem;
}

.concept-section figure{
  text-align: center;
}

.alt{
  overflow: hidden;
}
.alt .caption{
  display: block;
  position: fixed;
  overflow: hidden;
  height: 1px;
  width: 1px;
  top: -100px;
  left: 100%;
}
.alt img{
  max-width: 100%;
}

/* --------------------- 拠点案内 */
.bases-item{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--list-border-color);
}
.bases-item:last-child{
  margin-bottom: 0;
  padding-bottom: 0;
  border: 0;
}



.bases-item .photo{
  flex-shrink: 0;
  width: 40%;
}
.bases-item .photo img{
  max-width: 100%;
}


/* .bases-item.tokyo .photo{
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}
.bases-item.tokyo .photo img{
  width: auto;
  flex-shrink: 0;
  flex-grow: 1;
} */


.bases-item .address{
  width: 55%;
}

/* .bases-item.tokyo .address{
  width: 100%;
} */

.bases-item .address .heading{
  font-size: 1.5rem;
}
.bases-item .address .qualified{
  display: inline-block;
  border: 2px solid #000;
  border-radius: 2rem;
  line-height: 1;
  padding: .5rem 1rem;
  font-size: .75rem;
  font-weight: bold;
  margin-left: 1rem;
  vertical-align: middle;
}

.bases-item .map{
  width: 100%;
  
}
.bases-item .map iframe{
  width: 100%;
  height: 400px;
}

/* .bases-item.tokyo .photo{
  order: 2;
}
.bases-item.tokyo .address{
  order: 1;
}
.bases-item.tokyo .map{
  order: 3;
} */

/* --------------------- 沿革 */

.history-table{
  background-color: #999;
  border-collapse: collapse;
  /* border-radius: 1rem 1rem 0 0; */
  width: 100%;
  margin-top: 2rem;
  position: relative;
}
.history-table img{
  max-width: 100%;
}


.history-table tr{
  position: relative;
  display: flex;
}
.history-table tr::before{
  content: attr(data-year);
  white-space: pre;
  font-weight: bold;
  font-size: 1.125rem;
  line-height: 1.3;
  text-align: center;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 1rem;
  z-index: 1;
  transform: translateY(-50%);
}

.history-table th,
.history-table td{
  padding: 10px;
  display: block;
  width: 33.3%;
  /* flex-grow: 1; */
  flex-shrink: 0;
}
.history-table td{
  height: 50px;
  position: relative;
  text-align: center;
}

.history-table .em{
  font-size: 120%;
  font-weight: bold;
}

/* 新体制の年表 */
.history-current{
  background-color: #FBB03B
}
.history-current::before,
.history-current::after{
  content: '';
  display: block;
  width: 100%;
  position: absolute;
  left: 0;
}
.history-current::before{
  height: 1rem;
  top: -1rem;
  background-color: #FBB03B;
  border-radius: 1rem 1rem 0 0;
}
.history-current th span{
  display: block;
  background-color: #fff;
  border-radius: 1rem;
}
.history-current td{
  height: auto;
  padding: 1.5rem .5rem;
}
.history-current tbody tr:nth-child(odd){
  background-color: #F59642;
}
.history-current tbody tr:nth-child(1){
  background-color: transparent;
}
.history-current td:first-child[colspan="3"]{
  width: 100%;
  padding-left: 100px;
}

/* 旧体制の年表 */
.history-previous{
  background-color: #7ECCEE;
  margin-bottom: 70px;
}
.history-previous::before,
.history-previous::after{
  content: '';
  display: block;
  width: 100%;
  position: absolute;
  left: 0;
}
.history-previous::before{
  height: 1rem;
  top: -1rem;
  background-color: #7ECCEE;
  border-radius: 1rem 1rem 0 0;
}
.history-previous::after{
  content: '';
  display: block;
  background: url(../images/img-angle-bottom.svg) no-repeat;
  background-size: 100%;
  height: 50px;
  top: 100%;
}
.history-previous td:first-child{
  width: calc( 33.3% - 80px );
  margin-left: 80px;
}


.history-previous tbody tr:nth-child(odd){
  background-color: #67C2E8;
}


.history-previous th,
.history-previous td{
  border-left: 1px solid rgba(0, 0, 0, .2);
}
.history-previous th:first-child,
.history-previous td:first-child{
  border-left: 0;
}

.history-previous thead th{
  padding-top: 0;
  padding-bottom: 2rem;
}
.history-previous thead th span{
  display: block;
  background-color: #fff;
  border-radius: 1rem;
}



.point{
  position: relative;
  display: inline-block;
  width: 45px;
  height: 10px;
}

.point::before{
  content: '';
  display: block;
  cursor: pointer;
  background: url(../images/pointer-cheese.svg) no-repeat 50% 50% / contain;
  width: 45px;
  height: 53px;

  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%,-80%);
}
.point.pos2{
  left: -12.5%
}
.point.pos3{
  left: 12.5%;
}

.point .fukidashi{
  display: none;
  position: absolute;
  top: 30px;
  left: 50%;
  z-index: 20;
  width: 400px;
  padding: .8rem 1.5rem .5rem;
  transform: translate(-50%,0);
  background-color: #fff;
  border-radius: 1rem;
  border: 1px solid #ccc;
  box-shadow: 5px 5px 0 0 rgba(0, 0, 0, 0.2);
  transition: .5s;
}
.point .fukidashi:before{
  content: '';
  display: block;
  position: absolute;
  top: 1px;
  left: 50%;
  transform: translate(-50%,-100%);
  background: url(../images/arrow-fukidashi.svg) no-repeat 50% 100% / contain;
  width: 16px;
  height: 25px;
}

.point.open .fukidashi{
  display: block;
}

td:nth-child(1) .point .fukidashi{
  transform: translate(-30%,0);
}
td:nth-child(1) .point .fukidashi:before{
  left: 30%;
}
td:nth-child(3) .point .fukidashi{
  transform: translate(-70%,0);
}
td:nth-child(3) .point .fukidashi:before{
  left: 70%;
}

.point-content{
  font-size: .85rem;
}
.btn-point-content{
  text-align: center;
  margin: .5rem;
  user-select: none;
}
.btn-point-content button{
  -webkit-appearance: none;
  display: inline-block;
  margin: 0 auto;
  background: #000;
  color: #fff;
  font-weight: bold;
  padding: .5rem 1.5rem;
  border-radius: .5rem;
  line-height: 1;
}

.fukidashi .event{
  border-bottom: 1px dotted #000;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  text-align: left;
}


/* ===================== 事業内容 .business-details */

.deteal-list{
  list-style: none;
  margin: 5rem 0 0;
  padding: 0;
  display: flex;
  justify-content: center;
  gap:2rem;
}

.deteal-list .heading{
  font-weight: bold;
  font-size: 1.5rem;
  line-height: 1.3;
}

.deteal-list li{
  background: var(--dps-yellow) no-repeat 50% 50% / contain;
  --diameter: 270px;
  width: var(--diameter);
  height: var(--diameter);
  padding: 0 1rem;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 1rem;
}

.deteal-list li:nth-child(1){
  background-image: url(../images/business-details-num1.svg);
}
.deteal-list li:nth-child(2){
  background-image: url(../images/business-details-num2.svg);
}
.deteal-list li:nth-child(3){
  background-image: url(../images/business-details-num3.svg);
}


/* ------------------- 主な輸入先 */
.import-section .caption{
  margin-top: 2rem;
}

.map-world{
  background: url(../images/map-world.png) no-repeat 50% 50% / contain;
  width: 100%;
  height: 500px;
  position: relative;
}

.map-world .area{
  position: absolute;
}

.map-world .europ{
  left: 100px;
  top:  180px;
}
.map-world .noram{
  left: 670px;
  top:  210px;
}
.map-world .oceania{
  left: 360px;
  top:  300px;
}


.map-world .point::before{
  content: '';
  width: 60px;
  height: 70px;
}
.map-world .point::after{
  content: attr(data-area);
  width: 200px;
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.3rem;
  font-weight: bold;
  text-align: center;
}

.map-world .point .heading{
  background-color: var(--dps-yellow);
  text-align: center;
  padding: .3rem;
  margin-bottom: .8rem;
}

.map-world .point ul{
  padding-left: 1.5rem;
}


/* ===================== 採用情報 .recruitment-info */

/* ===================== 数字で見るDPS */

.data-section .section-content{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 6rem 3rem;
  padding-top: 6rem !important;
}

.data-item{
  text-align: center;
  flex-shrink: 0;
  width: calc((100% - 6rem) / 3);
}

.data-item table{
  width: 100%;
  border-spacing: 2px;
  table-layout: fixed;
}
.data-item table th,
.data-item table td{
  background-color: #D6D6D6;
  padding: .5rem;
  font-size: 1rem;
  text-align: center;
}
.data-item table th.head{
  width: 25%;
  white-space: nowrap;
}

.data-item p,
.data-item table td{
  font-size: 2rem;
  font-weight: bold;
}
.data-item p sub,
.data-item table td sub{
  font-size: 1.2rem;
  bottom: 0;
  margin-left: .2rem;
}
.data-item p sub span,
.data-item table td sub span{
  font-size: 1rem;
  bottom: 0;
  /* margin-top: .2rem; */
}

.data-item p{
  margin: .5rem 0;
  line-height: 1.5;
}
.data-item p:first-child{
  margin-top: 0;
}
.data-item p:last-child{
  margin-bottom: 0;
}

.data-item .note{
  text-align: left;
  font-size: .85rem;
  font-weight: normal;
}

.data-item .item-header .heading{
  line-height: 1.3;
  text-align: center;
  font-size: 1.6rem;
  background-image: linear-gradient(to bottom, transparent 50%,
   #ddd 50%, #ddd 100%);
}
.data-item .item-header .att{
  text-align: left;
  margin-top: .5rem;
  line-height: 1.5;
  font-size:    .75rem;
  padding-left: .75rem;
  text-indent: -.75rem;
}

.data-item .item-thumnail{
  text-align: center;
  margin: 1rem 0;
}
.data-item .item-thumnail img{
  max-width: 100%;
}

.data-item .item-content{
  margin-top: 1rem;
}

.data-item:nth-child(1) table,
.data-item:nth-child(2) table,
.data-item:nth-child(3) table{
  line-height: 1.2;
  min-height: 180px;
}

/* ----------------  1.男女比率 */

/* .male-female table{
  line-height: 1.2;
} */

.male-female .item-header .heading{
  background-image: linear-gradient(to bottom, transparent 50%,
  #AEDAF2 50%, #AEDAF2 75%,
  #F8BCBC 75%, #F8BCBC 100%);
}
.male-female table .male{
  background-color: #AEDAF2;
}
.male-female table .female{
  background-color: #F8BCBC;
}

/* ----------------  2.平均残業時間 */

.overtime .item-header .heading{
  background-image: linear-gradient(to bottom, transparent 50%,
  #FCEABC 50%);
}

.overtime table td{
  background-color: #FCEABC;
}

/* ----------------  3.平均残業時間 */

.paid-holiday .item-header .heading{
  background-image: linear-gradient(to bottom, transparent 50%,
  #C1E2C5 50%);
}

.paid-holiday table td{
  background-color: #C1E2C5;
}

/* ----------------  4.年間休日日数 */

.annual-holiday .item-header .heading{
  background-image: linear-gradient(to bottom, transparent 50%,
  #E4EF84 50%);
}

.annual-holiday table td{
  background-color: #E4EF84;
}

/* ----------------  5.原料調達先 */

.material-procurement .item-header .heading{
  background-image: linear-gradient(to bottom, transparent 50%,
  #9FD2F4 50%);
}

.material-procurement table td{
  background-color: #9FD2F4;
}

.material-procurement .item-thumnail,
.material-procurement .item-content{
  margin: 0;
}

/* ----------------  6.海外出張経験者比率 */

.overseas-business-trip .item-header .heading{
  background-image: linear-gradient(to bottom, transparent 50%,
  #8EB0D9 50%);
}

.overseas-business-trip table td{
  background-color: #8EB0D9;
}

/* ----------------  7.新卒者・経験者の割合 */

/* .newhire-midcareer table{
  line-height: 1.2;
} */

.newhire-midcareer .item-header .heading{
  background-image: linear-gradient(to bottom, transparent 50%,
  #A9E28F 50%, #A9E28F 75%,
  #D9B2EA 75%, #D9B2EA 100%);
}
.newhire-midcareer table .newhire{
  background-color: #A9E28F;
}
.newhire-midcareer table .midcareer{
  background-color: #D9B2EA;
}

/* ----------------  8.育児休業者の復帰率 */

.comeback-childcare .item-header .heading{
  background-image: linear-gradient(to bottom, transparent 50%,
  #F5A6A0 50%);
}

.comeback-childcare table td{
  background-color: #F5A6A0;
}

/* ----------------  9.年齢分布 */

.age-group{
  width: 100%;
}
.age-group .item-header{
  margin: 0 auto;
  width: calc((100% - 6rem) / 3);
}

.age-group .item-header .heading{
  background-image: linear-gradient(to bottom, transparent 50%,
  #ccc 50%);
}

.age-group table td{
  background-color: #ccc;
}
.age-group .item-content{
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 3rem;
}
.age-group .item-content img{
  max-width: calc((100% - 6rem) / 3);
}


/* ===================== 採用情報「福利厚生について」 
  #welfare
  .welfare-section
*/

.welfare-section .grid{
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat( auto-fill, minmax(260px, 1fr) );
}

.welfare-section .grid-item .heading{
  margin: 1rem 0;
}

.welfare-section .grid-item .item-content{
  font-size: .85rem;
  line-height: 1.8;
}

.welfare-section .grid-item .item-tumbnail img{
  max-width: 100%;
  width: 100%;
  height: 180px;
  object-fit: cover;
  object-position: 50% 30%;
}

.welfare-item.col2{
  grid-column: span 2;
}

.welfare-item.col2 .item-content{
  columns: 2;
}


/* ===================== 採用情報「先輩の声・募集要項」 
  #job-info
  .job-info-section
*/

/* ------------------------- 情報グループ：各拠点ごと */

.job-info-article{
  background-color: #FF8900;
  border-radius: 1rem;
  margin: 1.5rem 0;
  padding: 1rem;
}
.job-info-article.open{
  padding-bottom: 3rem;
}

.job-info-article:first-child{
  margin-top: 0;
}
.job-info-article:last-child{
  margin-bottom: 0;
}

/* 情報グループのタイトル */
.job-info-article .article-title{
  cursor: pointer;
  padding: .5rem 0;
  padding-left: 2.5rem;
  line-height: 1;
  font-size: 1.6rem;
  position: relative;
}
.job-info-article .article-title::before{
  position: absolute;
  top: .5rem;
  left: 0;
  /* transform: translateY(-50%); */
  content: '▶︎';
  transition: .5s;
}
.open .btn-toggle::before{
  rotate: 90deg;
}


/* 情報グループの内容 */
.job-info-article .article-content{
  /* padding: 3rem 0 0; */
  padding: 0;
}

/* --------------------------- 情報グループの内容パート*/
.job-info-article .part{
  position: relative;
  margin-top: -1rem;
}

/* 情報グループの内容パート  〉見出し */
.job-info-article .part-header{
  position: relative;
  z-index: 10;

  display: table;
  background-color: #000;
  color: #fff;
  padding: 1rem 2rem;
  padding-left: 2rem;
  line-height: 1;
  font-size: 1.3rem;
  border-radius: 0 3rem 3rem 0;
  margin-bottom: 0;
  transform:translate(-1rem, 50%);
}

.job-info-article .heading{
  display: table;
  line-height: 1;
  border-radius: 0 3rem 3rem 0;
}

/* ------------------------- 先輩の声 */

/* 個人グループ */
.parson{
  background-color: #fff;
  min-height: 50px;
  margin-bottom: 3rem;
}

.parson-header{
  position: relative;
  margin-bottom: 1.5rem;
}

.parson-header .title{
  background-color: #fff;
  border: 3px solid #000;
  position: absolute;
  top: 50%;
  left: 3rem;
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 2rem;
  width: 200px;
  height: 200px;
  border-radius: 50%;
}

.parson-header .title .subject{
  display: block;
  font-size: 1rem;
  margin-bottom: .5rem;
}

.parson-header .thumbnail img{
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
}

.parson-content{
  padding: 0 3rem 3rem;
  line-height: 2;
}

.parson-content figure{
  display: table;
  margin: 1.5rem auto;
}
.parson-content figcaption{
  font-size: .85rem;
  margin-top: .5rem;
  font-style: italic;
}

.parson-content img{
  max-width: 100%;
}

.parson-content .heading,
.parson-content h6
{
  background: #FF8900;
  color: #FFF;
  font-size: 1.1rem;
  line-height: 1.5;
  padding: 1rem 1.5rem;
  padding-left: 0;
  margin: 3rem 0 1.5rem;
  position: relative;
}
.parson-content .heading::before{
  content: '';
  display: block;
  background: #FF8900;
  width: 3rem;
  height: 100%;
  position: absolute;
  right: 100%;
  top: 0;
}
.parson-content .heading:first-child{
  margin-top: 0;
}


.part-job-info{
  margin-top: 5rem;
}

.part-job-info .part-content{
  background-color: #fff;
  padding: 3rem;
}

/* ボタン */
.btn{
  -webkit-appearance: none;
  display: block;
  line-height: 1.5;
  padding: 1rem 2rem;
  margin: 1.5rem auto 0;
  border-radius: 1rem;
  font-weight: bold;
  font-size: 1rem;
  text-align: center;
  text-decoration: none;
  color: #fff;
  background-color: #000;
}
a.btn{
  color: #fff;
  text-decoration: none;
}

.btn-entry{
  font-size: 1.6rem;
  display: table;
  min-width: 600px;
  margin-top: 3rem;
}
.part-job-info .btn-entry{
  margin-top: 3rem;
}

/* .btn-submit{
  color: #000;
  background-color: var(--dps-yellow);
} */

.btn-normal{
  color: #000;
  background-color: var(--dps-yellow);
}

.nav-form{
  text-align: center;
}

.nav-form .btn{
  display: inline-block;
}

/* アコーディオン */

.accordion .accordion-wrapper{
  overflow: hidden;
  transition: .5s ease-out;
  
  display: grid;
  grid-template-rows: 0fr;
  padding-top: 0;
  padding-bottom: 0;
}
.accordion .accordion-inner{
  overflow: hidden;
}

.accordion.open .accordion-wrapper,
.accordion.open .accordion-inner
{
  overflow: visible;
}

.accordion.open .accordion-wrapper{
  grid-template-rows: 1fr;
  /* padding-bottom: 2rem; */
  /* margin-top: 3rem; */
}