@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap");
/*==================================================

** outline
==================================================*/
* {
  box-sizing: border-box;
}

.pc {
  display: inherit;
}

.sp {
  display: none;
}

body {
  position: relative;
  color: #222;
  -webkit-text-size-adjust: 100%;
  background-image: url("../images/top_bg.jpg");
  background-size: 100% 100%;
  animation: fadeIn 2s ease 0s 1 normal;
  -webkit-animation: fadeIn 2s ease 0s 1 normal;
}

img, svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.mainblur {
  filter: blur(8px);
}

#top .container {
  max-width: 1240px;
  padding-left: 20px;
  padding-right: 20px;
}

.top main {
  position: relative;
  width: 100%;
  height: 100%;
}

.top .wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.top canvas {
  object-fit: cover;
}

.center {
  text-align: center;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

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

** header
==================================================*/
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 50px;
}

.header__navList {
  display: flex;
  font-size: 1.4rem;
}

.header__navItem {
  margin: 0 18px;
  transition: .25s;
}

.header__navItem:hover {
  opacity: .7;
}

@media (max-width: 1199px) {
  .header {
    padding: 16px 20px;
  }
  .header__logo {
    width: 220px;
  }
  .header__navItem {
    margin: 0 10px;
  }
}

@media (max-width: 991px) {
  .header__nav {
    display: none;
  }
}

@media (max-width: 767px) {
  .header {
    background: #fff;
  }
  .header__logo {
    width: 165px;
  }
}

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

** ハンバーガーメニュー
==================================================*/
#header__nav--md {
  display: none;
  /*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
  position: fixed;
  z-index: -1;
  opacity: 0;
  /*はじめは透過0*/
  /*ナビの位置と形状*/
  top: 0;
  width: 100%;
  height: 100vh;
  /*ナビの高さ*/
  background: rgba(255, 255, 255, 0.6);
  /*背景を少し透過させる*/
  /*動き*/
  transition: all .15s;
}

.header__navList--md {
  height: 100%;
  padding: 60px 20px 20px;
  background-image: url("../images/header__nav--md_bg.png");
  background-size: cover;
  opacity: 0.8;
}

.header__navItem--md {
  padding: 15px 10px;
  text-align: center;
  font-weight: 500;
}

/*アクティブクラスがついたら透過なしにして最前面へ*/
#header__nav--md.panelactive {
  display: block;
  opacity: 1;
  z-index: 10000;
  transition: all .4s;
}

/*========= ボタンのためのCSS ===============*/
.openbtn1 {
  display: none;
  position: fixed;
  z-index: 10000000000;
  /*ボタンを最前面に*/
  top: 10px;
  right: 10px;
  cursor: pointer;
  width: 50px;
  height: 50px;
}

@media (max-width: 991px) {
  .openbtn1 {
    display: block;
  }
}

/*×に変化*/
.openbtn1 span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 14px;
  height: 1px;
  border-radius: 2px;
  background-color: #707070;
  width: 45%;
}

.openbtn1 span:nth-of-type(1) {
  top: 15px;
}

.openbtn1 span:nth-of-type(2) {
  top: 23px;
}

.openbtn1 span:nth-of-type(3) {
  top: 31px;
}

.openbtn1.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}

.openbtn1.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn1.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}

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

** pageMV
==================================================*/
.pageMv {
  padding: 60px 0 120px;
  text-align: center;
}

.pageMv_ttl {
  position: relative;
  font-family: 'Noto Serif JP', serif;
  font-size: 4.6rem;
  font-weight: 500;
}

.pageMv_ttl::after {
  content: "";
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 1px;
  background: #222;
}

.pageMv_ttl + * {
  margin-top: 80px;
}

.pageMv span {
  display: inline-block;
}

.pageMv_subttl {
  font-family: 'Noto Serif JP', serif;
  font-size: 2.6rem;
  font-weight: 500;
}

.pageMv_link {
  display: inline-block;
  font-size: 1.4rem;
  margin-top: 30px;
  text-decoration: underline;
  transition: all .25s;
}

.pageMv_link:hover {
  opacity: .7;
  text-decoration: underline;
}

