@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&family=Zen+Maru+Gothic:wght@300;400;500;700;900&display=swap");
/*/////////////////////////////
共通装飾クラス
/////////////////////////////*/
.inner_1200 {
  width: 1200px;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .inner_1200 {
    width: 94%;
  }
}

.ttl_01 {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 9px;
  line-height: 1.5;
  color: #1D2677;
}
@media screen and (max-width: 767px) {
  .ttl_01 {
    font-size: 22px;
    letter-spacing: 3px;
  }
}
.ttl_01 span {
  color: #1D2677;
  text-align: center;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: normal;
  display: inline-block;
  background-color: #FFE134;
  border-radius: 100px;
  padding: 0 20px;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .ttl_01 span {
    font-size: 11px;
  }
}

.ttl_02 {
  color: #1D2677;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .ttl_02 {
    font-size: 17px;
    margin-bottom: 20px;
  }
}

.line_01 {
  width: 72px;
  border-bottom: solid 2px #1D2677;
  display: block;
  margin: 35px auto;
  margin-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .line_01 {
    margin: 20px auto;
    margin-bottom: 35px;
  }
}

.line_01_left {
  width: 72px;
  border-bottom: solid 2px #1D2677;
  display: block;
  margin: 35px auto;
  margin-left: 0;
  margin-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .line_01_left {
    margin: 20px auto;
    margin-left: 0;
    margin-bottom: 35px;
  }
}

.btn_next {
  text-align: center;
  color: #1D2677;
  font-weight: 700;
  font-size: 15px;
  border: solid 1px #1D2677;
  border-radius: 100px;
  min-width: 250px;
  display: inline-block;
  padding: 8px;
  background-image: url(../img/cmn/icon_cursor.svg);
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-color: #fff;
  transition: 0.3s ease-in-out;
}
.btn_next:hover {
  background-color: #1D2677;
  color: #fff;
}

.btn_prev {
  text-align: center;
  color: #1D2677;
  font-weight: 700;
  font-size: 15px;
  border: solid 1px #1D2677;
  border-radius: 100px;
  min-width: 250px;
  display: inline-block;
  padding: 8px;
  background-image: url(../img/cmn/icon_cursor_prev.svg);
  background-repeat: no-repeat;
  background-position: left 12px center;
  background-color: #fff;
  transition: 0.3s ease-in-out;
  background-size: auto 22%;
}
.btn_prev:hover {
  background-color: #1D2677;
  color: #fff;
}

.btn_close {
  text-align: center;
  color: #1D2677;
  font-weight: 700;
  font-size: 15px;
  border: solid 1px #1D2677;
  border-radius: 100px;
  min-width: 250px;
  display: inline-block;
  padding: 8px;
  background-color: #fff;
  transition: 0.3s ease-in-out;
}
.btn_close:hover {
  background-color: #1D2677;
  color: #fff;
}

.mask_right {
  overflow: hidden;
  border-radius: 10px 0 0 10px;
  width: 100%;
  max-width: 100%;
}
.mask_right img {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .mask_right img {
    border-radius: 10px;
  }
}

.mask_left {
  overflow: hidden;
  border-radius: 0 10px 10px 0;
  width: 100%;
  max-width: 100%;
}
.mask_left img {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .mask_left img {
    border-radius: 10px;
  }
}

.layout_1-2 {
  max-width: 1200px;
  margin: auto;
  margin-bottom: 100px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .layout_1-2 {
    max-width: 100%;
    font-size: 15px;
    margin-bottom: 50px;
    display: block;
  }
}
.layout_1-2 .txt {
  width: 774px;
}
@media screen and (max-width: 767px) {
  .layout_1-2 .txt {
    order: 1;
    width: 100%;
    margin-bottom: 50px;
  }
}
.layout_1-2 .pic {
  flex: 1;
  margin-left: calc(50% - 50vw);
  margin-right: 6%;
  width: 30%;
}
@media screen and (max-width: 767px) {
  .layout_1-2 .pic {
    margin-right: auto;
    margin-left: auto;
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
  }
}
.layout_1-2 .pic img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .layout_1-2 .pic img {
    width: 80%;
    margin: auto;
  }
}

.layout_2-1 {
  max-width: 1200px;
  margin: auto;
  margin-bottom: 100px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .layout_2-1 {
    max-width: 100%;
    display: block;
    font-size: 15px;
    margin-bottom: 50px;
  }
}
.layout_2-1 .txt {
  width: 774px;
}
@media screen and (max-width: 767px) {
  .layout_2-1 .txt {
    width: 100%;
    margin-bottom: 50px;
  }
}
.layout_2-1 .pic {
  flex: 1;
  margin-right: calc(50% - 50vw);
  margin-left: 6%;
  width: 30%;
}
@media screen and (max-width: 767px) {
  .layout_2-1 .pic {
    margin-right: 0;
    margin-left: 0;
    width: 100%;
    text-align: center;
  }
}
.layout_2-1 .pic img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .layout_2-1 .pic img {
    width: 80%;
    margin: auto;
  }
}

