@charset "UTF-8";

/* ----------------------------------------------------------------
Intro Overlay
---------------------------------------------------------------- */
body.no-scroll {
  overflow: hidden;
}
#intro-overlay.is-hide {
  opacity: 0;
  pointer-events: none;
}
#intro-overlay{
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 2000;
  display: flex;                 /* ← ここを flex に */
  align-items: center;           /* 縦中央 */
  justify-content: center;       /* 横中央 */
  opacity: 1;
  transition: opacity 0.6s ease;
  width: 100vw;
  height: 100vh;
  /* iOS セーフエリア対応（ノッチ環境でのズレ防止）*/
  padding: env(safe-area-inset-top) env(safe-area-inset-right)
           env(safe-area-inset-bottom) env(safe-area-inset-left);
  box-sizing: border-box;
}

#intro-overlay .intro-center{
  /* ラッパーをフルサイズ化して“完全中央”を保証 */
  width: 100%;
  max-width: none;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;       /* ここで中央に固定 */
  text-align: center;            /* iOSの縦書きでの崩れ対策に一応付けておく */
}

#intro-overlay .intro-text{
  margin: 0;                     /* p のデフォルト余白を無効化（片寄り防止） */
  font-weight: 700;
  font-size: clamp(28px, 6vw, 56px);
  letter-spacing: 0.06em;
  filter: blur(14px);
  writing-mode: vertical-rl;     /* 縦書き */
  text-orientation: mixed;
  opacity: 0;
  transform: translateY(6px);
  transition: filter 1.2s ease, opacity 1.2s ease, transform 1.2s ease;
  -webkit-font-smoothing: antialiased; /* 微調整（任意） */
}
#intro-overlay .intro-text.is-sharp {
  filter: blur(0);
  opacity: 1;
  transform: translateY(0);
}
#KV {
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
#KV.kv-show {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  #intro-overlay, #intro-overlay .intro-text, #KV {
    transition: none !important;
  }
}
/* ----------------------------------------------------------------
bg_area
---------------------------------------------------------------- */
#bg_area {
  width: 100%;
  height: 100vh;
  position: fixed;
  z-index: -1;
  transform: scale(1);
  opacity: 0.7;
  transition: transform 0.2s ease-out, opacity 0.2s ease-out;
}
#bg_area .bg01 {
  background: url("../img/bg_parts_002.png") center center no-repeat;
  background-size: cover;
  width: 100%;
  height: 100vh;
  position: absolute;
}
#bg_area .bg02 {
  background: url("../img/bg_parts_001.png") center center no-repeat;
  background-size: contain;
  width: 85%;
  height: 85%;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 0;
  right: 0;
}
@media screen and (max-width: 767px) {
  /*spのみ*/
#bg_area .bg01 {
  background: url("../img/bg_parts_002_sp.png") center center no-repeat;
	background-size: cover;
}
#bg_area .bg02 {
  background: url("../img/bg_parts_001_sp.png") center center no-repeat;
	background-size: cover;
	        width: 100%;
}
}
/* ----------------------------------------------------------------
KV
---------------------------------------------------------------- */
#kv {
  width: 100%;
  height: 100vh;
  position: relative;
}
#kv:before, #kv:after {
  content: "";
  position: absolute;
  width: 14%;
  height: 10%;
}
#kv:before {
  background: url("../img/wakuwaku.png") no-repeat 0 0;
  background-size: contain;
  top: 15%;
  right: 15%;
}
#kv:after {
  background: url("../img/dokidoki.png") no-repeat 0 0;
  background-size: contain;
  bottom: 15%;
  left: 15%;
}
/* ふわふわ浮かぶアニメーション */
@keyframes floatY {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}
/* #kv:before と #kv:after に共通で適用 */
#kv::before, #kv::after {
  animation: floatY 4s ease-in-out infinite;
}
/* 少し動きに差をつけて自然に */
#kv::after {
  animation-delay: 2s;
}
#kv .inner .kv_bg01, #kv .inner .kv_bg02 {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 0;
  right: 0;
  z-index: 0;
}
#kv .inner .kv_bg01 {
  background: url("../img/kv_parts_002.png") center center no-repeat;
  background-size: contain;
  width: 60%;
  height: 60%;
}
#kv .inner .kv_bg02 {
  background: url("../img/kv_parts_001.png") center center no-repeat;
  background-size: contain;
  max-width: 1300px;
  width: 85%;
  height: 80%;
}
#kv .inner .inner_block {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 700px;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 55vw;
	min-width: 500px;
  height: auto;
}
#kv .inner .inner_block img {
  width: 100%;
}
#kv .inner .inner_block .main_txt {
  margin-bottom:2vh;
}
#kv .inner .inner_block .sub_txt {
  text-align: center;
}
#kv .inner .inner_block .sub_txt .txt_02 {
  display: flex;
  align-items: center;
}
#kv .inner .inner_block .sub_txt .txt_02 .blue_box {
  background: #77c1db;
  margin: 0 0.5rem;
}
/* ===== 段階表示（CSS変数でアニメ上乗せ） ===== */
/* 初期値（非表示状態） */
#bg_area, #kv .kv_bg01, #kv .kv_bg02, #kv .inner_block {
  --reveal-op: 0; /* 不透明度 */
  --reveal-ty: 8px; /* Y方向の微移動 */
  --reveal-scale: 0.98; /* わずかに縮小 */
  opacity: var(--reveal-op);
  transition: opacity 600ms ease, transform 600ms ease;
  will-change: opacity, transform;
}
/* 1) #bg_area, kv_bg01/02 のトランスフォーム */
#bg_area, #kv .kv_bg01, #kv .kv_bg02 {
  transform: translateY(var(--reveal-ty)) scale(var(--reveal-scale));
}
/* 2) inner_block は「センタリング用 transform」を保持しつつ上乗せ */
#kv .inner_block {
  position: absolute;
  top: 50%;
  left: 50%;
  /* センタリング用は固定、上乗せは CSS 変数で */
  transform:
    translate(-50%, -50%) translateY(var(--reveal-ty)) scale(var(--reveal-scale));
}
/* 表示時（クラス付与で変数を書き換える） */
#bg_area.is-show, #kv .kv_bg01.is-show, #kv .kv_bg02.is-show, #kv .inner_block.is-show {
  --reveal-op: 1;
  --reveal-ty: 0px;
  --reveal-scale: 1;
  opacity: var(--reveal-op);
}
/* ===== #kv の左右デコ（:before / :after）も同タイミングで出す ===== */
/* 既存の before/after の背景・位置指定はそのまま活かし、アニメだけ追加 */
#kv::before, #kv::after {
  opacity: 0;
  transform: translateY(8px) scale(0.98);
  transition: opacity 600ms ease, transform 600ms ease;
}
/* inner_block と同タイミングで ON にするためのフラグ */
#kv.decor-on::before, #kv.decor-on::after {
  opacity: 1;
  transform: none;
}
@media screen and (min-width: 768px) {
  /*pcのみ*/
	#kv .inner .inner_block .sub_txt .txt_01 {
    font-size: clamp(1rem, 3vw, 2rem);
}
#kv .inner .inner_block .sub_txt .txt_01 span {
    font-size: clamp(1.5rem, 6.5vw, 5rem);
}
#kv .inner .inner_block .sub_txt .txt_02 {
    font-size: clamp(1rem, 2.3vw, 1.8rem);
}
}
@media screen and (max-width: 767px) {
  /*spのみ*/
	#kv .inner .kv_bg02 {
    background: url("../img/kv_parts_001_sp.png") center center no-repeat;
    background-size: contain;
}
	#kv .inner .kv_bg01 {
    background: url("../img/kv_parts_002_sp.png") center center no-repeat;
    background-size: contain;
	    width: 80%;
    height: 80%;
}
	#kv .inner .inner_block{
		    width: 80vw;
    min-width: 300px;
	}
	#kv .inner .inner_block .sub_txt .txt_01 {
    font-size: 1.3rem;
}
	#kv .inner .inner_block .sub_txt .txt_01 span {
    font-size: 3rem;
}
#kv .inner .inner_block .sub_txt .txt_02 {
    font-size: 1.3rem;
}
#kv .inner .inner_block .main_txt {
    margin-bottom: 3vh;
}
#kv:before, #kv:after {
    width: 30%;
    height: 11%;
}
#kv:before {
    top: 10%;
    right: 5%;
}
#kv:after {
    bottom: 3%;
    left: 5%;
}
}
/* ----------------------------------------------------------------
KV feedin
---------------------------------------------------------------- */
#kv {
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
#kv.kv-show {
  opacity: 1;
  transform: none;
}
/* ----------------------------------------------------------------
KV txt
---------------------------------------------------------------- */
.blue_box {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  text-align: center;
	    padding: 0.2rem 0.4rem;
}

