@charset "UTF-8";
/*! --------------------------------------------------------------
　　このCSSファイルは .scssファイルからコンパイルされたものです。
　　修正する際はscssファイルを編集するように注意してください。
--------------------------------------------------------------- */
/* Theme Name: res */
/* 外部ファイル／フォントの読み込み　
============================================================================ */
/* 基本的なクラスや要素の設定　
============================================================================ */
.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

li {
  list-style: none;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.min {
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-weight: 500;
}

table {
  table-layout: fixed;
  border-collapse: collapse;
  border-spacing: 0;
}

td input {
  max-width: 100%;
}

i,
em {
  font-style: normal;
}

/* SCSS メディアクエリ */
/* フォントサイズをremに変換するmixin */
.inner {
  width: 100%;
  position: relative;
}
@media (min-width: 1200px) {
  .inner {
    max-width: 1240px;
    padding: 0 20px;
    margin: 0 auto;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .inner {
    padding: 0 4vw;
  }
}
@media (max-width: 767px) {
  .inner {
    padding: 0 6.25%;
  }
}

/* フレックスボックス */
/* 横幅の計算 */
/* ディレクター用コーディング（ディレクターが使うためのクラスを設定する場所）　　更新が必要な時以外はいじらない
==================================================================================================== */
.pc-only {
  display: inherit;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .pc-only {
    display: none;
  }
}
@media (max-width: 767px) {
  .pc-only {
    display: none;
  }
}

.tab-only {
  display: none;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .tab-only {
    display: inherit;
  }
}
@media (max-width: 767px) {
  .tab-only {
    display: none;
  }
}

.sp-only {
  display: none;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .sp-only {
    display: none;
  }
}
@media (max-width: 767px) {
  .sp-only {
    display: inherit;
  }
}

.pctab-only {
  display: inherit;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .pctab-only {
    display: inherit;
  }
}
@media (max-width: 767px) {
  .pctab-only {
    display: none;
  }
}

a.tellink {
  pointer-events: none;
}
@media (max-width: 767px) {
  a.tellink {
    pointer-events: inherit;
  }
}

/* サイト全体に関係するもの（基本のフォントサイズ、文字色、行間、Webフォントなど）　サイトごとに変更する
==================================================================================================== */
/* ルートのフォントサイズを変更したい場合ここから変更する */
@media (max-width: 767px) {
  :root {
    font-size: 4.26666vw !important;
  }
}

html,
body {
  font-size: 1rem;
  line-height: 2;
  color: #222;
  font-family: "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

html {
  overflow: auto;
}

body {
  overflow: hidden;
}

/* WebフォントGoogle　NotoSans JP　Regular:fw400／Medium:fw500／Bold:fw700 */
.noto {
  font-family: "Noto Sans JP", sans-serif;
}

/* WebフォントGoogle　Roboto　Medium:fw500／Bold:fw700 */
.robo {
  font-family: "Roboto", sans-serif;
}

/* WebフォントGoogle　KaushanScript　Regular:fw400 */
.kau {
  font-family: "Kaushan Script", cursive;
}

#wrap {
  background-color: #F4F3F3;
}

/* header部分　
============================================================================== */
header {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  align-content: stretch;
  position: relative;
  width: 100%;
  z-index: 3;
}
@media (max-width: 767px) {
  header {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    align-content: stretch;
  }
}
header .head_logo {
  padding: 0.2rem 1rem;
}
@media (max-width: 767px) {
  header .head_logo {
    width: 84vw;
    height: 16vw;
    padding: 0.2rem 0 0.2rem 4vw;
    display: flex;
    align-items: center;
  }
}
header .head_logo a:hover {
  opacity: 0.8;
}
@media (max-width: 767px) {
  header .head_logo img {
    width: 50vw;
  }
}
header .gnav {
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: unset;
  align-content: unset;
}
@media (min-width: 1200px) {
  header .gnav {
    min-width: 950px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  header .gnav {
    width: 100%;
    padding-left: 0.5rem;
    min-width: unset;
  }
}
@media (max-width: 767px) {
  header .gnav {
    display: none;
    width: 100%;
    position: absolute;
    bottom: unset;
    top: 16vw;
    padding-right: unset;
    z-index: 11;
  }
}
@media (max-width: 767px) {
  header .gnav.open {
    display: block;
  }
}
header .gnav .ul_left {
  width: 67%;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: unset;
  align-content: unset;
}
@media (max-width: 767px) {
  header .gnav .ul_left {
    width: 100%;
    display: block;
  }
}
header .gnav .ul_right {
  width: 25%;
}
@media (max-width: 767px) {
  header .gnav .ul_right {
    width: 100%;
    display: block;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  header .gnav > ul {
    width: 100%;
  }
}
@media (max-width: 767px) {
  header .gnav > ul {
    width: 100%;
    background-color: #fff;
  }
}
header .gnav > ul > li > a {
  width: 100%;
  height: 125px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  align-content: unset;
  padding: 1rem 0.5rem;
  position: relative;
}
@media (max-width: 767px) {
  header .gnav > ul > li > a {
    height: 10vh;
    text-align: center;
    padding: 0.5rem;
    border-bottom: 1px solid #ccc;
  }
}
header .gnav > ul > li > a:hover {
  transition: all 1s;
}
header .gnav > ul > li > a:hover p {
  color: #909090;
  transition: all 1s;
}
header .gnav > ul > li > a p {
  display: contents;
  width: 100%;
  font-size: 1rem;
  line-height: 1.3;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-align: center;
}
header .gnav > ul li.li_contact {
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: unset;
}
header .gnav > ul li.li_contact a {
  height: 4rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
}
@media (max-width: 767px) {
  header .gnav > ul li.li_contact a {
    padding: 0.5rem;
  }
}
header .gnav > ul li.li_contact a i {
  font-size: 1.125rem;
  color: #000;
  margin-right: 0.6rem;
}
@media (max-width: 767px) {
  header .gnav > ul li.li_contact a i {
    font-size: 0.9375rem;
    margin-right: 0.4rem;
  }
}
header .gnav > ul li.li_contact a p {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.05em;
}
@media (min-width: 768px) and (max-width: 1199px) {
  header .gnav > ul li.li_contact a p {
    font-size: 0.875rem;
  }
}
header .gnav > ul li.li_contact a:hover {
  background-color: #222;
  transition: all 1s;
}
header .gnav > ul li.li_contact a:hover i, header .gnav > ul li.li_contact a:hover p {
  color: #fff;
  transition: all 1s;
}
header .gnav > ul > li {
  position: relative;
}
header .gnav > ul > li p i {
  position: absolute;
  bottom: 1rem;
}
@media (max-width: 767px) {
  header .gnav > ul > li p i {
    bottom: 0;
  }
}
header .gnav > ul > li:hover ul.submenu {
  visibility: visible;
  opacity: 1;
}
header .gnav > ul > li ul.submenu {
  visibility: hidden;
  opacity: 0;
  z-index: 1;
  position: absolute;
  top: 100%;
  left: -2.5rem;
  width: calc(100% + 5rem);
  background-color: #333;
}
@media (max-width: 767px) {
  header .gnav > ul > li ul.submenu {
    visibility: visible;
    opacity: 1;
    position: static;
    width: 100%;
  }
}
header .gnav > ul > li ul.submenu > li a {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  align-content: unset;
  font-size: 0.875rem;
  color: #fff;
  font-weight: 400;
  padding: 0.6rem 0.5rem;
}
header .gnav > ul > li ul.submenu > li a:hover {
  background-color: #1c1c1c;
}

.icn_menu {
  width: 16vw;
  height: 16vw;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 13;
}
.icn_menu .menu-trigger,
.icn_menu .menu-trigger span {
  display: inline-block;
  transition: all 0.4s;
}
.icn_menu .menu-trigger {
  width: 100%;
  height: 100%;
  background-color: #000;
  padding: 1rem;
}
.icn_menu .menu-trigger .spanwrap {
  height: 100%;
  position: relative;
}
.icn_menu .menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 0.25rem;
  background-color: #fff;
  border-radius: 0.25rem;
}
.icn_menu .menu-trigger span:nth-of-type(1) {
  top: 0;
}
.icn_menu .menu-trigger span:nth-of-type(2) {
  top: calc(50% - 0.125rem);
}
.icn_menu .menu-trigger span:nth-of-type(3) {
  bottom: 0;
}
.icn_menu .menu-trigger.active {
  background-color: #ffffff;
}
.icn_menu .menu-trigger.active span {
  background-color: #000;
}
.icn_menu .menu-trigger.active span:nth-of-type(1) {
  transform: translateY(-50%) rotate(-45deg);
  top: 50%;
}
.icn_menu .menu-trigger.active span:nth-of-type(2) {
  opacity: 0;
}
.icn_menu .menu-trigger.active span:nth-of-type(3) {
  transform: translateY(-50%) rotate(45deg);
  top: 50%;
}

header {
  position: relative;
}
header .right {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  align-content: unset;
  flex-direction: column;
  position: absolute;
  top: 50vh;
  right: 2.5vw;
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  header .right {
    right: 1vw;
  }
}
header .right i {
  font-size: 1.625rem;
}
@media (max-width: 767px) {
  header .right i {
    font-size: 1.125rem;
  }
}
header .right .bar {
  height: 50px;
  border-left: 1px solid #222;
  margin: 1rem 0;
}
header .right small {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
  writing-mode: vertical-rl;
}
@media (max-width: 767px) {
  header .right small {
    font-size: 0.6875rem;
  }
}

/* .main　メインビジュアル
======================================================================================== */
.main_home {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  align-content: unset;
  height: calc(100vh - 125px);
  padding-bottom: 125px;
  position: relative;
}
@media (max-width: 767px) {
  .main_home {
    height: calc(100vh - 16vw);
    padding-bottom: 55vh;
  }
}
.main_home .txt {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  padding-left: 7.5vw;
  position: relative;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .main_home .txt {
    padding-left: 4vw;
  }
}
@media (max-width: 767px) {
  .main_home .txt {
    padding-left: 4vw;
  }
}
.main_home .txt h2 {
  font-size: 4.375rem;
  line-height: 1.43;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .main_home .txt h2 {
    font-size: 3.125rem;
  }
}
@media (max-width: 767px) {
  .main_home .txt h2 {
    font-size: 2rem;
  }
}
.main_home .txt p.txt_tilt {
  font-size: 4.375rem;
  color: #FFC107;
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: 0.05em;
  position: absolute;
  bottom: 0;
  right: -2em;
  transform: rotate(-20deg);
}
@media (min-width: 768px) and (max-width: 1199px) {
  .main_home .txt p.txt_tilt {
    font-size: 3.125rem;
  }
}
@media (max-width: 767px) {
  .main_home .txt p.txt_tilt {
    font-size: 2rem;
  }
}
.main_home .under {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.main_home .under p {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
  writing-mode: vertical-rl;
  margin-bottom: 60px;
  position: relative;
}
@media (max-width: 767px) {
  .main_home .under p {
    font-size: 0.8125rem;
  }
}
.main_home .under p::after {
  content: "";
  height: 50px;
  border-left: 1px solid #222;
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  animation: 2.1s animation01 infinite ease;
}
@keyframes animation01 {
  0% {
    height: 10px;
  }
  66% {
    height: 50px;
  }
}

/* 共通パーツ
============================================================================== */
.section_cmn {
  padding: 9rem 0;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .section_cmn {
    padding: 6rem 0;
  }
}
@media (max-width: 767px) {
  .section_cmn {
    padding: 3rem 0;
  }
}

.ttl_cmn {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-align: center;
  margin: 0 auto 3rem;
}
@media (max-width: 767px) {
  .ttl_cmn {
    margin-bottom: 1.5rem;
  }
}
.ttl_cmn em {
  display: block;
  font-size: 2.5rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .ttl_cmn em {
    font-size: 1.5rem;
  }
}
.ttl_cmn.color_w {
  color: #fff;
}
.ttl_cmn.color_w em {
  color: #fff;
}

.txt_cmn {
  font-size: 1rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .txt_cmn {
    font-size: 0.875rem;
    letter-spacing: 0;
  }
}

.btn_cmn {
  width: -moz-fit-content;
  width: fit-content;
}
.btn_cmn a {
  width: 300px;
  height: 64px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: unset;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.3;
  position: relative;
}
@media (max-width: 767px) {
  .btn_cmn a {
    width: 50vw;
    height: 3rem;
    font-size: 0.875rem;
  }
}
.btn_cmn a::after {
  content: "";
  width: 50px;
  border-bottom: 1px solid #222;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateX(50%);
}
.btn_cmn.tar {
  margin: 0 0 0 auto;
}
.btn_cmn.center {
  margin: 0 auto;
}
.btn_cmn.bg_y a {
  background-color: #000;
  color: #fff;
}
.btn_cmn.bg_y a:hover {
  background-color: #fff;
  color: #000;
  transition: all 0.3s ease;
}

.btn_transparent {
  width: -moz-fit-content;
  width: fit-content;
}
.btn_transparent a {
  color: #fff;
}
.btn_transparent a:hover {
  color: #fff;
  transition: all 1s;
}
.btn_transparent a:hover p::after {
  border-bottom: 1px solid #fff;
  transition: all 1s;
}
.btn_transparent a p {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  position: relative;
}
.btn_transparent a p::after {
  content: "";
  width: 50px;
  border-bottom: 1px solid #fff;
  position: absolute;
  top: 50%;
  left: calc(100% + 20px);
}

.side_cmn {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  align-content: unset;
}
@media (max-width: 767px) {
  .side_cmn {
    display: block;
  }
}
.side_cmn:not(:last-child) {
  margin-bottom: 5rem;
}
@media (max-width: 767px) {
  .side_cmn:not(:last-child) {
    margin-bottom: 3rem;
  }
}
.side_cmn .img {
  width: 40%;
}
@media (max-width: 767px) {
  .side_cmn .img {
    width: 100%;
    margin-bottom: 1rem;
  }
}
.side_cmn .txt {
  width: 35.4166666667%;
}
@media (max-width: 767px) {
  .side_cmn .txt {
    width: 100%;
  }
}
.side_cmn .txt p:not(:last-child) {
  margin-bottom: 3.5rem;
}
@media (max-width: 767px) {
  .side_cmn .txt p:not(:last-child) {
    margin-bottom: 1.5rem;
  }
}
.side_cmn.reverse {
  flex-direction: row-reverse;
}
.side_cmn:not(.reverse) h3, .side_cmn:not(.reverse) p {
  text-align: right;
}

/* 本体
======================================================================================== */
.home_mission p.txt01 {
  text-align: center;
  margin-bottom: 3rem;
}
@media (max-width: 767px) {
  .home_mission p.txt01 {
    margin-bottom: 2rem;
    text-align: left;
    font-size: 3.5vw;
  }
}
.home_mission ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: unset;
  align-content: unset;
  margin-bottom: 3rem;
}
@media (max-width: 767px) {
  .home_mission ul {
    margin-bottom: 2rem;
  }
}
.home_mission ul li {
  width: 31.1666666667%;
  background-color: #fff;
  padding: 1.6rem 3%;
}
@media (max-width: 767px) {
  .home_mission ul li {
    width: 100%;
    padding: 1.6rem 5%;
  }
}
@media (max-width: 767px) {
  .home_mission ul li:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.home_mission ul li .img {
  text-align: center;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .home_mission ul li .img {
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 767px) {
  .home_mission ul li .img img {
    max-width: 65vw;
  }
}
.home_mission ul li .txt {
  background-position: center top 30%;
  background-repeat: no-repeat;
}
.home_mission ul li .txt p.txt02 {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .home_mission ul li .txt p.txt02 {
    font-size: 1rem;
    line-height: 1.5;
  }
}
.home_mission ul li .txt h3 {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .home_mission ul li .txt h3 {
    font-size: 1.125rem;
  }
}
.home_mission ul li:nth-child(1) .txt {
  background-image: url(images/index/num01.svg);
}
.home_mission ul li:nth-child(2) .txt {
  background-image: url(images/index/num02.svg);
}
.home_mission ul li:nth-child(3) .txt {
  background-image: url(images/index/num03.svg);
}

.home_service {
  background-color: #000;
}
.home_service ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: unset;
  align-content: unset;
}
.home_service ul li {
  width: 31.1666666667%;
}
@media (max-width: 767px) {
  .home_service ul li {
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .home_service ul li:nth-child(n+4) {
    margin-top: 3.5rem;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .home_service ul li:nth-child(n+4) {
    margin-top: 3rem;
  }
}
@media (max-width: 767px) {
  .home_service ul li:not(:last-child) {
    margin-bottom: 2.5rem;
  }
}
.home_service ul li .img {
  margin-bottom: 1.5rem;
}
@media (max-width: 767px) {
  .home_service ul li .img {
    margin-bottom: 1rem;
  }
}
.home_service ul li h3 {
  font-size: 1.2rem;
  color: #fff;
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .home_service ul li h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
}
.home_service ul li p.txt01 {
  color: #fff;
  margin-bottom: 2.5rem;
}
@media (max-width: 767px) {
  .home_service ul li p.txt01 {
    margin-bottom: 1.5rem;
  }
}

.home_twins ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: unset;
  align-content: unset;
}
.home_twins ul li {
  background-color: #fff;
  width: 48.3333333333%;
}
@media (max-width: 767px) {
  .home_twins ul li {
    width: 100%;
  }
}
.home_twins ul li:nth-child(1) {
  background-color: rgba(33, 150, 243, 0.1);
}
@media (max-width: 767px) {
  .home_twins ul li:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.home_twins ul li a {
  padding: 1.2rem 2.5%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  align-content: unset;
}
.home_twins ul li a .img {
  width: 50%;
  text-align: center;
}
@media (max-width: 767px) {
  .home_twins ul li a .img {
    width: 100%;
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .home_twins ul li a .img img {
    width: 60vw;
  }
}
.home_twins ul li a .txt {
  width: 50%;
}
@media (max-width: 767px) {
  .home_twins ul li a .txt {
    width: 100%;
  }
}
.home_twins ul li a .txt .ttl_cmn {
  margin-bottom: 0;
}

.home_case .over_cmn .txt .tagwrap {
  margin: -1rem 0 1rem;
}

.tagwrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  align-content: unset;
}
.tagwrap .tag {
  display: inline-block;
  font-size: 0.875rem;
  line-height: 1.3;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 0.2rem 0.5em;
  margin-right: 1.25rem;
}
.tagwrap .tag.bg_y {
  background-color: #FFC107;
}
.tagwrap .tag.bg_p {
  background-color: #fad6c7;
}

.home_column {
  background: #fff url(images/index/bg_column.png) right -180px top -2rem/50vw auto no-repeat;
}
@media (max-width: 767px) {
  .home_column {
    background: #fff url(images/index/bg_column.png) right 2vw top 1vh/40vw auto no-repeat;
  }
}
.home_column ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  align-content: unset;
  margin-bottom: 5rem;
}
@media (max-width: 767px) {
  .home_column ul {
    margin-bottom: 3rem;
  }
}
.home_column ul li {
  width: 31.1666666667%;
}
@media (max-width: 767px) {
  .home_column ul li {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .home_column ul li:not(:last-child) {
    margin-bottom: 3rem;
  }
}
.home_column ul li .img {
  margin-bottom: 1rem;
}
.home_column ul li .cate {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.05em;
  padding: 0.2rem 0.5em;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .home_column ul li .cate {
    font-size: 0.75rem;
  }
}
.home_column ul li .cate.cate_blog {
  background-color: rgba(255, 193, 7, 0.1);
}
.home_column ul li .cate.cate_ec {
  background-color: rgba(0, 52, 157, 0.1);
}
.home_column ul li h3 {
  font-size: 1rem;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.home_news {
  margin-bottom: 9rem;
}
@media (max-width: 767px) {
  .home_news {
    margin-bottom: 3rem;
  }
}
.home_news .inner {
  background-color: #fff;
  padding: 9rem 4%;
}
@media (max-width: 767px) {
  .home_news .inner {
    padding: 3rem 4%;
  }
}
.home_news .inner ul {
  margin-bottom: 2rem;
}
.home_news .inner ul li {
  border-top: 1px solid #d1d1d1;
  padding: 2rem 3%;
}
.home_news .inner ul li a {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: unset;
}
.home_news .date {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 2rem;
  letter-spacing: 0.05em;
  margin-right: 3%;
}
@media (max-width: 767px) {
  .home_news .date {
    font-size: 1rem;
  }
}
.home_news .cate {
  min-width: 117px;
  font-size: 0.875rem;
  color: #00349D;
  font-weight: 400;
  line-height: 1.9rem;
  letter-spacing: 0.05em;
  text-align: center;
  padding: 0 1rem;
  border: 1px solid #00349D;
  margin-right: 5%;
}
@media (max-width: 767px) {
  .home_news .cate {
    font-size: 0.75rem;
  }
}

.home_contact {
  background: url(images/index/bg_contact.jpg) center center/cover no-repeat;
  position: relative;
  z-index: 999;
}
.home_contact .inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: unset;
  align-items: center;
  align-content: center;
  flex-direction: column;
}
.home_contact .inner h2 {
  font-size: 4.375rem;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .home_contact .inner h2 {
    font-size: 2.5rem;
  }
}
.home_contact .inner p.txt01 {
  font-size: 1.375rem;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .home_contact .inner p.txt01 {
    font-size: 1rem;
    letter-spacing: 0;
  }
}

/* フッター
======================================================================================== */
footer {
  background-color: #fff;
  padding: 6rem 0;
}
@media (max-width: 767px) {
  footer {
    padding: 3rem 0;
  }
}
footer .left {
  width: 28.8333333333%;
}
@media (max-width: 767px) {
  footer .left {
    width: 100%;
  }
}
@media (min-width: 1200px) {
  footer .sns_icon {
    margin: 0 8px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  footer .sns_icon {
    margin: 0 8px;
  }
}
@media (max-width: 767px) {
  footer .sns_icon_area {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    margin-bottom: 10px;
  }
}
footer .top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  align-content: unset;
  margin-bottom: 3rem;
}
@media (max-width: 767px) {
  footer .top {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  footer .top h2 {
    width: 100%;
    text-align: center;
  }
}
footer .top .fnav {
  width: 68.3333333333%;
}
@media (max-width: 767px) {
  footer .top .fnav {
    width: 100%;
  }
}
footer .top .fnav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  align-content: unset;
}
@media (max-width: 767px) {
  footer .top .fnav ul {
    width: 57vw;
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  footer .top .fnav ul li {
    width: 47%;
  }
}
footer .top .fnav ul li a:hover p {
  color: #909090;
  transition: all 1s;
}
footer .top .fnav ul li a p {
  font-size: 1rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  footer .top .fnav ul li a p {
    font-size: 0.875rem;
  }
}
footer .btm {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  align-content: unset;
}
footer .btm .facebook {
  width: 2rem;
}
footer .btm .facebook a {
  display: flex;
  flex-wrap: unset;
  justify-content: center;
  align-items: center;
  align-content: unset;
}
footer .btm .facebook a i {
  font-size: 1.75rem;
  color: #00349D;
}
footer .btm .right {
  width: calc(100% - 2rem);
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: center;
  align-content: unset;
}
footer .btm .right .privacy,
footer .btm .right small {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 2.2rem;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  footer .btm .right .privacy,
  footer .btm .right small {
    font-size: 0.75rem;
  }
}
footer .btm .right small {
  margin-left: 10%;
}
@media (max-width: 767px) {
  footer .btm .right small {
    margin-left: 5%;
  }
}
footer .pagetop {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  opacity: 0;
}
@media (max-width: 767px) {
  footer .pagetop {
    right: 0;
    bottom: 0;
  }
}
footer .pagetop.active {
  opacity: 1;
}
footer .pagetop a {
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 25px;
  background-color: #000;
  position: relative;
}
footer .pagetop a::after {
  content: "";
  width: 11px;
  height: 11px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  position: absolute;
  top: calc(50% + 3px);
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}
footer .pagetop a:hover {
  background-color: rgba(0, 0, 0, 0.5);
  transition: all 0.5s;
}
footer .pagetop a:hover::after {
  opacity: 0.5;
  transition: all 0.5s;
}

/* 追加箇所
======================================================================================== */
.btn_bg_wh {
  background: #fff;
  color: #000;
}

.btn_bg_wh a::after {
  border-bottom: 1px solid #fff;
}

#area1_1 {
  float: left;
  position: relative;
  width: 100%;
}
@media (min-width: 1200px) {
  #area1_1 {
    min-height: calc(100vh - 125px);
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  #area1_1 {
    min-height: calc(100vh - 125px);
  }
}
@media (max-width: 767px) {
  #area1_1 {
    min-height: calc(100vh - 16vw);
  }
}

#top-horizontal-line {
  background-color: black;
  height: 3px;
  position: absolute;
  width: 100%;
}
@media (min-width: 1200px) {
  #top-horizontal-line {
    bottom: 360px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  #top-horizontal-line {
    bottom: 360px;
  }
}
@media (max-width: 767px) {
  #top-horizontal-line {
    bottom: 294px;
  }
}

#top-vertical-line {
  background-color: black;
  width: 3px;
  height: 100%;
  position: absolute;
}
@media (min-width: 1200px) {
  #top-vertical-line {
    right: 460px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  #top-vertical-line {
    right: 460px;
  }
}
@media (max-width: 767px) {
  #top-vertical-line {
    right: 35%;
  }
}

#area1_h1_area {
  position: absolute;
  z-index: 999;
}
@media (min-width: 1200px) {
  #area1_h1_area {
    bottom: 330px;
    left: 100px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  #area1_h1_area {
    bottom: 340px;
    left: 40px;
  }
}
@media (max-width: 767px) {
  #area1_h1_area {
    bottom: 290px;
    left: 40px;
  }
}

#meline_logo_img {
  width: 40vw;
}

/* サンクス画面
======================================================================================== */
.thanksBox {
  text-align: center;
  margin: 100px 0;
}

.thanksBox h3 {
  font-size: 1.8em;
  margin-bottom: 40px;
}

.thanksBox p {
  line-height: 1.8;
}

.thanksBox a {
  border-bottom: 1px solid #000;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}/*# sourceMappingURL=style.css.map */