.layout_1-1 {
  max-width: 1200px;
  margin: auto;
  margin-bottom: 100px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .layout_1-1 {
    max-width: 100%;
    display: block;
    font-size: 15px;
    margin-bottom: 50px;
  }
}
.layout_1-1 .txt {
  width: 600px;
}
@media screen and (max-width: 767px) {
  .layout_1-1 .txt {
    width: 100%;
    margin-bottom: 50px;
  }
}
.layout_1-1 .pic {
  flex: 1;
  margin-right: calc(50% - 50vw);
  margin-left: 6%;
  width: 30%;
}
@media screen and (max-width: 767px) {
  .layout_1-1 .pic {
    margin-right: 0;
    margin-left: 0;
    width: 100%;
    text-align: center;
  }
}
.layout_1-1 .pic img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .layout_1-1 .pic img {
    width: 80%;
    margin: auto;
  }
}

.news_list {
  display: flex;
  gap: 2%;
  flex-wrap: wrap;
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .news_list {
    gap: 4%;
    margin-bottom: 40px;
  }
}
.news_list li {
  width: 23.5%;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 35px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 767px) {
  .news_list li {
    width: 48%;
    margin-bottom: 30px;
  }
}
.news_list li img {
  width: 100%;
  height: auto;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.77, 0, 0.18, 1);
}
.news_list li .txt {
  padding: 25px;
  padding-top: 10px;
}
@media screen and (max-width: 767px) {
  .news_list li .txt {
    padding: 10px;
  }
}
.news_list li .txt p.date {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.news_list li .txt h3 {
  color: #1D2677;
  font-weight: 700;
  line-height: 1.75;
}
.news_list li:hover img {
  transform: scale(1.08);
}

/*/////////////////////////////
リセットCSS
/////////////////////////////*/
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

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

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

img {
  vertical-align: bottom;
}

/*
=====================================================
よく使用するクラス等
=====================================================
*/
a {
  text-decoration: none;
  color: #333333;
}

a:hover {
  /* text-decoration: underline; */
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

a img {
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

a img:hover {
  opacity: 0.6;
  filter: alpha(opacity=60);
}

.clear {
  clear: both;
  line-height: 0px;
}

.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.clearfix {
  display: inline-table;
  overflow: hidden;
  zoom: 1;
  /*for IE 5.5-7*/
}

/* Hides from IE-mac \*/
.clearfix {
  display: block;
}

/* End hide from IE-mac */
.img_left {
  float: left;
  margin-right: 45px;
  margin-bottom: 15px;
}

.img_right {
  float: right;
  margin-left: 45px;
  margin-bottom: 20px;
}

.img_fit {
  width: 100%;
  height: auto;
}

.txt_right {
  text-align: right;
}

.txt_left {
  text-align: left;
}

.txt_center {
  text-align: center;
}

.v_align_bottom {
  vertical-align: bottom;
}

.mb_5 {
  margin-bottom: 5px !important;
}

.mb_10 {
  margin-bottom: 10px !important;
}

.mb_15 {
  margin-bottom: 15px !important;
}

.mb_20 {
  margin-bottom: 20px !important;
}

.mb_25 {
  margin-bottom: 25px !important;
}

.mb_30 {
  margin-bottom: 30px !important;
}

.mb_35 {
  margin-bottom: 35px !important;
}

.mb_40 {
  margin-bottom: 40px !important;
}

.mb_50 {
  margin-bottom: 50px !important;
}

.mb_60 {
  margin-bottom: 60px !important;
}

.mb_80 {
  margin-bottom: 80px !important;
}

.mb_100 {
  margin-bottom: 100px !important;
}

.mb_150 {
  margin-bottom: 150px !important;
}

.mb_200 {
  margin-bottom: 200px !important;
}

.mt_5 {
  margin-top: 5px !important;
}

.mt_10 {
  margin-top: 10px !important;
}

.mt_15 {
  margin-top: 15px !important;
}

.mt_20 {
  margin-top: 20px !important;
}

.mt_25 {
  margin-top: 25px !important;
}

.mt_50 {
  margin-top: 50px !important;
}

.mt_75 {
  margin-top: 75px !important;
}

.mt_100 {
  margin-top: 100px !important;
}

.mr_0 {
  margin-right: 0px !important;
}

.mr_10 {
  margin-right: 10px !important;
}

.mr_15 {
  margin-right: 15px !important;
}

.mr_20 {
  margin-right: 20px !important;
}

.mr_30 {
  margin-right: 30px !important;
}

.mr_50 {
  margin-right: 50px !important;
}

.pl_10 {
  padding-left: 10px !important;
}

.pl_20 {
  padding-left: 20px !important;
}

.pl_30 {
  padding-left: 30px !important;
}

.pl_50 {
  padding-left: 50px !important;
}

.pl_75 {
  padding-left: 75px !important;
}

.pl_100 {
  padding-left: 100px !important;
}

.font_sss {
  font-size: 8px;
}

.font_ss {
  font-size: 10px;
}

.font_s {
  font-size: 13px;
}

.font_m {
  font-size: 15px;
}

.font_l {
  font-size: 18px;
}

.font_ll {
  font-size: 20px;
}

.font_3l {
  font-size: 25px;
}

.font_4l {
  font-size: 30px;
}

.font_5l {
  font-size: 50px;
}

.font_it {
  font-family: Helvetica, Arial, sans-serif;
  font-style: italic;
}

.font_cap {
  font-size: 10px;
  line-height: 1.3;
  margin-top: 20px;
}

/* .ptop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 11;
}

.ptop img {
    filter: Alpha(Opacity=50);
    -moz-opacity: 0.5;
    opacity: 0.5;
}

.ptop img:hover {
    filter: Alpha(Opacity=100);
    -moz-opacity: 1;
    opacity: 1;
    cursor: pointer;
} */
#fb-root {
  display: none;
}

.sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  /* .ptop {
      bottom: 2%;
      right: 2%;
      z-index: 9999;
  } */
  .pic100p {
    width: 100%;
  }
  .pic90p {
    width: 90%;
  }
  .pic80p {
    width: 80%;
  }
  .pic70p {
    width: 70%;
  }
  .pic60p {
    width: 60%;
  }
  .pic50p {
    width: 50%;
  }
  .pic40p {
    width: 40%;
  }
  .pic30p {
    width: 30%;
  }
  .pic20p {
    width: 20%;
  }
  .pic10p {
    width: 10%;
  }
}
body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 2;
  /*メインで使用するフォントが明朝体のとき
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  */
  /*メインで使用するフォントが丸ゴシックのとき
  font-family: "Rounded Mplus 1c",'Avenir','Helvetica Neue','Helvetica','Arial','Hiragino Sans','ヒラギノ角ゴシック',YuGothic,'Yu Gothic','メイリオ', Meiryo,'ＭＳ Ｐゴシック','MS PGothic';*/
  /*メインで使用するフォントはNotoSansのとき
  font-family: 'Noto Sans Japanese', sans-serif;*/
}
@media screen and (max-width: 767px) {
  body {
    font-size: 14px;
  }
}