.blue_box_txt {
  display: inline-block;
  white-space: nowrap;
  transition: opacity 0.4s ease;
}
@media screen and (min-width: 768px) {
	.blue_box{
		font-size: clamp(1rem, 2.3vw, 1.8rem);
	}
}
@media screen and (max-width: 767px) {
	/*spのみ*/
#kv .inner .inner_block .sub_txt .txt_02 {
    flex-wrap: wrap;
    justify-content: center;
}
	#kv .inner .inner_block .sub_txt .txt_02 p{
		display: block;
		width: 100%;
	}
.blue_box {
    font-size: 1.4rem;
}
}
/* ----------------------------------------------------------------
about
---------------------------------------------------------------- */
#about {
  margin-bottom: 80px;
}
#about .inner {
  max-width: 1000px;
  width: 95%;
  margin: 0 auto;
  background: #77c1dbd6;
  border-radius: 10px;
  padding: 50px 50px 0;
  text-align: center;
}
#about .inner .box {
  position: relative;
}
#about .inner .box:before, #about .inner .box:after {
  position: absolute;
  content: "";
}
#about .inner .box:before {
  background: url("../img/top_paint_001.png")0 0 no-repeat;
  background-size: contain;
  width: 347px;
  height: 280px;
  right: -20%;
}
#about .inner .box:after {
  background: url("../img/top_paint_002.png")0 0 no-repeat;
  background-size: contain;
  width: 350px;
  height: 300px;
  bottom: 30px;
  left: -20%;
}
#about .inner .box .tl {
  max-width: 380px;
  width: 100%;
  margin: 0 auto 60px;
}
#about .inner .box .main_txt {
  text-align: center;
  color: #fff;
  font-size: 1.6rem;
  margin-bottom: 80px;
}
#about .inner .box .main_txt span {
  color: #ffe45a;
  position: relative;
}
#about .inner .box .main_txt span:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 5px;
  background: #bbe1fb;
  bottom: 0;
}
#about .inner .box .under_img {
  width: 380px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
	/*spのみ*/
