@charset "utf-8";
/**
/* CSS RESET START
----------------------------------------------- */
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-style: normal;
  font-size: 100%;
  font-weight: normal;
  vertical-align: baseline;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
html {
  overflow-y: scroll;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
input,
textarea {
  margin: 0;
  padding: 0;
  outline: none;
}
ol,
ul {
  list-style: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}
caption,
th {
  text-align: left;
}
img {
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}
.clearfix {
  min-height: 1px;
}
.clearfix:after {
  content: '.';
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}
.both {
  clear: both;
}
/**
/* CSS START
----------------------------------------------- */
html,
body {
  width: 100%;
  font-family: Hiragino Sans, 'ヒラギノ角ゴシック', Hiragino Kaku Gothic ProN, 'ヒラギノ角ゴ ProN W3', YuGothic,
    '游ゴシック', Meiryo, 'メイリオ', Verdana, 'ＭＳ Ｐゴシック', sans-serif;
  font-weight: 300;
  color: #2b2b2b;
  font-size: 16px;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  letter-spacing: 0.01em;
}
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
}
.mincho {
  font-family: 'ヒラギノ明朝 ProN W6', 'HiraMinProN-W6', 'HG明朝E', 'ＭＳ Ｐ明朝', 'MS PMincho', 'MS 明朝', serif;
  font-style: italic;
}
a {
  text-decoration: none;
  -webkit-transition: 0.8s;
  -moz-transition: 0.8s;
  -o-transition: 0.8s;
  -ms-transition: 0.8s;
  transition: 0.8s;
  color: #484848;
}
a:hover {
  opacity: 0.8;
}
.Com {
  zoom: 1;
}
.Com:before,
.Com:after {
  content: '';
  display: table;
}
.Com:after {
  clear: both;
}
br.pc_br,
.pc_img {
  display: none;
}
[class*='-bgImg'] {
  position: relative;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
[class*='-bgImg']:before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  content: '';
}
[class*='-bgImg'] > img {
  visibility: hidden;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  br.sp_br,
  .sp_img {
    display: none;
  }
  .pc_img,
  br.pc_br {
    display: block;
  }
}
/**
/* flex CSS
----------------------------------------------- */
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.flex_row {
  webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.flex_between {
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.flex_column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.flex_center {
  -webkit-justify-content: center;
  justify-content: center;
}
.flex_wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  flex-wrap: wrap;
}
@media only screen and (max-width: 735px) {
  .flex {
    display: block;
  }
}
/**
/* Btn CSS
----------------------------------------------- */
.block_btn li {
  width: 100%;
  display: inline-block;
}
.block_btn .btn {
  width: 100%;
  display: block;
  position: relative;
  text-align: center;
  line-height: 2.4;
  font-size: 54px;
  font-weight: 800;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
}
.block_btn .btn.btn_blue {
  background-color: #004395;
  color: #fff;
}
@media only screen and (max-width: 735px) {
  .block_btn .btn {
    font-size: 5vw;
    border-radius: 10px;
  }
}
@media only screen and (min-width: 736px) and (max-width: 1024px) {
  .block_btn .btn {
    font-size: 30px;
    border-radius: 20px;
  }
}
/**
/* ヘッダー CSS
----------------------------------------------- */
.global-header .header-top {
  align-items: center;
}
.header-top .header-logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  padding: 0 10px;
}
.header-top .header-logo .logo {
  width: 80px;
}
.header-top .header-logo h1 {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.3;
  margin-left: 10px;
  color: #004395;
}
.header-top .contact-list {
  padding: 10px 0;
}
.header-top .contact-list .contact-items {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: stretch;
  align-items: stretch;
  border-right: 1px solid #9b9b9b;
  margin-right: 10px;
  padding-right: 15px;
}
.header-top .contact-list .contact-items:last-child {
  border-right: none;
}
.header-top .contact-list .contact-items a {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
}
.header-top .contact-list .contact-tel dt {
  width: 30px;
}
.header-top .contact-list .contact-mail dt {
  width: 34px;
}
.header-top .contact-list .contact-line dt {
  width: 38px;
}
.header-top .contact-list .contact-items dd {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  padding-left: 10px;
}
.header-top .contact-list .contact-items dd span {
  display: block;
  font-size: 14px;
  font-weight: 400;
}
.header-top .contact-nav a {
  display: block;
  background-color: #004395;
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  line-height: 91px;
  padding: 0 20px;
}
.header-view .header-view-bgImg {
  min-height: 658px;
}
@media only screen and (max-width: 1200px) {
  .header-top .contact-list .contact-items dd,
  .header-top .contact-nav span {
    display: none;
  }
}
@media only screen and (max-width: 735px) {
  .global-header .header-top,
  .header-top .header-contact,
  .header-top .contact-list {
    display: flex;
  }
  .header-top .header-logo {
    width: 60%;
  }
  .header-top .header-logo a {
    padding: 0 0 0 3px;
  }
  .header-top .header-logo .logo {
    width: 45px;
  }
  .header-top .header-logo h1 {
    font-size: 4vw;
    margin-left: 3%;
  }
  .header-top .contact-list .contact-items {
    border-right: none;
    margin-right: 10px;
    padding-right: 0;
  }
  .header-top .contact-list .contact-items dt {
    width: 30px;
  }
  .header-top .contact-nav {
    display: none;
  }
  .header-view .header-view-bgImg {
    min-height: 340px;
  }
}
@media only screen and (min-width: 736px) and (max-width: 1024px) {
  .header-top .header-logo a {
    padding: 0 10px;
  }
  .header-top .header-logo .logo {
    width: 50px;
  }
  .header-top .header-logo h1 {
    font-size: 24px;
    margin-left: 10px;
  }
  .header-top .contact-list {
    padding: 5px 0;
  }
  .header-top .contact-list .contact-items {
    margin-right: 10px;
    padding-right: 15px;
  }
  .header-top .contact-list .contact-items dt {
    width: 38px;
  }
  .header-top .contact-list .contact-items dt .pc_img {
    display: none;
  }
  .header-top .contact-list .contact-items dt .sp_img {
    display: block;
  }
  .header-top .contact-nav a {
    font-size: 20px;
    line-height: 60px;
    padding: 0 20px;
  }
  .header-view .header-view-bgImg {
    min-height: 480px;
  }
}
/**
/* Common CSS
----------------------------------------------- */
.inner {
  max-width: 1340px;
  margin: auto;
  padding: 0 20px;
}
.page-guide {
  padding: 0 0 80px 0;
}
@media only screen and (max-width: 735px) {
  img {
    width: 100%;
  }
  .inner {
    width: 94%;
    padding: 0;
  }
  .page-guide {
    padding: 0 0 5% 0;
  }
}
@media only screen and (min-width: 736px) and (max-width: 1024px) {
  img {
    width: 100%;
  }
  .inner {
    width: 96%;
    padding: 0;
  }
  .page-guide {
    padding: 0 0 40px 0;
  }
}
/**
/* 見出し CSS
----------------------------------------------- */
.page-guide .h2_ttl {
  font-size: 72px;
  font-weight: 800;
  line-height: 1;
  background: #000f7a;
  background: -moz-linear-gradient(left, #004395, #000f7a);
  background: -webkit-linear-gradient(left, #004395, #000f7a);
  background: linear-gradient(to right, #004395, #000f7a);
  color: #ffffff;
  text-align: center;
  padding: 30px 0 25px 0;
  margin-bottom: 80px;
}
@media only screen and (max-width: 735px) {
  .page-guide .h2_ttl {
    font-size: 6vw;
    margin-bottom: 5%;
    padding: 3% 0;
  }
}
@media only screen and (min-width: 736px) and (max-width: 1024px) {
  .page-guide .h2_ttl {
    font-size: 38px;
    padding: 20px 0 15px 0;
    margin-bottom: 40px;
  }
}
/**
/* トップへ戻る CSS
----------------------------------------------- */
.btn_page_top {
  background: #58c0df;
  color: #ffffff;
  display: block;
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 20;
  width: 90px;
  height: 90px;
}
.btn_page_top:before {
  display: block;
  position: absolute;
  content: '';
  top: 10px;
  right: 50%;
  border: 15px solid transparent;
  border-bottom: 15px solid #ffffff;
  -webkit-transform: translate(50%, 0%);
  -moz-transform: translate(50%, 0%);
  -ms-transform: translate(50%, 0%);
  -o-transform: translate(50%, 0%);
  transform: translate(50%, 0%);
}
.btn_page_top span {
  width: 100%;
  position: absolute;
  bottom: 10px;
  text-align: center;
  font-size: 23px;
  font-weight: 700;
}
@media only screen and (max-width: 735px) {
  .btn_page_top {
    width: 50px;
    height: 50px;
    right: 5px;
    bottom: 10%;
  }
  .btn_page_top:before {
    top: 3px;
    border: 8px solid transparent;
    border-bottom: 8px solid #ffffff;
  }
  .btn_page_top span {
    font-size: 14px;
    bottom: 5px;
  }
}
@media only screen and (min-width: 736px) and (max-width: 1024px) {
  .btn_page_top {
    width: 60px;
    height: 60px;
    right: 10px;
  }
  .btn_page_top:before {
    top: 5px;
    border: 10px solid transparent;
    border-bottom: 10px solid #ffffff;
  }
  .btn_page_top span {
    font-size: 16px;
    bottom: 5px;
  }
}
/* ----------------------------------------------
telbutton_popup_incontents
---------------------------------------------- */
/* idが「popup」から始まるもの全てを対象にする */

/* 20240401 scd change start >>> */
/* #popup { */
[id^='popup'] {
  display: none; /* input にチェックが入るまでは非表示に */
}
/* 20240401 scd change end <<< */
.popup-open {
  cursor: pointer; /* マウスオーバーでカーソルの形状を変えることで、クリックできる要素だとわかりやすいように */
}
.popup-overlay {
  display: none; /* input にチェックが入るまでは非表示に */
}
/* 20240401 scd change start >>> */
/* #popup:checked ~ .popup-overlay { */
[id^='popup']:checked ~ .popup-overlay {
  display: block;
  z-index: 9999;
  background-color: #00000070;
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
}
/* 20240401 scd change end <<< */
.popup-window {
  width: 90vw;
  max-width: 560px;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 6px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.popup-text {
  margin: 0;
}
.popup-text:not(:last-of-type) {
  margin-bottom: 1em;
}
.popup-close {
  cursor: pointer;
  position: absolute;
  top: -26px;
  right: 0;
}
/* 20240401 scd add start >>> */
.scd__d-block {
  display: block;
}
.scd__w-100 {
  width: 100%;
}
@media only screen and (max-width: 735px) {
  .scd__d-block .contact-tel {
    display: flex;
  }
}
/* 20240401 scd add end <<< */

/**
/* フッター CSS
----------------------------------------------- */
.footer {
  border-top: 1px solid #848484;
  padding: 30px 0;
}
.footer .copy {
  font-size: 18px;
  font-weight: 500;
  text-align: center;
}
.footer-bar {
  display: none;
}
@media only screen and (max-width: 735px) {
  .footer {
    padding: 2% 0 15% 0;
  }
  .footer .copy {
    font-size: 3.26vw;
  }
  .footer-bar {
    display: block;
    display: table;
    position: fixed;
    bottom: 0;
    table-layout: fixed;
    text-align: center;
    width: 100%;
    z-index: 9998;
  }
  .footer-bar a {
    display: block;
    padding: 6% 0;
    color: #666666;
  }
  .footer-bar-item {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
  }
  .footer-bar-item i {
    font-size: 5vw;
    margin-right: 2%;
  }
  .footer-bar-item span {
    font-size: 4vw;
    font-weight: bold;
  }
  .footer-bar .bar-line {
    background: #22c43c;
  }
  .footer-bar .bar-tel {
    background: #000f7a;
  }
  .footer-bar li a,
  .footer-bar li i {
    color: #ffffff !important;
  }
  /* 20240401 scd add start >>> */
  .footer-bar li .scd__d-block .scd__f-white {
    color: #ffffff !important;
  }
  /* 20240401 scd add end <<< */
}
@media only screen and (min-width: 736px) and (max-width: 1024px) {
  .footer {
    padding: 20px 0;
  }
  .footer .copy {
    font-size: 16px;
  }
}

/* ==========================
   お問い合わせ電話ブロック
   ========================== */
.contact-tel {
  display: flex;
  align-items: center; /* アイコンとテキストを縦中央揃え */
  gap: 10px; /* アイコンとテキストの間隔 */
  margin: 0; /* 余白をリセット */
}

.contact-tel dt {
  flex-shrink: 0; /* アイコンが縮まないように固定 */
}

.contact-tel dt img {
  width: 30px; /* アイコンの大きさ */
  height: auto;
  vertical-align: middle; /* 微調整で中央寄せを安定させる */
}

.contact-tel dd {
  margin: 0; /* 余計な余白を削除 */
  line-height: 1.5; /* テキストの行間を少し広げる */
}