/*/////////////////////////////
共通レイアウト＋トップページ
/////////////////////////////*/
@media screen and (max-width: 767px) {
  header {
    position: fixed;
    top: 0;
    z-index: 1000;
    width: 100%;
  }
}
header .top_area {
  background-color: #F5F5F5;
  display: flex;
  justify-content: space-between;
  padding: 10px 30px;
  align-items: center;
  /* /.sp_btn */
}
@media screen and (max-width: 767px) {
  header .top_area {
    background-color: #1D2677;
    padding: 10px 15px;
    box-shadow: 0px 5px 0px 0px rgba(0, 0, 0, 0.1);
  }
}
header .top_area .logo {
  margin-right: 50px;
}
header .top_area .right_btns {
  display: flex;
}
@media screen and (max-width: 767px) {
  header .top_area .right_btns {
    display: none;
  }
}
header .top_area .right_btns .line {
  /* background-color: #00AF3A; */
  /* border-radius: 10px;
  padding: 10px;
  display: flex;
  align-items: center; */
  margin-right: 20px;
}
header .top_area .right_btns .line img {
  width: auto;
  height: 80px;
}
header .top_area .right_btns .line img.qr {
  width: 65px;
  margin-left: 20px;
}
header .top_area .right_btns .contact {
  background-color: #1D2677;
  border-radius: 10px;
  display: flex;
  padding: 5px 20px;
  align-items: center;
}
header .top_area .right_btns .contact .tel {
  padding-right: 15px;
  margin-right: 15px;
  border-right: 1px solid #F5F5F5;
}
header .top_area .right_btns .contact .mail a {
  color: #fff;
  font-weight: 500;
  background-image: url(../img/cmn/icon_mail.svg);
  background-repeat: no-repeat;
  padding-left: 32px;
  background-position: left center;
  vertical-align: middle;
}
header .top_area .right_btns .contact .mail a:hover {
  color: #FFE134;
  text-decoration: none;
}
header .top_area .sp_btn {
  position: absolute;
  right: 15px;
  top: 5px;
  z-index: 1000;
  /*ボタン外側※レイアウトによってpositionや形状は適宜変更してください*/
  /*ボタン内側*/
  /*activeクラスが付与されると線が回転して×に*/
}
header .top_area .sp_btn .openbtn {
  /*ボタン内側の基点となるためrelativeを指定。
  追従するナビゲーションの場合はfixed＋top、rightといった位置をセットで指定*/
  position: relative;
  width: 60px;
  height: 60px;
  cursor: pointer;
  transition: all 0.4s;
  /*アニメーションの設定*/
  border-radius: 100px;
}
@media screen and (min-width: 768px) {
  header .top_area .sp_btn .openbtn {
    display: none;
  }
}
header .top_area .sp_btn .openbtn span {
  display: inline-block;
  transition: all 0.4s;
  /*アニメーションの設定*/
  position: absolute;
  left: 15px;
  height: 4px;
  background-color: #fff;
  border-radius: 10px;
}
header .top_area .sp_btn .openbtn span:nth-of-type(1) {
  top: 20px;
  width: 50%;
}
header .top_area .sp_btn .openbtn span:nth-of-type(2) {
  top: 32px;
  width: 50%;
}
header .top_area .sp_btn .openbtn.active span:nth-of-type(1) {
  top: 21px;
  left: 15px;
  transform: translateY(6px) rotate(-45deg);
  width: 50%;
  background: #fff;
}
header .top_area .sp_btn .openbtn.active span:nth-of-type(2) {
  top: 33px;
  left: 15px;
  transform: translateY(-6px) rotate(45deg);
  width: 50%;
  background: #fff;
}