#about {
    margin-bottom: 40px;
    padding-top: 9%;
}
#about .inner {
    padding: 20px 20px 0;
}
#about .inner .box:before {
    width: 104px;
    height: 86px;
    right: calc(-20px + -4%);
    top: -9%;
}
#about .inner .box:after {
    width: 105px;
    height: 95px;
    bottom: 0;
    left: calc(-20px + -4%);
}
#about .inner .box .under_img {
    width: 150px;
}
#about .inner .box .main_txt {
    font-size: 1.1rem;
    margin-bottom: 30px;
}
#about .inner .box .tl {
    max-width: 180px;
    width: 100%;
    margin: 0 auto 30px;
}
#about .inner .box .main_txt span:before {
    height: 3px;
}
}
/* ----------------------------------------------------------------
service
---------------------------------------------------------------- */
#service {
  max-width: 800px;
  width: 95%;
  margin: 0 auto 80px;
}
#service .h2_area h2 span {
  color: #00a9f8;
}
#service .service_box > .box {
  background: #a7d7e8;
  padding: 30px 60px 50px;
  margin-bottom: 40px;
  border-radius: 10px;
}
#service .service_box .box .tl_area .en_txt {
  font-family: "Monomaniac One", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 6.2rem;
  line-height: 1;
  opacity: 0.8;
  color: #fff;
}
#service .service_box .box .tl_area .j_txt {
  font-size: 2.4rem;
  margin-top: -29px;
  position: relative;
  color: #008ecc;
}
#service .service_box .box .txt_area {
  margin-top: 20px;
  display: flex;
  align-items: flex-start;
}
#service .service_box .box .txt_area .txt {
  width: 100%;
  font-size: 1.5rem;
  letter-spacing: 0.02rem;
  line-height: 1.8;
}
#service .service_box > .box.b_01 .txt {
  margin-right: 3%;
}
#service .service_box .box .txt_area .img {
  width: 50%;
}
#service .service_box .box.b_01 .txt_area {
  width: 100%;
}
#service .service_box > .box.b_02 {
  background: #ffc7c9;
}
#service .service_box > .box.b_02 .tl_area .j_txt {
  color: #ff8286;
}

