@charset "UTF-8";
.subtitle-article, .title-article, .site-footer .btn-totop, .font-min {
  font-family: "Noto Serif JP", serif;
}

/*!
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
abbr,
address,
article,
aside,
audio,
b,
blockquote,
body,
canvas,
caption,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
p,
pre,
q,
samp,
section,
small,
span,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
ul,
var,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

/*
 * 基礎SCSS
 * @include common.css
 */
html {
  font-size: 62.5%;
  /* = 10px */
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
  color: #252525;
  text-align: left;
  -webkit-text-size-adjust: 100%;
}
@media screen and (max-width: 639px) {
  body {
    font-size: 1.4rem;
  }
}

* {
  box-sizing: border-box;
}

/*--------------------
 タグ汎用
 ---------------------*/
small {
  font-size: 0.9em;
  line-height: 1.5em;
}

.nocomments,
.postmetadata,
blockquote,
strike {
  color: #252525;
}

code {
  font: 1.1em "Courier New", Courier, Fixed;
}

abbr,
acronym,
span.caps {
  font-size: 0.9em;
  cursor: help;
}

a {
  color: #252525;
  text-decoration: none;
  transition: 0.3s;
}
a:hover {
  opacity: 0.7;
  transition: 0.3s;
  text-decoration: none;
}

p span {
  display: inline-block;
}

blockquote {
  padding-left: 20px;
  border-left: 5px solid #dddddd;
  margin: 15px 30px 0 10px;
}
blockquote cite {
  display: block;
  margin: 5px 0 0;
}

.link_pink {
  color: #1E3D5C;
  display: inline-block;
}

.link_blank {
  color: #1E3D5C;
  padding-top: 10px;
  display: inline-block;
}
.link_blank:after {
  content: "\f08e";
  display: inline-block;
  font-family: "Font Awesome 5 Pro";
  color: #1E3D5C;
  font-weight: 300;
  padding-left: 10px;
}