/* /header */
nav {
  width: 100%;
  box-shadow: 0px 4px 0px 0px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}
@media screen and (max-width: 767px) {
  nav {
    position: fixed;
    margin-top: 0;
    padding-top: 10px;
    height: 100%;
    background-color: #1F1F1F;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    display: none;
    padding-bottom: 100px;
    z-index: 999;
  }
}
nav ul {
  background-color: #1D2677;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  nav ul {
    display: block;
    background-color: #1F1F1F;
  }
}
nav ul a {
  color: #FFF;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  padding: 12px 50px;
  display: block;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  nav ul a {
    border-bottom: solid 1px #F5F5F5;
    font-size: 15px;
    padding: 10px;
  }
}
nav ul a:hover {
  color: #FFE134;
}
nav ul a span {
  display: block;
  color: #909090;
  font-size: 13px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  nav ul a span {
    font-size: 10px;
  }
}
nav ul a span.active {
  color: #FFE134;
}
@media screen and (max-width: 767px) {
  nav ul a span.active {
    color: #909090;
  }
}
nav .tel_contact {
  text-align: center;
  padding: 20px 0;
}
nav .tel_contact .tel {
  width: 60%;
  margin: auto;
}
nav .tel_contact .tel a img {
  width: 100%;
}
nav .tel_contact .mail {
  margin-top: 30px;
}
nav .tel_contact .mail a {
  color: #fff;
  font-weight: 500;
  background-image: url(../img/cmn/icon_mail.svg);
  background-repeat: no-repeat;
  padding-left: 32px;
  background-position: left center;
  vertical-align: middle;
  font-size: 18px;
}
nav .tel_contact .line {
  /* background-color: #00AF3A;
  border-radius: 10px;
  padding: 10px;
  display: flex;
  align-items: center;
  margin: auto;
  justify-content: space-between; */
  width: 85%;
  margin: auto;
  margin-top: 30px;
}
nav .tel_contact .line img {
  width: 100%;
}
nav .tel_contact .line img.qr {
  width: 65px;
  margin-left: 20px;
}

#main_vis {
  height: auto;
  max-height: 1000px;
  position: relative;
  background-color: #1D2677;
}
#main_vis .swiper {
  height: 100%;
  max-height: 1000px;
}
#main_vis .swiper-wrapper {
  height: 100%;
  max-height: 1000px;
}
#main_vis .swiper-wrapper .swiper-slide {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center bottom;
}
#main_vis .swiper-wrapper .slide_01 {
  background-image: url(../img/top/slide_01.jpg);
}
#main_vis .swiper-wrapper .slide_02 {
  background-image: url(../img/top/slide_02.jpg);
  background-position: left 15% center;
}
#main_vis .swiper-wrapper .slide_03 {
  background-image: url(../img/top/slide_03.jpg);
}
#main_vis .main_vis_message {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  position: absolute;
  z-index: 99;
  width: 100%;
  margin-top: 10%;
  opacity: 0;
  transition: opacity 1s;
}
@media screen and (max-width: 767px) {
  #main_vis .main_vis_message {
    margin-top: 30%;
  }
}
#main_vis .main_vis_message div {
  width: 100%;
  text-align: center;
}
#main_vis .main_vis_message p {
  background: #fff;
  padding: 5px 16px;
  font-size: 2.4rem;
  font-weight: 700;
  color: #22336a;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  margin: 0;
  line-height: 1.4;
  letter-spacing: 0.08em;
  display: inline-block;
  font-family: "Zen Maru Gothic";
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  #main_vis .main_vis_message p {
    font-size: 22px;
    padding: 3px 8px;
    margin-bottom: 5px;
  }
}
#main_vis .btn_scroll {
  position: absolute;
  z-index: 98;
  bottom: 0;
  text-align: center;
  width: 100%;
}
#main_vis .btn_scroll img {
  height: 50px;
  vertical-align: bottom;
}
@media screen and (max-width: 767px) {
  #main_vis .btn_scroll img {
    height: 35px;
    margin-bottom: -1px;
  }
}

