/*
Theme Name: attewp
Description: 株式会社AtteWP
Author:
Version: 1.00
License:
License URI:
Text Domain:
Tested up to: 6.8
Requires PHP: 8.1
*/

/* Josh's Custom CSS Reset --- more customized */
*,*::before,*::after{box-sizing:border-box}*{margin:0;padding:0}html,body{height:100%}body{line-height:1.0;-webkit-font-smoothing:antialiased}img,picture,video,canvas,svg{display:inline-block;max-width:100%}input,button,textarea,select{font:inherit}p,h1,h2,h3,h4,h5,h6{overflow-wrap:break-word;font-size:100%}#root,#__next{isolation:isolate}

/* Basic settings */
br {letter-spacing:0;}
ul, li {list-style:none;}
img, a img {border:0; text-decoration:none;}
mark {background:#ff0; color:#000;}
b, strong {font-weight:bold;}
table {border-collapse:collapse; border-spacing:0;}

/* Base Set */
html {
-ms-text-size-adjust:100%;
-webkit-text-size-adjust:100%;
font-size: 62.5%;
}
body {
color:#333;
font-family: -apple-system, BlinkMacSystemFont, "Nunito Sans", "Zen Kaku Gothic New", YuGothic, "Yu Gothic Medium", "Yu Gothic", Arial, sans-serif;
font-size: 1.6rem;
line-height:1.0;
}
a {
background-color:transparent;
outline:0;
text-decoration:none;
transition: all .5s;
}
a:link    {color:#3366cc;}
a:visited {color:#3366cc;}
a:hover   {color:#1a428c;}
a:active  {color:#99ccff;}

:root{
  --fwb: 500;
}


/* -------------------------------------------------------
Layout
---------------------------------------------------------- */

/* common
------------------------------------------- */
html,
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.footer {
  margin-top: auto;
}


h1, h2, h3, h4 {
  font-weight: normal;
}
.list_disc li {
  list-style: disc;
}
ol.decimal {
  padding-left: 2em;
}
ol.decimal li {
  list-style: decimal;
}
.img_box img {
  width: auto;
  max-width: 100%;
  height: auto;
}

/* button -------------- */
a.btn_a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  padding: 0 4rem;
  background-color: #ef372c;
  border-radius: 30px;
  color: #fff;
  letter-spacing: .1em;
}
a.btn_b {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  padding: 0 4rem;
  background-color: #fff;
  border-radius: 30px;
  color: #28952c;
  letter-spacing: .1em;
}
a.btn_a img,
a.btn_b img{
  width: auto;
  height: 1.6rem;
}
@media screen and (max-width:599px){
  a.btn_a {
    padding: 0 3rem;
  }
}

/* post-navigation for archive */
.archive_page_navi {
  margin-top: 6rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.archive_page_navi .nav-links {
  flex-direction: row;
}
.archive_page_navi .page-numbers{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 2rem;
  color: #666;
  font-size: 1.4rem;
}
.archive_page_navi .page-numbers + .page-numbers{
  margin-left: 1rem;
}
.archive_page_navi .page-numbers.current{
  background-color: #e03128;
  border: 0;
  color: #fff;
}
.archive_page_navi .page-numbers.dots{
  background-color: inherit;
  border: 0;
}
.archive_page_navi a.page-numbers:hover{
  background-color: #e03128;
  color: #fff;
}
@media screen and (max-width:599px){
  .archive_page_navi .page-numbers{
    width: 3rem;
    height: 3rem;
    border-radius: 1.5rem;
    font-size: 1.2rem;
  }
}

/* WP comment */
.comments_block {
  margin-top: 8rem;
  padding: 3rem;
  border: 1px solid #ddd;
}
.comments_block .comments_title_block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
}
.comments_title h3 {
  display: inline-block;
  padding-bottom: 1rem;
  border-bottom: 1px solid #36c;
  font-weight: bold;
}
.comments_num {
  font-size: 1.4rem;
}
ol.comments-list .comment + .comment {
  margin-top: 1em;
  padding-top: 1em;
  border-top: 1px dotted #cccc;
}
.comment-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.comment-author img {
  vertical-align: middle;
}
.comment-metadata {
  font-size: 1.4rem;
}
.comment-metadata a {
  color: #999;
}
.comment-reply-title {
  margin-bottom: 1em;
  font-weight: bold;
}

.comment-respond {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid #eee;
}
.comment-form-comment label,
.comment-form-author label,
.comment-form-email label,
.comment-form-url label {
  display: block;
}
.form-submit input {
  padding: 1em 2em;
  font-size: 1.4rem;
}
.comment-meta .comment-awaiting-moderation {
  display: inline-block;
  margin-top: 1rem;
  color: #999;
  font-size: 1.4rem;
  line-height: 1.4;
}
.comment-form-comment textarea{
  width: 100%;
}


/* header
------------------------------------------- */
.site_header{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background-color: #fff;
  box-shadow: 0 8px 10px rgba(0,0,0,0.1);
  z-index: 999;
}
.site_header .inner{
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100px;
}

.site_title{
  padding-left: 4rem;
}
.site_title img{
  width: auto;
  height: 40px;
}

@media screen and (min-width:1081px){
  .navbar{
    display: none;
  }
  .nav{
    flex: 1;
    padding-right: 3rem;
  }
  .nav ul{
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  .nav li a{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: auto;
    height: 100%;
    padding-right: 2rem;
    padding-left: 2rem;
    color: #111;
    font-size: 1.8rem;
    letter-spacing: .1em;
    opacity: 1;
    transition: all .5s;
  }
  .nav li a span{
    display: block;
    margin-top: .7rem;
    color: #666;
    font-size: 1.2rem;
    letter-spacing: normal;
  }
  .nav li a:hover{
    opacity: .3;
  }
}
@media screen and (max-width:1080px){
  .site_header{
    height: 6rem;
  }
  .site_header .inner{
    width: 100%;
    height: 100%;
  }
  .site_title{
    padding-left: 1rem;
  }
  .site_title img{
    width: auto;
    height: 32px;
  }

  /* nav ------------------------- */
  .navbar{
    position: fixed;
    top: 0;
    right: 0;
    z-index: 9999;
  }
  .drawer_btn{
    position: relative;
    width: 6rem;
    height: 6rem;
    background-color: #3b3b3b;
    border: none;
    cursor: pointer;
  }
  .drawer_btn > span{
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2rem;
    height: 2px;
    background-color: #fff;
    transform: translateX(-50%);
  }
  .drawer_btn > span:first-child{
    transform: translate(-50%, calc(-50% - 0.5rem));
    transition: transform 0.3s ease;
  }
  .drawer_btn > span:nth-child(2){
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
  }
  .drawer_btn > span:last-child{
    transform: translate(-50%, calc(-50% + 0.5rem));
    transition: transform 0.3s ease;
  }

  .drawer_btn.active > span:first-child{
    transform: translate(-50%, -50%) rotate(-45deg);
  }
  .drawer_btn.active > span:nth-child(2){
    opacity: 0;
  }
  .drawer_btn.active > span:last-child{
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .nav{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
    z-index: 9998;
  }
  .nav.active{
    opacity: 1;
    visibility: visible;
  }

  .nav ul{
    padding-top: 6rem;
  }
  .nav li{
    padding: 1em 0;
    text-align: center;
  }
  .nav a{
    color: #111;
    font-size: 2rem;
  }
  .nav a span{
    display: inline-block;
    margin-left: 2rem;
    font-size: 1.4rem;
  }

  /* メニュー展開時、背景を固定 */
  body.active {
    height: 100%;
    overflow: hidden;
  }
}/* end smartphone only */


.head_contact{
  display: flex;
  height: 100%;
}
.head_c_j a,
.head_c_c a{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding-right: 4rem;
  padding-left: 4rem;
  color: #fff;
  letter-spacing: .1em;
}
.head_c_j a{
  background-color: #3b5aff;
}
.head_c_c a{
  background-color: #e03128;
}
.head_c_j a span,
.head_c_c a span{
  display: block;
  margin-top: .7rem;
  font-size: 1.2rem;
  letter-spacing: normal;
}

/* fv
------------------------------------------- */
/*
.fv{
  margin-top: 6rem;
  text-align: center;
}
*/
.fv{
  margin-top: 10rem;
  text-align: center;
}
.fv img{
  width: 100%;
  max-width: 1920px;
  height: auto;
}

/* lead
------------------------------------------- */
.lead{
  padding-top: 20rem;
}
@media screen and (max-width:1080px){
  .lead{
    padding-top: 15rem;
  }
}
.lead_title{
  text-align: center;
}
.lead_title h2{
  color: #111;
  font-size: clamp(3rem, 4vw, 6rem);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: .1em;
}
.lead_title h2 span{
  display: inline-block;
  margin-left: 1rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
}
.lead_txt{
  margin-top: 4rem;
  padding-right: 2rem;
  padding-left: 2rem;
  text-align: center;
}
.lead_txt p{
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  line-height: 2;
}

.lead_btn_wrap{
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 8rem;
}
.lead_btn_wrap .btn_item{
  margin-right: 2rem;
  margin-left: 2rem;
}
.lead_btn_wrap .btn_item a span{
  display: inline-block;
  margin-right: 1rem;
}
.lead_btn_wrap .btn_item a{
  opacity: 1;
}
.lead_btn_wrap .btn_item a:hover{
  opacity: .4;
}
@media screen and (max-width:599px){
  .lead_btn_wrap .btn_item{
    margin-right: 1rem;
    margin-left: 1rem;
  }
}

.flag_slider_container{
  margin-top: 10rem;
}
.flag_title_wrap{
  text-align: center;
}
.flag_title{
  position: relative;
  display: inline-block;
  color: #444;
  font-size: 2.6rem;
}
.flag_title::before{
  content: '';
  position: absolute;
  bottom: -30px;
  display: inline-block;
  width: 60px;
  height: 2px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #222;
}

.flag_slider{
  position: relative;
  width: 100%;
  max-width: 860px;
  margin-top: 8rem;
  margin-right: auto;
  margin-left: auto;
}
.flag_slider .mySwiper {
  overflow: hidden;
}
.flag_slider .swiper{
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: auto;
}
.flag_slider .swiper-slide{
  display: flex;
  justify-content: center;
  align-items: center;
}
.flag_slider .swiper-slide img{
  width: 140px;
  height: auto;
  object-fit: contain;
  border: 1px solid #ddd;
}
.flag_slider .swiper-slide figcaption{
  margin-top: .5rem;
  font-size: 1.2rem;
  text-align: center;
}

/* Swiperデフォルト矢印アイコンを非表示にする */
.flag_slider .swiper-button-prev::after,
.flag_slider .swiper-button-next::after {
  display: none;
}

.flag_slider .swiper-button-prev,
.flag_slider .swiper-button-next {
  position: absolute;
  top: 50%;
  width: 30px;
  height: 30px;
  /*transform: translateY(-50%);*/
  z-index: 100;
  cursor: pointer;
}
.flag_slider .swiper-button-prev{
  left: -20px;
}
.flag_slider .swiper-button-next{
  right: -20px;
}
.flag_slider .swiper-button-prev img,
.flag_slider .swiper-button-next img {
  width: 100%;
  height: auto;
}
@media screen and (max-width:1080px){
  .flag_slider{
    padding-right: 30px;
    padding-left: 30px;
  }
  .flag_slider .swiper-button-prev{
    left: 0;
  }
  .flag_slider .swiper-button-next{
    right: 0;
  }
}

/* top_job
------------------------------------------- */
.top_job{
  position: relative;
  width: 100%;
  margin-top: 10rem;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 15rem;
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-color: #28952c;
  border-radius: 10rem;
}
@media screen and (min-width:1081px){
  .top_job .top_job_img{
    position: absolute;
    right: 10rem;
    bottom: -15rem;
  }
  .top_job .top_job_img img{
    width: auto;
    height: 300px;
  }
}
@media screen and (max-width:1080px){
  .top_job{
    border-radius: 5rem;
  }
  .top_job .top_job_img{
    display: none;
  }
}
.top_job_title_wrap{
  color: #fff;
  text-align: center;
}
.top_job_title_wrap .top_job_title{
  margin-top: 2rem;
  margin-bottom: 2rem;
  font-size: clamp(3rem, 3vw, 4.4rem);
  font-weight: var(--fwb);
  letter-spacing: .1em;
}
.top_job_wrap{
  width: 100%;
  max-width: 1160px;
  margin-top: 8rem;
  margin-right: auto;
  margin-left: auto;
  padding-right: 2rem;
  padding-left: 2rem;
}
.job_list{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 2rem;
  row-gap: 4rem;
  width: 100%;
}
.job_list li{
  background-color: #fff;
  border-radius: 8px;
}
.job_list li a{
  position: relative;
  display: block;
  color: #333;
}
.job_list li a .new_icon{
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.job_list li a .new_icon img{
  width: 80px;
  height: auto;
  border-radius: 8px 0 0 0;
}
.job_list li .job_img{
  aspect-ratio: 3/2;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
}
.job_list li .job_img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.job_list li .job_entry_title{
  padding: 2rem;
  line-height: 1.6;
}
.job_list li .job_entry_title h2{
  font-weight: var(--fwb);
}
.job_list li .job_desc_wrap{
  padding-right: 2rem;
  padding-left: 2rem;
  font-size: 1.4rem;
}
.job_list li .job_desc_wrap .job_desc1,
.job_list li .job_desc_wrap .job_desc2{
  display: flex;
  padding-top: 2rem;
  padding-bottom: 2rem;
  border-top: 1px solid #ddd;
  line-height: 1.6;
}
.job_list li .job_desc_wrap .job_desc1 .item,
.job_list li .job_desc_wrap .job_desc2 .item{
  padding-right: 1rem;
  padding-left: 1rem;
}
.job_list li .job_desc_wrap .job_desc1 p,
.job_list li .job_desc_wrap .job_desc2 p{
  flex: 1;
  padding-right: 1rem;
  padding-left: 1em;
}
.no-jobpost{
  color: #fff;
  line-height: 2;
  text-align: center;
}


@media screen and (max-width:599px){
  .job_list{
    display: block;
  }
  .job_list li + li{
    margin-top: 4rem;
  }
}

.top_job_btn_wrap{
  margin-top: 6rem;
  display: flex;
  justify-content: center;
}
.top_job_btn_wrap .btn_item a span{
  display: inline-block;
  margin-right: 1rem;
}
.top_job_btn_wrap .btn_item a:hover{
  opacity: .4;
}


/* topics
------------------------------------------- */
.top_topics{
  width: 100%;
  max-width: 1080px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 2rem;
  padding-left: 2rem;
}

.topics_list{
  margin-top: 6rem;
}
.topics_list li{
  border-bottom: 1px solid #ddd;
}
.topics_list li:first-child{
  border-top: 1px solid #ddd;
}
.topics_list li.no-topics{
  border: none;
}
.topics_list li a{
  display: flex;
  align-items: center;
  padding: 3rem 0;
  /*background-color: #fff;*/
  background-image: url(images/arw_04.png);
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: auto 18px;
  color: #444;
}
.topics_list li a:hover{
  background-color: #eee;
}
.topics_list li a .date{
  padding-right: 2rem;
  padding-left: 2rem;
  font-size: 1.4rem;
}
.topics_list li a .cat span{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.4rem;
  padding: 0 1em;
  background-color: #e03128;
  border-radius: 1.2rem;
  color: #fff;
  font-size: 1.2rem;
}
.topics_list li a .entry_title{
  padding-left: 3rem;
  font-size: 1.4rem;
}

.topics_btn_wrap{
  margin-top: 6rem;
  display: flex;
  justify-content: center;
}
.topics_btn_wrap .btn_item a span{
  display: inline-block;
  margin-right: 1rem;
}
.topics_btn_wrap .btn_item a:hover{
  opacity: .4;
}

.topics_emp{
  margin-top: 10rem;
  margin-bottom: 8rem;
}

@media screen and (max-width:599px){
  .topics_list{
    margin-top: 4rem;
  }
  .topics_list li a{
    display: block;
    padding: 2rem 0;
    background-image: none;
  }
  .topics_list li a .date{
    padding-right: 1rem;
    padding-left: 1rem;
  }
  .topics_list li a .cat{
    padding: 1rem 0 1rem 1rem;
  }
  .topics_list li a .cat span{
    display: inline-block;
    height: auto;
    padding-right: 1em;
    padding-left: 1em;
    line-height: 2.4rem;
  }
  .topics_list li a .entry_title{
    padding-right: 1rem;
    padding-left: 1rem;
    line-height: 1.6;
  }
}

/* top_f_img
------------------------------------------- */
.top_f_img{
  width: 100%;
  margin-bottom: -2px;
  line-height: 1;
}
.top_f_img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* foot_contact
------------------------------------------- */
.foot_contact .inner{
  display: flex;
}
.foot_contact .inner .entry_area,
.foot_contact .inner .contact_area{
  width: 100%;
  padding-top: 8rem;
  padding-bottom: 8rem;
  color: #fff;
  font-weight: var(--fwb);
  letter-spacing: .1rem;
  text-align: center;
}
.foot_contact .inner .entry_area{
  background-color: #3b5aff;
}
.foot_contact .inner .contact_area{
  background-color: #e03128;
}
.foot_contact .inner .entry_area h3,
.foot_contact .inner .contact_area h3{
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  font-size: 3.4rem;
  font-weight: var(--fwb);
  letter-spacing: .1em;
}
.foot_contact .inner .entry_area .rep,
.foot_contact .inner .contact_area .rep{
  margin-top: 3rem;
  font-size: 1.4rem;
  line-height: 1.8;
}
.foot_contact .inner .entry_area .btn_wrap,
.foot_contact .inner .contact_area .btn_wrap{
  margin-top: 3rem;
}
.foot_contact .inner .entry_area .icon,
.foot_contact .inner .contact_area .icon{
  padding-right: 1rem;
}
.foot_contact .inner .entry_area .en,
.foot_contact .inner .contact_area .en{
  font-size: 1rem;
}

.foot_contact .inner .entry_area .btn_wrap a,
.foot_contact .inner .contact_area .btn_wrap a{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 72px;
  margin: 0 auto;
  padding: 0 4rem;
  background-color: #fff;
  border-radius: 36px;
  letter-spacing: .1em;
}
.foot_contact .inner .entry_area .btn_wrap a .txt,
.foot_contact .inner .contact_area .btn_wrap a .txt{
  text-align: left;
}
.foot_contact .inner .entry_area .btn_wrap a .en,
.foot_contact .inner .contact_area .btn_wrap a .en{
  letter-spacing: normal;
}

.foot_contact .inner .entry_area .btn_wrap a{
  color: #3b5aff;
}
.foot_contact .inner .contact_area .btn_wrap a{
  color: #e03128;
}
.foot_contact .inner .entry_area .btn_wrap a .icon img,
.foot_contact .inner .contact_area .btn_wrap a .icon img{
  width: auto;
  height: 1.6rem;
}

@media screen and (max-width:599px){
  .foot_contact .inner{
    display: block;
  }
}


/* common + contents
------------------------------------------- */
.section_title_wrap .section_title{
  color: #3b3b3b;
  font-size: clamp(2.4rem, 2.5vw, 4rem);
  font-weight: var(--fwb);
  letter-spacing: .1em;
}
.section_title_wrap .section_title_en{
  margin-top: 2rem;
  color: #e03128;
  font-weight: var(--fwb);
  letter-spacing: .1rem;
}

.contents_header{
  position: relative;
  width: 100%;
  margin-top: 100px;
  margin-bottom: 100px;
}
@media screen and (max-width:1080px){
  .contents_header{
    margin-top: 60px;
  }
}
.contents_header img{
  width: 100%;
  height: auto;
}

.pagepath_wrap{
  position: absolute;
  top: 40px;
  left: 5vw;
  z-index: 10;
}
@media screen and (max-width:599px){
  .pagepath_wrap{
    top: 10px;
    left: 10px;
  }
}

.pagepath{
  display: flex;
  padding-top: 2rem;
}
.pagepath li{
  flex-shrink: 0;
  color: #fff;
  font-size: 1.2rem;
}
.pagepath li::after{
  content: ">";
  margin-right: 1em;
  padding-left: 1em;
  color: #fff;
}
.pagepath li:last-child:after{
  content: "";
  margin-right: 0;
  padding-left: 0;
}
.pagepath li a{
  color: #fff;
  border-bottom: 1px solid #fff;
}
@media screen and (max-width:599px){
  .pagepath_wrap{
    width: 100%;
    left: 0;
    padding-left: 1rem;
    overflow: hidden;
  }
  .pagepath{
    overflow-x: scroll;
    white-space: nowrap;
    scrollbar-width: none;
  }
  .pagepath::-webkit-scrollbar{
    display: none;
  }
}


.contents_title{
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding-right: 4rem;
  padding-left: 4rem;
}
.contents_title h1{
  color: #3b3b3b;
  font-size: clamp(2.4rem, 2.5vw, 4rem);
  font-weight: var(--fwb);
  letter-spacing: .1em;
}
.contents_title h1.bix_title span{
  font-size: 2rem;
  letter-spacing: .1rem;
}
.contents_title .en{
  margin-top: 1em;
  color: #e03128;
  font-size: 1.8rem;
  font-weight: var(--fwb);
  letter-spacing: .1rem;
}

.container{
  margin-top: 10rem;
}

.contents{
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding-right: 4rem;
  padding-left: 4rem;
}
@media screen and (max-width:599px){
  .contents_title,
  .contents{
    padding-right: 2rem;
    padding-left: 2rem;
  }
}

/* aboutus
------------------------------------------- */
.container.aboutus{
  background-image: url(images/aboutus_bg1.png);
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: 35% auto;
}
.aboutus .contents{
  padding-bottom: 300px;
}
.aboutus dl{
  display: flex;
  line-height: 2;
}
.aboutus dl + dl{
  margin-top: 3rem;
}
.aboutus dl dt{
  min-width: 220px;
  padding-right: 5em;
}
.aboutus dl dd{
  flex: 1;
  padding-left: 5em;
  border-left: 1px solid #ddd;
}

@media screen and (max-width:599px){
  .container.aboutus{
    background-size: 50% auto;
  }

  .aboutus .contents{
    padding-bottom: 100px;
  }

  .aboutus dl{
    display: block;
  }
  .aboutus dl dt{
    width: 100%;
    padding-right: 0;
    font-weight: var(--fwb);
  }
  .aboutus dl dd{
    width: 100%;
    padding-left: 0;
    border-left: 0;
  }
}

/* service
------------------------------------------- */
.container.service{
  background-image: url(images/service_bg.png);
  background-repeat: no-repeat;
  background-position: left top 300px;
  background-size: auto 600px;
}
.service .contents.bizlist{
  padding-bottom: 15rem;
}
.service .contents.firstblock{
  padding-bottom: 0;
}
.service_box_wrap{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 4rem;
  row-gap: 8rem;
}

.service_box .service_img{
  aspect-ratio: 2/1;
  border-radius: 8px;
  overflow: hidden;
}
.service_box .service_img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service_box .service_title{
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.service_box .service_title h2{
  font-size: 2.4rem;
  font-weight: var(--fwb);
  letter-spacing: .1em;
}
.service_box .service_title span{
  display: block;
  margin-top: 1rem;
  font-weight: var(--fwb);
  letter-spacing: .1rem;
}
.service_box p{
  font-size: 1.4rem;
  line-height: 1.8;
}

.service_box_btn{
  margin-top: 3rem;
  display: flex;
}
.service_box_btn a span{
  display: inline-block;
  margin-right: 1rem;
}
.service_box_btn a:hover{
  opacity: .4;
}

@media screen and (max-width:599px){
  .container.service{
    background-size: auto 300px;
  }
  .service_box_wrap{
    display: block;
  }
  .service_box + .service_box{
    margin-top: 6rem;
  }
}

/*
.service_detail{
  padding-top: 20rem;
}
*/
.service_detail .section_title span{
  display: inline-block;
  margin-left: 1rem;
  font-size: 2rem;
  letter-spacing: .1rem;
}
.service_detail .section_title_en{
  font-size: 1.8rem;
  letter-spacing: .1rem;
}
.service_detail .service_fv{
  /*margin-top: 8rem;*/
  aspect-ratio: 2/1;
  border-radius: 16px;
  overflow: hidden;
}
.service_detail .service_fv img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service_detail .service_desc{
  margin-top: 4rem;
  font-size: 1.8rem;
  letter-spacing: .1rem;
  line-height: 2.5em;
}

.service_case{
  margin-top: 8rem;
}
.service_case .case_title{
  padding: 1rem 0 1rem 2.5rem;
  border-left: 4px solid #e03128;
}
.service_case .case_title h3{
  font-size: 2.4rem;
  font-weight: var(--fwb);
  letter-spacing: .1em;
}
.service_case .case_title .en{
  margin-top: 1rem;
  color: #e03128;
  font-size: 1.4rem;
  letter-spacing: .1rem;
}
.service_case .case_img{
  margin-top: 6rem;
  border-radius: 16px;
  overflow: hidden;
}
.service_case .case_heading{
  margin-top: 4rem;
  font-size: 2rem;
  font-weight: var(--fwb);
  line-height: 2;
}
.service_case .case_desc{
  margin-top: 3rem;
  font-size: 1.4rem;
  letter-spacing: .1rem;
  line-height: 2;
}
@media screen and (max-width:1080px){
  .service_detail .service_desc{
    font-size: 1.6rem;
    line-height: 2em;
  }
}

@media screen and (max-width:599px){
  .service_detail .section_title span{
    font-size: 1.4rem;
  }
  .service_detail .section_title_en{
    font-size: 1.4rem;
  }
  .service_case .case_img{
    margin-top: 4rem;
  }
  .service_case .case_title h3{
    font-size: 2rem;
  }
  .service_case .case_heading{
    font-size: 1.6rem;
  }
}


.flow_contents{
  margin-top: 10rem;
  margin-bottom: 10rem;
  background-color: #28952c;
  border-radius: 100px;
  padding-top: 10rem;
  padding-bottom: 10rem;
}
.flow_title_area{
  padding-left: 2rem;
}
.flow_title_wrap{
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  padding: 1rem 0 1rem 3rem;
  border-left: 4px solid #ffc313;
}
.flow_title_wrap h2{
  color: #fff;
  font-size: 2.8rem;
  font-weight: var(--fwb);
  letter-spacing: .1em;
}
.flow_title_wrap .en{
  margin-top: 1rem;
  color: #ffc313;
  letter-spacing: .1rem;
}

.flow_container{
  position: relative;
  width: 100%;
  max-width: 1080px;
  margin-top: 6rem;
  margin-right: auto;
  margin-left: auto;
  padding-top: 3rem;
}
.flow_container::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 30px;
  width: 1px;
  background-color: white;
  z-index: 0;
}
.flow_container a{
  color: #fff;
  text-decoration: underline;
}
.flow_step {
  display: flex;
  align-items: flex-start;
  position: relative;
}
.flow_step + .flow_step {
  margin-top: 6rem;
}
.flow_line {
  width: 60px;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.dot {
  width: 12px;
  height: 12px;
  background-color: white;
  border-radius: 50%;
  position: relative;
  z-index: 1;
  margin-top: 4px;
}
.flow_number {
  width: 60px;
  margin-top: -1rem;
  color: #fff;
  font-size: 4rem;
  text-align: center;
}
.flow_content {
  flex: 1;
  padding-left: 2rem;
  color: #fff;
}
.flow_content h3 {
  font-size: 2.2rem;
  font-weight: var(--fwb);
  letter-spacing: .1em;
}
.flow_content p {
  margin-top: 1.5rem;
  letter-spacing: .1rem;
  line-height: 2;
}
@media (max-width: 1080px) {
  .flow_content {
    padding-right: 2rem;
  }
}
@media (max-width: 599px) {
  .flow_contents{
    /*margin-bottom: 10rem;*/
    background-color: #28952c;
    border-radius: 40px;
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
  .flow_title_area{
    margin-bottom: 4rem;
  }
  .flow_title_wrap{
    padding-left: 2rem;
  }
  .flow_title_wrap h2{
    font-size: 2.4rem;
  }
  .flow_step {
    flex-direction: row;
    align-items: flex-start;
    position: relative;
  }
  .flow_container{
    margin-top: 0;
    padding-bottom: 0;
  }
  .flow_container::before {
    left: 20px;
  }
  .flow_line {
    width: 40px;
    justify-content: center;
  }
  .flow_number {
    width: auto;
    margin-top: -6px;
    margin-right: 10px;
    font-size: 3rem;
  }
  .flow_content {
    margin-top: -0.4rem;
    padding-right: 1rem;
    padding-left: 0;
  }
  .flow_content h3 {
    font-size: 2rem;
    line-height: 1.4;
  }
}

.other_biz{
  width: 100%;
  max-width: 1160px;
  margin-top: 10rem;
  margin-right: auto;
  margin-left: auto;
  padding-right: 4rem;
  padding-left: 4rem;
  padding-bottom: 15rem;
}
.other_biz .other_s_title{
  padding: 1rem 0 1rem 2.5rem;
  border-left: 4px solid #e03128;
}
.other_biz .other_s_title h3{
  font-size: 2.4rem;
  font-weight: var(--fwb);
  letter-spacing: .1em;
}
.other_biz .other_s_title .en{
  margin-top: 1rem;
  color: #e03128;
  font-size: 1.4rem;
  letter-spacing: .1rem;
}
.other_bix_container{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 4rem;
  margin-top: 6rem;
}
@media screen and (max-width:1080px){
  .other_bix_container .service_title span{
    font-size: 1.4rem;
  }
}
@media screen and (max-width:599px){
  .other_biz{
    padding-right: 2rem;
    padding-left: 2rem;
    padding-bottom: 10rem;
  }
  .other_bix_container{
    display: block;
  }
}

/* privacy policy
------------------------------------------- */
.privacy .contents{
  padding-bottom: 8rem;
}
.poricy_box{
  padding: 5rem;
  border-top: 1px solid #ddd;
}
.poricy_box .inner{
  display: flex;
}
.poricy_box .inner .num{
  color: #e03128;
  font-size: 6rem;
}
.poricy_box .inner .desc{
  flex: 1;
  padding-left: 4rem;
  line-height: 2;
}
.poricy_box .inner .desc h2{
  margin-bottom: 1.6rem;
  font-size: 2.4rem;
}

@media screen and (max-width:599px){
  .poricy_box{
    padding: 4rem 0;
  }
  .poricy_box .inner{
    display: block;
  }
  .poricy_box .inner .num{
    text-align: center;
  }
  .poricy_box .inner .desc{
    margin-top: 2rem;
    padding-left: 0;
  }
  .poricy_box .inner .desc h2{
    font-size: 2rem;
    text-align: center;
  }
}


/* topics
------------------------------------------- */
.container.topics{
  margin-top: 0;
  padding-bottom: 200px;
  background-image: url(images/bg2.png);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: auto 400px;
}
.container.topicsdetail{
  margin-top: 8rem;
}
.contents.topics{
  margin-top: 10rem;
}

.cat_list ul{
  display: flex;
  align-items: center;
  font-size: 1.4rem;
}
.cat_list ul li a{
  display: flex;
  align-items: center;
  height: 40px;
  padding-right: 3em;
  padding-left: 3em;
  background-color: #ccc;
  color: #fff;
}
.cat_list ul li a.current{
  display: flex;
  align-items: center;
  height: 40px;
  padding-right: 3em;
  padding-left: 3em;
  background-color: #e03128;
  color: #fff;
}

.cat_list ul li:first-child a,
.cat_list ul li.current:first-child{
  border-radius: 20px 0 0 20px;
}
.cat_list ul li:last-child a,
.cat_list ul li.current:last-child{
  border-radius: 0 20px 20px 0;
}
.cat_list ul li a:hover{
  background-color: #e03128;
  color: #fff;
}

@media screen and (max-width:599px){
  .container.topics{
    padding-bottom: 100px;
    background-size: auto 200px;
  }
  .cat_list ul{
    width: 100%;
    flex-wrap: wrap;
    font-size: 1.2rem;
  }
  .cat_list ul li.current,
  .cat_list ul li a,
  .cat_list ul li a.current{
    padding-right: 2rem;
    padding-left: 2rem;
  }
}

/* topics detail
------------------------------------------- */
.topics_detail_page_title{
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding-right: 4rem;
  padding-left: 4rem;
}
.topics_detail_page_title .topics_detail_title{
  color: #3b3b3b;
  font-size: clamp(2.4rem, 2.5vw, 4rem);
  font-weight: var(--fwb);
  letter-spacing: .1em;
}
.topics_detail_page_title .en{
  margin-top: 1em;
  color: #e03128;
  letter-spacing: .1rem;
}

@media screen and (max-width:599px){
  .topics_detail_page_title{
    padding-left: 2rem;
  }
}

article.post,
article.recruit{
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding-right: 4rem;
  padding-left: 4rem;
}
@media screen and (max-width:599px){
  article.post,
  article.recruit{
    padding-right: 2rem;
    padding-left: 2rem;
  }
}

.article_head{
  margin-bottom: 6rem;
}
.article_info{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 2rem;
  letter-spacing: .1rem;
}
.article_info .article_cat a{
  display: inline-block;
  padding: 0 1em;
  background-color: #e03128;
  border-radius: 1.2rem;
  color: #fff;
  font-size: 1.2rem;
  line-height: 2.4rem;
}
.article_info .date{
  margin-left: 2rem;
  color: #666;
  font-size: 1.4rem;
}
.article_head h1{
  color: #3d3d3d;
  font-size: 2.4rem;
  letter-spacing: .1em;
  line-height: 1.6;
}

.article_body{
  line-height: 2;
}
.article_body h2{
  margin-top: 6rem;
  margin-bottom: 3rem;
  padding-left: 1rem;
  border-left: 4px solid #e03128;
  font-size: 2rem;
  font-weight: var(--fwb);
  line-height: 1.8;
}
.article_body p + p,
.article_body p + figure,
.article_body figure + p{
  margin-top: 2em;
}

.return_btn_wrap,
.entry_btn_wrap{
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 8rem;
  margin-right: auto;
  margin-left: auto;
}
.return_btn_wrap .btn_a span,
.entry_btn_wrap .btn_a span{
  display: inline-block;
  margin-right: 1rem;
}

/* recruit
------------------------------------------- */
.container.recruit{
  margin-top: 0;
  padding-bottom: 150px;
  background-image: url(images/bg1.png);
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: auto 500px;
}

.contents.recruit{
  margin-top: 10rem;
  padding-right: 0;
  padding-left: 0;
}



.job_wrap .job_list li{
  border: 1px solid #ccc;
}

.job_list li.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease, transform 1s ease;
}
.job_list li.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}


.job_list_btn_wrap{
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 8rem;
}

.job_eyecatch{
  position: relative;
  aspect-ratio: 3/2;
  border-radius: 30px;
  overflow: hidden;
}
.job_eyecatch img{
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.job_detail_title{
  padding-top: 6rem;
  padding-bottom: 6rem;
}
.job_detail_title h1{
  color: #3d3d3d;
  font-size: 2.4rem;
  font-weight: var(--fwb);
  letter-spacing: .1em;
  line-height: 1.6;
}
@media screen and (max-width:599px){
  .job_detail_title{
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .job_detail_title h1{
    font-size: 2rem;
  }
}

.job_summary_body dl{
  display: flex;
  font-size: 90%;
  letter-spacing: .1rem;
  line-height: 2;
}
.job_summary_body dl + dl{
  margin-top: 3rem;
}
.job_summary_body dl dt{
  width: 200px;
}
.job_summary_body dl dd{
  flex: 1;
  padding-left: 5rem;
  border-left: 1px solid #ddd;
}
.job_summary_body dl dd p + p{
  margin-top: 1.5em;
}

@media screen and (max-width:599px){
  .container.recruit{
    padding-bottom: 150px;
    background-size: auto 260px;
  }
  .job_summary_body dl{
    display: block;
  }
  .job_summary_body dl + dl{
    margin-top: 4rem;
  }
  .job_summary_body dl dt{
    width: 100%;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #ddd;
    font-weight: var(--fwb);
  }
  .job_summary_body dl dd{
    padding-left: 0;
    border-left: none;
  }
}

button.btn_a{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  padding: 0 4rem;
  background-color: #ef372c;
  border-radius: 30px;
  color: #fff;
  letter-spacing: .1em;
  cursor: pointer;
}
button.btn_a span{
  display: inline-block;
  margin-right: 1rem;
}
button.btn_a img{
  width: auto;
  height: 1.6rem;
}
@media screen and (max-width:599px){
  button.btn_a {
    padding: 0 3rem;
  }
}

.recruit .no-jobpost{
  margin-bottom: 10rem;
  color: #333;
  line-height: 2;
  text-align: left;
}
@media screen and (max-width:599px){
  .recruit .no-jobpost{
    margin-bottom: 5rem;
  }
}


/* contact & join
------------------------------------------- */
.container.contact{
  padding-bottom: 200px;
  background-image: url(images/contact_bg.png);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: auto 300px;
}
.container.jobentry{
  padding-bottom: 200px;
  background-image: url(images/bg1.png);
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: auto 500px;
}
.contents_title.contact .spl,
.contents_title.recruit .spl,
.contents_title.join .spl{
  margin-bottom: 1em;
  font-size: 1.8rem;
  letter-spacing: .1rem;
}

.contact_form_line{
  display: flex;
}
.contact_form_line + .contact_form_line{
  margin-top: 3rem;
}
.contact_form_line .item{
  width: 200px;
  padding-top: 1em;
}
.contact_form_line .item.wr{
  padding-top: .5em;
}
.contact_form_line .area{
  flex: 1;
}
.contact_form_line .area.flex{
  display: flex;
  align-items: center;
}
.contact_form_line .area.flex .radio_box + .radio_box{
  margin-left: 3rem;
}
.contact_form_line .area.flex input[type="radio"]{
  display: inline-block;
  margin-right: .5rem;
}

.pp_consent{
  margin-top: 6rem;
  text-align: center;
}
.pp_consent a{
  display: inline-block;
  margin-left: 1rem;
  color: #111;
  text-decoration: underline;
}

.confirm_alert{
  margin-top: 4rem;
  text-align: center;
}

.contact_form_line .area input[type="text"],
.contact_form_line .area input[type="email"],
.contact_form_line .area input[type="tel"]{
  width: 100%;
}

.required{
  display: inline-block;
  margin-left: .5rem;
  color: #e03128;
}

.join_foot_img{
  margin-bottom: -2px;
  text-align: center;
}


@media screen and (max-width:599px){
  .contact_form_line{
    display: block;
  }
  .contact_form_line .item{
    width: 100%;
    margin-bottom: 1rem;
  }
  .contact_form_line .item.wr{
    padding-top: 1em;
  }
}

.form-error-message{
  margin-bottom: 2rem;
  padding: 1rem;
  background-color: #e03128;
}
.form-error-message p{
  color: #fff;
  font-weight: var(--fwb);
  line-height: 1.4;
}

.completed_mess{
  line-height: 2;
  text-align: center;
}

.return_home{
  margin-top: 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 404 */
.container404{
  margin-top: 20rem;
  text-align: center;
}
.header404 h1{
  font-size: 2.8rem;
  font-weight: bold;
}
.error404_body{
  margin-top: 4rem;
  margin-bottom: 8rem;
  line-height: 2;
}
.error404_text{
  font-size: 2rem;
  font-weight: bold;
}

/* footer
------------------------------------------- */
.footer{
  width: 100%;
  padding: 10rem 0;
  background-color: #3b3b3b;
  color: #fff;
}
.footer .inner{
  text-align: center;
}
.f_title img{
  width: auto;
  height: 40px;
}
.f_address{
  margin-top: 2rem;
  letter-spacing: .1rem;
  line-height: 2;
}
.cp{
  width: 40%;
  max-width: 600px;
  margin: 3rem auto 0;
  padding-top: 3rem;
  border-top: 1px solid #666;
  font-size: 1.4rem;
  letter-spacing: .1rem;
}
.cp a{
  color: #fff;
  text-decoration: underline;
}
@media screen and (min-width:600px){
  .f_address span{
    display: inline-block;
  }
  .f_address span + span{
    margin-left: 2rem;
  }
}
@media screen and (max-width:599px){
  .f_address span{
    display: block;
  }
  .cp{
    width: 90%;
  }
}



/* -------------------------------------------------------
for SmartPhone only
---------------------------------------------------------- */
@media screen and (max-width:599px){
  .pc, .tab, .tabpc {display: none;}

}/* end smartphone only */

/* -------------------------------------------------------
for TAB & PC
---------------------------------------------------------- */
@media screen and (min-width:600px){
  .ssp {display: none;}
  a[href^="tel:"] {
    pointer-events: none;
  }



}/* end TAB & PC */

/* -------------------------------------------------------
for TAB only
---------------------------------------------------------- */
@media screen and (min-width:600px) and (max-width:1080px){
  .pc {display: none;}

}/* end TAB only */

/* -------------------------------------------------------
for PC
---------------------------------------------------------- */
@media only screen and (min-width:1081px){
  body {
    zoom:1;
  }
  .sp, .tab {display: none;}

}/* end PC */


/* form
---------------------------------------------------------- */
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="tel"],
button,
textarea{
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
input::placeholder,
textarea::placeholder{
  color: #ccc;
}
input {
  color: #111;
  font-size: 100%;
}
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="tel"]{
  padding: .8em .5em;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 110%;
  -webkit-transition: all .3s;
  transition: all .3s;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="tel"]:focus{
  box-shadow: 0 0 4px #3498db;
  border: 1px solid #3498db;
}

textarea {
  width: 100%;
  height: 10em;
  padding: 1em;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 100%;
  color: #111;
  line-height: 1.6;
  -webkit-transition: all .3s;
  transition: all .3s;
}
textarea:focus {
  box-shadow: 0 0 4px #3498db;
  border: 1px solid #3498db;
}


/* CF7 */
.wpcf7-not-valid-tip{
  margin-top: 1rem;
}
.wpcf7-list-item.first{
  margin-left: 0;
}
.wpcf7 form .wpcf7-response-output{
  padding: 1em;
  background-color: #ffe83f;
  color: #000;
}
.wpcf7-submit{
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
span.wpcf7-spinner{
  display: none;
}

.submit_btn_wrap{
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 6rem;
}
.submit_btn input.wpcf7-submit{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  padding: 0 4rem;
  background-color: #ef372c;
  border: 0;
  border-radius: 30px;
  color: #fff;
  letter-spacing: .1em;
  cursor: pointer;
}
.submit_btn input[type="image"]{
  width: auto;
  height: 72px;
}


