@charset "UTF-8";
/*********************

疑似クラス

*********************/
a {
  transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
}

/*----------
  共通設定
----------*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

ul, ol {
  padding-left: 2rem;
}

nav ul {
  list-style: none;
  padding-left: 0;
}

blockquote, q {
  quotes: none;
}

img {
  border: none;
  margin: 0;
  padding: 0;
  vertical-align: bottom;
}

a img {
  border: none;
  margin: 0;
  padding: 0;
  vertical-align: bottom;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #CCC;
  margin: 1em 0;
  padding: 0;
}

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

/*================================================================================================
aタグの設定:::::::::::::::::::::::::::::::::::
================================================================================================*/
a:link {
  text-decoration: none;
}

a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

a:active {
  text-decoration: underline;
}

a:focus {
  outline: none;
}

/******************************************


基本系


******************************************/
*, *:before, *:after {
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: normal;
  line-height: 1.6;
  font-size: 16px;
  -webkit-text-size-adjust: none;
}

h1, h2, h3, h4, h5 {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: bold;
  line-height: 1.2;
}

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

iframe, video {
  max-width: 100%;
}

p {
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: #255AA7;
}
a:hover {
  color: inherit;
}

/******************************************


レイアウト系


******************************************/
.outline {
  max-width: 100%;
  width: 100%;
  padding-left: 5%;
  padding-right: 5%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 769px) {
  .outline {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media screen and (min-width: 951px) {
  .outline {
    max-width: 950px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (min-width: 751px) {
  .outline.w_narrow {
    max-width: 750px;
  }
}
@media screen and (min-width: 951px) {
  .outline.w_wide {
    max-width: 1150px;
  }
}
@media screen and (min-width: 769px) {
  .outline.w_over {
    max-width: 100%;
  }
}

.l_center {
  margin-left: auto;
  margin-right: auto;
}

.l_left {
  margin-left: 0;
  margin-right: auto;
}

.l_right {
  margin-left: auto;
  margin-right: 0;
}

.l_sp_v {
  padding-top: 40px;
  padding-bottom: 40px;
}
@media screen and (min-width: 769px) {
  .l_sp_v {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.l_sp_b {
  padding-bottom: 40px;
}
@media screen and (min-width: 769px) {
  .l_sp_b {
    padding-bottom: 60px;
  }
}

.l_sp_t {
  padding-top: 40px;
}
@media screen and (min-width: 769px) {
  .l_sp_t {
    padding-top: 60px;
  }
}

.l_sidebar { /* Safari */
  display: flex; /* Safari */
  flex-direction: row; /* Safari */
  flex-wrap: wrap; /* Safari */
  justify-content: space-between; /* Safari */
  align-items: stretch; /* Safari */
  align-content: stretch;
  max-width: 950px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.l_sidebar > .content_area,
.l_sidebar > article {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .l_sidebar > .content_area,
  .l_sidebar > article {
    width: calc(100% - (300px + 20px));
  }
}
.l_sidebar > .sidebar {
  width: 100%;
  padding: 0 5%;
}
@media screen and (min-width: 769px) {
  .l_sidebar > .sidebar {
    width: 300px;
    padding: 0;
  }
}

@media screen and (min-width: 431px) {
  .sp_only {
    display: none !important;
  }
}
@media screen and (min-width: 769px) {
  .sp_display {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .pc_display {
    display: none !important;
  }
}
/******************************************


装飾


******************************************/
.overlay {
  position: relative;
  overflow: hidden;
}
.overlay img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 0;
}
.overlay:after {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(135, 135, 135, 0) 47%, rgba(0, 0, 0, 0.7) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#00ffffff", endColorstr="#b3000000",GradientType=0 );
  content: "";
  position: absolute;
  z-index: 1;
}

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

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

.clearfix {
  display: inline-block;
}

* html .clearfix {
  height: 1%;
}

.clearfix {
  display: block;
}

.clear {
  clear: both;
}

/******************************************


装飾


******************************************/
.mb5 {
  margin-bottom: 5px;
}

.mt5 {
  margin-top: 5px;
}

.mtb5 {
  margin-top: 5px;
  margin-bottom: 5px;
}

.mb10 {
  margin-bottom: 10px;
}

.mt10 {
  margin-top: 10px;
}

.mtb10 {
  margin-top: 10px;
  margin-bottom: 10px;
}

.mb15 {
  margin-bottom: 15px;
}

.mt15 {
  margin-top: 15px;
}

.mtb15 {
  margin-top: 15px;
  margin-bottom: 15px;
}

.mb20 {
  margin-bottom: 20px;
}

.mt20 {
  margin-top: 20px;
}

.mtb20 {
  margin-top: 20px;
  margin-bottom: 20px;
}

.mb25 {
  margin-bottom: 25px;
}

.mt25 {
  margin-top: 25px;
}

.mtb25 {
  margin-top: 25px;
  margin-bottom: 25px;
}

.mb30 {
  margin-bottom: 30px;
}

.mt30 {
  margin-top: 30px;
}

.mtb30 {
  margin-top: 30px;
  margin-bottom: 30px;
}

.mb35 {
  margin-bottom: 35px;
}

.mt35 {
  margin-top: 35px;
}

.mtb35 {
  margin-top: 35px;
  margin-bottom: 35px;
}

.mb40 {
  margin-bottom: 40px;
}

.mt40 {
  margin-top: 40px;
}

.mtb40 {
  margin-top: 40px;
  margin-bottom: 40px;
}

.mb45 {
  margin-bottom: 45px;
}

.mt45 {
  margin-top: 45px;
}

.mtb45 {
  margin-top: 45px;
  margin-bottom: 45px;
}

.mb50 {
  margin-bottom: 50px;
}

.mt50 {
  margin-top: 50px;
}

.mtb50 {
  margin-top: 50px;
  margin-bottom: 50px;
}

.mb55 {
  margin-bottom: 55px;
}

.mt55 {
  margin-top: 55px;
}

.mtb55 {
  margin-top: 55px;
  margin-bottom: 55px;
}

.mb60 {
  margin-bottom: 60px;
}

.mt60 {
  margin-top: 60px;
}

.mtb60 {
  margin-top: 60px;
  margin-bottom: 60px;
}

.mb65 {
  margin-bottom: 65px;
}

.mt65 {
  margin-top: 65px;
}

.mtb65 {
  margin-top: 65px;
  margin-bottom: 65px;
}

.mb70 {
  margin-bottom: 70px;
}

.mt70 {
  margin-top: 70px;
}

.mtb70 {
  margin-top: 70px;
  margin-bottom: 70px;
}

.mb75 {
  margin-bottom: 75px;
}

.mt75 {
  margin-top: 75px;
}

.mtb75 {
  margin-top: 75px;
  margin-bottom: 75px;
}

.mb80 {
  margin-bottom: 80px;
}

.mt80 {
  margin-top: 80px;
}

.mtb80 {
  margin-top: 80px;
  margin-bottom: 80px;
}

.mb85 {
  margin-bottom: 85px;
}

.mt85 {
  margin-top: 85px;
}

.mtb85 {
  margin-top: 85px;
  margin-bottom: 85px;
}

.mb90 {
  margin-bottom: 90px;
}

.mt90 {
  margin-top: 90px;
}

.mtb90 {
  margin-top: 90px;
  margin-bottom: 90px;
}

.mb95 {
  margin-bottom: 95px;
}

.mt95 {
  margin-top: 95px;
}

.mtb95 {
  margin-top: 95px;
  margin-bottom: 95px;
}

.mb100 {
  margin-bottom: 100px;
}

.mt100 {
  margin-top: 100px;
}

.mtb100 {
  margin-top: 100px;
  margin-bottom: 100px;
}

.fs10 {
  font-size: 10px;
}

.fs11 {
  font-size: 11px;
}

.fs12 {
  font-size: 12px;
}

.fs13 {
  font-size: 13px;
}

.fs14 {
  font-size: 14px;
}

.fs15 {
  font-size: 15px;
}

.fs16 {
  font-size: 16px;
}

.fs17 {
  font-size: 17px;
}

.fs18 {
  font-size: 18px;
}

.fs19 {
  font-size: 19px;
}

.fs20 {
  font-size: 20px;
}

.fs21 {
  font-size: 21px;
}

.fs22 {
  font-size: 22px;
}

.fs23 {
  font-size: 23px;
}

.fs24 {
  font-size: 24px;
}

.fs25 {
  font-size: 25px;
}

.fs26 {
  font-size: 26px;
}

.fs27 {
  font-size: 27px;
}

.fs28 {
  font-size: 28px;
}

.fs29 {
  font-size: 29px;
}

.fs30 {
  font-size: 30px;
}

.fw_bold {
  font-weight: bold;
}

.fw_normal {
  font-weight: normal;
}

.text_center {
  text-align: center;
}

.text_right {
  text-align: right;
}

.text_left {
  text-align: left;
}

.message.caution {
  color: #B22019;
}
.message.info {
  color: #255AA7;
}
.message.border {
  padding: 0.2em;
  border: solid 2px #EEE;
}

.marker {
  background: linear-gradient(transparent 65%, #FFFF00 0%);
  display: inline;
  font-weight: bold;
}
.marker.thick {
  background: linear-gradient(transparent 60%, #255AA7 0%);
  display: inline;
}
.marker.thin {
  background: linear-gradient(transparent 80%, #255AA7 0%);
  display: inline;
}
.marker.gradation {
  background: linear-gradient(transparent 0, #255AA7 60%);
}

.mt30 {
  margin-top: 30px;
}

/********************************************************************************リスト系 *****/
.notlist {
  list-style: none;
  padding-left: 0;
}

dl.table_date { /* お知らせのような横並び  */ }
dl.table_date dt {
  float: left;
}
dl.table_date dd {
  margin-left: 80px;
}

/********************************************************************************リスト系 END */
/******************************************


ボタン


******************************************/
.floating_cta_area {
  display: flex;
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 200;
  width: 100%;
  transform: translateY(140%);
  transition: all 0.3s ease;
  background: white;
}
@media screen and (min-width: 769px) {
  .floating_cta_area {
    bottom: 10px;
    border: 2px solid #255AA7;
    border-right: none;
    border-radius: 8px 0 0 8px;
    transform: translateX(calc(100% - 40px));
    max-width: 315px;
  }
}
.floating_cta_area.active {
  transform: translateY(0%);
  transition: all 0.3s ease;
}
@media screen and (min-width: 769px) {
  .floating_cta_area.active {
    transform: translateX(0%);
  }
}
.floating_cta_area.active [data-btn=floating_switch]::after {
  transform: rotate(0);
}
@media screen and (min-width: 769px) {
  .floating_cta_area[data-switch=close] {
    transform: translateX(calc(100% - 40px));
  }
  .floating_cta_area[data-switch=close] [data-btn=floating_switch]::after {
    transform: rotate(180deg);
  }
  .floating_cta_area[data-switch=open] {
    transform: translateX(0%);
  }
  .floating_cta_area[data-switch=open] [data-btn=floating_switch]::after {
    transform: rotate(0);
  }
}
.floating_cta_area [data-btn=floating_switch] {
  padding: 15px 6px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  color: #FFF;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  background-color: #255AA7;
  border-radius: 4px 0 0 4px;
  font-size: 1.125rem;
}
@media screen and (min-width: 769px) {
  .floating_cta_area [data-btn=floating_switch] {
    display: flex;
  }
}
.floating_cta_area [data-btn=floating_switch] span {
  width: 100%;
  height: 100%;
  text-align: center;
}
.floating_cta_area [data-btn=floating_switch]::after {
  display: block;
  width: 20px;
  aspect-ratio: 1;
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transform: rotate(180deg);
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2220%22%20height%3D%2220%22%20viewBox%3D%220%200%2020%2020%22%3E%3Cg%20transform%3D%22translate%28-1138%20-1045%29%22%3E%3Ccircle%20cx%3D%2210%22%20cy%3D%2210%22%20r%3D%2210%22%20transform%3D%22translate%281138%201065%29%20rotate%28-90%29%22%20fill%3D%22%23fff%22%2F%3E%3Cpath%20d%3D%22M4.557%2C6.607-.746.666.746-.666l3.837%2C4.3L8.568-.679%2C10.037.679Z%22%20transform%3D%22translate%281145.934%201059.651%29%20rotate%28-90%29%22%20fill%3D%22%230067f3%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
.floating_cta_area .floating_box {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 10px 0;
}
@media screen and (min-width: 769px) {
  .floating_cta_area .floating_box {
    flex-direction: column;
    padding: 16px;
  }
}
.floating_cta_area .bubble_box {
  width: 96%;
  padding: 5px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: bold;
  background: #FFF;
  color: #373737;
  position: absolute;
  top: -12px;
  left: 50%;
  translate: -50% -50%;
  display: none;
  filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
}
@media screen and (min-width: 769px) {
  .floating_cta_area .bubble_box {
    display: block;
  }
}
.floating_cta_area .bubble_box span {
  color: #255AA7;
}
.floating_cta_area .bubble_box::after {
  content: "";
  position: absolute;
  top: calc(100% - 1px);
  left: 50%;
  transform: translateX(-50%);
  width: 11px;
  aspect-ratio: 11/6;
  background: #f0f0f0;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
}
.floating_cta_area .btn_cta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px 4px;
  width: 100%;
  min-height: 64px;
  padding: 4px 8px;
  font-size: 0.8125rem;
  color: #FFF;
  text-align: center;
  font-weight: bold;
  background-color: #E27C50;
}
@media screen and (min-width: 769px) {
  .floating_cta_area .btn_cta {
    min-height: 50px;
    padding: 8px 15px;
    border-radius: 32px;
    flex-direction: row;
    font-size: 0.875rem;
  }
}
@media (hover: hover) {
  .floating_cta_area .btn_cta:hover {
    text-decoration: none;
    opacity: 0.8;
  }
}
.floating_cta_area .btn_cta .btn_label {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .floating_cta_area .btn_cta .btn_label {
    font-size: 1rem;
  }
}
.floating_cta_area .btn_cta .number {
  line-height: 1;
}
@media screen and (min-width: 769px) {
  .floating_cta_area .btn_cta .number {
    font-size: 1.5rem;
  }
}
.floating_cta_area .btn_cta .tel_time {
  line-height: 1;
  font-size: 10px;
}
.floating_cta_area :is(.floating_tel, .floating_contact, .floating_download, .floating_mail):before {
  order: 3;
  content: "";
  width: 22px;
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (min-width: 769px) {
  .floating_cta_area :is(.floating_tel, .floating_contact, .floating_download, .floating_mail):before {
    order: 0;
  }
}
.floating_cta_area .floating_tel {
  position: relative;
}
.floating_cta_area .floating_tel:before {
  display: block;
  width: 23px;
  aspect-ratio: 1;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2231.736%22%20height%3D%2231.737%22%20viewBox%3D%220%200%2031.736%2031.737%22%3E%3Cpath%20d%3D%22M23.141%2C19.514%2C19.832%2C22.8a2.394%2C2.394%2C0%2C0%2C1-1.766.671%2C15.3%2C15.3%2C0%2C0%2C1-7.587-2.859%2C29.265%2C29.265%2C0%2C0%2C1-8.856-9.66C.838%2C9.324-.082%2C7.253.006%2C5.44A2.409%2C2.409%2C0%2C0%2C1%2C.677%2C3.65L3.986.343a1.1%2C1.1%2C0%2C0%2C1%2C1.791.3L8.439%2C5.689a1.466%2C1.466%2C0%2C0%2C1-.3%2C1.666L6.922%2C8.574a.6.6%2C0%2C0%2C0-.125.348%2C10.392%2C10.392%2C0%2C0%2C0%2C3.134%2C4.625c1.251%2C1.148%2C2.6%2C2.7%2C4.341%2C3.071a.687.687%2C0%2C0%2C0%2C.634-.062l1.418-1.442a1.619%2C1.619%2C0%2C0%2C1%2C1.716-.248h.025l4.8%2C2.834a1.155%2C1.155%2C0%2C0%2C1%2C.274%2C1.815Z%22%20transform%3D%22matrix%280.883%2C%200.469%2C%20-0.469%2C%200.883%2C%2011.017%2C%200%29%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E");
}
@media screen and (min-width: 769px) {
  .floating_cta_area .floating_tel:before {
    display: none;
  }
}
.floating_cta_area .floating_tel .btn_label {
  display: block;
}
@media screen and (min-width: 769px) {
  .floating_cta_area .floating_tel .btn_label {
    display: none;
  }
}
.floating_cta_area .floating_tel .tel_number_wrap {
  display: none;
}
@media screen and (min-width: 769px) {
  .floating_cta_area .floating_tel .tel_number_wrap {
    display: block;
  }
}
.floating_cta_area .floating_download {
  background: linear-gradient(90deg, #255AA7 0%, #255AA7 100%);
}
.floating_cta_area .floating_download:before {
  aspect-ratio: 110/92;
  content: "";
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22512%22%20height%3D%22432.501%22%20viewBox%3D%220%200%20512%20432.501%22%3E%3Cg%20transform%3D%22translate%280%20-39.75%29%22%3E%3Cpath%20d%3D%22M243.591%2C309.362c3.272%2C4.317%2C7.678%2C6.692%2C12.409%2C6.692s9.136-2.376%2C12.409-6.689L358%2C191.271c3.348-4.414%2C4.274-8.692%2C2.611-12.042s-5.631-5.2-11.168-5.2H315.14a16.861%2C16.861%2C0%2C0%2C1-16.844-16.84V59.777A20.05%2C20.05%2C0%2C0%2C0%2C278.272%2C39.75H233.726A20.049%2C20.049%2C0%2C0%2C0%2C213.7%2C59.777v97.415a16.861%2C16.861%2C0%2C0%2C1-16.844%2C16.84H162.555c-5.538%2C0-9.5%2C1.848-11.168%2C5.2s-.738%2C7.628%2C2.609%2C12.046Z%22%20fill%3D%22%23FFF%22%2F%3E%3Cpath%20d%3D%22M445.218%2C294.16v111.3H66.782V294.16H0V446.808a25.471%2C25.471%2C0%2C0%2C0%2C25.441%2C25.443H486.559A25.47%2C25.47%2C0%2C0%2C0%2C512%2C446.808V294.16Z%22%20fill%3D%22%23FFF%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
.floating_cta_area .floating_mail {
  color: #FFF;
  background: #255AA7;
}
@media screen and (min-width: 769px) {
  .floating_cta_area .floating_mail {
    border: 1px solid #255AA7;
  }
}
.floating_cta_area .floating_mail:before {
  aspect-ratio: 22/17;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2232.581%22%20height%3D%2225.927%22%20viewBox%3D%220%200%2032.581%2025.927%22%3E%3Cpath%20d%3D%22M4.518%2C9.067a1.81%2C1.81%2C0%2C0%2C1%2C1.81-1.81H35.271a1.81%2C1.81%2C0%2C0%2C1%2C1.81%2C1.81v20.5a3.62%2C3.62%2C0%2C0%2C1-3.62%2C3.62H8.12a3.62%2C3.62%2C0%2C0%2C1-3.62-3.62V9.653A1.752%2C1.752%2C0%2C0%2C1%2C4.518%2C9.4Zm3.6%2C4.026V29.564h25.34V13.093L24.63%2C21.923a5.43%2C5.43%2C0%2C0%2C1-7.678%2C0L8.12%2C13.089Zm2.845-2.273h19.65l-8.543%2C8.543a1.81%2C1.81%2C0%2C0%2C1-2.562%2C0l-8.543-8.543Z%22%20transform%3D%22translate%28-4.5%20-7.257%29%22%20fill%3D%22%23fff%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E");
}
.floating_cta_area .floating_contact {
  background-color: #E27C50;
}
.floating_cta_area .floating_contact:before {
  aspect-ratio: 71/64;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2270.518%22%20height%3D%2263.532%22%20viewBox%3D%220%200%2070.518%2063.532%22%3E%3Cpath%20d%3D%22M273.5%2C11336.42a15.882%2C15.882%2C0%2C1%2C1%2C15.91-15.934A15.89%2C15.89%2C0%2C0%2C1%2C273.5%2C11336.42Zm0-28.225a12.344%2C12.344%2C0%2C1%2C0%2C12.377%2C12.291A12.3%2C12.3%2C0%2C0%2C0%2C273.5%2C11308.2Z%22%20transform%3D%22translate%28-218.888%20-11272.888%29%22%20fill%3D%22%23fff%22%2F%3E%3Cpath%20d%3D%22M268.859%2C11322.344a1.768%2C1.768%2C0%2C0%2C1-1.25-.518l-3.537-3.537a1.77%2C1.77%2C0%2C0%2C1%2C2.5-2.5l2.286%2C2.285%2C5.823-5.828a1.77%2C1.77%2C0%2C0%2C1%2C2.5%2C2.5l-7.073%2C7.08A1.761%2C1.761%2C0%2C0%2C1%2C268.859%2C11322.344Z%22%20transform%3D%22translate%28-216.022%20-11269.437%29%22%20fill%3D%22%23fff%22%2F%3E%3Cpath%20d%3D%22M265.105%2C11321.036H236.917a5.259%2C5.259%2C0%2C0%2C1-5.3-5.2v-10.627a5.248%2C5.248%2C0%2C0%2C1%2C5.3-5.309h52.842a5.1%2C5.1%2C0%2C0%2C1%2C4.28%2C2.25%2C1.769%2C1.769%2C0%2C1%2C1-2.947%2C1.957%2C1.54%2C1.54%2C0%2C0%2C0-1.333-.67H236.917a1.751%2C1.751%2C0%2C0%2C0-1.769%2C1.771v10.627a1.724%2C1.724%2C0%2C0%2C0%2C1.769%2C1.666h28.188a1.769%2C1.769%2C0%2C0%2C1%2C0%2C3.537Z%22%20transform%3D%22translate%28-231.615%20-11275.211%29%22%20fill%3D%22%23fff%22%2F%3E%3Cpath%20d%3D%22M240.615%2C11309.383h-.1a1.77%2C1.77%2C0%2C0%2C1%2C0-3.539%2C1.813%2C1.813%2C0%2C0%2C1%2C1.82%2C1.771A1.722%2C1.722%2C0%2C0%2C1%2C240.615%2C11309.383Z%22%20transform%3D%22translate%28-228.135%20-11272.307%29%22%20fill%3D%22%23fff%22%2F%3E%3Cpath%20d%3D%22M253.65%2C11309.383h-.208a1.77%2C1.77%2C0%2C0%2C1%2C0-3.539%2C1.858%2C1.858%2C0%2C0%2C1%2C1.871%2C1.771A1.679%2C1.679%2C0%2C0%2C1%2C253.65%2C11309.383Z%22%20transform%3D%22translate%28-221.822%20-11272.307%29%22%20fill%3D%22%23fff%22%2F%3E%3Cpath%20d%3D%22M247.114%2C11309.383h-.1a1.77%2C1.77%2C0%2C0%2C1%2C0-3.539%2C1.813%2C1.813%2C0%2C0%2C1%2C1.82%2C1.771A1.722%2C1.722%2C0%2C0%2C1%2C247.114%2C11309.383Z%22%20transform%3D%22translate%28-224.962%20-11272.307%29%22%20fill%3D%22%23fff%22%2F%3E%3Cpath%20d%3D%22M289.759%2C11304.449H236.917a5.261%2C5.261%2C0%2C0%2C1-5.3-5.207v-10.621a5.252%2C5.252%2C0%2C0%2C1%2C5.3-5.312h52.842a5.253%2C5.253%2C0%2C0%2C1%2C5.3%2C5.313v10.621A5.262%2C5.262%2C0%2C0%2C1%2C289.759%2C11304.449Zm-52.842-17.6a1.735%2C1.735%2C0%2C0%2C0-1.769%2C1.771v10.621a1.725%2C1.725%2C0%2C0%2C0%2C1.769%2C1.668h52.842a1.726%2C1.726%2C0%2C0%2C0%2C1.771-1.668v-10.621a1.752%2C1.752%2C0%2C0%2C0-1.771-1.771Z%22%20transform%3D%22translate%28-231.615%20-11283.309%29%22%20fill%3D%22%23fff%22%2F%3E%3Cpath%20d%3D%22M238.134%2C11295.148a1.764%2C1.764%2C0%2C0%2C1-1.766-1.768v-3.541a1.766%2C1.766%2C0%2C1%2C1%2C3.533%2C0v3.541A1.764%2C1.764%2C0%2C0%2C1%2C238.134%2C11295.148Z%22%20transform%3D%22translate%28-229.295%20-11280.985%29%22%20fill%3D%22%23fff%22%2F%3E%3Cpath%20d%3D%22M273.5%2C11336.42a15.882%2C15.882%2C0%2C1%2C1%2C15.91-15.934A15.89%2C15.89%2C0%2C0%2C1%2C273.5%2C11336.42Zm0-28.225a12.344%2C12.344%2C0%2C1%2C0%2C12.377%2C12.291A12.3%2C12.3%2C0%2C0%2C0%2C273.5%2C11308.2Z%22%20transform%3D%22translate%28-218.888%20-11272.888%29%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E");
}

/******************************************


タイトル


******************************************/
.title01 {
  color: #FFF;
  padding: 15px;
  text-align: center;
  font-size: 20px;
  margin-bottom: 30px;
  font-weight: 700;
}
.title01 span {
  font-size: 36px;
}
.title01 + p {
  margin-top: 30px;
  margin-bottom: 30px;
}
.title01 + div {
  margin-top: -30px;
}
.title01.primary {
  background: #E27C50;
}

.title01_a {
  color: #255AA7;
  padding: 15px;
  text-align: center;
  font-size: 26px;
  margin-bottom: 10px;
  font-weight: 700;
}
@media screen and (min-width: 769px) {
  .title01_a {
    font-size: 26px;
  }
}
.title01_a span {
  display: inline-block;
  padding: 0 10px 10px;
  border-bottom: 5px dotted #255AA7;
}
.title01_a.mt {
  margin-bottom: 30px;
}
.title01_a + p {
  margin-top: 30px;
  margin-bottom: 30px;
}
.title01_a.primary {
  background: #E27C50;
}

.title02 {
  color: #255AA7;
  font-size: 20px;
  margin-bottom: 30px;
}
.title02 + p {
  margin-top: -15px;
  margin-bottom: 30px;
}
.title02.center {
  text-align: center;
}

.title03 {
  border-left: 3px solid #255AA7;
  padding-left: 10px;
  margin-bottom: 10px;
  font-size: 18px;
}
@media screen and (min-width: 769px) {
  .title03 {
    font-size: 20px;
  }
}

.title04 {
  margin-bottom: 20px;
  font-size: 20px;
  text-align: center;
}
.title04 span {
  display: inline-block;
  padding: 10px;
  border-bottom: 3px solid #255AA7;
}
.title04.mt {
  margin-top: 40px;
}

.bg_white {
  background: #FFF !important;
}

.bg_gray {
  background: #255AA7;
}

.side_bnr img {
  margin: auto;
  display: block;
}

/******************************************


共通部分


******************************************/
body {
  background: #FFF;
}

.content_area {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  max-width: 950px;
  margin: auto;
}
.content_area .sidebar {
  width: 100%;
  order: 0;
}
@media screen and (min-width: 769px) {
  .content_area .sidebar {
    width: 215px;
    order: -1;
  }
}
.content_area .contents {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .content_area .contents {
    width: calc(100% - 245px);
  }
}

.header_area {
  padding: 15px 0;
  position: relative;
}
@media screen and (min-width: 769px) {
  .header_area {
    padding: 0;
  }
}
.header_area .header_inner {
  display: flex;
  justify-content: space-between;
  align-content: center;
  align-items: center;
  padding-left: 15px;
}
@media screen and (min-width: 769px) {
  .header_area .header_inner {
    align-items: stretch;
  }
}
.header_area .logo_area {
  display: flex;
  align-items: center;
  max-width: 160px;
}
@media screen and (min-width: 769px) {
  .header_area .logo_area {
    max-width: 210px;
  }
}
.header_area .logo_area a {
  display: block;
  line-height: 0;
}
@media screen and (min-width: 769px) {
  .header_area .logo_area a {
    padding: 15px 0;
  }
}
.header_area .info_box {
  display: none;
}
@media screen and (min-width: 769px) {
  .header_area .info_box {
    display: flex;
    padding: 15px clamp(168px, 200px, 20%) 15px 0;
  }
}
.header_area .info_box .tel_box {
  display: none;
}
@media screen and (min-width: 1101px) {
  .header_area .info_box .tel_box {
    display: block;
  }
}
.header_area .btn_header {
  position: absolute;
  top: 0;
  right: 0;
  width: 20%;
  max-width: 200px;
  min-width: 168px;
  height: 100%;
}
.header_area .tel {
  display: block;
}
.header_area .tel:before {
  width: 80px;
  aspect-ratio: 104/30;
  background-image: url(../img/icon/tel_long.svg);
}

.btn_header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #E27C50;
  text-align: center;
  font-size: 13px;
  font-weight: bold;
  color: #FFF;
}
.btn_header:hover {
  color: #FFF;
  text-decoration: none;
  opacity: 0.8;
}
.btn_header span {
  display: block;
  font-size: 10px;
}
.btn_header::before {
  display: block;
  content: "";
  width: 33px;
  aspect-ratio: 33/26;
  margin-bottom: 10px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2232.581%22%20height%3D%2225.927%22%20viewBox%3D%220%200%2032.581%2025.927%22%3E%3Cg%20transform%3D%22translate%28-4.5%20-7.257%29%22%3E%3Cpath%20d%3D%22M4.518%2C9.067a1.81%2C1.81%2C0%2C0%2C1%2C1.81-1.81H35.271a1.81%2C1.81%2C0%2C0%2C1%2C1.81%2C1.81v20.5a3.62%2C3.62%2C0%2C0%2C1-3.62%2C3.62H8.12a3.62%2C3.62%2C0%2C0%2C1-3.62-3.62V9.653A1.752%2C1.752%2C0%2C0%2C1%2C4.518%2C9.4Zm3.6%2C4.026V29.564h25.34V13.093L24.63%2C21.923a5.43%2C5.43%2C0%2C0%2C1-7.678%2C0L8.12%2C13.089Zm2.845-2.273h19.65l-8.543%2C8.543a1.81%2C1.81%2C0%2C0%2C1-2.562%2C0l-8.543-8.543Z%22%20transform%3D%22translate%280%200%29%22%20fill%3D%22%23fff%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}

.info_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-content: center;
  align-items: center;
}
@media screen and (min-width: 769px) {
  .info_box {
    flex-wrap: nowrap;
  }
}
.info_box > div {
  width: 100%;
}
.info_box .tel_box {
  margin-bottom: 25px;
}
@media screen and (min-width: 769px) {
  .info_box .tel_box {
    margin-right: 25px;
    margin-bottom: 0;
  }
}
.info_box.info_btn_box a {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 3px;
  min-height: 75px;
}
.info_box.info_btn_box a:hover {
  box-shadow: none;
  transform: translateY(5px);
  text-decoration: none;
}
.info_box.info_btn_box .tel {
  border: 2px solid #255AA7;
  box-shadow: 0 5px 0 #255AA7;
}
.info_box.info_btn_box .tel:hover {
  color: #255AA7;
}
.info_box.info_btn_box .primary {
  font-size: 16px;
  border: 2px solid #af491d;
  box-shadow: 0 5px 0 #af491d;
}
.info_box.info_btn_box .primary span {
  margin-top: 4px;
  font-size: 12px;
}
.info_box.info_btn_box .primary:hover {
  background-color: #E27C50;
  color: #FFF;
}
.info_box.info_btn_box .primary:hover:after {
  filter: brightness(0) invert(1) !important;
}

.tel {
  display: flex;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  color: #255AA7;
  white-space: nowrap;
}
.tel:before {
  display: block;
  content: "";
  margin-right: 10px;
  aspect-ratio: 68/39;
  width: 68px;
  background-image: url(../img/icon/tel.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.tel p {
  font-size: 30px;
  line-height: 1;
  font-weight: 700;
}
.tel p span {
  display: block;
  font-size: 11px;
  margin-top: 5px;
  font-weight: normal;
}

.footer_area .footer_nav_area {
  background: #255AA7;
  padding: 30px 0;
  color: #FFF;
}
.footer_area .footer_nav_area .title {
  width: 100%;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (min-width: 769px) {
  .footer_area .footer_nav_area .title {
    text-align: left;
  }
}
.footer_area .footer_nav_area .footer_nav01 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.footer_area .footer_nav_area .footer_nav01 .arrow_box {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .footer_area .footer_nav_area .footer_nav01 .arrow_box {
    width: 30%;
  }
}
.footer_area .footer_nav_area .footer_nav01 .arrow_box div a {
  font-size: 14px;
}
.footer_area .footer_nav_area .footer_nav02 {
  padding: 35px 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (min-width: 769px) {
  .footer_area .footer_nav_area .footer_nav02 {
    flex-wrap: nowrap;
  }
}
.footer_area .footer_nav_area .footer_nav02 a {
  width: 50%;
  margin-bottom: 5px;
  font-size: 14px;
  text-align: center;
  color: #FFF;
  border-left: 1px solid #FFF;
}
@media screen and (min-width: 769px) {
  .footer_area .footer_nav_area .footer_nav02 a {
    width: 100%;
  }
}
.footer_area .footer_nav_area .footer_nav02 a:hover {
  color: #255AA7;
}
@media screen and (max-width: 768px) {
  .footer_area .footer_nav_area .footer_nav02 a:nth-child(2n) {
    border-right: 1px solid #FFF;
  }
}
@media screen and (min-width: 769px) {
  .footer_area .footer_nav_area .footer_nav02 a:last-child {
    border-right: 1px solid #FFF;
  }
}
.footer_area .footer_nav_area .arrow_box a {
  margin-bottom: 5px;
  font-size: 16px;
  color: #FFF;
}
.footer_area .footer_nav_area .arrow_box a:hover {
  color: #FFF;
  text-decoration: underline;
}
.footer_area .footer_nav_area .arrow_box > a {
  display: flex;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  font-weight: bold;
  padding: 5px 0;
  font-size: 18px;
  color: #FFF;
}
.footer_area .footer_nav_area .arrow_box > a:before {
  display: block;
  content: "▶︎";
  margin-right: 10px;
  color: #FFF;
  font-size: 11px;
}
.footer_area .footer_nav_area .arrow_box > a:hover {
  color: #FFF;
  text-decoration: underline;
}
.footer_area .footer_nav_area .arrow_box > div {
  display: none;
  flex-direction: column;
}
@media screen and (min-width: 769px) {
  .footer_area .footer_nav_area .arrow_box > div {
    display: flex;
  }
}
.footer_area .footer_nav_area .arrow_box > div + a {
  margin-top: 15px;
}
.footer_area .copy_area {
  padding: 30px 0;
  text-align: center;
}

#overlay {
  display: none;
  cursor: pointer;
}

@media screen and (min-width: 769px) {
  .nav_area {
    display: flex !important;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    font-size: 16px;
  }
  .nav_area .globalnav {
    margin-right: 5%;
    display: flex;
    justify-content: space-between;
    gap: 15px;
    width: -moz-fit-content;
    width: fit-content;
  }
  .nav_area .globalnav a {
    position: relative;
    color: #373737;
    display: block;
    padding: 25px 5px;
    font-weight: bold;
  }
  .nav_area .globalnav a.logo {
    display: none;
  }
  .nav_area .globalnav a:hover {
    text-decoration: none;
    opacity: 0.7;
  }
  .nav_area .globalnav > a,
  .nav_area .globalnav .dropdown {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    white-space: nowrap;
    min-height: 100px;
    height: 100%;
  }
  .nav_area .globalnav > a,
  .nav_area .globalnav .dropdown > a {
    padding: 8px 5px;
  }
  .nav_area .globalnav > a:before,
  .nav_area .globalnav .dropdown > a:before {
    content: "";
    display: inline-block;
    border-bottom: 5px solid #FFF;
    width: 0;
    position: absolute;
    bottom: 0;
    left: 50%; /* Safari用 */
    transform: translate(-50%, 0);
    transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
  }
  .nav_area .globalnav > a:hover,
  .nav_area .globalnav .dropdown > a:hover {
    text-decoration: none;
  }
  .nav_area .globalnav > a:hover:before,
  .nav_area .globalnav .dropdown > a:hover:before {
    width: 100%;
  }
  .nav_area .globalnav .info_box {
    display: none;
  }
  .nav_area .globalnav .dropdown > div {
    box-shadow: 4px 4px 2px rgba(0, 0, 0, 0.1);
    display: none;
    position: absolute;
    text-align: left;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 950px;
    background: rgba(255, 255, 255, 0.9);
    padding: 50px 40px;
    z-index: 10;
    opacity: 0;
    font-size: 1rem;
  }
  .nav_area .globalnav .dropdown > div p {
    width: 100%;
    font-weight: bold;
    color: #373737;
  }
  .nav_area .globalnav .dropdown > div .sub_nav {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }
  .nav_area .globalnav .dropdown > div .sub_nav + p {
    margin-top: 30px;
  }
  .nav_area .globalnav .dropdown > div a {
    font-size: 0.8em;
    color: #373737;
    display: inline-block;
    width: 200px;
    max-width: 100%;
    border-bottom: 1px solid #373737;
    padding-bottom: 5px;
  }
  .nav_area .globalnav .dropdown > div a:hover {
    color: #255AA7;
  }
  .nav_area .globalnav .dropdown:hover > div {
    display: block;
    opacity: 1;
  }
}
@media screen and (max-width: 768px) {
  .nav_area {
    position: fixed;
    width: 100%;
    height: calc(100% - 60px);
    height: calc(100vh - 60px);
    display: none;
    overflow-y: scroll;
    overflow-x: hidden;
    z-index: 1000;
    top: 0;
    left: 0;
    padding: 55px 0;
    max-width: 100%;
    opacity: 0;
    justify-content: center;
    align-content: center;
    align-items: center;
    transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -webkit-touch-action: pan-y;
    -moz-touch-action: pan-y;
    -o-touch-action: pan-y;
    touch-action: pan-y;
  }
  .nav_area.scroll {
    overflow-y: scroll;
  }
  .globalnav {
    width: 92vw;
    min-height: 100%;
    height: 100%;
    max-width: 680px;
    margin: auto;
    position: relative;
  }
  .globalnav a {
    position: relative;
  }
  .globalnav > a,
  .globalnav .dropdown a,
  .globalnav .close {
    color: #FFF;
    width: 100%;
    max-width: 100vw;
    display: flex;
    text-align: center;
    align-items: center;
    height: auto;
    padding: 15px;
    border-bottom: 1px solid #EEE;
  }
  .globalnav > a:before,
  .globalnav .dropdown a:before,
  .globalnav .close:before {
    display: inline-block;
    content: ">";
    margin-right: 8px;
    font-weight: bold;
  }
  .globalnav > a:hover,
  .globalnav .dropdown a:hover,
  .globalnav .close:hover {
    color: #255AA7;
    text-decoration: none;
  }
  .globalnav > .info_box {
    padding: 20px 15px;
    background: #FFF;
    margin-top: 50px;
    width: 100%;
  }
  .globalnav > .info_box a {
    width: 96%;
    max-width: 100%;
  }
  .globalnav .close {
    position: fixed;
    top: 0;
    right: -100vw;
    margin-left: 0 !important;
    z-index: 99999;
    cursor: pointer;
    transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
  }
  .globalnav .close:before {
    content: "<";
  }
  .globalnav .close:after {
    content: "戻る";
  }
  .globalnav.open {
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .globalnav.open > * {
    margin-left: -110%;
  }
  .globalnav.open .on .close {
    right: 0 !important;
    margin-left: 0;
    background: #255aa7;
  }
  .globalnav .dropdown {
    max-width: 100%;
    transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    touch-action: pan-y;
  }
  .globalnav .dropdown > a:before {
    content: ">";
    transform: rotate(90deg);
  }
  .globalnav .dropdown > div {
    margin-top: 30px;
    padding-bottom: 80px;
    -webkit-touch-action: pan-y;
    -moz-touch-action: pan-y;
    -o-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-overflow-scrolling: touch;
    position: absolute;
    top: 0;
    right: -100%;
    transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    z-index: 9999;
  }
  .globalnav .dropdown > div::-webkit-scrollbar {
    width: 4px;
  }
  .globalnav .dropdown > div::-webkit-scrollbar-thumb {
    background: #2cc2e4;
  }
  .globalnav .dropdown > div::-webkit-scrollbar-track-piece {
    background: #dddddd;
  }
  .globalnav .dropdown > div p {
    color: #FFF;
    margin: 0 0 10px;
    font-weight: bold;
    border-left: 5px solid #FFF;
    padding: 3px 8px;
  }
  .globalnav .dropdown > div a + p {
    margin-top: 40px;
  }
  .globalnav .dropdown.on > div {
    right: 0;
    width: 100%;
  }
}
.nav_btn {
  color: #373737;
  position: fixed;
  right: 0;
  top: 0;
  padding: 10px;
  z-index: 9999;
  cursor: pointer;
}
@media screen and (min-width: 769px) {
  .nav_btn {
    display: none;
  }
}
.nav_btn::before {
  display: block;
  content: "MENU";
  font-size: 9px;
  margin-top: 71%;
  font-weight: bold;
  text-align: center;
  line-height: 1.6;
}
.nav_btn span {
  position: absolute;
  height: 3px; /*線の太さ*/
  max-width: 30px; /*長さ*/
  width: 100%;
  background: #373737;
  display: block;
  content: "";
  cursor: pointer;
  left: 50%;
  top: 45%;
  margin-top: -5px;
  z-index: 999;
  transform: translateX(-50%);
}
.nav_btn span::before, .nav_btn span::after {
  position: absolute;
  height: 3px; /*線の太さ*/
  width: 30px; /*長さ*/
  border-radius: 5px;
  background: inherit;
  display: block;
  content: "";
  cursor: pointer;
  left: 50%;
  transform: translate(-50%, 0) rotate(0deg);
}
.nav_btn span::before {
  top: -7px;
}
.nav_btn span::after {
  top: 7px;
}
.nav_btn span::before, .nav_btn span::after {
  opacity: 1;
  z-index: 999;
  transition: 0.5s;
}

body {
  height: auto;
  touch-action: auto;
  width: 100%;
}
body.open_menu {
  overflow: hidden;
  height: 100vh;
  max-height: calc(100vh - (env(safe-area-inset-bottom) + 60px));
  -webkit-touch-action: none;
  -moz-touch-action: none;
  -o-touch-action: none;
  touch-action: none;
}
body.noscroll {
  position: fixed;
}

.open_menu .nav_area {
  opacity: 1;
}
@media screen and (min-width: 769px) {
  .open_menu .nav_area {
    display: flex !important;
  }
}
.open_menu #overlay {
  display: block;
  content: "";
  background: #255aa7;
  width: 100%;
  height: 100vh;
  opacity: 1;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
}
.open_menu .nav_btn::before {
  content: "CLOSE";
  color: #FFF;
  font-size: 8px;
}
.open_menu .nav_btn > span {
  z-index: 999;
  height: 0;
  background: #FFF;
}
.open_menu .nav_btn > span::before, .open_menu .nav_btn > span::after {
  width: 28px;
  right: 2px;
  z-index: 999;
  transition: 0.5s;
  transform-origin: center;
}
.open_menu .nav_btn > span::before {
  top: 4px;
  transform: translate(-50%, -7px) rotate(-45deg);
}
.open_menu .nav_btn > span::after {
  top: -9px;
  transform: translate(-50%, 7px) rotate(45deg);
}

.btn_area {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
@media screen and (min-width: 769px) {
  .btn_area {
    flex-wrap: nowrap;
    justify-content: space-between;
  }
}
.btn_area a {
  margin: 0 5px 10px;
}
.btn_area.center a {
  margin: 0 auto 10px;
}
.btn_area.mt {
  margin-top: 40px;
}
.btn_area.right a {
  margin: 0 auto 10px;
}
@media screen and (min-width: 769px) {
  .btn_area.right a {
    margin: 0 5px 10px auto;
  }
  .btn_area.right a:last-child {
    margin: 0 0 10px auto;
  }
}

.btn:is(.box02, .edit, .donw, .fax, .mail) {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: #FFF;
  background: #E27C50;
  border: 1px solid #E27C50;
  padding: 10px 15px;
  border-radius: 5px;
  width: 100%;
  max-width: 260px;
  height: 65px;
}
.btn:is(.box02, .edit, .donw, .fax, .mail):before {
  display: block;
  margin-right: 10px;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.btn:is(.box02, .edit, .donw, .fax, .mail):hover {
  color: #E27C50;
  background: #FFF;
  text-decoration: none;
}
.btn:is(.box02, .edit, .donw, .fax, .mail):hover:before {
  filter: none;
}
.btn.mail:before {
  width: 36px;
  height: 28px;
  filter: brightness(0) invert(1);
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2232.581%22%20height%3D%2225.927%22%20viewBox%3D%220%200%2032.581%2025.927%22%3E%3Cpath%20d%3D%22M4.518%2C9.067a1.81%2C1.81%2C0%2C0%2C1%2C1.81-1.81H35.271a1.81%2C1.81%2C0%2C0%2C1%2C1.81%2C1.81v20.5a3.62%2C3.62%2C0%2C0%2C1-3.62%2C3.62H8.12a3.62%2C3.62%2C0%2C0%2C1-3.62-3.62V9.653A1.752%2C1.752%2C0%2C0%2C1%2C4.518%2C9.4Zm3.6%2C4.026V29.564h25.34V13.093L24.63%2C21.923a5.43%2C5.43%2C0%2C0%2C1-7.678%2C0L8.12%2C13.089Zm2.845-2.273h19.65l-8.543%2C8.543a1.81%2C1.81%2C0%2C0%2C1-2.562%2C0l-8.543-8.543Z%22%20transform%3D%22translate%28-4.5%20-7.257%29%22%20fill%3D%22%23E27C50%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E");
}
.btn.fax:before {
  width: 36px;
  height: 28px;
  filter: brightness(0) invert(1);
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2236%22%20height%3D%2236%22%20viewBox%3D%220%200%2036%2036%22%3E%3Cpath%20d%3D%22M5.786%2C7.714a3.1%2C3.1%2C0%2C0%2C1%2C2.27.944A3.1%2C3.1%2C0%2C0%2C1%2C9%2C10.928V32.785a3.1%2C3.1%2C0%2C0%2C1-.944%2C2.27A3.1%2C3.1%2C0%2C0%2C1%2C5.786%2C36H3.214a3.1%2C3.1%2C0%2C0%2C1-2.27-.944A3.094%2C3.094%2C0%2C0%2C1%2C0%2C32.786V10.929a3.1%2C3.1%2C0%2C0%2C1%2C.944-2.27%2C3.1%2C3.1%2C0%2C0%2C1%2C2.27-.944H5.785Zm27.643%2C3.275A5.2%2C5.2%2C0%2C0%2C1%2C35.3%2C12.857a4.95%2C4.95%2C0%2C0%2C1%2C.7%2C2.571V30.857A5.145%2C5.145%2C0%2C0%2C1%2C30.857%2C36H13.5a3.223%2C3.223%2C0%2C0%2C1-3.214-3.214V1.929A1.858%2C1.858%2C0%2C0%2C1%2C10.849.563%2C1.865%2C1.865%2C0%2C0%2C1%2C12.215%2C0h13.5a4.634%2C4.634%2C0%2C0%2C1%2C1.768.4%2C4.688%2C4.688%2C0%2C0%2C1%2C1.527.964L32.064%2C4.42a4.666%2C4.666%2C0%2C0%2C1%2C.964%2C1.527%2C4.659%2C4.659%2C0%2C0%2C1%2C.4%2C1.768V10.99ZM18.643%2C30.857V28.286A.62.62%2C0%2C0%2C0%2C18%2C27.643H15.429a.62.62%2C0%2C0%2C0-.643.643v2.571a.62.62%2C0%2C0%2C0%2C.643.643H18a.62.62%2C0%2C0%2C0%2C.643-.643Zm0-5.143V23.143A.62.62%2C0%2C0%2C0%2C18%2C22.5H15.429a.62.62%2C0%2C0%2C0-.643.643v2.571a.62.62%2C0%2C0%2C0%2C.643.643H18a.62.62%2C0%2C0%2C0%2C.643-.643Zm0-5.143V18A.62.62%2C0%2C0%2C0%2C18%2C17.357H15.429a.62.62%2C0%2C0%2C0-.643.643v2.571a.62.62%2C0%2C0%2C0%2C.643.643H18a.62.62%2C0%2C0%2C0%2C.643-.643Zm5.143%2C10.286V28.286a.62.62%2C0%2C0%2C0-.643-.643H20.572a.62.62%2C0%2C0%2C0-.643.643v2.571a.62.62%2C0%2C0%2C0%2C.643.643h2.571a.62.62%2C0%2C0%2C0%2C.643-.643Zm0-5.143V23.143a.62.62%2C0%2C0%2C0-.643-.643H20.572a.62.62%2C0%2C0%2C0-.643.643v2.571a.62.62%2C0%2C0%2C0%2C.643.643h2.571a.62.62%2C0%2C0%2C0%2C.643-.643Zm0-5.143V18a.62.62%2C0%2C0%2C0-.643-.643H20.572a.62.62%2C0%2C0%2C0-.643.643v2.571a.62.62%2C0%2C0%2C0%2C.643.643h2.571a.62.62%2C0%2C0%2C0%2C.643-.643Zm5.143%2C10.286V28.286a.62.62%2C0%2C0%2C0-.643-.643H25.715a.62.62%2C0%2C0%2C0-.643.643v2.571a.62.62%2C0%2C0%2C0%2C.643.643h2.571a.62.62%2C0%2C0%2C0%2C.643-.643Zm0-5.143V23.143a.62.62%2C0%2C0%2C0-.643-.643H25.715a.62.62%2C0%2C0%2C0-.643.643v2.571a.62.62%2C0%2C0%2C0%2C.643.643h2.571a.62.62%2C0%2C0%2C0%2C.643-.643Zm0-5.143V18a.62.62%2C0%2C0%2C0-.643-.643H25.715a.62.62%2C0%2C0%2C0-.643.643v2.571a.62.62%2C0%2C0%2C0%2C.643.643h2.571a.62.62%2C0%2C0%2C0%2C.643-.643Zm1.929-7.714V7.714H27.644a1.922%2C1.922%2C0%2C0%2C1-1.929-1.929V2.571H12.857V12.857h18Z%22%20fill%3D%22%23E27C50%22%2F%3E%3C%2Fsvg%3E");
}
.btn.donw:before {
  width: 36px;
  height: 37px;
  filter: brightness(0) invert(1);
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2237%22%20height%3D%2237%22%20viewBox%3D%220%200%2037%2037%22%3E%3Cpath%20d%3D%22M18.5%2C0A18.5%2C18.5%2C0%2C1%2C0%2C37%2C18.5%2C18.5%2C18.5%2C0%2C0%2C0%2C18.5%2C0Zm0%2C32.978A14.478%2C14.478%2C0%2C1%2C1%2C32.978%2C18.5%2C14.478%2C14.478%2C0%2C0%2C1%2C18.5%2C32.978Zm3.62-22.221H14.88v8.224H10.356L18.5%2C26.644l8.144-7.661H22.12V10.759Z%22%20fill%3D%22%23E27C50%22%2F%3E%3C%2Fsvg%3E");
}
.btn.edit:before {
  width: 36px;
  height: 36px;
  filter: brightness(0) invert(1);
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2236.081%22%20height%3D%2236.081%22%20viewBox%3D%220%200%2036.081%2036.081%22%3E%3Cg%20transform%3D%22translate%28-4%20-1.997%29%22%3E%3Cpath%20d%3D%22M32.861%2C34.861H6.405V8.405H22.3L24.708%2C6H6.405A2.4%2C2.4%2C0%2C0%2C0%2C4%2C8.405V34.861a2.4%2C2.4%2C0%2C0%2C0%2C2.405%2C2.405H32.861a2.4%2C2.4%2C0%2C0%2C0%2C2.405-2.405V16.823l-2.405%2C2.405Z%22%20transform%3D%22translate%280%200.811%29%22%20fill%3D%22%23E27C50%22%2F%3E%3Cpath%20d%3D%22M37.683%2C6.618%2C33.63%2C2.566a1.936%2C1.936%2C0%2C0%2C0-2.742%2C0L14.4%2C19.149l-1.335%2C5.784a1.936%2C1.936%2C0%2C0%2C0%2C1.888%2C2.321%2C2.032%2C2.032%2C0%2C0%2C0%2C.445%2C0l5.832-1.287L37.683%2C9.36a1.936%2C1.936%2C0%2C0%2C0%2C0-2.742Zm-17.7%2C17.124-4.4.974L16.6%2C20.352%2C29.012%2C7.857%2C32.4%2C11.248ZM33.763%2C9.889%2C30.371%2C6.5l1.864-1.9%2C3.415%2C3.415Z%22%20transform%3D%22translate%281.829%200%29%22%20fill%3D%22%23E27C50%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
.btn.box02:before {
  width: 36px;
  height: 38px;
  filter: brightness(0) invert(1);
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2236.486%22%20height%3D%2238%22%20viewBox%3D%220%200%2036.486%2038%22%3E%3Cpath%20d%3D%22M20.39%2C38l15.2-7.6L37.111%2C7.6%2C20.39%2C12.157V38ZM2.154%2C30.4l15.2%2C7.6V12.157L.633%2C7.6ZM18.876%2C0%2C.633%2C4.557%2C18.876%2C9.114%2C37.119%2C4.557Z%22%20transform%3D%22translate%28-0.633%29%22%20fill%3D%22%23E27C50%22%2F%3E%3C%2Fsvg%3E");
}

.btn {
  display: block;
  max-width: 370px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 6px 8px;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
  border: 3px solid #255AA7;
  color: #255AA7;
  background: #FFF;
  position: relative;
  transition: all 0.3s;
  font-size: 14px;
  line-height: 1.2;
  border-radius: 5px;
}
.btn span {
  display: block;
  font-size: 12px;
}
@media screen and (min-width: 769px) {
  .btn span {
    font-size: 14px;
  }
}
.btn:hover {
  color: #FFF;
  background: #255AA7;
  text-decoration: none;
}
.btn.radius {
  border-radius: 50px;
}
.btn.double {
  padding: 14px;
}
.btn.double:before {
  display: block;
  border: 1px solid #255AA7;
  border-radius: 5px;
  content: "";
  position: absolute;
  border-radius: inherit;
  z-index: -1;
  top: -6px;
  left: -6px;
  height: calc(100% + 12px);
  width: calc(100% + 12px);
}
.btn.double:hover:before {
  background: #255AA7;
}
.btn:is(.accent, .primary) {
  color: #FFF;
}
.btn:is(.accent, .primary):hover {
  background: #FFF;
}
.btn.accent {
  border: 3px solid #255AA7;
  background: #255AA7;
}
.btn.accent:hover {
  color: #255AA7;
}
.btn.primary {
  border: 3px solid #E27C50;
  background: #E27C50;
}
.btn.primary:hover {
  color: #E27C50;
}
.btn:is(.arrow) {
  position: relative;
  padding-right: 30px;
}
.btn:is(.arrow):after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  display: block;
  content: "";
  width: 10px;
  height: 18px;
  margin-left: 10px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%229.632%22%20height%3D%2215.563%22%20viewBox%3D%220%200%209.632%2015.563%22%3E%3Cpath%20d%3D%22M2653.044%2C36.926l5.432%2C5.765-5.432%2C5.557%22%20transform%3D%22translate%28-2650.923%20-34.805%29%22%20fill%3D%22none%22%20stroke%3D%22%23255AA7%22%20stroke-linecap%3D%22round%22%20stroke-width%3D%222%22%2F%3E%3C%2Fsvg%3E");
}
.btn:is(.arrow):hover:after {
  filter: brightness(0) invert(1);
}
.btn:is(.arrow):is(.accent, .primary):after {
  filter: brightness(0) invert(1);
}
.btn:is(.arrow):is(.accent, .primary):hover:after {
  filter: none;
}
.btn:is(.arrow).accent:after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%229.632%22%20height%3D%2215.563%22%20viewBox%3D%220%200%209.632%2015.563%22%3E%3Cpath%20d%3D%22M2653.044%2C36.926l5.432%2C5.765-5.432%2C5.557%22%20transform%3D%22translate%28-2650.923%20-34.805%29%22%20fill%3D%22none%22%20stroke%3D%22%23255AA7%22%20stroke-linecap%3D%22round%22%20stroke-width%3D%223%22%2F%3E%3C%2Fsvg%3E");
}
.btn:is(.arrow).primary:after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%229.632%22%20height%3D%2215.563%22%20viewBox%3D%220%200%209.632%2015.563%22%3E%3Cpath%20d%3D%22M2653.044%2C36.926l5.432%2C5.765-5.432%2C5.557%22%20transform%3D%22translate%28-2650.923%20-34.805%29%22%20fill%3D%22none%22%20stroke%3D%22%23E27C50%22%20stroke-linecap%3D%22round%22%20stroke-width%3D%222%22%2F%3E%3C%2Fsvg%3E");
}

.text_box.type_a {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}
.text_box.type_a .text {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .text_box.type_a .text {
    width: calc(50% - 10px);
  }
}
.text_box.type_a .img {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .text_box.type_a .img {
    width: calc(50% - 10px);
  }
}
.text_box.type_a .img img {
  display: block;
  width: auto;
  max-width: 100%;
  margin: auto;
}
.text_box.type_a_b {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}
.text_box.type_a_b .text {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .text_box.type_a_b .text {
    width: calc(50% - 10px);
  }
}
.text_box.type_a_b .img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .text_box.type_a_b .img {
    order: -1;
  }
}
@media screen and (min-width: 769px) {
  .text_box.type_a_b .img {
    width: calc(50% - 10px);
  }
}
.text_box.type_a_b .img img {
  display: block;
  width: auto;
  max-width: 100%;
  margin: auto;
}
.text_box.type_b {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}
.text_box.type_b .text {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .text_box.type_b .text {
    width: calc(60% - 10px);
  }
}
.text_box.type_b .img {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .text_box.type_b .img {
    width: calc(40% - 10px);
  }
}
.text_box.type_b .img img {
  display: block;
  width: auto;
  max-width: 100%;
  margin: auto;
}
.text_box.type_c {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}
.text_box.type_c .text {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .text_box.type_c .text {
    width: calc(70% - 10px);
  }
}
.text_box.type_c .img {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .text_box.type_c .img {
    width: calc(30% - 10px);
  }
}
.text_box.type_c .img img {
  display: block;
  width: auto;
  max-width: 100%;
  margin: auto;
}
.text_box.type_e {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}
.text_box.type_e .text {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .text_box.type_e .text {
    width: calc(40% - 10px);
  }
}
.text_box.type_e .img {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .text_box.type_e .img {
    width: calc(60% - 10px);
  }
}
.text_box.type_e .img img {
  display: block;
  width: auto;
  max-width: 100%;
  margin: auto;
}
.text_box .title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
}
@media screen and (min-width: 769px) {
  .text_box .title {
    font-size: 20px;
  }
}
.text_box .title span {
  color: #255AA7;
}
@media screen and (min-width: 769px) {
  .text_box .img.fit img {
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
    min-width: 100%;
    min-height: 100%;
  }
}
.text_box .text {
  margin-bottom: 15px;
}
@media screen and (min-width: 769px) {
  .text_box .text {
    margin-bottom: 0;
  }
}
.text_box + .text_box {
  margin-top: 30px;
}
@media screen and (min-width: 769px) {
  .text_box + .text_box {
    margin-top: 40px;
  }
}

.cv_area {
  padding: 20px 0;
  margin-bottom: 40px;
}
@media screen and (min-width: 769px) {
  .cv_area {
    padding: 20px;
  }
}
.cv_area .title01_a {
  font-size: 22px;
  margin-bottom: 35px;
  text-align: center;
}
.cv_area .title01_a span {
  color: #255AA7;
}

.info_box02 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-content: center;
  align-items: center;
}
@media screen and (min-width: 769px) {
  .info_box02 {
    flex-wrap: nowrap;
  }
}
.info_box02 .tel_box {
  margin-bottom: 25px;
}
@media screen and (min-width: 769px) {
  .info_box02 .tel_box {
    margin-right: 25px;
    margin-bottom: 0;
  }
}
.info_box02 > div {
  width: 100%;
  position: relative;
}
@media screen and (min-width: 769px) {
  .info_box02 > div {
    width: 48%;
  }
}
.info_box02 > div a {
  width: 100%;
  max-width: 100%;
  justify-content: center;
  min-height: 75px;
}
.info_box02 > div > div {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  background: #255AA7;
  height: 100%;
  width: 80px;
  top: -6px;
  left: -6px;
  z-index: 1;
}
.info_box02 .tel:before {
  display: none;
}
.info_box02 a {
  display: flex;
  padding-left: 50px;
  align-items: center;
  position: relative;
  background: #FFF;
  border: 2px solid #255AA7;
  border-radius: 0;
  color: #373737;
  font-size: 18px;
  font-weight: bold;
}
.info_box02 a span {
  display: block;
  font-size: 12px;
}
.info_box02 a:after {
  display: block;
  border: 2px solid #255AA7;
  content: "";
  position: absolute;
  z-index: -1;
  top: -6px;
  bottom: initial;
  right: initial;
  left: -6px;
  height: 100%;
  width: calc(100% + 5px);
}

.sidebar {
  padding: 0 5%;
  border-radius: 16px 16px 0 0;
  overflow: hidden;
}
@media screen and (min-width: 769px) {
  .sidebar {
    padding: 0;
  }
}
.sidebar .side_title {
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(90deg, #255AA7, #629ED6);
  border-radius: 16px 16px 0 0;
  color: #FFF;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  padding: 8px 6px;
  min-height: 50px;
}
.sidebar > div {
  margin-bottom: 30px;
  background: #F5F5F5;
}
.sidebar :is(.arrow_lists, .icon_lists) a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 10px;
  color: #373737;
  border-bottom: 1px solid #EEE;
  font-size: 15px;
}
.sidebar .arrow_lists a {
  justify-content: space-between;
  border-bottom: 1px solid #EEE;
}
.sidebar .arrow_lists a::after {
  display: block;
  content: "";
  width: 10px;
  height: 18px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%229.632%22%20height%3D%2215.563%22%20viewBox%3D%220%200%209.632%2015.563%22%3E%3Cpath%20d%3D%22M2653.044%2C36.926l5.432%2C5.765-5.432%2C5.557%22%20transform%3D%22translate%28-2650.923%20-34.805%29%22%20fill%3D%22none%22%20stroke%3D%22%23CCC%22%20stroke-linecap%3D%22round%22%20stroke-width%3D%222%22%2F%3E%3C%2Fsvg%3E");
}
.sidebar .arrow_lists a:hover {
  color: #255AA7;
}
.sidebar .arrow_lists a:last-child {
  border-bottom: none;
}
.sidebar .icon_lists a span {
  display: block;
  margin-right: 10px;
  width: 28px;
}
.sidebar .icon_lists a p {
  width: calc(100% - 38px);
}
.sidebar .icon_lists a:hover img {
  opacity: 0.6;
}
.sidebar .bnr_box a {
  display: block;
}
.sidebar .contact_box,
.sidebar .area_box {
  padding: 15px 8px;
}
.sidebar .area_box {
  text-align: center;
}
.sidebar .area_box p {
  text-align: center;
  font-weight: bold;
  margin-bottom: 10px;
}
.sidebar .area_box span {
  display: inline-block;
  margin: 0 auto 5px;
  font-size: 12px;
  padding: 0 5px;
  border-bottom: 3px solid #255AA7;
}
.sidebar .area_box img {
  display: block;
  margin: auto;
}
.sidebar .contact_box .tel {
  justify-content: center;
  text-align: center;
  border-bottom: 1px solid #EEE;
  padding: 0 0 15px;
}
@media screen and (min-width: 769px) {
  .sidebar .contact_box .tel:before {
    display: none;
  }
  .sidebar .contact_box .tel p {
    font-size: 25px;
  }
}

.three_columns {
  list-style: none;
  padding-left: 0;
  display: flex;
  gap: 30px 3%;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: flex-start;
}
@media screen and (max-width: 768px) {
  .three_columns {
    flex-wrap: wrap;
  }
}
.three_columns > * {
  width: calc(33.3333333333% - 2%);
  overflow-wrap: break-word;
  word-wrap: break-word;
}
@media screen and (min-width: 601px) and (max-width: 768px) {
  .three_columns > * {
    width: calc(50% - 1.5%);
  }
}
@media screen and (max-width: 600px) {
  .three_columns > * {
    width: 100%;
  }
}
.three_columns > *:nth-last-of-type(1) {
  margin-bottom: 0;
}
@media screen and (min-width: 769px) {
  .three_columns > *:nth-last-of-type(2) {
    margin-bottom: 0;
  }
  .three_columns > *:nth-last-of-type(3) {
    margin-bottom: 0;
  }
}

.two_columns {
  list-style: none;
  padding-left: 0;
  display: flex;
  gap: 30px 3%;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: flex-start;
}
@media screen and (max-width: 768px) {
  .two_columns {
    flex-wrap: wrap;
  }
}
.two_columns > * {
  width: calc(50% - 1.5%);
  overflow-wrap: break-word;
  word-wrap: break-word;
}
@media screen and (min-width: 601px) and (max-width: 768px) {
  .two_columns > * {
    width: calc(50% - 1.5%);
  }
}
@media screen and (max-width: 600px) {
  .two_columns > * {
    width: 100%;
  }
}
.two_columns > *:nth-last-of-type(1) {
  margin-bottom: 0;
}
@media screen and (min-width: 769px) {
  .two_columns > *:nth-last-of-type(2) {
    margin-bottom: 0;
  }
}

.bg_box {
  background: #255AA7;
  color: #FFF;
  padding: 15px;
}

.faq_box {
  background: #FFF;
  padding: 25px;
  border-bottom: 1px solid #CCC;
  display: flex;
  align-content: flex-start;
  align-items: flex-start;
}
.faq_box:before {
  content: "Q.";
  color: #255AA7;
  font-weight: bold;
  line-height: 0.5;
  margin-right: 10px;
  font-size: 30px;
}
@media screen and (min-width: 769px) {
  .faq_box:before {
    font-size: 50px;
  }
}
.faq_box .title {
  font-size: 20px;
  color: #255AA7;
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 18px;
}
@media screen and (min-width: 769px) {
  .faq_box .title {
    font-size: 20px;
  }
}
.faq_box .content {
  display: flex;
  align-content: flex-start;
  align-items: flex-start;
}
.faq_box .content:before {
  display: inline-block;
  content: "A.";
}

.faq_copy {
  padding: 25px;
  background: #FFF;
  color: #E27C50;
  text-decoration: underline;
  text-align: center;
  font-size: 18px;
}
@media screen and (min-width: 769px) {
  .faq_copy {
    font-size: 20px;
  }
}

.border_box_wrap {
  border: 2px solid #255AA7;
  border-radius: 5px;
  position: relative;
}
.border_box_wrap:after {
  display: block;
  border: 2px solid #255AA7;
  border-radius: inherit;
  content: "";
  position: absolute;
  z-index: 0;
  top: -8px;
  left: -8px;
  height: 100%;
  width: calc(100% + 6px);
}
.border_box_wrap + .border_box_wrap {
  margin-top: 30px;
}

.border_box_inner {
  position: relative;
  z-index: 1;
  background: #FFF;
}

.flow_lists {
  list-style: none;
  padding-left: 0;
  counter-reset: item;
  list-style: none;
  padding: 20px;
}
.flow_lists .flex_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
}
.flow_lists .flex_box .text {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  align-items: center;
}
@media screen and (min-width: 769px) {
  .flow_lists .flex_box .text {
    width: calc(100% - 105px);
  }
}
.flow_lists .flex_box .img {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .flow_lists .flex_box .img {
    width: calc(100px - 5px);
  }
}
.flow_lists .flex_box .img img {
  display: block;
  width: auto;
  max-width: 100%;
  margin: auto;
}
.flow_lists .flex_box .img {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
}
.flow_lists li {
  padding: 25px;
  border-bottom: 3px dotted #255AA7;
}
.flow_lists li:last-child {
  border-bottom: none;
}
.flow_lists li .text > .title {
  display: flex;
  align-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 8px;
  font-weight: bold;
  font-size: 18px;
}
@media screen and (min-width: 769px) {
  .flow_lists li .text > .title {
    font-size: 20px;
  }
}
.flow_lists li .text > .title:before {
  content: counter(item, decimal-leading-zero);
  counter-increment: item;
  font-size: 35px;
  margin-right: 8px;
  color: transparent;
  -webkit-text-stroke: 1px #255AA7;
}
@media screen and (min-width: 769px) {
  .flow_lists li .text > .title:before {
    font-size: 50px;
  }
}
.flow_lists li .content {
  font-size: 14px;
}
.flow_lists .flow_info {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 20px 0;
}
@media screen and (min-width: 769px) {
  .flow_lists .flow_info {
    flex-wrap: nowrap;
  }
}
.flow_lists .flow_info a {
  max-width: 100%;
  margin-bottom: 15px;
}
@media screen and (min-width: 769px) {
  .flow_lists .flow_info a {
    max-width: 260px;
    margin-right: 10px;
    margin-bottom: 0;
  }
  .flow_lists .flow_info a:last-child {
    margin-right: 0;
  }
}
.flow_lists .flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (min-width: 769px) {
  .flow_lists .flex {
    flex-wrap: nowrap;
  }
}

.red {
  color: #B22019;
  font-weight: bold;
}

.gray_box {
  background: #F4F4F4;
  padding: 10px;
  margin: 10px 0 30px;
}

.accent_box {
  background: #255AA7;
  padding: 20px;
  color: #FFF;
}
.accent_box .copy {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 2px solid #FFF;
}
.accent_box .donw {
  margin-top: 15px;
}
@media screen and (min-width: 769px) {
  .accent_box .donw {
    margin-top: 0;
  }
}

.note {
  display: flex;
  font-size: 14px;
  margin-bottom: 0;
}
.note:before {
  content: "※";
}
.note.red {
  color: #B22019;
  font-weight: bold;
}
.note + .note {
  margin-top: 5px;
}

table {
  width: 100%;
}
table tbody th,
table tbody td {
  border: 1px solid #EEE;
  padding: 10px 15px;
  font-size: 14px;
  text-align: left;
}
table tbody th {
  background: #F4F4F4;
  text-align: left;
}
table tbody th span {
  font-size: 12px;
  display: inline-block;
}
.plan_area {
  border: 3px solid #255AA7;
  position: relative;
  background: #F5F5F5;
  background-size: cover;
  border-radius: 5px;
  padding-top: 10px;
}

.plan_box {
  position: relative;
  padding: 10px 10px 0;
  margin-top: 30px;
}
@media screen and (min-width: 769px) {
  .plan_box {
    margin-top: 40px;
  }
}
.plan_box .plan_lists {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.plan_box .plan_lists p {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  width: 49%;
  background: #FFF;
  padding: 15px 5px;
  font-weight: bold;
  margin-bottom: 10px;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 769px) {
  .plan_box .plan_lists p {
    width: 32%;
  }
}
.plan_box .plan_lists p:last-child {
  font-size: 12px;
  color: #373737;
  background: none;
  width: 100%;
  box-shadow: none;
}
@media screen and (min-width: 769px) {
  .plan_box .plan_lists p:last-child {
    width: 32%;
  }
}
.plan_box .copy {
  background: #255AA7;
  position: absolute;
  z-index: 1;
  top: -30px;
  left: 0;
  color: #FFF;
  height: 30px;
  padding: 2px 15px;
}
.plan_box .copy:before {
  position: absolute;
  right: -20px;
  top: 0;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 30px 0 0 20px;
  border-color: transparent transparent transparent #255AA7;
}
.plan_box > .star {
  padding-left: 20px;
  display: flex;
  align-content: center;
  align-items: center;
  position: absolute;
  top: -30px;
  right: 0;
  font-size: 12px;
  height: 30px;
  width: calc(100% - 94px);
}
.plan_box .star:before {
  display: inline-block;
  content: "";
  width: 15px;
  height: 15px;
  margin-right: 5px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2215.519%22%20height%3D%2214.824%22%20viewBox%3D%220%200%2015.519%2014.824%22%3E%3Cpath%20d%3D%22M12.433%2C15.63l-4.75-3.483L2.842%2C15.5%2C4.686%2C9.907%2C0%2C6.34l5.89.026L7.835.806l1.8%2C5.61%2C5.889.132-4.78%2C3.441Z%22%20transform%3D%22translate%280%20-0.806%29%22%20fill%3D%22%23255AA7%22%2F%3E%3C%2Fsvg%3E");
}

#area .text_box {
  display: flex;
  justify-content: center;
  align-items: center;
}
#area .text_box .img {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
}
#area .text_box .title {
  line-height: 1.2;
  margin-bottom: 16px;
}
#area .text_box .title span {
  font-size: 0.8em;
}/*# sourceMappingURL=common.css.map */