/* /#main_vis */
.top_contents #intro {
  background-color: #1D2677;
  color: #FFF;
  padding: 50px 0;
  overflow-x: hidden;
}
@media screen and (max-width: 767px) {
  .top_contents #intro {
    padding: 30px 0;
  }
}
.top_contents #intro .inner_1200 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .top_contents #intro .inner_1200 {
    display: block;
  }
}
.top_contents #intro .txt {
  display: flex;
  width: 1000px;
  gap: 50px;
}
@media screen and (max-width: 767px) {
  .top_contents #intro .txt {
    display: block;
    width: 100%;
  }
  .top_contents #intro .txt .line_01 {
    border: solid 1px #fff;
    margin-left: 0;
  }
}
.top_contents #intro .txt .ttl_01 {
  color: #fff;
}
.top_contents #intro .txt .message p {
  padding-left: 50px;
  border-left: 1px solid #fff;
}
@media screen and (max-width: 767px) {
  .top_contents #intro .txt .message p {
    padding-left: 0;
    border: none;
  }
}
.top_contents #intro .pic {
  flex: 1;
  margin-right: calc(50% - 50vw);
  margin-left: 50px;
  width: 20%;
}
@media screen and (max-width: 767px) {
  .top_contents #intro .pic {
    margin-right: auto;
    margin-left: auto;
    width: 70%;
    text-align: center;
    margin-top: 35px;
  }
  .top_contents #intro .pic .mask_right {
    border-radius: 0;
  }
}
.top_contents #intro .pic img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .top_contents #intro .pic img {
    width: 80%;
    margin: auto;
  }
}
.top_contents #consultation {
  background-image: url(../img/cmn/bg_note.png);
  padding: 100px 0;
  overflow-x: hidden;
}
@media screen and (max-width: 767px) {
  .top_contents #consultation {
    padding: 50px 0;
  }
}
.top_contents #consultation .line_01 {
  margin-left: 0;
}
.top_contents #consultation .layout_1-2 {
  align-items: center;
}
.top_contents #consultation .acc_txt {
  margin-bottom: 80px;
}
.top_contents #consultation .acc_txt p {
  margin-bottom: 35px;
}
.top_contents #consultation .acc_txt .btn_acc {
  display: inline-block;
  border: solid 1px #1D2677;
  border-radius: 100px;
  padding: 4px;
  color: #1D2677;
  font-weight: 700;
  display: flex;
  width: 130px;
  padding-left: 35px;
  justify-content: space-between;
  margin: auto;
  align-items: center;
}
.top_contents #consultation .acc_txt .btn_acc:hover {
  background-color: #1D2677;
  color: #fff;
}
.top_contents #consultation .acc_txt .hide {
  display: block;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.77, 0, 0.18, 1), opacity 0.5s;
}
.top_contents #consultation .acc_txt .hide.open {
  max-height: 500px;
  opacity: 1;
}
.top_contents #consultation .btn_acc .icon {
  transition: transform 0.4s cubic-bezier(0.77, 0, 0.18, 1);
}
.top_contents #consultation .btn_acc .icon.rotated {
  transform: rotate(180deg);
}
.top_contents #consultation .q_list {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .top_contents #consultation .q_list {
    display: block;
    margin-bottom: 25px;
  }
}
.top_contents #consultation .q_list li {
  width: 50%;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 25px;
  background-image: url(../img/cmn/icon_check.svg);
  background-repeat: no-repeat;
  padding-left: 50px;
}
@media screen and (max-width: 767px) {
  .top_contents #consultation .q_list li {
    width: 100%;
    font-size: 15px;
    margin-bottom: 15px;
    background-size: auto 25px;
    background-position: left center;
    padding-left: 35px;
  }
}
.top_contents #consultation .bnr_consul {
  text-align: center;
  margin: 100px 0;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .top_contents #consultation .bnr_consul {
    margin: 30px 0;
    margin-bottom: 0;
  }
}
.top_contents #consultation .bnr_consul img {
  width: 664px;
}
@media screen and (max-width: 767px) {
  .top_contents #consultation .bnr_consul img {
    width: 100%;
  }
}
.top_contents #case_study {
  background-color: #F5F5F5;
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .top_contents #case_study {
    padding: 50px 0;
  }
}
.top_contents #case_study .txt_right {
  display: flex;
  justify-content: flex-end;
}
.top_contents #case_study .btn_more {
  border: solid 1px #1D2677;
  border-radius: 100px;
  padding: 4px;
  color: #1D2677;
  font-weight: 700;
  display: flex;
  width: 130px;
  padding-left: 35px;
  justify-content: space-between;
  margin-top: 30px;
  align-items: center;
}
.top_contents #case_study .btn_more:hover {
  background-color: #1D2677;
  color: #fff;
}
.top_contents #case_study .btn_more img {
  transform: rotate(-90deg);
}
.top_contents #case_study .case_list {
  display: flex;
  gap: 50px;
}
@media screen and (max-width: 767px) {
  .top_contents #case_study .case_list {
    flex-wrap: wrap;
    gap: 0;
  }
}
.top_contents #case_study .case_list li {
  background-color: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.25);
  width: 45%;
}
@media screen and (max-width: 767px) {
  .top_contents #case_study .case_list li {
    width: 100%;
    margin-bottom: 25px;
  }
}
.top_contents #case_study .case_list li img.thumb {
  width: 100%;
  margin-top: 30px;
}
.top_contents #case_study .case_list li p.case {
  background-image: url(../img/top/bg_case.svg);
  background-repeat: no-repeat;
  background-size: auto 100%;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  padding: 0 20px;
  padding-bottom: 10px;
  display: inline-block;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .top_contents #case_study .case_list li p.case {
    font-size: 13px;
  }
}
.top_contents #case_study .case_list li p.case span {
  font-size: 30px;
}
@media screen and (max-width: 767px) {
  .top_contents #case_study .case_list li p.case span {
    font-size: 18px;
  }
}
.top_contents #case_study .case_list li h3 {
  font-size: 24px;
  color: #1D2677;
  font-weight: 700;
  border-bottom: dashed #1F1F1F 1px;
  margin-bottom: 30px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .top_contents #case_study .case_list li h3 {
    font-size: 16px;
  }
}
.top_contents #case_study .case_list li ul.pic_list {
  display: flex;
  margin-top: 35px;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1%;
}
.top_contents #case_study .case_list li ul.pic_list li {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  width: 24%;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .top_contents #case_study .case_list li ul.pic_list li {
    width: 47%;
  }
}
.top_contents #case_study .case_list li ul.pic_list li img {
  width: 100%;
  vertical-align: bottom;
}
.top_contents #information {
  padding-top: 100px;
  overflow-x: hidden;
}
@media screen and (max-width: 767px) {
  .top_contents #information {
    padding-top: 50px;
  }
}
.top_contents #information .msg_top {
  display: flex;
  gap: 10%;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .top_contents #information .msg_top {
    display: block;
  }
}
.top_contents #information .msg_top div {
  width: 45%;
}
@media screen and (max-width: 767px) {
  .top_contents #information .msg_top div {
    width: 100%;
  }
}
.top_contents #information .msg_top div img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .top_contents #information .msg_top div img {
    width: 45%;
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 767px) {
  .top_contents #information .msg_top div.visual {
    position: relative;
    margin-bottom: 40px;
  }
  .top_contents #information .msg_top div.visual .illust {
    position: absolute;
    bottom: -35px;
  }
  .top_contents #information .msg_top div.visual .office {
    width: 80%;
    margin-left: 20%;
  }
}
.top_contents #information .gmap {
  width: 100%;
  margin-top: 40px;
}
.top_contents #information .gmap iframe {
  width: 100%;
  height: 400px;
  border: 0;
  display: block;
}
.top_contents #news {
  background-color: #F5F5F5;
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .top_contents #news {
    padding: 50px 0;
  }
}
.top_contents #outline {
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .top_contents #outline {
    padding: 50px 0;
  }
}
.top_contents #outline .line_01 {
  margin-left: 0;
}
.top_contents #outline .inner_1200 {
  display: flex;
  gap: 80px;
}
@media screen and (max-width: 767px) {
  .top_contents #outline .inner_1200 {
    display: block;
  }
}
.top_contents #outline .inner_1200 .list {
  min-width: 900px;
}
@media screen and (max-width: 767px) {
  .top_contents #outline .inner_1200 .list {
    min-width: auto;
    width: 100%;
    max-width: 100%;
  }
}
.top_contents #outline .company_table {
  width: 100%;
}
.top_contents #outline .company_table th,
.top_contents #outline .company_table td {
  padding: 20px 0;
  border-bottom: solid 1px #F5F5F5;
}
@media screen and (max-width: 767px) {
  .top_contents #outline .company_table th,
  .top_contents #outline .company_table td {
    padding: 12px 0;
    line-height: 1.5;
  }
}
.top_contents #outline .company_table th {
  text-align: left;
}
@media screen and (max-width: 767px) {
  .top_contents #outline .company_table th {
    padding-right: 12px;
  }
}
.top_contents #contact {
  padding: 100px 0;
  background-color: #E8EAFF;
}
@media screen and (max-width: 767px) {
  .top_contents #contact {
    padding: 50px 0;
  }
}
.top_contents #contact .form {
  width: 600px;
  margin: auto;
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .top_contents #contact .form {
    width: 100%;
  }
}
.top_contents #contact .form .item {
  margin-bottom: 25px;
}
.top_contents #contact .form .item p {
  font-size: 16px;
  font-weight: 500;
}
.top_contents #contact .form .item p span.any {
  background-color: #1F1F1F;
  color: #fff;
  font-size: 12px;
  padding: 0 5px;
  border-radius: 5px;
  margin-right: 10px;
}
.top_contents #contact .form .item p span.must {
  background-color: #D32929;
  color: #fff;
  font-size: 12px;
  padding: 0 5px;
  border-radius: 5px;
  margin-right: 10px;
}
.top_contents #contact .form .item input,
.top_contents #contact .form .item textarea {
  padding: 10px 20px;
  width: 100%;
}
.top_contents #contact .form .agree {
  text-align: center;
}
.top_contents #contact .form .agree label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.top_contents #contact .form .agree a {
  text-decoration: underline;
}
.top_contents #contact .form .agree input[type=checkbox] {
  width: 18px;
  height: 18px;
  margin: 0;
}