@media screen and (max-width: 767px) {
	/*spのみ*/
#service {
    margin: 0 auto 40px;
}
#contents #service .service_box > .box {
    padding: 25px 20px;
    margin-bottom: 20px;
}
#contents #service .service_box .box .tl_area .en_txt {
    font-size: 3rem;
}
#contents #service .service_box .box .tl_area .j_txt {
    font-size: 1.2rem;
    margin-top: -15px;
}
#contents #service .service_box .box .txt_area {
    width: 100%  !important;
    display: block;
    margin-top: 10px;
	        margin-left: 0;
}
#contents #service .service_box > .box .txt {
    margin-right: 0;
    width: 100% !important;
    font-size: 1rem;
}
#contents #service .service_box .box .txt_area .img {
    width: 100% !important;
}
#service .service_box > .box.b_02 .tl_area {
    text-align: left;
}
}
/* ----------------------------------------------------------------
works
---------------------------------------------------------------- */
#works {
  background: #fff;
  padding: 250px 0 150px;
  position: relative;
}
#works .h2_area h2 span {
  color: #f2ce00;
}
#works:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url("../img/works_bg.png")center center no-repeat;
  background-size: cover;
  top: 0;
}
#works .inner {
  max-width: 1000px;
  width: 95%;
  margin: 0 auto;
	position: relative;
}
#works .innerbox {
  width: calc(50vw + 500px);
  max-width: none;
  flex: 0 0 auto;
  overflow: visible;
  display: flex;
}
#works .inner .box01 {
  width: 265px;
  margin-right: 100px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
#works .inner .box01 .btn a {
  font-size: 1.1rem;
  background: #f2ce00;
  max-width: 210px;
}
#works .inner .box01 .btn a:hover {
  background: #f2c200;
}
#works .inner .box01 .btn a:before {
  background: url("../../common/img/paint_b.svg") 0 0 no-repeat;
  right: -39px;
  width: 66px;
  height: 59px;
}
#works .inner .box01 .btn a:after {
  background: url(../../common/img/arrow_w.svg) 0 0 no-repeat;
  right: -12px;
  width: 20px;
  height: 14px;
}
#works .inner .box02 {
  width: calc(100% - 315px);
  position: relative;
}
#works .inner .box02 li .img {
    border: solid 5px #ffe45a;
    aspect-ratio: 12 / 9;
}
#works .slick-slide img {
    display: block;
    object-fit: cover;
    height: 100%;
	    width: 100%;
}
#works .inner  li.works_li > a:hover{
	    text-decoration: underline;
    text-decoration-color: #57b6f7;
}
#works .inner .box02 li .day p {
  color: #57b6f7;
  margin-top: 5px;
}
#works .inner .box02 li p.tl {
  color: #57b6f7;
  font-size: 1.4rem;
}
#works .inner .box02 li .tag ul {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 5px;
}
#works .inner .box02 li .tag a {
  font-size: 0.8rem;
  color: #fff;
  padding: 5px 7px;
  background: #b6b6b6;
	transition: background-color 0.3s 