/*-------------
 汎用設定
--------------*/
img {
  height: auto;
  max-width: 100%;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

ol {
  margin-left: 1.5em;
}

.txt_left {
  text-align: left;
}

.txt_right {
  text-align: right;
}

.txt_center {
  text-align: center;
}

.txt_pink {
  color: #1E3D5C;
}

@media screen and (max-width: 639px) {
  .sp_none {
    display: none;
  }
}

.pc_none {
  display: none;
}
@media screen and (max-width: 639px) {
  .pc_none {
    display: block;
  }
}

/*===========================================
  width
===========================================*/
.wA {
  width: auto !important;
}

.w20 {
  width: 20% !important;
}

.w25 {
  width: 25% !important;
}

.w50 {
  width: 50% !important;
}

.w75 {
  width: 75% !important;
}

.w100 {
  width: 100% !important;
}

/*===========================================
  margin & padding
===========================================*/
.m0 {
  margin: 0px !important;
}

.mt0 {
  margin-top: 0px !important;
}

.mb0 {
  margin-bottom: 0px !important;
}

.ml0 {
  margin-left: 0px !important;
}

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

.p0 {
  padding: 0px !important;
}

.pt0 {
  padding-top: 0px !important;
}

.pb0 {
  padding-bottom: 0px !important;
}

.pl0 {
  padding-left: 0px !important;
}

.pr0 {
  padding-right: 0px !important;
}

.m5 {
  margin: 5px !important;
}

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

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

.ml5 {
  margin-left: 5px !important;
}

.mr5 {
  margin-right: 5px !important;
}

.p5 {
  padding: 5px !important;
}

.pt5 {
  padding-top: 5px !important;
}

.pb5 {
  padding-bottom: 5px !important;
}

.pl5 {
  padding-left: 5px !important;
}

.pr5 {
  padding-right: 5px !important;
}

.m10 {
  margin: 10px !important;
}

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

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

.ml10 {
  margin-left: 10px !important;
}

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

.p10 {
  padding: 10px !important;
}

.pt10 {
  padding-top: 10px !important;
}

.pb10 {
  padding-bottom: 10px !important;
}

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

.pr10 {
  padding-right: 10px !important;
}

.m15 {
  margin: 15px !important;
}

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

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

.ml15 {
  margin-left: 15px !important;
}

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

.p15 {
  padding: 15px !important;
}

.pt15 {
  padding-top: 15px !important;
}

.pb15 {
  padding-bottom: 15px !important;
}

.pl15 {
  padding-left: 15px !important;
}

.pr15 {
  padding-right: 15px !important;
}

.m20 {
  margin: 20px !important;
}

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

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

.ml20 {
  margin-left: 20px !important;
}

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

.p20 {
  padding: 20px !important;
}

.pt20 {
  padding-top: 20px !important;
}

.pb20 {
  padding-bottom: 20px !important;
}

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

.pr20 {
  padding-right: 20px !important;
}

.m25 {
  margin: 25px !important;
}

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

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

.ml25 {
  margin-left: 25px !important;
}

.mr25 {
  margin-right: 25px !important;
}

.p25 {
  padding: 25px !important;
}

.pt25 {
  padding-top: 25px !important;
}

.pb25 {
  padding-bottom: 25px !important;
}

.pl25 {
  padding-left: 25px !important;
}

.pr25 {
  padding-right: 25px !important;
}

.m30 {
  margin: 30px !important;
}

.mt30 {
  margin-top: 30px !important;
}

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

.ml30 {
  margin-left: 30px !important;
}

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

.p30 {
  padding: 30px !important;
}

.pt30 {
  padding-top: 30px !important;
}

.pb30 {
  padding-bottom: 30px !important;
}

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

.pr30 {
  padding-right: 30px !important;
}

.m35 {
  margin: 35px !important;
}

.mt35 {
  margin-top: 35px !important;
}

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

.ml35 {
  margin-left: 35px !important;
}

.mr35 {
  margin-right: 35px !important;
}

.p35 {
  padding: 35px !important;
}

.pt35 {
  padding-top: 35px !important;
}

.pb35 {
  padding-bottom: 35px !important;
}

.pl35 {
  padding-left: 35px !important;
}

.pr35 {
  padding-right: 35px !important;
}

.m40 {
  margin: 40px !important;
}

.mt40 {
  margin-top: 40px !important;
}

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

.ml40 {
  margin-left: 40px !important;
}

.mr40 {
  margin-right: 40px !important;
}

.p40 {
  padding: 40px !important;
}

.pt40 {
  padding-top: 40px !important;
}

.pb40 {
  padding-bottom: 40px !important;
}

.pl40 {
  padding-left: 40px !important;
}

.pr40 {
  padding-right: 40px !important;
}

.m45 {
  margin: 45px !important;
}

.mt45 {
  margin-top: 45px !important;
}

.mb45 {
  margin-bottom: 45px !important;
}

.ml45 {
  margin-left: 45px !important;
}

.mr45 {
  margin-right: 45px !important;
}

.p45 {
  padding: 45px !important;
}

.pt45 {
  padding-top: 45px !important;
}

.pb45 {
  padding-bottom: 45px !important;
}

.pl45 {
  padding-left: 45px !important;
}

.pr45 {
  padding-right: 45px !important;
}

.m50 {
  margin: 50px !important;
}

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

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

.ml50 {
  margin-left: 50px !important;
}

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

.p50 {
  padding: 50px !important;
}

.pt50 {
  padding-top: 50px !important;
}

.pb50 {
  padding-bottom: 50px !important;
}

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

.pr50 {
  padding-right: 50px !important;
}

.m55 {
  margin: 55px !important;
}

.mt55 {
  margin-top: 55px !important;
}

.mb55 {
  margin-bottom: 55px !important;
}

.ml55 {
  margin-left: 55px !important;
}

.mr55 {
  margin-right: 55px !important;
}

.p55 {
  padding: 55px !important;
}

.pt55 {
  padding-top: 55px !important;
}

.pb55 {
  padding-bottom: 55px !important;
}

.pl55 {
  padding-left: 55px !important;
}

.pr55 {
  padding-right: 55px !important;
}

.m60 {
  margin: 60px !important;
}

.mt60 {
  margin-top: 60px !important;
}

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

.ml60 {
  margin-left: 60px !important;
}

.mr60 {
  margin-right: 60px !important;
}

.p60 {
  padding: 60px !important;
}

.pt60 {
  padding-top: 60px !important;
}

.pb60 {
  padding-bottom: 60px !important;
}

.pl60 {
  padding-left: 60px !important;
}

.pr60 {
  padding-right: 60px !important;
}

.m65 {
  margin: 65px !important;
}

.mt65 {
  margin-top: 65px !important;
}

.mb65 {
  margin-bottom: 65px !important;
}

.ml65 {
  margin-left: 65px !important;
}

.mr65 {
  margin-right: 65px !important;
}

.p65 {
  padding: 65px !important;
}

.pt65 {
  padding-top: 65px !important;
}

.pb65 {
  padding-bottom: 65px !important;
}

.pl65 {
  padding-left: 65px !important;
}

.pr65 {
  padding-right: 65px !important;
}

.m70 {
  margin: 70px !important;
}

.mt70 {
  margin-top: 70px !important;
}

.mb70 {
  margin-bottom: 70px !important;
}

.ml70 {
  margin-left: 70px !important;
}

.mr70 {
  margin-right: 70px !important;
}

.p70 {
  padding: 70px !important;
}

.pt70 {
  padding-top: 70px !important;
}

.pb70 {
  padding-bottom: 70px !important;
}

.pl70 {
  padding-left: 70px !important;
}

.pr70 {
  padding-right: 70px !important;
}

.m75 {
  margin: 75px !important;
}

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

.mb75 {
  margin-bottom: 75px !important;
}

.ml75 {
  margin-left: 75px !important;
}

.mr75 {
  margin-right: 75px !important;
}

.p75 {
  padding: 75px !important;
}

.pt75 {
  padding-top: 75px !important;
}

.pb75 {
  padding-bottom: 75px !important;
}

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

.pr75 {
  padding-right: 75px !important;
}

.m80 {
  margin: 80px !important;
}

.mt80 {
  margin-top: 80px !important;
}

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

.ml80 {
  margin-left: 80px !important;
}

.mr80 {
  margin-right: 80px !important;
}

.p80 {
  padding: 80px !important;
}

.pt80 {
  padding-top: 80px !important;
}

.pb80 {
  padding-bottom: 80px !important;
}

.pl80 {
  padding-left: 80px !important;
}

.pr80 {
  padding-right: 80px !important;
}

.loader {
  background-color: #fff;
  height: 100%;
  left: 0px;
  position: fixed;
  top: 0px;
  width: 100%;
  z-index: 100;
}

.loader-inner {
  left: 50%;
  position: fixed;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
}

.loader-inner div {
  background: #1E3D5C;
}

.is_page .site-header {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding-bottom: 160px;
}
@media screen and (max-width: 639px) {
  .is_page .site-header {
    padding-bottom: 80px;
  }
}
.is_page .site-header_bottom {
  height: 320px;
  background: #f5f4ed;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media screen and (max-width: 1023px) {
  .is_page .site-header_bottom {
    height: 240px;
  }
}
@media screen and (max-width: 639px) {
  .is_page .site-header_bottom {
    height: auto;
    padding: 40px 0;
  }
}
.is_page .site-header_ttl {
  font-size: 4rem;
  margin-bottom: 20px;
  font-weight: 500;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1023px) {
  .is_page .site-header_ttl {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 639px) {
  .is_page .site-header_ttl {
    font-size: 2.4rem;
  }
}
.is_page .site-header_bg {
  width: 320px;
  position: absolute;
  z-index: 0;
  pointer-events: none;
}
@media screen and (max-width: 1023px) {
  .is_page .site-header_bg {
    width: 220px;
  }
}
@media screen and (max-width: 639px) {
  .is_page .site-header_bg {
    display: none;
  }
}
.is_page .site-header_bg.is_left {
  top: 90px;
  left: -20px;
}
.is_page .site-header_bg.is_right {
  top: 90px;
  right: -40px;
}

.site-header {
  width: 100%;
  overflow: hidden;
}
.site-header_inner {
  display: flex;
  justify-content: space-between;
  padding: 20px;
}
.site-header_logo img {
  width: 140px;
  height: auto;
}
.site-header_copy {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 1;
}
.site-header_scroll {
  position: absolute;
  bottom: 120px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.site-header_scroll img {
  width: 40px;
  height: auto;
}

.list-nav {
  display: flex;
  align-items: center;
}
.list-nav_item {
  padding-left: 60px;
}
.list-nav_link {
  font-weight: bold;
}

@media screen and (max-width: 1023px) {
  .nav-head {
    display: none;
  }
}

@media screen and (max-width: 1023px) {
  .sp-nav {
    padding: 160px 40px 40px;
  }
}
.sp-nav .list-arrow_item {
  margin-bottom: 40px;
}
.sp-nav .btn-contact,
.sp-nav .btn-tel {
  width: 100%;
  margin: 10px auto;
  height: 80px;
}
.sp-nav_btn {
  display: none;
}
@media screen and (max-width: 1023px) {
  .sp-nav_btn {
    width: 50px;
    height: 50px;
    display: block;
    cursor: pointer;
    z-index: 99;
    position: fixed;
    top: 10px;
    right: 20px;
  }
}
@media screen and (max-width: 639px) {
  .sp-nav_btn {
    width: 40px;
    height: 40px;
    display: block;
    cursor: pointer;
    z-index: 99;
    position: fixed;
    top: 8px;
    right: 16px;
  }
}
.sp-nav_btn_mark {
  display: block;
  width: 30px;
  height: 2px;
  border-radius: 1px;
  background: #1E3D5C;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%) rotate(0);
  transition: all 0.4s;
}
.sp-nav_btn_mark:nth-child(1) {
  margin-top: -8px;
}
.sp-nav_btn_mark:nth-child(3) {
  margin-top: 8px;
}
.sp-nav_btn.is_active .sp-nav_btn_mark {
  transition: all 0.4s;
}
.sp-nav_btn.is_active .sp-nav_btn_mark:nth-child(1) {
  margin-top: 0;
  transform: translate(-50%) rotate(315deg);
}
.sp-nav_btn.is_active .sp-nav_btn_mark:nth-child(2) {
  opacity: 0;
}
.sp-nav_btn.is_active .sp-nav_btn_mark:nth-child(3) {
  margin-top: 0;
  transform: translate(-50%) rotate(-315deg);
}
.sp-nav_wrap {
  display: none;
}
@media screen and (max-width: 1023px) {
  .sp-nav_wrap {
    width: 100vw;
    height: 100%;
    top: 0;
    left: 0;
    background: #ffffff;
    z-index: 10;
    overflow: scroll;
    border-bottom: 1px solid #dddddd;
    position: fixed;
  }
}

.site-footer {
  background: #252525;
  padding: 80px 0 40px 0;
}
@media screen and (max-width: 639px) {
  .site-footer {
    padding: 60px 0 40px;
  }
}
.site-footer_top {
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 80px;
}
@media screen and (max-width: 639px) {
  .site-footer_top {
    padding: 0 10px;
  }
}
.site-footer_copyright {
  color: rgba(255, 255, 255, 0.4);
  font-size: 1.4rem;
  display: block;
  text-align: right;
}
@media screen and (max-width: 639px) {
  .site-footer_copyright {
    font-size: 1.2rem;
  }
}
.site-footer .inner {
  padding: 0 40px;
}
@media screen and (max-width: 639px) {
  .site-footer .inner {
    padding: 0 10px;
  }
}
.site-footer_logo img {
  width: 140px;
}
@media screen and (max-width: 639px) {
  .site-footer_logo img {
    width: 80px;
  }
}
.site-footer .btn-totop {
  color: #ffffff;
  font-size: 1.8rem;
  position: relative;
  padding-right: 40px;
}
@media screen and (max-width: 639px) {
  .site-footer .btn-totop {
    font-size: 1.6rem;
    padding-right: 20px;
  }
}
.site-footer .btn-totop:after {
  content: "";
  display: block;
  width: 28px;
  height: 10px;
  background: url("../img/ico_arrow.png") no-repeat center center/contain;
  position: absolute;
  transform: rotate(-90deg);
  right: 0;
  top: 8px;
}
@media screen and (max-width: 639px) {
  .site-footer .btn-totop:after {
    width: 20px;
  }
}
.site-footer .list-arrow {
  display: flex;
  margin-bottom: 40px;
}
@media screen and (max-width: 1023px) {
  .site-footer .list-arrow {
    flex-direction: column;
  }
}
.site-footer .list-arrow_item {
  margin-right: 80px;
}
@media screen and (max-width: 1023px) {
  .site-footer .list-arrow_item {
    margin: 0 0 20px 0;
  }
}

.link-footer {
  margin-bottom: 40px;
  font-size: 1.4rem;
}
@media screen and (max-width: 639px) {
  .link-footer {
    display: flex;
    flex-direction: column;
  }
}
.link-footer_item {
  color: #ffffff;
  margin-right: 80px;
  position: relative;
}
@media screen and (max-width: 1023px) {
  .link-footer_item {
    margin-right: 40px;
  }
}
@media screen and (max-width: 639px) {
  .link-footer_item {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #dddddd;
  }
}
.link-footer_item:after {
  content: "";
  display: block;
  width: 1px;
  height: 16px;
  background: #666666;
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 1023px) {
  .link-footer_item:after {
    right: -20px;
  }
}
@media screen and (max-width: 639px) {
  .link-footer_item:after {
    display: none;
  }
}
.link-footer_item:last-child:after {
  display: none;
}

article {
  margin: 160px auto;
}

.article {
  margin: 0 auto 160px;
}
.article.bg_gray {
  background: #f5f5f5 !important;
  padding: 80px 0;
  margin: 0 auto 80px;
}
.article.bg_wht {
  background: #ffffff !important;
  padding: 80px 0;
  margin: 0 auto 80px;
}

.w880 {
  max-width: 880px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 1023px) {
  .w880 {
    width: 95%;
  }
}

.w1080 {
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 1280px) {
  .w1080 {
    width: 95%;
  }
}

/* 基本
 –––––––––––––––––––––––––––––––––––––––––––––––––– */
input[type=email],
input[type=number],
input[type=password],
input[type=search],
input[type=tel],
input[type=text],
input[type=url],
input:not([type]), textarea, select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #f5f5f5;
  border: none;
  border-radius: 10px;
  box-shadow: none;
  box-sizing: inherit;
  height: 3.8rem;
  padding: 0.6rem 1rem;
  width: 100%;
  font-size: 1.6rem;
  color: #252525;
}
input[type=email]:focus,
input[type=number]:focus,
input[type=password]:focus,
input[type=search]:focus,
input[type=tel]:focus,
input[type=text]:focus,
input[type=url]:focus,
input:not([type]):focus, textarea:focus, select:focus {
  border-color: none;
  outline: 0;
}
input[type=email]::placeholder,
input[type=number]::placeholder,
input[type=password]::placeholder,
input[type=search]::placeholder,
input[type=tel]::placeholder,
input[type=text]::placeholder,
input[type=url]::placeholder,
input:not([type])::placeholder, textarea::placeholder, select::placeholder {
  color: #666666;
}

textarea {
  min-height: 16rem;
}

label,
legend {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  cursor: pointer;
}

fieldset {
  border-width: 0;
  padding: 0;
}

button,
input[type=submit],
input[type=reset] {
  font-size: 1.6rem;
  color: #ffffff;
  background: transparent;
  appearance: none;
  border: none;
}
@media screen and (max-width: 639px) {
  button,
  input[type=submit],
  input[type=reset] {
    font-size: 1.4rem;
  }
}
button:not(:disabled),
input[type=submit]:not(:disabled),
input[type=reset]:not(:disabled) {
  cursor: pointer;
}
button:hover,
input[type=submit]:hover,
input[type=reset]:hover {
  opacity: 0.7;
  transition: 0.3s;
}

input[type=reset] {
  max-width: 160px;
  height: 50px;
  background-color: #cccccc;
  box-shadow: 0 3px 0 #999999;
}
input[type=reset]:hover {
  background-color: rgb(178.5, 178.5, 178.5);
}

input[type=checkbox],
input[type=radio] {
  display: inline;
}
input[type=checkbox]:checked + span,
input[type=radio]:checked + span {
  font-weight: bold;
}

/* Radio Check
 –––––––––––––––––––––––––––––––––––––––––––––––––– */
.form-checkbox {
  margin-bottom: 80px;
}
@media screen and (max-width: 639px) {
  .form-checkbox {
    margin-bottom: 60px;
  }
}
.form-checkbox label {
  position: relative;
  cursor: pointer;
  display: inline-block;
  overflow: hidden;
  box-sizing: border-box;
  padding-left: 25px;
  line-height: 20px;
  font-weight: normal;
}
.form-checkbox label::after, .form-checkbox label::before {
  content: "";
  position: absolute;
  box-sizing: border-box;
}
.form-checkbox label::before {
  width: 20px;
  height: 20px;
  left: 0;
  top: 0;
  border: 1px solid #dddddd;
  border-radius: 3px;
  z-index: 3;
  box-sizing: border-box;
}
.form-checkbox label::after {
  top: calc(50% - 3.3333333333px);
  left: 6.6666666667px;
  margin: auto;
  transform: rotate(45deg);
  border-right: 3px solid #1E3D5C;
  border-bottom: 3px solid #1E3D5C;
  display: block;
  margin-top: -6.6666666667px;
  width: 6.6666666667px;
  height: 16px;
  z-index: 1;
}
.form-checkbox input[type=checkbox] {
  left: -20px;
  padding: 0;
  display: block;
  box-shadow: 20px 0 #ffffff;
  -moz-appearance: none;
  -webkit-appearance: none;
  position: absolute;
  z-index: 2;
  margin: 0;
  width: 20px;
  height: 20px;
  box-sizing: border-box;
  outline: none;
}
.form-checkbox input[type=checkbox]:checked {
  box-shadow: none;
}
.form-checkbox input[type=checkbox]:checked:focus {
  opacity: 0.1;
  box-shadow: 20px 0 #ffffff;
}
.form-checkbox input[type=checkbox]:focus {
  box-shadow: 20px 0 #ffffff;
}

label.radio {
  position: relative;
  cursor: pointer;
  display: inline-block;
  overflow: hidden;
  box-sizing: border-box;
}
label.radio::after, label.radio::before {
  content: "";
  position: absolute;
  box-sizing: border-box;
}
label.radio {
  min-height: 23px;
  margin-right: 23px;
  padding-left: 23px;
  line-height: 23px;
}
label.radio::after, label.radio::before {
  top: 0;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
}
label.radio::before {
  border-radius: 100%;
  width: 18px;
  height: 18px;
  border: 1px solid #dddddd;
  left: 0;
  z-index: 3;
}
label.radio::after {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  left: 4px;
  background-color: #1E3D5C;
  z-index: 1;
}
label.radio input[type=radio] {
  left: -18px;
  width: 18px;
  height: 18px;
  top: 0;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
  border-radius: 100%;
  box-shadow: 18px 0 #ffffff;
}
label.radio input[type=radio]:checked {
  box-shadow: none;
}
label.radio input[type=radio]:focus {
  opacity: 0.2;
  box-shadow: 18px 0 #ffffff;
}
label.radio input[type=radio] {
  -moz-appearance: none;
  -webkit-appearance: none;
  position: absolute;
  z-index: 2;
  margin: 0;
  width: 20px;
  height: 20px;
  box-sizing: border-box;
  outline: none;
}

/* Select
 –––––––––––––––––––––––––––––––––––––––––––––––––– */
select {
  outline: none;
  text-indent: 0.01px;
  text-overflow: "";
  background: none transparent;
  vertical-align: middle;
  font-size: inherit;
  color: inherit;
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 4px;
  display: inline-block;
  font: inherit;
  line-height: 1.5em;
  padding: 0.5em 3.5em 0.5em 1em;
  background-image: linear-gradient(45deg, transparent 50%, gray 50%), linear-gradient(135deg, gray 50%, transparent 50%), linear-gradient(to right, #ccc, #ccc);
  background-position: calc(100% - 20px) calc(1em + 2px), calc(100% - 15px) calc(1em + 2px), calc(100% - 2.5em) 0.5em;
  background-size: 5px 5px, 5px 5px, 1px 1.5em;
  background-repeat: no-repeat;
}
select:focus {
  background-image: linear-gradient(45deg, green 50%, transparent 50%), linear-gradient(135deg, transparent 50%, green 50%), linear-gradient(to right, #ccc, #ccc);
  background-position: calc(100% - 15px) 1em, calc(100% - 20px) 1em, calc(100% - 2.5em) 0.5em;
  background-size: 5px 5px, 5px 5px, 1px 1.5em;
  background-repeat: no-repeat;
  border-color: green;
  outline: 0;
}
select option {
  background-color: #ffffff;
  color: #252525;
}
select::-ms-expand {
  display: none;
}
select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #cccccc;
}

/* Form Layout
 –––––––––––––––––––––––––––––––––––––––––––––––––– */
.table-form {
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
}
@media screen and (max-width: 639px) {
  .table-form {
    flex-direction: column;
  }
}
.table-form_head {
  width: calc(100% - 640px);
  font-weight: bold;
  padding: 0.6rem 0;
}
@media screen and (max-width: 1023px) {
  .table-form_head {
    width: 35%;
  }
}
@media screen and (max-width: 639px) {
  .table-form_head {
    width: 100%;
    margin-bottom: 5px;
  }
}
.table-form_data {
  width: 640px;
}
@media screen and (max-width: 1023px) {
  .table-form_data {
    width: 65%;
  }
}
@media screen and (max-width: 639px) {
  .table-form_data {
    width: 100%;
  }
}
.table-form_data .mwform-tel-field {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.table-form_data .mwform-tel-field input {
  width: 30%;
}

.page-confirm .table-form_data {
  padding: 0.6rem 0;
}

.form-btn_wrap {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 639px) {
  .form-btn_wrap {
    flex-direction: column;
  }
}
.form-btn_wrap .btn-default {
  margin: 0;
}
@media screen and (max-width: 639px) {
  .form-btn_wrap .is_return {
    margin-bottom: 20px;
  }
}

.mw_wp_form .error {
  font-size: 1.4rem;
  color: #1E3D5C;
  padding-top: 5px;
  display: none !important;
}

.form-complete_ttl {
  font-size: 1.8rem;
  font-weight: 500;
}
.form-complete_btn.btn-tel {
  border: 1px solid #1E3D5C;
  width: 540px;
  height: 100px;
}
@media screen and (max-width: 639px) {
  .form-complete_btn.btn-tel {
    width: 100%;
  }
}

/* Button */
.btn-contact {
  width: 240px;
  height: 60px;
  background: #1E3D5C;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  border: 1px solid #252525;
  font-weight: 500;
}
.btn-contact svg {
  margin-right: 20px;
  color: #ffffff;
}

.btn-tel {
  width: 240px;
  height: 60px;
  border: 1px solid #252525;
  background: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-size: 2.4rem;
}
.btn-tel svg {
  margin-right: 10px;
  color: #1E3D5C;
}
.btn-tel_sml {
  display: block;
  font-size: 1.6rem;
  font-weight: normal;
}

.btn-default {
  max-width: 880px;
  width: 100%;
  height: 80px;
  background: #252525;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-weight: 500;
}
.btn-default:after {
  content: "";
  display: block;
  width: 44px;
  height: 44px;
  background: url("../img/ico_arrow.png") no-repeat center center/contain;
  margin-left: 40px;
}
.btn-default_wrap {
  width: 100%;
  text-align: center;
  margin-top: 40px;
}
.btn-default.is_back {
  flex-direction: row-reverse;
}
.btn-default.is_back:after {
  background: url("../img/ico_arrow.png") no-repeat center center/contain;
  transform: rotate(180deg);
  margin: 0 40px 0 0;
}
.btn-default.is_return {
  background: #666666;
}
.btn-default.is_half {
  width: calc(50% - 20px);
}
@media screen and (max-width: 639px) {
  .btn-default.is_half {
    width: 100%;
  }
}

.btn-sml {
  padding: 0;
  color: #ffffff;
  width: 240px;
  height: 40px;
  background: #252525;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-sml:after {
  color: #ffffff;
}

/* Mark */
.mark-new {
  padding: 1px 15px;
  border: 1px solid #1E3D5C;
  color: #1E3D5C;
  font-size: 1.4rem;
  margin: 0 20px 0 0;
}
@media screen and (max-width: 639px) {
  .mark-new {
    font-size: 1.2rem;
  }
}

/* Headline */
.title-article {
  font-size: 4rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 80px;
}
@media screen and (max-width: 1023px) {
  .title-article {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 639px) {
  .title-article {
    font-size: 2.4rem;
    margin-bottom: 40px;
  }
}
.title-article span {
  display: inline-block;
}

/* Headline */
.subtitle-article {
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 32px;
}
@media screen and (max-width: 1023px) {
  .subtitle-article {
    font-size: 2rem;
  }
}
@media screen and (max-width: 639px) {
  .subtitle-article {
    font-size: 1.8rem;
    margin-bottom: 16px;
  }
}
.subtitle-article span {
  display: inline-block;
}

/* List */
.list-dot {
  display: inline-flex;
  flex-direction: column;
}
.list-dot_item {
  padding-left: 26px;
  position: relative;
  display: inline-block;
}
.list-dot_item:before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  background: #1E3D5C;
  position: absolute;
  left: 10px;
  top: 10px;
}
@media screen and (max-width: 639px) {
  .list-dot_item:before {
    top: 8px;
  }
}

/* Numbered list (ordered) */
.list-num {
  list-style: decimal;
  list-style-position: inside;
  padding-left: 0;
  margin: 0 auto 1.5rem;
}
.list-num li {
  margin-bottom: 0.5em;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
}

.list-num.is-2col {
  display: block;
  columns: 2;
  column-gap: 40px;
}
@media screen and (max-width: 639px) {
  .list-num.is-2col {
    columns: 1;
  }
}

.list-dot.is-center {
  display: block;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
  text-align: left;
  padding-left: 0;
}
.list-dot.is-center .list-dot_item {
  display: block;
  padding-left: 20px;
}
.list-dot.is-center .list-dot_item:before {
  left: 0;
}

.list-dot.is-2col {
  display: block;
  columns: 2;
  column-gap: 40px;
  column-fill: balance;
}
@media screen and (max-width: 639px) {
  .list-dot.is-2col {
    columns: 1;
  }
}
.list-dot.is-2col .list-dot_item {
  display: block;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
}

.list-arrow_item {
  padding-left: 60px;
  position: relative;
}
.list-arrow_item:before {
  content: "";
  display: block;
  position: absolute;
  width: 44px;
  height: 12px;
  background: url("../img/ico_arrow_blk.png") no-repeat center center/contain;
  left: 0;
  top: 7px;
}
@media screen and (max-width: 639px) {
  .list-arrow_item:before {
    top: 5px;
  }
}
.list-arrow.is_white .list-arrow_item:before {
  background: url("../img/ico_arrow.png") no-repeat center center/contain;
}
.list-arrow.is_white .list-arrow_item a {
  color: #ffffff;
}
.list-arrow.is_pink .list-arrow_item:before {
  background: url("../img/ico_arrow_main.png") no-repeat center center/contain;
}

.list-gt {
  margin-top: 40px;
}
@media screen and (max-width: 639px) {
  .list-gt {
    margin-top: 20px;
  }
}
.list-gt_item {
  margin-bottom: 20px;
  position: relative;
}
@media screen and (max-width: 639px) {
  .list-gt_item {
    margin-bottom: 10px;
  }
}
.list-gt_item:last-child {
  margin-bottom: 0;
}
.list-gt_item:before {
  content: "\f105";
  display: inline-block;
  font-family: "Font Awesome 5 Pro";
  font-weight: 300;
  padding-right: 5px;
}

.area-news .list-news {
  max-width: 880px;
  width: 100%;
  margin: 0 auto;
  border-bottom: 1px solid #dddddd;
  height: auto;
  align-items: flex-start;
  padding: 20px 0;
}
@media screen and (max-width: 639px) {
  .area-news .list-news {
    padding: 15px 0;
  }
}
.area-news .list-news:nth-child(1) {
  border-top: 1px solid #252525;
}
.area-news .list-news:last-child {
  border-bottom: 1px solid #252525;
}
.area-news .list-news_txt {
  padding-left: 40px;
}
@media screen and (max-width: 639px) {
  .area-news .list-news_txt {
    padding: 10px 0 0 0;
  }
}

.area-contact {
  background: rgba(221, 221, 221, 0.3);
  padding: 80px 0;
  text-align: center;
  position: relative;
}
.area-contact:before, .area-contact:after {
  content: "";
  display: block;
  position: absolute;
  width: 340px;
  height: 410px;
  background: url("../img/bg_contact_l.png") no-repeat center center/contain;
  top: 0;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 1023px) {
  .area-contact:before, .area-contact:after {
    width: 300px;
    height: 360px;
  }
}
@media screen and (max-width: 639px) {
  .area-contact:before, .area-contact:after {
    width: 220px;
    height: 260px;
  }
}
.area-contact:after {
  background: url("../img/bg_contact_r.png") no-repeat center center/contain;
  top: auto;
  bottom: 0;
  right: 0;
  left: auto;
}
.area-contact_ttl {
  font-size: 2.4rem;
  font-weight: normal;
  margin-bottom: 60px;
}
@media screen and (max-width: 1023px) {
  .area-contact_ttl {
    font-size: 2rem;
  }
}
@media screen and (max-width: 639px) {
  .area-contact_ttl {
    font-size: 1.8rem;
    margin-bottom: 40px;
    font-weight: bold;
  }
}
.area-contact_ttl span {
  display: inline-block;
}
.area-contact_inner {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 639px) {
  .area-contact_inner {
    flex-direction: column;
    align-items: center;
  }
}
.area-contact .btn-contact,
.area-contact .btn-tel {
  max-width: 380px;
  width: 100%;
  height: 120px;
  margin: 0 20px;
  font-weight: 500;
}
@media screen and (max-width: 639px) {
  .area-contact .btn-contact,
  .area-contact .btn-tel {
    width: 85%;
    height: 100px;
  }
}
.area-contact .btn-contact svg,
.area-contact .btn-tel svg {
  width: 20px;
  height: 20px;
}
@media screen and (max-width: 639px) {
  .area-contact .btn-tel {
    margin-top: 40px;
  }
}

#breadcrumb ul {
  display: flex;
  flex-wrap: wrap;
  padding: 0 10px;
}

/* お知らせページ */
.list-news {
  border-bottom: 1px solid #dddddd;
  display: flex;
  padding: 20px 0;
}
@media screen and (max-width: 639px) {
  .list-news {
    flex-direction: column;
  }
}
.list-news_txt {
  padding-left: 40px;
}
@media screen and (max-width: 639px) {
  .list-news_txt {
    padding: 10px 0 0 0;
  }
}

.page-navigation {
  margin: 80px auto 0;
}

.wp-pagenavi {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.wp-pagenavi span,
.wp-pagenavi a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  padding: 0;
  margin: 0 5px 10px 5px;
  border: 1px solid #dddddd;
}
.wp-pagenavi .current {
  border: none;
  background: #f5f4ed;
}

.page-news_date {
  color: #1E3D5C;
  margin-bottom: 10px;
  text-align: center;
}
.page-news_ttl {
  font-size: 2.4rem;
  font-weight: 500;
  border-bottom: 1px solid #dddddd;
  padding-bottom: 20px;
  text-align: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 639px) {
  .page-news_ttl {
    font-size: 2rem;
  }
}
.page-news_content {
  margin-bottom: 160px;
}
@media screen and (max-width: 639px) {
  .page-news_content {
    margin-bottom: 80px;
  }
}
.page-news_content p {
  text-align: center;
  margin-bottom: 10px;
}
.page-news_content a {
  color: #1E3D5C;
  text-decoration: underline;
}

.nav-links {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 639px) {
  .nav-links {
    flex-direction: column;
  }
}
.nav-links .nav-previous,
.nav-links .nav-next {
  width: calc(50% - 20px);
  border: 1px solid #dddddd;
  padding: 20px 20px 20px 70px;
  position: relative;
  display: flex;
  align-items: center;
  flex: none;
}
@media screen and (max-width: 639px) {
  .nav-links .nav-previous,
  .nav-links .nav-next {
    width: 100%;
    margin: 0 0 20px;
    padding: 10px 10px 10px 50px;
  }
}
.nav-links .nav-previous:before,
.nav-links .nav-next:before {
  content: "\f0a8";
  display: block;
  position: absolute;
  font-family: "Font Awesome 5 Pro";
  color: #1E3D5C;
  font-size: 3.2rem;
  font-weight: 300;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 639px) {
  .nav-links .nav-previous:before,
  .nav-links .nav-next:before {
    font-size: 2.4rem;
    left: 10px;
  }
}
.nav-links .nav-previous .nav-subtitle,
.nav-links .nav-next .nav-subtitle {
  display: block;
  color: rgba(37, 37, 37, 0.6);
  margin-bottom: 5px;
}
.nav-links .nav-previous a,
.nav-links .nav-next a {
  display: block;
}
.nav-links .nav-next {
  text-align: right;
  padding: 20px 70px 20px 20px;
}
@media screen and (max-width: 639px) {
  .nav-links .nav-next {
    margin: 0;
    padding: 10px 50px 10px 10px;
  }
}
.nav-links .nav-next:before {
  content: "\f0a9";
  left: auto;
  right: 20px;
}
@media screen and (max-width: 639px) {
  .nav-links .nav-next:before {
    right: 10px;
  }
}

/* サイトマップ */
.content-sitemap {
  display: flex;
  flex-wrap: wrap;
}
.content-sitemap_inner {
  width: 50%;
  padding-right: 40px;
  margin-bottom: 80px;
}
@media screen and (max-width: 639px) {
  .content-sitemap_inner {
    width: 100%;
    padding-right: 0;
    margin-bottom: 40px;
  }
}
.content-sitemap_inner:last-child {
  margin-bottom: 0;
}
.content-sitemap_ttl {
  position: relative;
  padding: 0 0 20px 80px;
  border-bottom: 1px solid #dddddd;
  font-size: 2.4rem;
}
@media screen and (max-width: 1023px) {
  .content-sitemap_ttl {
    font-size: 2rem;
    padding: 0 0 20px 60px;
  }
}
.content-sitemap_ttl:before {
  content: "";
  display: block;
  position: absolute;
  width: 44px;
  height: 12px;
  background: url("../img/ico_arrow_main.png") no-repeat center center/contain;
  left: 0;
  top: 12px;
}
@media screen and (max-width: 1023px) {
  .content-sitemap_ttl:before {
    top: 10px;
  }
}

.page-default_ttl {
  font-size: 2.4rem;
  text-align: center;
  margin-bottom: 80px;
}
@media screen and (max-width: 1023px) {
  .page-default_ttl {
    font-size: 2rem;
  }
}
.page-default_ttl_line {
  font-size: 2rem;
  border-bottom: 1px solid #dddddd;
  margin: 80px auto 40px;
  padding-bottom: 10px;
}
.page-default_ttl_sub {
  font-size: 1.8rem;
  margin-bottom: 40px;
}

.edit-link {
  display: block;
  text-align: center;
  margin-bottom: 40px;
}

.figure-flow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 80px auto;
  position: relative;
}
.figure-flow:before {
  content: "";
  display: block;
  width: calc(100% - 80px);
  height: 5px;
  background: #dddddd;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 20px;
  z-index: -2;
}
@media screen and (max-width: 639px) {
  .figure-flow:before {
    top: 15px;
    width: calc(95% - 40px);
  }
}
.figure-flow_item {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #666666;
  position: relative;
}
.figure-flow_item:before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #dddddd;
  margin-bottom: 20px;
}
@media screen and (max-width: 639px) {
  .figure-flow_item:before {
    width: 30px;
    height: 30px;
    margin-bottom: 10px;
  }
}
.figure-flow_item.is_current {
  color: #252525;
  font-weight: bold;
}
.figure-flow_item.is_current:before {
  background: #1E3D5C;
}
.figure-flow_item.is_done {
  color: #666666;
}
.figure-flow_item.is_done:before {
  background: #1E3D5C;
}
.figure-flow.flow-confirm:after {
  content: "";
  display: block;
  width: calc(50% - 40px);
  height: 5px;
  background: #1E3D5C;
  position: absolute;
  right: 50%;
  top: 20px;
  z-index: -1;
}
@media screen and (max-width: 639px) {
  .figure-flow.flow-confirm:after {
    top: 15px;
    width: calc(47.5% - 40px);
  }
}
.figure-flow.flow-complete {
  margin-top: 0;
}
.figure-flow.flow-complete:after {
  content: "";
  display: block;
  width: calc(100% - 80px);
  height: 5px;
  background: #1E3D5C;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 20px;
  z-index: -1;
}
@media screen and (max-width: 639px) {
  .figure-flow.flow-complete:after {
    top: 15px;
    width: calc(95% - 40px);
  }
}

.table-border {
  display: flex;
  border-top: 1px solid #dddddd;
  padding: 15px 0;
}
@media screen and (max-width: 639px) {
  .table-border {
    flex-direction: column;
    border: none;
  }
}
.table-border:last-child {
  border-bottom: 1px solid #dddddd;
}
@media screen and (max-width: 639px) {
  .table-border:last-child {
    border: none;
  }
}
.table-border_head {
  width: 25%;
  text-align: center;
  font-weight: bold;
}
@media screen and (max-width: 639px) {
  .table-border_head {
    width: 100%;
    text-align: left;
    padding-bottom: 10px;
  }
}
.table-border_data {
  width: 75%;
  border-left: 1px solid #dddddd;
  padding: 0 40px;
}
@media screen and (max-width: 639px) {
  .table-border_data {
    width: 100%;
    border-left: none;
    border-top: 1px solid #dddddd;
    padding: 10px 0;
  }
}

.page-map_iframe {
  margin-bottom: 40px;
}
@media screen and (max-width: 1280px) {
  .page-map_iframe iframe {
    width: 100%;
  }
}
@media screen and (max-width: 1023px) {
  .page-map_iframe iframe {
    height: 240px;
  }
}
.page-map_info {
  display: flex;
  border-bottom: 1px solid #dddddd;
  padding-bottom: 20px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
@media screen and (max-width: 1023px) {
  .page-map_info {
    flex-direction: column;
  }
}
.page-map_address {
  margin-right: 40px;
}
@media screen and (max-width: 1023px) {
  .page-map_address {
    margin-bottom: 20px;
  }
}
.page-map .list-arrow {
  margin-bottom: 160px;
}

.page-service_head {
  text-align: center;
  margin-bottom: 160px;
}
@media screen and (max-width: 639px) {
  .page-service_head {
    text-align: center;
    margin-bottom: 80px;
  }
}
.page-service_head .list-arrow {
  flex-direction: row;
  justify-content: space-around;
}
@media screen and (max-width: 639px) {
  .page-service_head .list-arrow {
    flex-direction: column;
    display: inline-flex;
  }
}
.page-service_head .list-arrow_item {
  display: inline-block;
  margin: 0 40px;
}
@media screen and (max-width: 1023px) {
  .page-service_head .list-arrow_item {
    margin: 0 20px 0 0;
    font-size: 1.4rem;
    padding-left: 40px;
  }
}
@media screen and (max-width: 639px) {
  .page-service_head .list-arrow_item {
    text-align: left;
  }
}
@media screen and (max-width: 1023px) {
  .page-service_head .list-arrow_item:last-child {
    margin-right: 0;
  }
}
@media screen and (max-width: 1023px) {
  .page-service_head .list-arrow_item:before {
    width: 36px;
    top: 5px;
  }
}

.block-service {
  display: flex;
  margin-bottom: 160px;
}
@media screen and (max-width: 639px) {
  .block-service {
    margin-bottom: 80px;
    flex-direction: column;
  }
}
.block-service_num {
  color: #dddddd;
  font-weight: bold;
  font-size: 1.8rem;
  padding-bottom: 20px;
  display: block;
}
@media screen and (max-width: 1023px) {
  .block-service_num {
    padding-bottom: 10px;
  }
}
.block-service_ttl {
  position: relative;
  margin-bottom: 40px;
}
.block-service_ttl:before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 1px;
  background: #dddddd;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  z-index: -1;
}
.block-service_txt {
  font-size: 2.4rem;
  background: #ffffff;
  display: inline-block;
  padding-right: 40px;
}
@media screen and (max-width: 1023px) {
  .block-service_txt {
    font-size: 2rem;
  }
}
@media screen and (max-width: 639px) {
  .block-service_txt {
    font-size: 1.6rem;
    padding-right: 20px;
  }
}
.block-service_l {
  width: 50%;
}
@media screen and (max-width: 639px) {
  .block-service_l {
    width: 100%;
  }
}
.block-service_l .btn-default {
  width: 420px;
}
@media screen and (max-width: 1023px) {
  .block-service_l .btn-default {
    width: 280px;
  }
}
@media screen and (max-width: 639px) {
  .block-service_l .btn-default {
    width: 100%;
  }
}
.block-service_r {
  width: 50%;
  justify-content: flex-end;
  padding-right: 40px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1023px) {
  .block-service_r {
    padding-right: 20px;
  }
}
@media screen and (max-width: 639px) {
  .block-service_r {
    width: 100%;
    display: none;
  }
}
.block-service_r img {
  width: 320px;
}
@media screen and (max-width: 1023px) {
  .block-service_r img {
    width: 70%;
  }
}
.block-service.is_reverse {
  flex-direction: row-reverse;
}
.block-service.is_reverse .block-service_r {
  text-align: left;
  padding: 0 0 0 40px;
  justify-content: flex-start;
}
@media screen and (max-width: 1023px) {
  .block-service.is_reverse .block-service_r {
    padding: 0 0 0 20px;
  }
}
.block-service .list-dot {
  margin-bottom: 60px;
}
@media screen and (max-width: 639px) {
  .block-service .list-dot {
    margin-bottom: 40px;
  }
}
.block-service .list-dot_item {
  margin-bottom: 15px;
}
@media screen and (max-width: 1023px) {
  .block-service .list-dot_item {
    margin-bottom: 10px;
  }
}
.block-service .list-dot_item:last-child {
  margin-bottom: 0;
}

.page-service_top_inner {
  border: 1px solid #dddddd;
  max-width: 800px;
  width: 100%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 40px;
}
@media screen and (max-width: 639px) {
  .page-service_top_inner {
    padding: 40px 20px 20px;
  }
}
.page-service_top_head {
  font-size: 2.4rem;
  text-align: center;
  background: #ffffff;
  margin: -120px auto 60px;
  padding: 0 24px;
}
@media screen and (max-width: 639px) {
  .page-service_top_head {
    font-size: 2rem;
    margin: -70px auto 20px;
  }
}
.page-service_top_head br {
  display: none;
}
@media screen and (max-width: 639px) {
  .page-service_top_head br {
    display: block;
  }
}
.page-service_top_head img {
  display: block;
  margin: 0 auto;
  width: 180px;
  height: auto;
}
@media screen and (max-width: 1023px) {
  .page-service_top_head img {
    width: 160px;
  }
}
@media screen and (max-width: 639px) {
  .page-service_top_head img {
    width: 120px;
  }
}
.page-service .arrow_txt {
  text-align: center;
  font-size: 2rem;
}
@media screen and (max-width: 639px) {
  .page-service .arrow_txt {
    font-size: 1.6rem;
  }
}
.page-service .arrow_txt:before {
  content: "";
  display: block;
  width: 20px;
  height: 40px;
  background: url("../img/ico_arrow_bottom.png") no-repeat center center/contain;
  margin: 0 auto 20px;
}
.page-service_other {
  padding: 0 80px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1023px) {
  .page-service_other {
    padding: 0;
  }
}
@media screen and (max-width: 639px) {
  .page-service_other {
    flex-direction: column;
  }
}
.page-service_other .btn-default.is_half {
  width: calc((100% - 80px) / 2);
  margin: 0;
}
@media screen and (max-width: 1023px) {
  .page-service_other .btn-default.is_half {
    width: calc((100% - 40px) / 2);
  }
}
@media screen and (max-width: 639px) {
  .page-service_other .btn-default.is_half {
    width: 100%;
  }
}
@media screen and (max-width: 639px) {
  .page-service_other .btn-default.is_half + .is_half {
    margin-top: 10px;
  }
}

.box-service {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}
@media screen and (max-width: 639px) {
  .box-service {
    grid-template-columns: 1fr;
  }
}
.box-service:has(> .box-service_item:only-child) {
  grid-template-columns: 1fr;
  justify-items: center;
}
.box-service_item {
  background: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 30px 20px 30px;
}
@media screen and (max-width: 1023px) {
  .box-service_item {
    padding: 0 20px 20px;
  }
}
.box-service_item .voice-customer {
  margin-top: auto;
  align-self: flex-start;
  text-align: left;
  color: #666666;
}
.box-service_img {
  display: block;
  margin: -25px auto 40px;
}
@media screen and (max-width: 639px) {
  .box-service_img {
    margin-bottom: 20px;
  }
}
.box-service_img img {
  height: 140px;
  width: auto;
}
@media screen and (max-width: 1023px) {
  .box-service_img img {
    height: 120px;
  }
}
.box-service_ttl {
  margin-bottom: 20px;
  text-align: center;
}

.box-voice {
  display: flex;
  justify-content: space-around;
  padding: 0 40px;
  flex-wrap: wrap;
}
@media screen and (max-width: 1023px) {
  .box-voice {
    padding: 0;
  }
}
@media screen and (max-width: 639px) {
  .box-voice {
    flex-direction: column;
  }
}
.box-voice_item {
  width: calc((100% - 120px) / 3);
  border: 1px solid #dddddd;
  background: url("../img/bg_grid.png") repeat left top;
  padding: 40px 20px;
  margin-bottom: 40px;
}
@media screen and (max-width: 1023px) {
  .box-voice_item {
    width: calc((100% - 80px) / 3);
    padding: 20px;
  }
}
@media screen and (max-width: 639px) {
  .box-voice_item {
    width: 100%;
  }
}
@media screen and (max-width: 639px) {
  .box-voice_item:last-child {
    margin-bottom: 0;
  }
}
.box-voice_ttl {
  font-weight: bold;
  font-size: 1.8rem;
}
@media screen and (max-width: 639px) {
  .box-voice_ttl {
    font-size: 1.6rem;
  }
}
.box-voice_txt {
  margin: 40px auto 60px;
}
@media screen and (max-width: 1023px) {
  .box-voice_txt {
    margin: 40px auto;
  }
}
@media screen and (max-width: 639px) {
  .box-voice_txt {
    margin: 20px auto;
  }
}
.box-voice_belong {
  color: #999;
  margin-bottom: 10px;
}
.box-voice_name {
  font-weight: bold;
}

.page-404_inner img {
  max-width: 500px;
  width: 100%;
}