/* /.top_contents */
footer {
  background-color: #1F1F1F;
  color: #fff;
  position: relative;
}
@media screen and (max-width: 767px) {
  footer {
    padding-bottom: 50px;
  }
}
footer .address {
  padding: 30px;
}
@media screen and (max-width: 767px) {
  footer .address {
    width: 100%;
    padding: 15px;
  }
}
footer .address .name {
  font-size: 18px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  footer .address .name {
    font-size: 15px;
  }
}
footer .address .add {
  font-size: 15px;
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  footer .address .add {
    font-size: 13px;
  }
}
footer .address .copy {
  font-size: 11px;
  margin-top: 20px;
}
footer .ptop {
  background-color: #F5F5F5;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 210px;
  border-radius: 10px 0 0 0;
  text-align: center;
  padding-bottom: 5px;
}
@media screen and (max-width: 767px) {
  footer .ptop {
    width: 40%;
  }
}

.line_scroll a {
  /* background-color: #00AF3A;
  border-radius: 10px 0 0 10px;
  padding: 10px;
  display: flex;
  align-items: center; */
  position: fixed;
  z-index: 97;
  right: -310px;
  bottom: 50px;
  width: 310px;
  transition: right 0.5s cubic-bezier(0.77, 0, 0.18, 1);
}
@media screen and (max-width: 767px) {
  .line_scroll a {
    display: none;
  }
}
.line_scroll a.active {
  right: 10px;
}
.line_scroll a img.qr {
  width: 65px;
  margin-left: 20px;
}