ease;
  border-radius: 20px;
  text-align: center;
  display: block;
}
#works .inner .box02 li .tag a:hover {
  text-decoration: none;
  background: #979797;
}
@media screen and (max-width: 767px) {
	/*spのみ*/
#works {
    padding: 40px 0 40px;

}
#works:before {
    background: url("../img/works_bg_sp.png")top center no-repeat;
    background-size: cover;
    z-index: 0;
}
#works .innerbox {
    width: 100%;
    display: block;
}
#works .inner .box01 {
    width: 100%;
    margin: 0 auto;
}
#works .btn a {
  background: #f2ce00;
}
#works .btn a:hover {
  background: #f2c200;
}
#works .btn a:before {
  background: url("../../common/img/paint_b.svg") 0 0 no-repeat;
  right: -39px;
  width: 66px;
  height: 59px;
}
#works .btn a:after {
  background: url(../../common/img/arrow_w.svg) 0 0 no-repeat;
  right: -12px;
  width: 20px;
  height: 14px;
}
#works .inner .box02 {
    width: 100%;
}
}
/* ----------------------------------------------------------------
slick
---------------------------------------------------------------- */
.slick-slide {
  margin: 0 15px;
}
.arrow_box {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 20px 0 0;
  position: absolute;
  top: 50%;
  width: 97%;
  margin-top: -20px;
}
.prev-arrow, .next-arrow {
  display: block;
  width: 50px;
  height: 50px;
  background: #57b6f7;
  border-radius: 50%;
  transition: all .3s ease;
  cursor: pointer;
  position: absolute;
}
.prev-arrow {
  transform: rotate(180deg);
  margin-right: 20px;
  left: 0;
}
.next-arrow {
  right: 0;
}
.prev-arrow::before, .next-arrow::before {
  content: "";
  position: absolute;
  background: url(../../common/img/arrow_w.svg) 0 0 no-repeat;
  right: 14px;
  width: 20px;
  height: 14px;
  background-size: contain;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media screen and (max-width: 767px) {
	/*spのみ*/
.prev-arrow, .next-arrow {
    width: 40px;
    height: 40px;
}
.arrow_box {
    margin: 20px auto 0;
    top: 50%;
    width: 100%;
    margin-top: -37px;
}
.prev-arrow::before, .next-arrow::before {
    right: 8px;
    width: 20px;
    height: 12px;
}
}
/* ----------------------------------------------------------------
news
---------------------------------------------------------------- */
#news {
  background: #8acadf;
  position: relative;
  padding: 30px 0 50px;
}
#news:before {
  position: absolute;
  content: "";
  background: url("../img/kv_parts_002.png")center center no-repeat;
  max-width: 1100px;
  width: 100%;
  height: 100%;
  background-size: contain;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 0;
  opacity: 0.1;
}
#news .inner {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}
#news .h2_area {
  text-align: center;
  color: #fff;
}
#news .news_list > ul > li {
  border-bottom: solid 1px #c6e7f5;
  padding: 20px 30px;
}
#news .news_list > ul > li a {
  display: block;
  color: #fff;
}
#news .news_list .data {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}
#news .news_list .day {
  color: #ffe45a;
  font-size: 1.6rem;
  margin-right: 10px;
  letter-spacing: 0.2rem;
}
#news .news_list .day span {
  font-size: 1rem;
}
#news .news_list .tag ul {
  display: flex;
  gap: 5px;
}
#news .news_list .tag a {
  font-size: 0.9rem;
  color: #fff;
  padding: 2px 15px;
  background: #b6b6b6;
