@charset "UTF-8";
/* -------------------------------------------- */


/* Style.css                                    */


/* Ver.1.0.0 2022/2/04                          */


/* -------------------------------------------- */


/* -------------------------------------------- */


/*    Base                                      */


/* -------------------------------------------- */

:root {
  --color-white: #ffffff;
  --color-black: #282828;
  --color-gray: #464646;
  --color-pink: #E65965;
  --color-lightgray: #656565;
  --max-content-width: 1080px;
  --max-content-inner-width: 775px;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  max-width: 100%;
  overflow-x: hidden;
  height: auto;
  overflow-y: auto;
  font-family: 'Noto Sans JP', sans-serif;
  /*font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;*/
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.5;
  color: var(--color-black);
  background-color: #F5F5F5;
}

p {
  margin: 0;
}
li {
  list-style: none;
}
h1 {
  margin: 0;
}

h2, h3, h4, h5, h6, strong, em, .font-bold, .title, .button {
  font-family: 'Noto Sans JP', sans-serif;
  /*font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI semibold", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic", "Segoe UI", Verdana, Meiryo, sans-serif;*/
  font-weight: 500;
}

h2 {
  font-size: 2.4rem;
  letter-spacing: -0.5px;
  line-height: 1.2;
  text-align: center;
  position: relative;
  margin-bottom: 2em;
}

h2:before {
  content: '';
  position: absolute;
  bottom: -15px;
  display: inline-block;
  width: 60px;
  height: 5px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: var(--color-black);
  border-radius: 2px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: auto;
}

a {
  text-decoration: none;
  transition: .5s;
}

a:hover {
  opacity: 0.8;
}

.align_left {
  text-align: left;
}

.align_center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.pc-disp {
  display: none;
}

.sp-disp {
  display: inline;
}

.font_small {
  font-size: 1.4rem;
}

header {
  background-color: var(--color-black);
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
}

.header_inner {
  width: 90%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  height: 45px;
  justify-content: space-between;
}

header .g_navi {
  display: none;
}

main {
  padding-top: 45px;
}


/* -------------------------------------------- */


/*    Footer                                    */


/* -------------------------------------------- */

footer {
  background-color: #282828;
  text-align: center;
  padding: 1rem 0;
}

#copyright {
  color: #ffffff;
  font-size: 1.4rem;
}


/* -------------------------------------------- */


/*    Contents                                  */


/* -------------------------------------------- */

.logo {
  max-width: 70%;
  margin: 0;
}

#main_contents, #company {
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 3rem;
  padding-bottom: 10rem;
}

#sub_contents {
  background-color: var(--color-gray);
  color: var(--color-white);
}

#entry, #archive, #past {
  padding-top: 3rem;
}

.top_msg {
  text-align: center;
  margin: 3rem 0 6rem 0;
}

.flex_wrapper {
  display: flex;
  flex-direction: column;
}

.flex_wrapper a {
  display: flex;
  flex-direction: column;
  width: 100%;
  background-color: var(--color-white);
  border-radius: 4px;
  box-shadow: 0 0 10px rgb(0 0 0 / 10%);
  margin-bottom: 3rem;
  color:  var(--color-black);
}
.content_img{
  overflow: hidden;
}
.content_img--resized {
  aspect-ratio: 497 / 195;
}

.content_img img{
  border-radius: 4px 4px 0 0;
  transition: transform 0.35s ease-in-out;

}
.content_img_inner--resized {
  transform: translateY(-15%) scale(1.02);
}
.flex_wrapper a:hover img{
  transform: scale(1.2);
}

.content_title {
  font-weight: bold;
  flex: 1;
  height: 100%;
  min-height: 0%;
  padding: 15px 10px 0 10px;
}

.content_date {
  font-size: 1.6rem;
  margin-top: 1.5rem;
  padding: 0 10px;
}

.content_btn, .content_btn02 {
  text-align: center;
  background-color: var(--color-pink);
  color: var(--color-white);
  border-radius: 30px;
  margin: 4.2rem 10px;
  padding: 8px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight:500;
  max-height: 50px;
}

.content_btn::after, .content_btn02::after {
  content: '';
  background: url(../img/Icon-dropright.svg) no-repeat;
  background-size: contain;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-left: 1rem;
  /* transform: translateY(5px); */
}

.content_btn {
  background-color: var(--color-pink);
}

.content_btn02 {
  background-color: var(--color-lightgray);
}

#company h2 {
  color: var(--color-white);
  padding-left: 15px;
  text-align: left;
  margin: 0 0 3rem 0;
}

#company h2:before {
  content: '';
  position: absolute;
  left: 0;
  display: inline-block;
  width: 5px;
  height: 30px;
  bottom: 0;
  top: 0;
  background-color: var(--color-white);
  border-radius: 2px;
}

.company_info img {
  max-width: 40%;
  margin: 0 0 10px 0;
}

.company_info {
  margin-bottom: 20px;
}


#company .flex_wrapper a {
  display: inline;
  background-color: transparent;
  border-radius: 0;
  box-shadow: none;
  margin-bottom: 0;
  color: #ff949d;
  text-decoration: underline;
  width: inherit;
}


/* -------------------------------------------- */


/*    Tablet                                    */


/* -------------------------------------------- */

@media screen and (min-width: 541px) {
  .sp-disp {
    display: none;
  }
  .pc-disp {
    display: inline;
  }
  h2 {
    font-size: 3.6rem;
    line-height: 1.5;
  }
  .flex_wrapper {
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .flex_wrapper a {
    /*display: block;*/
    width: 46%;
    margin-bottom: 6rem;
  }
  .content_title {
    padding: 15px 30px 0px 30px;
  }
  .content_date {
    padding: 0 30px;
  }
  .content_btn, .content_btn02 {
    width: 90%;
    margin: 4.2rem auto;
  }
  #company {
    max-width: var(--max-content-width, 1080px);
    padding: 5rem;
  }
  .company_contents {
    width: 70%;
    display: flex;
    justify-content: space-between;
  }
  #company h2:before {
    height: 60px;
  }
  .company_info img {
    max-width: 80%;
  }
  .company_txt {
    width: 70%;
  }
}


/* -------------------------------------------- */


/*    PC                                        */


/* -------------------------------------------- */

@media screen and (min-width: 1080px) {
  header .g_navi {
    display: flex;
    justify-content: space-between;
    margin: 0;
  }
  header .g_navi a {
    color: var(--color-white);
    font-size: 1.4rem;
    display: flex;
    align-items: center;
  }
  header .g_navi a::before {
    content: '';
    background: url(../img/Icon-arrow-dropdown.svg) no-repeat;
    background-size: contain;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-left: 1rem;
    padding-right: 5px;
  }
  body {
    font-size: 2rem;
  }
  #main_contents {
    max-width: var(--max-content-width, 1080px);
  }
  #entry, #archive, #past {
    padding-top: 6rem;
  }
  .main-img {
    object-fit: cover;
    width: 100%;
  }
  .top_msg {
    margin: 6rem auto;
    line-height: 2;
  }
  .flex_wrapper {
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}