.line_scroll_sp {
  background-color: #00AF3A;
  position: fixed;
  z-index: 50;
  bottom: -100px;
  margin: auto;
  max-width: 100%;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: bottom 0.5s cubic-bezier(0.77, 0, 0.18, 1), opacity 0.5s;
  width: 100%;
}
.line_scroll_sp a {
  display: block;
  width: 100%;
}
.line_scroll_sp img {
  width: 100%;
}

.line_scroll_sp.active {
  bottom: 0;
  opacity: 1;
  pointer-events: auto;
}

/*/////////////////////////////
下層（新着情報）
/////////////////////////////*/
#sub_ttl {
  padding: 75px;
  text-align: center;
  background-image: url(../img/top/slide_01.jpg);
  background-size: 100% auto;
  background-position: center bottom;
}
@media screen and (max-width: 767px) {
  #sub_ttl {
    padding: 20px 0;
    padding-top: 80px;
  }
}
#sub_ttl .ttl {
  border: 1px solid #fff;
  background: rgba(29, 38, 119, 0.8);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);
  min-width: 400px;
  /* width: 400px; */
  display: inline-block;
  margin: auto;
  padding: 25px 75px;
  padding-top: 10px;
}
@media screen and (max-width: 767px) {
  #sub_ttl .ttl {
    min-width: auto;
    max-width: 90%;
    margin: auto;
    padding: 10px 20px;
  }
}
#sub_ttl .ttl h2 {
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767px) {
  #sub_ttl .ttl h2 {
    font-size: 18px;
  }
}
#sub_ttl .ttl h2 span {
  display: inline-block;
  background-color: #FFE134;
  font-size: 15px;
  color: #1D2677;
  padding: 0 30px;
  border-radius: 100px;
  line-height: 1.5;
  letter-spacing: 0em;
}
@media screen and (max-width: 767px) {
  #sub_ttl .ttl h2 span {
    font-size: 11px;
  }
}