transition: background-color 0.3s 
ease;
  border-radius: 20px;
  text-align: center;
  display: inline-block;
}
#news .news_list .tag a:hover{
	background: #9d9d9d;
	text-decoration: none;
}
#news .news_list > ul > li > a {
  font-size: 1.5rem;
  color: #fff;
}
#news .btn a {
  background: #fff;
  color: #57b6f7;
}
#news .btn a:hover{
	background: #cde8e5;
}
@media screen and (max-width: 767px) {
	/*spのみ*/
#news {
    padding: 30px 5% 40px;
}
#news .h2_area {
    margin-bottom: 0;
}
#news:before {
    background: url("../img/kv_parts_002_sp.png")center center no-repeat;
    background-size: contain;
    opacity: 0.1;
}
#news .news_list > ul > li {
    padding: 20px 0;
}
#news .news_list .data {
    margin-bottom: 5px;
}
#news .news_list .day {
    font-size: 1.3rem;
    margin-right: 0;
	margin-bottom: 5px;
}
#news .news_list .data {
    margin-bottom: 5px;
    display: block;
    align-items: center;
}
#news .news_list .tag a {
    font-size: 0.8rem;
}
#news .news_list > ul > li > a {
    font-size: 1rem;
}
#news .news_list > ul > li {
    padding: 15px 0;
}
}
/* ----------------------------------------------------------------
company
---------------------------------------------------------------- */
#company {
  background: #fff;
  padding: 50px 0 80px;
  position: relative;
}
#company:before {
  content: "";
  position: absolute;
  top: 0;
  background: url("../img/illust_008.png")0 0 no-repeat;
  width: 180px;
  height: 400px;
  background-size: contain;
  right: 20%;
}
#company .h2_area h2 span {
  color: #ff9187;
}
#company > .inner {
  max-width: 1000px;
  width: 95%;
  margin: 0 auto;
}
#company .flex_box {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
#company .flex_box .box01 {
  width: 570px;
}
#company .flex_box .box02 {
  width: 430px;
}
#company .flex_box .box01 .midashi {
  font-size: 1.2rem;
  line-height: 1.8;
  width: calc(100% + 90px);
}
#company .flex_box .box01 .giyou {
  margin: 30px 0 0;
  padding: 60px 0;
  position: relative;
}
#company .flex_box .box01 .giyou dl {
  font-size: 1.1rem;
  display: flex;
  padding-bottom: 40px;
}
#company .flex_box .box01 .giyou dl.pd0 {
  padding-bottom: 0;
}
#company .flex_box .box01 .giyou:before {
  content: "";
  position: absolute;
  height: 100%;
  width: 1px;
  background: #ff9187;
  top: 0;
  left: 8.4rem;
}
#company .flex_box .box01 .giyou dt {
  margin-right: 3rem;
  width: 7rem;
  position: relative;
}
#company .flex_box .box01 .giyou dt:before {
  content: "";
  position: absolute;
  background: #ff9187;
  width: 13px;
  height: 13px;
  border-radius: 8px;
  top: 6px;
  left: 8rem;
}
#company .flex_box .box02 .img {
  position: relative;
}
#company .flex_box .box02 .txtbox {
    padding: 20px 15px;
    margin-top: 10px;
    position: relative;
    background: #e6f4f9;
    border-radius: 10px;
}
#company .flex_box .box02 .txtbox .name {
  margin-bottom: 13px;
}
#company .flex_box .box02 .txtbox .name .main_name {
  font-size: 1.6rem;
}
#company .flex_box .box02 .txtbox .name .main_name span {
  color: #969696;
  font-size: 0.9rem;
  margin-left: 10px;
}
#company .flex_box .box02 .txtbox .txt {
  font-size: 0.9rem;
}
@media screen and (max-width: 767px) {
	/*spのみ*/
#company {
    padding: 30px 0 40px;
}
#company:before {
    width: 110px;
    height: 185px;
    right: 5%;
}
#company .flex_box {
    display: block;
}
#company .flex_box .box01 {
    width: 100%;
}
#company .flex_box .box01 .midashi {
    font-size: 1rem;
    width: 100%;
}
#company .flex_box .box01 .giyou {
    margin: 20px 0 0;
    padding: 30px 0;
}
#company .flex_box .box01 .giyou dl {
    padding-bottom: 20px;
}
#company .flex_box .box02 {
    width: 100%;
	margin-top: 20px;
}
#company .flex_box .box02 .txtbox {
    padding: 20px 15px;
}
}