@media (max-width: 767px) {
  .pageMv {
    padding: 30px 0 40px;
  }
  .pageMv_ttl {
    font-size: 2.4rem;
  }
  .pageMv_ttl::after {
    bottom: -10px;
    width: 20px;
  }
  .pageMv_ttl + * {
    margin-top: 20px;
  }
  .pageMv_subttl {
    margin-top: 20px;
    font-size: 1.8rem;
  }
  .pageMv_link {
    margin-top: 10px;
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 374px) {
  .pageMv span {
    display: inline;
  }
}

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

** footer
==================================================*/
.footer {
  position: relative;
  padding: 120px 0 76px;
  background: #fff;
  z-index: 100;
}

.footer__logo {
  width: 256px;
  margin: auto;
}

.footer__plan {
  margin-top: 36px;
  text-align: center;
}

.footer__nav {
  margin-top: 58px;
}

.footer__navList {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 1.4rem;
}

.footer__navItem {
  margin: 0 20px;
  transition: .25s;
}

.footer__navItem:hover {
  opacity: .7;
}

.footer__copy {
  margin-top: 58px;
  text-align: center;
  font-size: 1.0rem;
  font-family: "Roboto";
  color: #999;
}

@media (max-width: 767px) {
  .footer {
    padding: 50px 0 30px;
  }
  .footer__logo {
    width: 180px;
  }
  .footer__nav {
    margin-top: 36px;
  }
  .footer__navList {
    font-size: 1.2rem;
  }
  .footer__navItem {
    margin: 0 10px;
  }
  .footer__copy {
    margin-top: 30px;
  }
}

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

** common
==================================================*/
.button {
  text-align: center;
  transition: .25s;
}

.button-primary {
  display: block;
  width: 300px;
  height: 52px;
  margin-top: 36px;
  line-height: 52px;
  background: #E26397;
  color: #fff;
}

.button-primary:hover {
  opacity: .7;
  color: #fff;
}

@media (max-width: 767px) {
  .button-primary {
    width: 235px;
    height: 40px;
    line-height: 40px;
  }
}

.button-round {
  display: inline-block;
  padding: 26px 84px;
  border-style: solid;
  border-width: 1px;
  border-radius: 8px;
}

@media (max-width: 767px) {
  .button-round {
    padding: 20px 60px;
  }
}

.button-white {
  background: #fff;
  border-color: #E26397;
}

.button-white:hover {
  background: #E26397;
  color: #fff;
}

.button-transparent {
  border-color: #fff;
}

.button-transparent svg path {
  transition: all .25s;
}

.button-transparent:hover {
  background: #fff;
  color: #E26397;
}

.button-transparent:hover svg path {
  fill: #E26397;
}

.pageTtl {
  font-size: 3.2rem;
  font-weight: 500;
  text-align: center;
}

.pageTtl + * {
  margin-top: 45px;
}

@media (max-width: 767px) {
  .pageTtl {
    font-size: 2.2rem;
  }
  .pageTtl + * {
    margin-top: 30px;
  }
}

.pageSubttl {
  margin-top: 60px;
  font-size: 2.0rem;
  font-weight: 500;
}

.pageSubttl + * {
  margin-top: 20px;
}

@media (max-width: 767px) {
  .pageSubttl {
    margin-top: 30px;
    font-size: 2.0rem;
  }
  .pageSubttl + * {
    margin-top: 16px;
  }
}

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

** top
==================================================*/
/*==================================================

** mainvsl
==================================================*/
.mainvsl {
  position: relative;
  width: 100%;
  height: 100vh;
  background-image: url("../images/mainvsl.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right;
  opacity: 0;
}

.mainvsl__lead {
  position: absolute;
  top: 20%;
  left: 16%;
  font-weight: 500;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  line-height: 2.6;
  letter-spacing: 0.4em;
}

@media (max-width: 1199px) {
  .mainvsl__lead {
    left: 10%;
  }
}

@media (max-width: 991px) {
  .mainvsl {
    background-position: 72% bottom;
  }
  .mainvsl__lead {
    font-size: 1.4rem;
  }
}

@media (max-width: 767px) {
  .mainvsl {
    height: 76vh;
    background-size: auto 82%;
    background-position: 72% 110%;
  }
  .mainvsl__lead {
    top: 19%;
    font-size: 1.1rem;
  }
}

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

** scrolldown
==================================================*/
.scrolldown1 {
  /*描画位置※位置は適宜調整してください*/
  position: absolute;
  right: 5%;
  bottom: 5%;
  display: block;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  /*全体の高さ*/
  height: 110px;
}

.scrolldown1 span {
  /*描画位置*/
  position: absolute;
  left: -10px;
  top: -40px;
  /*テキストの形状*/
  color: #222;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
}

.scrolldown1::after {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: 0;
  /*線の形状*/
  width: 1px;
  height: 70px;
  background: #222;
  /*線の動き1.4秒かけて動く。永遠にループ*/
  animation: pathmove 2.4s ease-in-out infinite;
  opacity: 0;
}

@media (max-width: 767px) {
  .scrolldown1 {
    display: none;
  }
}

@keyframes pathmove {
  0% {
    height: 0;
    top: 0;
    opacity: 0;
  }
  30% {
    height: 40px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 70px;
    opacity: 0;
  }
}

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

** description
==================================================*/
.description__body {
  display: flex;
  justify-content: center;
}

.description__picture {
  width: 200px;
  height: auto;
  margin-right: 80px;
}

.description__text {
  width: 100%;
  max-width: 651px;
}

.description__text p {
  letter-spacing: 0.1em;
}

.description__text p + p {
  margin-top: 22px;
}

@media (max-width: 767px) {
  .description__body {
    display: block;
  }
  .description__picture {
    width: 136px;
    margin: auto;
  }
  .description__text {
    margin-top: 34px;
  }
}

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

** plan
==================================================*/
.plan {
  position: relative;
  margin-top: 62px;
  text-align: center;
  z-index: 10;
}

.plan__ttl {
  position: relative;
  font-size: 1.4rem;
}

.plan__ttl::after {
  position: absolute;
  left: 50%;
  bottom: -14px;
  transform: translateX(-50%);
  content: "";
  display: block;
  width: 20px;
  height: 1px;
  background: #707070;
}

.plan__company {
  margin-top: 42px;
}

.plan__department {
  margin-top: 10px;
  font-size: 1.2rem;
  text-decoration: underline;
}

.plan__department a {
  transition: all .25s;
}

.plan__department a:hover {
  opacity: .7;
}

@media (max-width: 767px) {
  .plan {
    margin-top: 48px;
  }
}

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

** movie
==================================================*/
.movie {
  position: relative;
  margin-top: -15px;
  padding: 145px 0 130px;
  background-image: url("../images/top_movie_bk.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.movie #movie {
  position: absolute;
  top: 30px;
  left: 0;
}

.movie__wrap {
  width: 100%;
  height: 0;
  position: relative;
  padding-top: 56.25%;
  overflow: hidden;
}

.movie__wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.movie__text {
  margin-top: 16px;
  text-align: center;
}

@media (max-width: 767px) {
  .movie {
    margin-top: 0;
    padding: 60px 0;
  }
}

@media (max-width: 575px) {
  .movie {
    background-size: cover;
  }
}

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

** timeline
==================================================*/
.timeline__inner {
  position: relative;
}

.timeline__inner::before {
  position: absolute;
  top: 190px;
  left: -116px;
  content: "";
  display: block;
  width: 193px;
  height: 100%;
  background-image: url("../images/top_timeline_bg.png");
  background-repeat: repeat-y;
}

.timelineBox {
  border-left: solid 1px #FBA8D2;
  padding-left: 15px;
  padding-top: 110px;
}

.timelineBox__year {
  position: relative;
  margin-bottom: 26px;
  font-family: "Roboto";
  font-size: 3.0rem;
  font-weight: bold;
  color: #E26397;
}

.timelineBox__year::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #E26397;
}

.timelineBox__subttl {
  font-size: 1.6rem;
}

.timelineBox__mainttl {
  margin-top: 8px;
  font-size: 3.0rem;
  font-weight: bold;
}

.timelineBox__overview {
  margin-top: 36px;
  font-size: 1.3rem;
}

.timelineBox__overviewList {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}

.timelineBox__overviewList__head {
  width: 80px;
  margin-right: 20px;
}

.timelineBox__overviewList__head span {
  display: inline-block;
  width: 60px;
  text-align-last: justify;
  text-justify: inter-ideograph;
}

.timelineBox__overviewList__head::after {
  content: "：";
  margin-left: 6px;
}

.timelineBox__overviewList__content {
  width: calc(100% - 100px);
}

.timelineBox__image {
  margin-top: 36px;
}

@media (max-width: 767px) {
  .timeline__inner::before {
    top: 140px;
    left: -34px;
    width: 100px;
    background-size: contain;
  }
  .timelineBox {
    padding-top: 60px;
  }
  .timelineBox__year {
    margin-bottom: 16px;
  }
  .timelineBox__subttl {
    font-size: 1.2rem;
  }
  .timelineBox__mainttl {
    margin-top: 8px;
    font-size: 1.8rem;
  }
  .timelineBox__overview {
    margin-top: 20px;
    font-size: 1.2rem;
  }
  .timelineBox__overviewList__head {
    margin-right: 10px;
  }
  .timelineBox__image {
    margin-top: 26px;
  }
  .timelineBox .button {
    margin-right: auto;
    margin-left: auto;
  }
}

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

** recruiting
==================================================*/
.recruiting {
  margin-top: 120px;
  padding-bottom: 80px;
}

.recruiting a {
  display: block;
  position: relative;
}

.recruiting a img {
  transition: .25s;
}

.recruiting a:hover img {
  opacity: .75;
}

.recruiting a .more {
  position: absolute;
  right: -40px;
  bottom: 60px;
  width: 82px;
}

/* ボタン共通設定 */
.btn-recruit {
  position: relative;
  display: inline-block;
  transition: all 0.2s ease;
}

.btn-recruit__inner {
  /*ボタンの中のテキスト*/
  position: relative;
  z-index: 2;
  /*z-indexの数値をあげて文字を背景よりも手前に表示*/
  /*テキストの形状*/
  display: block;
  padding: 44px 50px;
  background-image: url("../images/btn-recruit_base.png");
  background-repeat: no-repeat;
  background-size: cover;
  color: #333;
  /*アニメーションの指定*/
  transition: all 0.3s ease;
}

@media (max-width: 991px) {
  .btn-recruit__inner {
    padding: 30px 40px;
  }
}

@media (max-width: 767px) {
  .btn-recruit__inner {
    padding: 20px 30px;
  }
}

.btn-recruit__inner::after {
  position: absolute;
  right: 40px;
  bottom: -20px;
  display: block;
  width: 296px;
  height: 220px;
  content: "";
  background-image: url("../images/btn-recruit__circle-image.png");
  background-repeat: no-repeat;
  background-size: contain;
}

@media (max-width: 1199px) {
  .btn-recruit__inner::after {
    right: 10px;
  }
}

@media (max-width: 991px) {
  .btn-recruit__inner::after {
    width: 240px;
    height: 178px;
    right: 0;
    bottom: -10px;
  }
}

@media (max-width: 767px) {
  .btn-recruit__inner::after {
    width: 200px;
    height: 150px;
    right: 10px;
  }
}

@media (max-width: 575px) {
  .btn-recruit__inner::after {
    top: -54px;
    bottom: initial;
    right: 10px;
    width: 40%;
  }
}

.btn-recruit__head {
  font-size: 2.2rem;
  font-weight: bold;
}

@media (max-width: 767px) {
  .btn-recruit__head {
    font-size: 1.8rem;
  }
}

.btn-recruit__txt {
  margin-top: 16px;
  font-size: 1.5rem;
  line-height: 1.68;
}

@media (max-width: 767px) {
  .btn-recruit__txt {
    margin-top: 8px;
    font-size: 1.4rem;
  }
}

.btn-recruit__slide {
  position: absolute;
  right: 40px;
  bottom: 20px;
  z-index: 100;
}

.btn-recruit__slide::after {
  content: "";
  position: absolute;
  left: 0;
  display: block;
  width: 80px;
  height: 1px;
  background: #777;
  transition: .3s;
}

@media (max-width: 1199px) {
  .btn-recruit__slide {
    right: 20px;
  }
}

@media (max-width: 991px) {
  .btn-recruit__slide {
    right: 8px;
  }
  .btn-recruit__slide::after {
    width: 60px;
  }
}

@media (max-width: 767px) {
  .btn-recruit__slide {
    bottom: 10px;
    right: 10px;
  }
}

@media (max-width: 575px) {
  .btn-recruit__slide {
    right: 40px;
    bottom: 8px;
  }
}

.btn-recruit__wrap {
  position: relative;
}

.btn-recruit__wrap::after {
  content: "";
  position: absolute;
  bottom: -50px;
  right: 0;
  display: block;
  width: 378px;
  height: 270px;
  background-image: url("../images/btn-recruit__brossom-image.png");
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 100;
  transition: .3s;
}

@media (max-width: 1199px) {
  .btn-recruit__wrap::after {
    right: -20px;
  }
}

@media (max-width: 991px) {
  .btn-recruit__wrap::after {
    right: 10px;
    width: 300px;
    height: 214px;
  }
}

@media (max-width: 767px) {
  .btn-recruit__wrap::after {
    width: 240px;
    height: 170px;
    bottom: -30px;
    right: -20px;
  }
}

@media (max-width: 575px) {
  .btn-recruit__wrap::after {
    bottom: initial;
    top: -60px;
    width: 40%;
    right: 0;
  }
}

.pushright:hover .btn-recruit__wrap::after {
  opacity: 0.5;
}

/*== 右下に押し込まれる（立体が平面に） */
/*影の設定*/
.pushright:before {
  content: "";
  /*絶対配置で影の位置を決める*/
  position: absolute;
  z-index: -1;
  top: 5px;
  left: 6px;
  /*影の形状*/
  width: 98%;
  height: 100%;
  background-color: #FFC8DF;
}

/*hoverの際にX・Y軸に4pxずらす*/
.pushright:hover .btn-recruit__inner {
  transform: translate(6px, 5px);
}

.pushright:hover .btn-recruit__slide::after {
  transform: translate(6px, 0);
}

.reportUnder_content {
  margin-top: 80px;
  padding-bottom: 140px;
}

.reportUnder_ttl {
  margin-top: 50px;
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 1.6;
}

.reportUnder_ttl + * {
  margin-top: 40px;
}

.reportUnder p + p {
  margin-top: 40px;
}

.reportUnder_subImage figure {
  margin-top: 60px;
}

.reportUnder_subImage + * {
  margin-top: 60px;
}

.reportUnder_about {
  margin-top: 80px;
  background: #fff;
  padding: 46px 60px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

.reportUnder_aboutTtl {
  font-size: 2.2rem;
  font-weight: 500;
}

.reportUnder_aboutList {
  display: flex;
  flex-wrap: wrap;
  margin-top: 24px;
}

.reportUnder_aboutList_head {
  width: 76px;
  margin-right: 18px;
  text-align-last: justify;
  text-justify: inter-ideograph;
}

.reportUnder_aboutList_content {
  width: calc(100% - 76px - 18px);
}

.reportUnder .buttonArea {
  margin-top: 100px;
}

@media (max-width: 767px) {
  .reportUnder_content {
    margin-top: 50px;
    padding-bottom: 80px;
  }
  .reportUnder_ttl {
    margin-top: 40px;
    font-size: 2.0rem;
  }
  .reportUnder_ttl + * {
    margin-top: 30px;
  }
  .reportUnder p + p {
    margin-top: 20px;
  }
  .reportUnder_subImage figure {
    margin-top: 30px;
  }
  .reportUnder_subImage + * {
    margin-top: 30px;
  }
  .reportUnder_about {
    margin-top: 50px;
    padding: 30px;
  }
  .reportUnder_aboutTtl {
    font-size: 1.8rem;
  }
  .reportUnder_aboutList {
    margin-top: 16px;
    font-size: 1.2rem;
  }
  .reportUnder_aboutList_head {
    width: 50px;
    margin-right: 10px;
  }
  .reportUnder_aboutList_content {
    width: calc(100% - 50px - 10px);
  }
  .reportUnder .buttonArea {
    margin-top: 50px;
  }
}

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

** 下層ページ
==================================================*/
.aboutProject {
  padding: 110px 0;
  background-color: #FDF6FA;
}

.aboutProject_lead p {
  text-align: center;
}

.aboutProject_lead span {
  display: block;
}

.aboutProject_image {
  margin-top: 60px;
}

.aboutProject_content p {
  letter-spacing: 0.1em;
}

@media (max-width: 767px) {
  .aboutProject {
    padding: 60px 0;
  }
  .aboutProject_image {
    margin-top: 30px;
  }
}

@media screen and (max-width: 374px) {
  .aboutProject_lead span {
    display: inline;
  }
}

.reportTop_mainimg {
  margin-top: 30px;
}

.reportTop_list {
  padding: 110px 0;
  background: #FDF6FA;
}

.reportTop .timelineBox {
  padding-top: 36px;
}

.reportTop .timelineBox_inner {
  display: flex;
  flex-wrap: wrap;
}

.reportTop .timelineBox__year {
  margin-bottom: 0;
}

.reportTop .timelineBox_item {
  position: relative;
  display: flex;
  align-items: center;
  width: 470px;
  padding: 10px;
  margin-top: 36px;
  background: #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.11);
  transition: all .25s;
}

.reportTop .timelineBox_item:nth-child(odd) {
  margin-right: 46px;
}

.reportTop .timelineBox_item:hover {
  box-shadow: 0 3px 16px rgba(134, 49, 49, 0.26);
}

.reportTop .timelineBox_item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 38px;
  height: 2px;
  background: #E26397;
}

.reportTop .timelineBox_thumb {
  width: 150px;
  margin-right: 24px;
  display: grid;
  align-content: center;
  flex-shrink: 0;
}

.reportTop .timelineBox_thumb img {
  width: 100%;
  height: auto;
}

.reportTop .timelineBox_date {
  font-size: 1.2rem;
  font-family: 'Roboto', sans-serif;
  color: #666;
}

.reportTop .timelineBox_ttl {
  margin-top: 4px;
  font-size: 1.4rem;
}

@media (max-width: 1199px) {
  .reportTop .timelineBox_item {
    width: 48%;
  }
  .reportTop .timelineBox_item:nth-child(odd) {
    margin-right: 4%;
  }
}

@media (max-width: 767px) {
  .reportTop_mainimg {
    margin-top: 10px;
  }
  .reportTop_list {
    padding: 60px 0;
  }
  .reportTop .timelineBox_item {
    width: 100%;
    margin-top: 20px;
  }
  .reportTop .timelineBox_item:nth-child(odd) {
    margin-right: 0;
  }
  .reportTop .timelineBox_thumb {
    width: 33%;
    margin-right: 10px;
  }
}

.reportTop .caption {
  font-size: 12px;
  margin-top: 10px;
}

.faq {
  padding: 110px 0;
}

.faqList_q {
  position: relative;
  width: 100%;
  padding: 12px 60px 12px 30px;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.6;
  background-color: #fff;
  cursor: pointer;
  transition: all .25s;
}

.faqList_q::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 33px;
  height: 2px;
  background: #E26397;
}

.faqList_q::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  display: block;
  width: 16px;
  height: 16px;
  background-image: url(../images/icon_plus.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transition: all .25s;
}

.faqList_q.closed::after {
  background-image: url(../images/icon_minus.svg);
}

.faqList_a {
  display: none;
  padding: 20px 12px 0;
}

.faqList_a + .faqList_q {
  margin-top: 30px;
}

@media (max-width: 767px) {
  .faq {
    padding: 60px 0;
  }
  .faqList_q {
    font-size: 1.6rem;
    padding-left: 16px;
    padding-right: 50px;
  }
  .faqList_q::after {
    right: 16px;
    width: 12px;
    height: 12px;
  }
  .faqList_a {
    padding-top: 16px;
    font-size: 1.4rem;
  }
  .faqList_a + .faqList_q {
    margin-top: 20px;
  }
}

.please {
  padding: 120px 0;
  background-image: url(../images/please_bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right;
}

.please_inner {
  padding: 70px 20px;
  background: #fff;
  opacity: .9;
}

.please_box {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
}

.please_item {
  width: 25%;
}

.please_item + .please_item {
  margin-left: 5%;
}

.please_icon {
  width: 80px;
  height: 70px;
  margin: auto;
}

.please_txt {
  margin-top: 20px;
}

@media (max-width: 767px) {
  .please {
    padding: 60px 0;
  }
  .please_inner {
    padding: 30px 20px;
  }
  .please_item {
    display: flex;
    width: 100%;
  }
  .please_item + .please_item {
    margin-left: 0;
    margin-top: 20px;
  }
  .please_icon {
    width: 16%;
    height: auto;
    margin-right: 2%;
  }
  .please_icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .please_txt {
    width: 82%;
    margin-top: 0;
  }
}

.contact {
  position: relative;
  padding: 80px 0;
  color: #fff;
  text-align: center;
  background: #E26397;
  z-index: 1000;
}

.contactTtl {
  font-size: 2.6rem;
  font-weight: bold;
}

.contactTtl + * {
  margin-top: 40px;
}

.contact .button {
  width: 100%;
  margin-top: 40px;
  padding-left: 0;
  padding-right: 0;
}

.contact_icon {
  display: inline-block;
  width: auto;
  height: 20px;
  margin-right: 6px;
  vertical-align: text-bottom;
}

@media (max-width: 767px) {
  .contact {
    padding: 60px 0;
  }
  .contactTtl {
    font-size: 2.0rem;
  }
  .contactTtl + * {
    margin-top: 30px;
  }
  .contact_lead {
    font-size: 1.4rem;
  }
  .contact .button {
    margin-top: 30px;
  }
}