#sub_contents {
  padding: 50px 0;
}
#sub_contents .pagenation {
  text-align: center;
}
#sub_contents .pagenation .wp-pagenavi {
  margin: 40px auto;
  font-size: 15px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1D2677;
  font-weight: 700;
}
#sub_contents .pagenation .wp-pagenavi a {
  color: #333;
}
#sub_contents .pagenation .wp-pagenavi span.current,
#sub_contents .pagenation .wp-pagenavi a.page,
#sub_contents .pagenation .wp-pagenavi .extend,
#sub_contents .pagenation .wp-pagenavi .first,
#sub_contents .pagenation .wp-pagenavi .last {
  margin: 0 10px 0 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  line-height: 40px;
  text-align: center;
  box-sizing: border-box;
  justify-content: center;
  display: flex;
  align-items: center;
  border: solid 1px #1F1F1F;
}
#sub_contents .pagenation .wp-pagenavi span.current {
  background-color: #1D2677;
  color: #fff;
  border: none;
}
#sub_contents .pagenation .wp-pagenavi a.page:hover,
#sub_contents .pagenation .wp-pagenavi .first,
#sub_contents .pagenation .wp-pagenavi .last {
  background: #1D2677;
  color: #fff;
}
#sub_contents .pagenation .wp-pagenavi .previouspostslink,
#sub_contents .pagenation .wp-pagenavi .nextpostslink {
  display: none;
}
#sub_contents .pagenation .wp-pagenavi .pages {
  display: none;
}
#sub_contents .privacy .ttl {
  font-weight: 700;
  color: #1D2677;
  font-size: 23px;
}
#sub_contents .privacy h3 {
  font-weight: 700;
  color: #1D2677;
  font-size: 17px;
  border-left: 5px solid #1D2677;
  padding-left: 10px;
  margin-bottom: 15px;
  margin-top: 35px;
}
#sub_contents .privacy ul {
  padding-left: 50px;
  list-style: decimal;
}

.bg_single {
  width: 100%;
  height: 380px;
  background-image: url(../img/top/slide_01.jpg);
  background-size: 100% auto;
  background-position: center bottom;
  background-repeat: no-repeat;
  position: absolute;
  z-index: -1;
  top: 0;
}
@media screen and (max-width: 767px) {
  .bg_single {
    height: 23%;
  }
}

#sub_single .inner {
  width: 900px;
  margin: auto;
  margin-top: 150px;
  background-color: #fff;
  z-index: 2;
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  #sub_single .inner {
    margin-bottom: 50px;
    width: 94%;
    margin-top: 140px;
  }
}
#sub_single .inner .ttl {
  box-shadow: 0px -5px 5px 0px rgba(0, 0, 0, 0.25);
  padding: 20px 0;
  padding-bottom: 50px;
}
#sub_single .inner .ttl .txt {
  border-left: 10px solid #1D2677;
  padding-left: 25px;
}
@media screen and (max-width: 767px) {
  #sub_single .inner .ttl .txt {
    padding-left: 12px;
    border-left: 8px solid #1D2677;
  }
}
#sub_single .inner .ttl .txt .date {
  font-size: 15px;
  font-weight: 700;
  color: #4B4B4B;
  line-height: 1.5;
}
#sub_single .inner .ttl .txt h3 {
  font-size: 23px;
  font-weight: 700;
  border-bottom: 5px solid #F5F5F5;
}
@media screen and (max-width: 767px) {
  #sub_single .inner .ttl .txt h3 {
    font-size: 18px;
  }
}
#sub_single .inner .entry {
  padding: 0 35px;
  margin-bottom: 70px;
}
@media screen and (max-width: 767px) {
  #sub_single .inner .entry {
    padding: 0 20px;
  }
}
#sub_single .inner .entry p {
  margin-bottom: 1em;
}
#sub_single .inner .entry strong {
  font-weight: bold;
}
#sub_single .inner .entry img {
  max-width: 100%;
}

/*/////////////////////////////
下層（プライバシーポリシー）
/////////////////////////////*//*# sourceMappingURL=EAB.css.map */