@charset "utf-8";

/*normalize*/
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}

/**
* Correct `inline-block` display not defined in IE 8/9.
*/
audio,
canvas,
video {
  display: inline-block;
}

/**
* Prevent modern browsers from displaying `audio` without controls.
* Remove excess height in iOS 5 devices.
*/
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
* Address `[hidden]` styling not present in IE 8/9.
* Hide the `template` element in IE, Safari, and Firefox < 22.
*/
[hidden],
template {
  display: none;
}

/* ==========================================================================
Base
========================================================================== */
/**
* 1. Set default font family to sans-serif.
* 2. Prevent iOS text size adjust after orientation change, without disabling
*    user zoom.
*/
html {
  font-family: sans-serif;

  /* 1 */
  -webkit-text-size-adjust: 100%;

  /* 2 */
  -ms-text-size-adjust: 100%;

  /* 2 */
}

/**
* Remove default margin.
*/
body {
  margin: 0;
}

/* ==========================================================================
Links
========================================================================== */
/**
* Remove the gray background color from active links in IE 10.
*/
a {
  background: transparent;
  outline: none;
}

/**
* Address `outline` inconsistency between Chrome and other browsers.
*/
a:focus {
  outline: none;
}

a:focus-visible {
  outline: 2px dotted #333;
}

/**
* Improve readability when focused and also mouse hovered in all browsers.
*/
a:active,
a:hover {
  outline: 0;
}

/* ==========================================================================
Typography
========================================================================== */
/**
* Address variable `h1` font-size and margin within `section` and `article`
* contexts in Firefox 4+, Safari 5, and Chrome.
*/
h1 {
  font-size: 2em;
  margin: .67em 0;
}

/**
* Address styling not present in IE 8/9, Safari 5, and Chrome.
*/
abbr[title] {
  border-bottom: 1px dotted;
}

/**
* Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome.
*/
b,
strong {
  font-weight: bold;
}

/**
* Address styling not present in Safari 5 and Chrome.
*/
dfn {
  font-style: italic;
}

/**
* Address differences between Firefox and other browsers.
*/
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
* Address styling not present in IE 8/9.
*/
mark {
  background: #FF0;
  color: #000;
}

/**
* Correct font family set oddly in Safari 5 and Chrome.
*/
code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  font-size: 1em;
}

/**
* Improve readability of pre-formatted text in all browsers.
*/
pre {
  white-space: pre-wrap;
}

/**
* Set consistent quote types.
*/
q {
  quotes: "\201C" "\201D" "\2018" "\2019";
}

/**
* Address inconsistent and variable font size in all browsers.
*/
small {
  font-size: 80%;
}

/**
* Prevent `sub` and `sup` affecting `line-height` in all browsers.
*/
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -.5em;
}

sub {
  bottom: -.25em;
}

/* ==========================================================================
Embedded content
========================================================================== */
/**
* Remove border when inside `a` element in IE 8/9.
*/
img {
  border: 0;
}

/**
* Correct overflow displayed oddly in IE 9.
*/
svg:not(:root) {
  overflow: hidden;
}

/* ==========================================================================
Figures
========================================================================== */
/**
* Address margin not present in IE 8/9 and Safari 5.
*/
figure {
  margin: 0;
}

/* ==========================================================================
Forms
========================================================================== */
/**
* Define consistent border, margin, and padding.
*/
fieldset {
  border: 1px solid #C0C0C0;
  margin: 0 2px;
  padding: .35em .625em .75em;
}

/**
* 1. Correct `color` not being inherited in IE 8/9.
* 2. Remove padding so people aren't caught out if they zero out fieldsets.
*/
legend {
  border: 0;

  /* 1 */
  padding: 0;

  /* 2 */
}

/**
* 1. Correct font family not being inherited in all browsers.
* 2. Correct font size not being inherited in all browsers.
* 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.
*/
button,
input,
select,
textarea {
  -webkit-appearance: none;
  border-radius: 0;
  font-family: inherit;

  /* 1 */
  font-size: 100%;

  /* 2 */
  margin: 0;

  /* 3 */
}

input {
  -webkit-appearance: auto;
}

/**
* Address Firefox 4+ setting `line-height` on `input` using `!important` in
* the UA stylesheet.
*/
button,
input {
  line-height: normal;
  outline: none;
}

textarea {
  outline: none;
}

/**
* Address inconsistent `text-transform` inheritance for `button` and `select`.
* All other form control elements do not inherit `text-transform` values.
* Correct `button` style inheritance in Chrome, Safari 5+, and IE 8+.
* Correct `select` style inheritance in Firefox 4+ and Opera.
*/
button,
select {
  text-transform: none;
}

/**
* 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
*    and `video` controls.
* 2. Correct inability to style clickable `input` types in iOS.
* 3. Improve usability and consistency of cursor style between image-type
*    `input` and others.
*/
button,
html input[type="button"],
/* 1 */
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;

  /* 2 */
  cursor: pointer;

  /* 3 */
}

/**
* Re-set default cursor for disabled elements.
*/
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
* 1. Address box sizing set to `content-box` in IE 8/9/10.
* 2. Remove excess padding in IE 8/9/10.
*/
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;

  /* 1 */
  padding: 0;

  /* 2 */
}

/**
* 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
* 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
*    (include `-moz` to future-proof).
*/
input[type="search"] {
  -webkit-appearance: textfield;

  /* 1 */
  -webkit-box-sizing: content-box;

  /* 2 */
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

/**
* Remove inner padding and search cancel button in Safari 5 and Chrome
* on OS X.
*/
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
* Remove inner padding and border in Firefox 4+.
*/
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
* 1. Remove default vertical scrollbar in IE 8/9.
* 2. Improve readability and alignment in all browsers.
*/
textarea {
  overflow: auto;

  /* 1 */
  vertical-align: top;

  /* 2 */
}

/*breadcrumb*/
#breadcrumb {
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  max-width: 1400px;
  padding: 0 0 20px;
  width: 90%;
}

#breadcrumb ul {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin: 0;
  padding: 0;
}

#breadcrumb ul li {
  list-style-type: none;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 10px;
  margin-top: 0;
  padding: 0;
}

#breadcrumb ul li:after {
  content: ">";
  margin-left: 10px;
}

#breadcrumb ul li:last-child:after {
  display: none;
}

/* ==========================================================================
Tables
========================================================================== */
/**
* Remove most spacing between table cells.
*/
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* ==========================================================================
hx
========================================================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
}

/* =======================================

layout CSS

========================================== */
html {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  background-image: url(../image/contents/bg/bg_contents.jpg?202412);
  background-repeat: repeat;
  color: #0B233F;
  font-family: "Noto Sans JP", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ";
  font-weight: 400;
  height: 100%;
  line-break: strict;
  line-height: 1.9em;
  margin: 0;
  overflow-wrap: anywhere;
  padding: 0;
  text-align: center;
  width: 100%;
  word-break: normal;
}

#contents {
  font-size: 18px;
  font-variant-ligatures: none;
  margin: 0 auto;
  padding-bottom: 414px;
  padding-top: 0;
  position: relative;
  text-align: left;
  width: 100%;
  z-index: 0;
}

@media print {
  body {
    min-width: 1140px;
  }

  .header {
    display: none;
  }

  #contents {
    padding-top: 0;
  }

  #page-ttl {
    display: none;
  }
}

#wrap {
  height: 100%;
  margin: 0;
  min-height: 100%;
  overflow: hidden;
  padding: 0;
  position: relative;
  width: 100%;
}

body>#wrap {
  height: auto;
}

a {
  color: #438CE0;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

p {
  margin: 0;
  padding: 0;
}

img {
  background-color: transparent;
  height: auto;
  margin: 0;
  max-width: 100%;
  padding: 0;
  vertical-align: bottom;
}

a img {
  opacity: 1;
  transition: .5s;
}

hr {
  border-bottom-width: 1px;
  border-color: #CCC;
  border-left-width: 0;
  border-right-width: 0;
  border-style: dotted;
  border-top-width: 0;
  clear: both;
  margin-bottom: 10px;
  margin-top: 10px;
}

hr.none {
  border: none;
  clear: both;
  height: 0;
  margin: 0;
  padding: 0;
}

/* End hide from IE-mac */
/*Float Clear*/
.clear {
  clear: both;
}

.clearfix:after {
  clear: both;
  content: ".";
  display: block;
  height: 0;
  visibility: hidden;
}

/*List*/
ul {
  margin: 0;
  padding-left: 20px;
}

/*Contents(base)*/
#contents .inner {
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  max-width: 1400px;
  width: 90%;
}

/* header */
.header.hide {
  transform: translateY(-250px);
  transition: .5s;
}

.header.no-hide {
  transform: unset !important;
}

.header.shadow {
  background-color: #FFF;
  box-shadow: 0 0 4px #40404066;
  transition: .5s;
}

.header-inner {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 auto;
  padding: 22px 35px 24px 30px;
  transition: .5s;
  width: 100%;
}

.nav-inner {
  width: 100%;
}

.pc-.header .header-inner,
.mobile-.header .header-inner {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.header p.sp-button a {
  display: none;
}

/*Head_logo*/
.header .img-logo a {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
  margin: 0;
  transition: .5s;
  width: 100%;
}

.header .img-logo a:hover {
  opacity: .5;
  text-decoration: none;
  transition: .5s;
}

.header .img-logo {
  align-items: center;
  display: flex;
  justify-content: center;
  margin: 0;
  position: relative;
  width: 390px;
}

.header .img-logo img {
  height: auto;
  width: 100%;
}

/*Footer CSS*/
.footer {
  background: url(../image/contents/bg/bg_blue.jpg) no-repeat center / cover;
  bottom: 0;
  clear: both;
  font-weight: 400;
  left: 0;
  margin: 0;
  padding: 0;
  position: absolute;
  text-align: left;
  width: 100%;
}

.footer-detail {
  align-items: center;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 auto 35px;
  padding: 0;
  text-align: center;
}

.footer,
.footer a,
.footer a:hover {
  color: #FFF;
}

.footer-inner {
  margin: 0 auto;
  margin: 0 auto;
  max-width: 1300px;
  position: relative;
}

.footer-sitemap {
  margin: auto;
}

.footer-sitemap .list-border {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  margin: 40px auto 25px;
  max-width: 1200px;
  padding: 0;
}

.footer-sitemap .list-border li {
  background-image: none;
  letter-spacing: .05em;
  line-height: .8;
  margin: 0 0 11px;
  padding: 0;
  position: relative;
  width: max-content;
}

.footer-sitemap a {
  border-right: 1px solid #FFF;
  color: #FFF;
  display: block;
  font-weight: 400;
  height: 100%;
  letter-spacing: .15em;
  padding: 2px 8px;
}

.footer-sitemap li:first-child a,
.footer-sitemap li:nth-child(13) a {
  border-left: 1px solid #FFF;
}

.footer .logo-area {
  margin: 0 auto 30px;
  text-align: center;
  width: 100%;
}

.footer .address {
  font-weight: 400;
  letter-spacing: .15em;
  line-height: 1.65em;
  padding: 0 40px;
  width: 100%;
}

.copyright {
  letter-spacing: .15em;
  padding-bottom: 40px;
  text-align: center;
  width: 100%;
}

/* =======================================

Navi CSS

========================================== */
/*Mainnavi base*/
.navi-inner {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin: auto;
  width: 100%;
}

.sub-nav .contact a {
  background-color: #0097BE;
  border-radius: 5px;
  box-sizing: border-box;
  color: #FFF;
  display: block;
  padding: 10px;
  transition: .5s;
  width: 100%;
}

#g-navi {
  margin: 0 0 0 auto;
  width: calc(100% - 390px);
}

#g-navi.headerColorScroll {
  background-image: unset;
}

#g-navi.headerColorScroll::before {
  height: 100%;
}

#g-navi .navi-list {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin: 0;
  padding-left: 0;
}

#g-navi .navi-list li {
  border-left: 1px solid rgba(181, 181, 181, .5);
  list-style: none;
}

#g-navi .navi-list li:last-child {
  border-right: 1px solid rgba(181, 181, 181, .5);
}

#g-navi .navi-list li a {
  color: #0B233F;
  display: block;
  font-size: 17px;
  font-weight: 600;
  padding: 0 21px 1px;
  transition: .5s;
}

#g-navi .navi-list li a:hover {
  cursor: pointer;
  opacity: .5;
  text-decoration: none;
  transition: .5s;
}

#g-navi .navi-list li.reason.nav-parent .sp-ttl {
  width: calc(100% / 2 - 14px);
}

#g-navi .navi-list.btn-nav {
  margin: 0 0 15px;
  width: 100%;
}

#g-navi .navi-list.btn-nav li {
  border: none;
}

#g-navi .navi-list.btn-nav li.btn a {
  background-color: #4F7847;
  color: #FFF;
  display: block;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: .1em;
  margin-left: 17px;
  padding: 6px 5px 6px 50px;
  position: relative;
  text-align: left;
  width: 197px;
}

#g-navi .navi-list.btn-nav li.btn.contact a {
  background-color: #0B233F;
}

#g-navi .navi-list.btn-nav li.btn.recruit a {
  background-color: #C46640;
}

#g-navi .navi-list.btn-nav li.btn a::before {
  background-image: url(../image/base/ico_access.svg);
  background-repeat: no-repeat;
  background-size: contain;
  bottom: 0;
  content: "";
  display: block;
  height: 18px;
  left: 20px;
  margin: auto;
  position: absolute;
  top: 0px;
  width: 16px;
  z-index: 1;
}

#g-navi .navi-list.btn-nav li.btn.contact a::before {
  background-image: url(../image/base/ico_contact.svg);
  width: 21px;
}

#g-navi .navi-list.btn-nav li.btn.recruit a::before {
  background-image: url(../image/base/ico_user.png);
  width: 21px;
}

.header {
  background: url(../image/base/header_bg.jpg) no-repeat center / cover;
  height: auto;
  left: 0;
  margin: auto;
  position: fixed;
  right: 0;
  top: 0;
  transition: .5s;
  width: 100%;
  z-index: 9999;
}

/*Page-ttl*/
#page-ttl {
  background: url(../image/contents/bg/bg_lightblue.jpg) no-repeat center / cover;
  margin-bottom: 20px;
  margin-top: 140px;
  padding: 70px 0;
  width: 100%;
}

#page-ttl .inner {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
  position: relative;
  width: 100%;
}

#page-ttl .inner h1 {
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "メイリオ", " Meiryo", "ＭＳ Ｐ明朝", "MS PMincho", Osaka, serif;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: .15em;
  margin: 0;
}

/* =======================================

Structure CSS

========================================== */
/*Text Decoration*/
.txt-pink {
  color: #E65886;
}

.txt-blue {
  color: #0097BE;
}

.txt-green {
  color: #298F35;
}

.look-red {
  color: #DF4656;
}

.look-orange {
  color: #E26C35;
}

#contents .bold {
  font-weight: bold;
}

#contents .normal {
  font-weight: normal;
}

/*Text Size*/
.txt-80 {
  font-size: 80%;
}

.txt-85 {
  font-size: 85%;
}

.txt-95 {
  font-size: 95%;
}

.txt-90 {
  font-size: 90%;
}

.txt-110 {
  font-size: 110%;
}

.txt-120 {
  font-size: 120%;
}

.txt-130 {
  font-size: 130%;
}

.txt-150 {
  font-size: 150%;
}

/*Margin*/
#contents .no-mb,
#contents .bg-gray.no-mb,
#contents .bg-blue.no-mb,
#contents .bg-orange.no-mb {
  margin-bottom: 0;
}

#contents .no-mt,
#contents h2.no-mt,
#contents h4.no-mt,
#contents h5.no-mt,
#contents p.no-mt,
#contents li.no-mt,
.no-mt {
  margin-top: 0;
}

#contents .mt-10 {
  margin-top: 10px;
}

#contents .mt-20 {
  margin-top: 20px;
}

#contents .mt-30 {
  margin-top: 30px;
}

#contents .mt-40 {
  margin-top: 40px;
}

#contents .mt-50 {
  margin-top: 50px;
}

#contents .mt-60 {
  margin-top: 60px;
}

#contents .mt-65 {
  margin-top: 65px;
}

#contents .box-mt {
  margin-top: 80px;
}

#contents .mt-100 {
  margin-top: 100px;
}

#contents .mb-5 {
  margin-bottom: 5px;
}

#contents .mb-10 {
  margin-bottom: 10px;
}

#contents .mb-20 {
  margin-bottom: 20px;
}

#contents .mb-30 {
  margin-bottom: 30px;
}

#contents .mb-40 {
  margin-bottom: 40px;
}

#contents .mb-50 {
  margin-bottom: 50px;
}

#contents .mb-60 {
  margin-bottom: 60px;
}

#contents .mb-65 {
  margin-bottom: 65px;
}

#contents .box-mb {
  margin-bottom: 80px;
}

#contents .mb-100 {
  margin-bottom: 100px;
}

#contents .mb-120 {
  margin-bottom: 120px;
}

/*Text Align*/
.txt-center {
  text-align: center;
}

.txt-right {
  text-align: right;
}

.txt-left {
  text-align: left;
}

.va-center {
  vertical-align: middle;
}

/* table */
.table-over {
  overflow: auto;
  width: 100%;
}

.table-over::-webkit-scrollbar {
  height: 5px;
}

.table-over table.table-01,
.table-over table.table-02 {
  min-width: 690px;
  width: 100%;
}

.table-01 {
  border-collapse: collapse;
  border-width: 0;
  font-size: 15px;
  width: 100%;
}

.table-01 tr:first-child {
  border-top: 1px solid #B5B5B5;
}

.table-01 th {
  background-color: #F6F0E7;
  border-bottom: 1px solid #B5B5B5;
  padding: 15px 20px;
}

.table-01 tr:first-child td,
.table-01 tr:first-child th {
  border-top-width: 0;
}

.table-01 th.need {
  border-left: 0;
  min-width: 200px;
}

.table-01 th.start {
  vertical-align: baseline;
}

#contents .table-01 th.need p,
#contents .table-01 th.no-need p {
  font-weight: 600;
  padding-left: 47px;
  position: relative;
}

.table-01 th.need p:before,
.table-01 th.no-need p:before {
  background-color: #C46640;
  color: #FFF;
  content: "必須";
  display: block;
  font-size: 13px;
  left: 0;
  line-height: 1.8em;
  position: absolute;
  text-align: center;
  top: 4px;
  width: 35px;
}

.table-01 th.no-need p:before {
  background: transparent;
  content: none;
}

.table-01 td {
  background-color: #FFF;
  border-bottom: 1px solid #B5B5B5;
  border-right: 0;
  font-weight: 400;
  padding: 15px 20px;
}

.table-01.w-100 {
  width: 100%;
}

.table_over {
  border-spacing: 0 7px;
  overflow-x: auto;
  width: 100%;
}

.table_over table {
  min-width: 800px;
  width: 100%;
}

table th.start {
  vertical-align: baseline;
}

.table-02 {
  border-bottom-width: 0;
  border-collapse: collapse;
  border-left-width: 0;
  border-right-width: 0;
  border-top-width: 0;
  font-size: 14px;
  line-height: 1.6em;
  vertical-align: middle;
}

.table-02 th {
  background-color: #DEE3E9;
  border: 1px solid #B5B5B5;
  border-right-width: 0;

  /* font-family:"Noto Serif JP", "游明朝", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "メイリオ", " Meiryo", "ＭＳ Ｐ明朝", "MS PMincho", Osaka, serif; */
  font-weight: 400;
  padding: 15px 20px;
  vertical-align: middle;
}

.table-02 td {
  background-color: #FFF;
  border: 1px solid #B5B5B5;
  border-left-width: 0;
  font-weight: 400;
  line-height: 28px;
  padding: 15px 20px;
  vertical-align: middle;
}

.table-02 th.need {
  min-width: 200px;
}

.table-02 th.need:before {
  background-color: #E08752;
  color: #FFF;
  content: "必須";
  display: block;
  float: left;
  font-size: 11px;
  font-weight: normal;
  margin-right: 10px;
  text-align: center;
  width: 30px;
}

.table-02 th.no-need {
  padding-left: 50px;
}

.table-02 tr:first-child th:last-child,
.table-02 tr th {
  border-right: 1px solid #B5B5B5;
}

.table-01 th,
.table-01 td,
.table-02 th,
.table-02 td {
  font-size: 16px;
  line-height: 1.6em;
}

tr.ver-top td {
  vertical-align: top;
}

/*send_btn*/
.btn-send {
  padding: 5px 20px;
}

/*ul*/
#contents .disc {
  margin: 0;
  padding: 0 0 0 20px;
}

#contents .disc li {
  list-style-type: disc;
  margin: 0;
  padding: 0;
}

table ul {
  margin-bottom: 0;
  margin-top: 0;
}

/*ol*/
ol {
  padding-left: 20px;
}

ol li {
  margin-bottom: 0;
}

/* hx */
#contents h2 {
  color: #0B233F;
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "メイリオ", " Meiryo", "ＭＳ Ｐ明朝", "MS PMincho", Osaka, serif;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: .15em;
  line-height: 1em;
  margin: 0 0 50px;
  padding: 0;
  position: relative;
  text-align: center;
}

#contents h3 {
  border-left: 4px solid #C46640;
  color: #0B233F;
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "メイリオ", " Meiryo", "ＭＳ Ｐ明朝", "MS PMincho", Osaka, serif;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: .1em;
  margin: 0 0 30px;
  padding: 6px 17px 7px;
}

#contents h4 {
  color: #E26C35;
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "メイリオ", " Meiryo", "ＭＳ Ｐ明朝", "MS PMincho", Osaka, serif;
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 15px;
  padding-bottom: 10px;
}

#contents h5 {
  color: #0B233F;
  font-size: 19px;
  font-weight: 500;
}

#contents p {
  font-weight: 400;
  letter-spacing: .03em;
  margin-bottom: 20px;
}

#contents li {
  font-weight: 400;
  letter-spacing: .03em;
}

#contents p,
#contents li,
#contents a {
  line-height: 1.7em;
}

/* googlemap ifreame */
.google-map iframe {
  border: none;
  height: 100%;
  min-height: 270px;
  width: 100%;
}

.google-map {
  border: 1px solid transparent;
  height: 299px;
}

/*カラム*/
#contents .flex {
  align-content: flex-start;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

#contents .flex.right {
  justify-content: flex-end;
}

#contents .flex.start {
  justify-content: start;
}

#contents .flex.center {
  justify-content: center;
}

.txt-2box {
  margin-right: 4%;
  width: 48%;
}

.txt-2box.end {
  margin-right: 0;
}

.txt-3box {
  margin-right: 30px;
  width: calc(100% / 3 - 20px);
}

.txt-3box.end {
  margin-right: 0;
}

.txt-4box {
  margin-right: 20px;
  width: calc(100% / 4 - 20px);
}

.txt-4box.end {
  margin-right: 0;
}

.txt-5box {
  margin-right: 1.5625%;
  width: 18.75%;
}

.txt-5box.end {
  margin-right: 0;
}

.img-2box {
  width: 35%;
}

.img-2box-txt {
  margin-left: 40px;
  width: calc(65% - 40px);
}

/* フォーム */
#contents form {
  margin: 0 auto;
  max-width: 950px;
}

#contents form table th {
  font-size: 18px;
}

#contents form table tr:first-child,
#contents form table th,
#contents form table td {
  background-color: transparent;
  border: none;
}

#contents form label,
#contents form label input {
  cursor: pointer;
}

form table input.num {
  margin-right: 8px;
  width: 100px;
}

/* 診療表 */
#contents table.medical th,
#contents table.medical td {
  line-height: 1.55em;
  padding: 13px 10px;
}

#contents table.medical th {
    width: 15%;
}

#contents table.medical .sub-txt {
  font-size: 14px;
  line-height: 1em;
}

table .empty {
  background-image: linear-gradient(to left top, transparent calc(50% - .5px), #B5B5B5 50%, #B5B5B5 calc(50% + .5px), transparent calc(50% + 1px));
}

table .name {
  display: inline-block;
  text-align: left;
}

/* =======================================

下層共通

========================================== */
* {
  box-sizing: border-box;
}

.grecaptcha-badge {
  display:none !important;
}

.animation {
  opacity: 0;
  position: relative;
  top: 40px;
  transition: .5s;
}

.animation.active {
  opacity: 1;
  top: 0;
  transition: .5s;
}

#contents .bnr-box,
#contents .bnr-box.flex.start {
  gap: 50px 0;
}

#contents .bnr-box .bnr-ttl {
  background-color: #C46640;
  color: #FFF;
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "メイリオ", " Meiryo", "ＭＳ Ｐ明朝", "MS PMincho", Osaka, serif;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: .2em;
  margin: 0;
  padding: 16px 10px;
  text-align: center;
}

#contents .schedule-box th {
  background-color: #FFF;
}

#contents .schedule-box tr {
  border-bottom: 1px solid #B5B5B5;
}

#contents .schedule-box tr:first-child {
  border-top: 1px solid #B5B5B5;
}

#contents .schedule-box th,
#contents .schedule-box td {
  border: none;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
}

#contents .schedule-box td {
  line-height: 1.2em;
}

#contents .schedule-box td.ttl {
  letter-spacing: .13em;
  padding: 15px 10px 15px 25px;
  text-align: left;
  width: 220px;
}

#contents .schedule-box td.color {
  color: #E26C35;
  font-size: 14px;
}

#contents .pb-100 {
  padding-bottom: 100px;
}

.bg-white {
  background-color: #FFF;
  padding: 40px;
}

.flex .txt-2box .bg-white.h-100,
.flex .txt-3box .bg-white {
  height: 100%;
}

#contents .bg-blue .bg-white p,
#contents .bg-blue .bg-white li,
#contents .bg-blue .bg-white h3 {
  color: #0B233F;
}

#contents .bg-orange .bg-white p,
#contents .bg-orange .bg-white li,
#contents .bg-orange .bg-white h3 {
  color: #0B233F;
}

.bg-blue,
.bg-beige,
.bg-orange {
  background: url(../image/contents/bg/bg_beige.jpg) repeat;
  padding: 75px 0 85px;
}

.bg-blue {
  background: url(../image/contents/bg/bg_blue.jpg) repeat;
}

.bg-orange {
  background: url(../image/contents/bg/bg_orange.jpg) repeat;
}

#contents .bg-blue h2,
#contents .bg-blue h3,
#contents .bg-blue p,
#contents .bg-blue li {
  color: #FFF;
}

#contents .bg-blue table p {
  color: #0B233F;
}

#contents .bg-orange h2,
#contents .bg-orange h3,
#contents .bg-orange p,
#contents .bg-orange li {
  color: #FFF;
}

.tel-box {
  margin: 0 auto;
  max-width: 700px;
}

#contents .tel-box .box-ttl {
  font-size: 22px;
  margin-bottom: 10px;
  text-align: center;
}

#contents .tel-box .sub-ttl {
  display: flex;
  align-items: flex-end;
  padding-right: 5px;
}

#contents .tel-box a[href*="tel:"],
#contents .tel-box .fax {
  align-items: center;
  color: #E26C35;
  display: flex;
  font-size: 40px;
  justify-content: center;
  letter-spacing: .05em;
  line-height: 1em;
  margin-right: 15px;
  padding: 0;
  width: auto;
}

#contents .tel-box a[href*="tel:"]::before {
  background-image: url(../image/contents/ico_tel.svg);
  background-repeat: no-repeat;
  background-size: contain;
  /* content: ""; */
  display: block;
  height: 25px;
  margin-right: 10px;
  position: relative;
  top: 1px;
  width: 25px;
}

#contents .txt-arrow {
  position: relative;
}

#contents .txt-arrow::before {
  border-bottom: 6px solid transparent;
  border-left: 8px solid #C46640;
  border-right: 0;
  border-style: solid;
  border-top: 6px solid transparent;
  bottom: 0;
  content: "";
  display: block;
  height: 0;
  left: 0;
  margin: auto;
  position: absolute;
  top: 2px;
  width: 0;
}

br.br-1400,
br.br-1300,
br.br-1200,
br.br-1140,
br.br-767,
br.br-640,
br.br-559,
br.br-430,
br.br-414,
br.br-390 {
  display: none;
}

.serif,
#contents p.serif {
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "メイリオ", " Meiryo", "ＭＳ Ｐ明朝", "MS PMincho", Osaka, serif;
  font-weight: 600;
}

.mark-txt {
  margin-left: 1em;
  text-indent: -1em;
}

.error404 #contents h2 {
  color: #C46640;
  font-size: 30px;
  letter-spacing: 0;
  line-height: 1.5em;
  margin-bottom: 40px;
  padding-top: 30px;
}

.error404 #contents .error-txt {
  margin-bottom: 40px;
  text-align: center;
}

.error404 #contents .link-box {
  margin: 0 auto 90px;
  max-width: 700px;
}

.error404 #contents .link-box .right .link-btn {
  margin: 0 0 0 auto;
}

.error404 #contents .link-box .right .link-btn::after {
  left: 20px;
  right: unset;
  transform: rotate(180deg);
}

#contents .w-100 {
  width: 100%;
}

#contents .sp-txt {
  display: none;
}

#contents ul.style-none {
  padding: 0;
}

#contents ul.style-none li {
  list-style: none;
}

/*  */
.about-area {
  background-color: #FFF;
  border: 5px solid #EEE8D8;
  padding: 40px;
}

#contents .about-area p:last-child {
  margin-bottom: 0;
}

#contents .about-area .img-2box p:last-child {
  margin-bottom: 15px;
}

#contents .about-area .main-txt {
  color: #C46640;
  font-size: 22px;
  font-weight: bold;
}

/* other */
.pc-none {
  display: none;
}

.sp-none {
  display: block;
}

.sp-none.inline {
  display: inline-block;
}

/* inquiry */
form table input {
  background-color: #EEE;
  border: none;
  padding: .7em;
  width: 70%;
}

#contents input:-internal-autofill-selected {
  background-color: #EEE;
  box-shadow: 0 0 0 1000px #EEE inset;
}

textarea {
  background-color: #EEE;
  border: none;
  padding: .7em;
  width: 100%;
}

input[type="radio"] {
  width: auto;
}

input[type="checkbox"] {
  width: 20px;
}

input[type="submit"] {
  background-color: #C46640;
  border: 0;
  color: #FFF;
  display: block;
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "メイリオ", " Meiryo", "ＭＳ Ｐ明朝", "MS PMincho", Osaka, serif;
  font-weight: 600;
  line-height: 1.7em;
  margin: 30px auto 40px;
  max-width: 400px;
  padding: 15px;
  transition: .5s;
  width: 100%;
}

input[type="submit"]:hover {
  opacity: .5;
}

input[type="button"].wpcf7c-btn-back {
  background-color: #999;
  border: 0;
  color: #FFF;
  display: block;
  left: 0;
  margin: auto;
  margin-left: 0;
  margin-top: 45px;
  max-width: 200px;
  padding: 15px;
  right: 0;
}

.wpcf7-validation-errors {
  background-color: #F5F1E6;
  border: 2px solid #F7E700;
  border-width: 0;
}

.wpcf7-radio span.wpcf7-list-item {
  display: block;
  max-width: max-content;
  width: 100%;
}

.wpcf7-form-control-wrap.entry_year input {
  max-width: 65px;
}

.wpcf7-form-control-wrap.address_num input {
  margin-left: 5px;
  max-width: 95px;
}

input[type="button"].wpcf7c-btn-back {
  margin: 0 0 0 -15px;
}

span.wpcf7-list-item {
  display: block;
  margin: 0;
}

.img-bd img {
  border: 1px solid #DFDFDF;
}

/* pc sp button */
.view-button {
  align-items: center;
  display: flex;
  justify-content: center;
  width: 100%;
}

.view-button p.pc-button {
  display: none;
}

.view-button p.sp-button {
  display: block;
  text-align: left;
}

/* img decoration */
.image-border img {
  border: 1px solid #CCC;
  box-sizing: border-box;
}

.img-border {
  border: 1px solid #CCC;
  box-sizing: border-box;
  padding: 10px;
}

/* pdf */
a[href$=".pdf"].link-pdf {
  display: flex;
  position: relative;
}

a[href$=".pdf"].link-pdf::before {
  background: url(../image/contents/ico_pdf_red.svg) no-repeat center / contain;
  content: "";
  display: block;
  height: 21px;
  margin-right: 8px;
  position: relative;
  top: 5px;
  width: 20px;
}

/* single 投稿詳細ページ  */
.single #contents h2 {
  font-size: 170%;
  letter-spacing: .03em;
  line-height: 1.5em;
  margin-bottom: 30px;
  text-align: left;
}

.single #contents img {
  border: 1px solid #EAEAEA;
}

/* btn */
.link-btn {
  background-color: #C46640;
  color: #FFF;
  display: block;
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "メイリオ", " Meiryo", "ＭＳ Ｐ明朝", "MS PMincho", Osaka, serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: .1em;
  max-width: 100%;
  padding: 15px;
  position: relative;
  text-align: center;
  transition: .5s;
  width: 400px;
}

.link-btn:hover {
  cursor: pointer;
  opacity: .7;
  text-decoration: none;
  transition: .5s;
}

.link-btn::after {
  border-bottom: 5px solid transparent;
  border-left: 7px solid #FFF;
  border-right: 0;
  border-style: solid;
  border-top: 5px solid transparent;
  bottom: 0;
  content: "";
  display: block;
  height: 0;
  margin: auto;
  position: absolute;
  right: 20px;
  top: 2px;
  width: 0;
}


#contents .link-btn[target="_blank"]::after {
  background: url(../image/contents/ico_tab_white.svg) no-repeat center / contain;
  border: none;
  height: 19px;
  top: 1px;
  width: 19px;
}

#contents .link-btn[href$=".pdf"] {
  background-color: #FFF;
  border: 2px solid #B24A44;
  color: #333;
}

#contents .link-btn[href$=".pdf"]::after {
  background: url(../image/contents/ico_pdf_red.svg) no-repeat center / contain;
  border: none;
  height: 23px;
  top: 1px;
  width: 23px;
}

.anchor-box .link-btn {
  width: 100%;
}

.link-btn.anchor {
  background-color: #EDDCC2;
  color: #0B233F;
}

.link-btn.anchor::after {
  border-left: 6px solid #0B233F;
  transform: rotate(90deg);
}

.link-btn.center {
  margin: 0 auto;
}

#topcontrol {
  background-image: url(../image/base/navi_pagetop.png);
  background-position: center;
  background-repeat: no-repeat;
  height: 70px;
  transition: .5s;
  width: 70px;
}

#topcontrol:hover {
  opacity: .5 !important;
  transition: .5s;
}

.link-bnr {
  display: inline-block;
  transition: .5s;
}

.link-bnr:hover {
  opacity: .5;
  text-decoration: none;
  transition: .5s;
}

.anchor-box {
  gap: 20px 0;
}

/* news */
.news-contents {
  background-color: #FFF;
  padding: 40px;
}

#contents .news-group {
  align-items: center;
  border-bottom: 1px solid #B5B5B5;
  display: flex;
  flex-wrap: wrap;
  padding: 15px 20px;
}

#contents .news-group .txt {
  align-items: center;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  width: 305px;
}

#contents .news-group:first-child {
  border-top: 1px solid #B5B5B5;
}

#contents .news-group p.day {
  color: #0B233F;
  margin-right: 15px;
  position: relative;
  top: 1px;
  width: 240px;
}

#contents .news-group p {
  letter-spacing: .1em;
  margin-bottom: 0;
}

#contents .news-group .ttl {
  color: #0B233F;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0;
  width: calc(100% - 135px);
}


#contents .news-group .ttl {
  width: calc(100% - 350px);
}

#contents .news-group .ttl a {
  color: #0B233F;
  font-weight: 600;
}

#contents .news-group .category {
  background-color: #c46640;
  color: #FFF;
  font-size: 15px;
  margin-right: 15px;
  max-width: 160px;
  padding: 1px 10px 2px;
  text-align: center;
  width: 100%;
}

/* #contents .news-group .category.news {
  background-color: #c44040;
}

#contents .news-group .category.closed {
  background-color: #7b5c9f;
}

#contents .news-group .category.event {
  background-color: #4F7847;
}

#contents .news-group .category.media {
  background-color: #c4a640;
}

#contents .news-group .category.column {
  background-color: #3685be;
}

#contents .news-group .category.recruit {
  background-color: #c46640;
} */

/* #contents .news-group .category.yutoriro-news {
  background-color: #CE5757;
}

#contents .news-group .category.blog {
  background-color: #4E8BAF;
}

#contents .news-group .category.magazine {
  background-color: #49A450;
} */

#contents .news-group .txt-area {
  display: flex;
  flex-direction: row;
}

.news-contents {
  margin-top: 20px;
}

.page-numbers {
  background-color: #FFF;
  border-radius: 3px;
  color: #565656;
  font-size: 16px;
  margin-bottom: 10px;
  margin-right: 5px;
  padding: 8px 19px;
  text-decoration: none;
  transition: .3s;
}

.page-numbers:last-child {
  margin-right: 0;
}

.page-numbers.dots:hover {
  opacity: 1;
}

.page-num-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.page-numbers.current {
  background-color: #0B233F;
  color: #FFF;
  margin-right: 5px;
}

.page-numbers.current:hover {
  color: #FFF;
  opacity: 1;
  pointer-events: none;
}

.page-numbers:hover {
  color: #565656;
  opacity: .5;
  text-decoration: none;
}

.entry-header {
  margin-top: 20px;
}


#contents .news-category ul li {
  margin-right: 20px;
  width: calc(100% / 3 - 14px);
}

#contents .news-category ul li:last-child {
  margin-right: 0;
}

.news-category .flex {
  gap: 10px;
}

#contents .news-category ul li a {
  color: #FFF;
  display: block;
  font-size: 18px;
  font-weight: 500;
  padding: 12px;
  position: relative;
  text-align: center;
  transition: .3s;
  background-color: #C46640;
}

#contents .news-category ul li:first-child a {
  background-color: #EDDCC2;
  color: #0B233F;
}

/*  */
/* #contents.yutoriro-contents .news-category ul li:nth-child(2) a {
  background-color: #CE5757;
}

#contents.yutoriro-contents .news-category ul li:nth-child(3) a {
  background-color: #4E8BAF;
}

#contents.yutoriro-contents .news-category ul li:nth-child(4) a {
  background-color: #49A450;
} */

/*  */


#contents .news-category ul li a:hover {
  opacity: .5;
  text-decoration: none;
}

#contents .news-category ul li {
  width: calc(100% / 5 - 10px);
  margin-right: 0;
}

/*  */

#yutoriro-news #contents h2,
#contents.yutoriro-contents h2 {
  display: flex;
  flex-direction: column;
}

#yutoriro-news #contents h2 .sub,
#contents.yutoriro-contents h2 .sub {
  font-size: 22px;
  margin-bottom: 15px;
}

#yutoriro,
#yutoriro-news {


  #contents .news-group .ttl {
    width: calc(100% - 310px);
  }

  #contents .news-group .category {
    width: 340px;
    white-space: nowrap;
  }


  /* #contents .news-category ul li:nth-child(2) a {
    background-color: #CE5757;
  }

  #contents .news-category ul li:nth-child(3) a {
    background-color: #4E8BAF;
  }

  #contents .news-category ul li:nth-child(4) a {
    background-color: #49A450;
  } */
}


/* コラム */
#column-list .column-group {
  margin-bottom: 40px;
  margin-right: 35px;
  width: calc(100% / 4 - 27px);
}

#column-list .column-group .photo {
  height: 250px;
  margin-bottom: 25px;
}

#contents #column-list .column-group .txt {
  color: #0B233F;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 5px;
}

#contents #column-list .column-group .ttl {
  color: #0B233F;
  font-size: 18px;
  letter-spacing: .1em;
  margin-bottom: 0;
}

#contents #column-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

#contents #column-list .column-group:nth-child(4n) {
  margin-right: 0;
}

#column-list .column-group .photo img {
  height: 100%;
  max-width: 100%;
  object-fit: cover;

  /* object-position: 50% 30%; */
  width: 100%;
}

#column-list .column-group .link-bnr {
  border-radius: 12px;
  color: #333;
  display: flex;
  flex-direction: column;
  height: 100%;
}



/*  */

.child-box {
  background: url(../image/contents/bg/bg_blue.jpg) repeat;
  box-shadow: 0 6px 6px -5px #40404066;
  display: none;
  left: 0;
  margin: 0 auto;
  padding: 55px 0 50px;
  position: absolute;
  right: 0;
  top: 100%;
  width: 100%;
}

.child-box .grid {
  align-items: start;
  display: grid;
  grid-template-columns: 400px calc(100% - 400px);
  margin: 0 auto;
  max-width: 1400px;
  width: 90%;
}

.child-box-left {
  margin: 0;
  padding-right: 60px;
  width: 100%;
}

.child-box-right {
  width: 100%;
}

#g-navi .child-box-ttl {
  color: #FFF;
  font-size: 25px;
  letter-spacing: .1em;
  line-height: 1em;
  margin: 0 auto 30px;
  padding: 0;
  text-align: center;
}

#g-navi .child-box-ttl .serif {
  color: #A1A1A1;
  display: block;
  font-size: 18px;
  font-weight: bold;
  line-height: 1em;
  margin-top: 15px;
}

#g-navi .navi-list .child-box-left a {
  background: #FFF;
  background-color: #EDDCC2;
  color: #0B233F;
  font-size: 16px;
  margin: 25px auto 0;
  max-width: 250px;
  padding: 10px;
  width: 100%;
}

#g-navi .navi-list .child-box-left a::after {
  border-left: 6px solid #0B233F;
}

#g-navi ul.nav-child {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
  margin: 0;
  padding: 0;
}

#g-navi ul.navi-list .child-box li {
  border: none;
  width: calc(100% / 3 - 14px);
}



#g-navi .navi-list li a.link-btn.black {
  color: #FFF;
  font-size: 15px;
  padding: 10px;
  width: 100%;
}

/* ↑ */






@media screen and (min-width: 960px) {

  #openMenu,
  .sp-ico {
    display: none;
  }

  .navi-inner .sub-nav {
    display: none;
  }

  .sp-bottom-nav {
    display: none !important;
  }

  .header.mobile-.header {
    height: 155px;
  }

  body.mobile-view {
    margin-top: 0;
  }

  .header .sp-ico {
    display: none;
  }

  /* PC時に電話番号を起動させない */
  a[href*="tel:"] {
    cursor: default;
    pointer-events: none;
    text-decoration: none;
  }

  #contents a[href*="tel:"] {
    color: #0B233F;
  }

  .mobile-header.header p.sp-button {
    left: 0;
    position: relative;
    right: 0;
    top: 0;
  }

  .mobile-header.header p.sp-button a {
    align-items: center;
    background: #C46640;
    box-sizing: border-box;
    color: #FFF;
    display: flex;
    justify-content: center;
    margin: auto;
    text-align: center;
    text-decoration: none;
    width: 100%;
    z-index: 9999;
    padding: 55px 0;
    font-size: 300%;
  }

  .mobile-view #page-ttl {
    margin-top: 219px;
  }
}

@media screen and (max-width: 1700px) {
  .header-inner {
    padding: 22px 35px 24px;
  }

  #contents .schedule-box td.ttl {
    width: 210px;
  }

  #contents .schedule-box th,
  #contents .schedule-box td {
    padding: 15px 10px;
  }

  #g-navi .navi-list li a {
    padding: 0 10px 1px;
  }
}

@media screen and (max-width: 1600px) {

  br.br-none-1600 {
    display: none;
  }
}

@media screen and (max-width: 1500px) {

  br.br-none-1500 {
    display: none;
  }

  #contents .schedule-box td.ttl {
    letter-spacing: .1em;
    padding: 15px 10px 15px 15px;
    width: 185px;
    text-align: center;
  }

  #contents .schedule-box th,
  #contents .schedule-box td {
    font-size: 17px;
  }

  .header-inner {
    padding: 22px 20px 24px 17px;
  }

  .header .img-logo {
    width: 340px;
  }

  #g-navi {
    width: calc(100% - 340px);
  }

  #g-navi .navi-list li a {
    padding: 0 10px 1px;
  }

  /*  */
  .child-box {
    padding: 40px 0 40px;
  }

  .child-box .grid {
    grid-template-columns: 300px calc(100% - 300px);
  }

  /*  */
  #column-list .column-group .photo {
    height: calc(100vw / 7);
  }
}

@media screen and (max-width: 1400px) {

  br.br-none-1400 {
    display: none;
  }

  br.br-1400 {
    display: block;
  }

  .header .img-logo {
    width: 325px;
  }

  #g-navi {
    width: calc(100% - 325px);
  }

  #g-navi .navi-list li a {
    font-size: 16px;
    padding: 0 8px 1px;
  }

  #g-navi .navi-list.btn-nav li.btn a {
    font-size: 16px;
    width: 180px;
  }

  .child-box .grid {
    grid-template-columns: 270px calc(100% - 270px);
    width: 95%;
  }

  .child-box-left {
    padding-right: 40px;
  }

  #g-navi .child-box-ttl {
    font-size: 22px;
  }

  #g-navi .child-box-ttl .serif {
    font-size: 16px;
  }
}

@media screen and (max-width: 1300px) {
  br.br-none-1300 {
    display: none;
  }

  .footer-sitemap .list-border {
    max-width: 1130px;
  }

  .footer-sitemap li:nth-child(13) a {
    border-left: none;
  }

  .footer-sitemap li:nth-child(12) a {
    border-left: 1px solid #FFF;
  }

  .header-inner {
    padding: 22px 20px 24px;
  }

  .header .img-logo {
    width: 295px;
  }

  #g-navi {
    width: calc(100% - 295px);
  }

  br.br-1300 {
    display: block;
  }

  #g-navi .navi-list li a {
    font-size: 15px;
    padding: 0 7px 1px;
  }
}

@media screen and (max-width: 1250px) {
  #g-navi .navi-list li.reason.nav-parent .sp-ttl {
    width: 100%;
  }

  #g-navi ul.navi-list .child-box li {
    width: calc(100% / 2 - 10px);
  }

  #g-navi ul.nav-child {
    gap: 15px;
  }
}

@media screen and (max-width: 1200px) {

  br.br-1200 {
    display: block;
  }

  #g-navi .navi-list li a {
    padding: 0 11px 1px;
  }

  #g-navi {
    max-width: 690px;
    width: calc(100% - 320px);
  }

  #page-ttl {
    margin-top: 170px;
    padding: 60px 0;
  }
}

@media screen and (max-width: 1140px) {

  #contents .tel-box a[href*="tel:"],
  #contents .tel-box .fax {
    font-size: 33px;
  }

  .about-area {
    padding: 30px;
  }

  br.br-none-1140 {
    display: none;
  }

  #contents {
    padding-bottom: 429px;
  }

  .footer .logo-area img {
    width: 370px;
  }

  #column-list .column-group {
    margin-right: 20px;
    width: calc(100% / 4 - 15px);
  }

  #contents #column-list .column-group .txt {
    font-size: 16px;
  }

  #contents #column-list .column-group .ttl {
    font-size: 15px;
  }

  #contents .bnr-box .bnr-ttl {
    font-size: 18px;
    padding: 12px 10px;
  }

  #contents .schedule-box th,
  #contents .schedule-box td {
    font-size: 16px;
  }

  .table-01 th.need p:before,
  .table-01 th.no-need p:before {
    top: 2px;
  }

  #contents .schedule-box td.color {
    font-size: 13px;
  }

  #contents h2 {
    font-size: 26px;
  }

  .footer-sitemap li:nth-child(12) a {
    border-left: none;
  }

  .footer-sitemap li:nth-child(11) a,
  .footer-sitemap li:nth-child(18) a {
    border-left: 1px solid #FFF;
  }

  .footer-sitemap .list-border {
    max-width: 930px;
  }

  #page-ttl {
    margin-top: 153px;
    padding: 50px 0;
  }

  .mobile-view #page-ttl {
    margin-top: 236px;
  }

  #page-ttl .inner h1 {
    font-size: 28px;
  }

  .header-inner {
    padding: 18px 20px 15px;
  }

  #g-navi .navi-list li a {
    font-size: 16px;
  }

  br.br-1140 {
    display: block;
  }

  .footer,
  #contents p,
  #contents li {
    font-size: 15px;
  }

  #contents .news-group p.day {
    font-size: 16px;
    width: 105px;
  }

  .page-numbers {
    font-size: 14px;
    padding: 5px 18px;
  }

  #contents a.page-numbers {
    line-height: 2.3em;
  }

  #contents .news-group {
    padding: 15px;
  }

  #contents .news-group .ttl {
    font-size: 16px;
  }

  .link-btn {
    font-size: 16px;
    padding: 12px;
    width: 370px;
  }

  /* 下層ページ */
  .single #contents h2 {
    font-size: 26px;
  }

  #contents h3 {
    font-size: 22px;
    padding: 6px 17px 7px;
  }

  .table-01 th,
  .table-01 td,
  .table-02 th,
  .table-02 td {
    font-size: 15px;
  }

  #contents .bnr-box,
  #contents .bnr-box.flex.start {
    gap: 30px 0;
  }
}

/* view-959 Mobile,Tablet */
@media screen and (max-width: 959px) {

  #entry #contents .entry-area .table-01 th p,
  #entry #contents .entry-area .table-01 td p {
    margin-bottom: 0;
  }

  #entry #contents .entry-area .table-01 th {
    padding-top: 20px;
  }

  #entry #contents .entry-area .table-01 td {
    padding-bottom: 20px;
  }

  #contents .news-group .txt {
    margin-bottom: 3px;
  }

  #contents .news-group .txt .category {
    font-size: 14px;
  }

  /* 下層 */
  .about-area {
    padding: 30px;
  }

  #contents .about-area .main-txt {
    font-size: 19px;
  }

  #contents .bnr-box .txt-3box {
    width: calc(100% / 2 - 20px);
  }

  #contents .bnr-box,
  #contents .bnr-box.flex.start,
  #contents .bnr-box.flex.center {
    justify-content: space-around;
    gap: 20px 0;
  }

  /*  */

  .copyright {
    padding-bottom: 80px;
  }

  .sp-bottom-nav {
    bottom: 0;
    left: 0;
    position: fixed;
    width: 100%;
    z-index: 99;
  }

  .bottom-nav-list {
    align-items: center;
    display: flex;
    justify-content: space-between;
    width: 100%;
  }

  .sp-bottom-nav .bottom-nav-item {
    border-right: 1px solid #FFF;
    border-top: 1px solid #FFF;
    width: 100%;
  }

  .sp-bottom-nav .bottom-nav-item:last-child {
    border-right: none;
  }

  .sp-bottom-nav .bottom-nav-item a {
    align-items: center;
    background: rgba(196, 102, 64, .9);
    color: #FFF;
    display: flex;
    font-weight: 400;
    justify-content: center;
    letter-spacing: .1em;
    padding: 13px 5px;
    position: relative;
  }

  .sp-bottom-nav .bottom-nav-item a:hover {
    opacity: .7;
    text-decoration: none;
  }

  #contents .news-group p.day {
    font-size: 15px;
    margin-bottom: 3px;
    margin-right: 0px;
  }

  #contents .news-group .txt-area {
    display: flex;
    flex-direction: row;
    margin-bottom: 5px;
  }

  .error404 #contents .link-box .txt-2box {
    width: 48%;
  }

  /* header */
  .header-inner {
    padding: 15px 0;
    width: 96%;
  }

  .header {
    align-items: center;
    display: flex;
    justify-content: space-between;
    padding: 0;
    top: 0;
    width: 100%;
  }

  .sp-ico {
    display: flex;
    flex-wrap: wrap;
  }

  #openMenu {
    align-items: center;
    background-color: #C46640;
    color: #FFF;
    display: flex;
    flex-direction: column;
    height: 47px;
    justify-content: center;
    margin-left: 20px;
    padding-bottom: 4px;
    width: 47px;
  }

  #openMenu .sp-nav-txt {
    display: block;
    font-family: "Noto Sans JP", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ";
    font-size: 10px;
    font-weight: 500;
    line-height: 1em;
    margin-top: -7px;
  }

  .header .img-logo {
    height: auto;
    width: 280px;
  }

  /* nav */
  .nav-area {
    background-color: transparent;
    border-top: 1px solid #FFF;
    display: none;
    left: 0;
    left: 0;
    margin-bottom: 50px;
    position: absolute;
    top: 44px;
    width: 100%;
    z-index: 999;
  }

  .nav-area.open {
    display: block;
  }

  .sp-icon {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-right: 0;
  }

  .sp-tel img {
    display: inline-block;
  }

  .sp-icon .sp-nav-txt {
    color: #FFF;
    display: block;
    font-size: 10px;
    letter-spacing: .05em;
    margin-top: -13px;
  }

  #openMenu img {
    margin-top: -8px;
    width: 45px;
  }

  #g-navi {
    background-color: transparent;
    height: auto;
    max-height: calc(100svh - 77px);
    max-width: 100%;
    overflow: auto;
    overflow-x: hidden;
  }

  #g-navi.open {
    background-image: url(../image/contents/bg/bg_contents.jpg?202412);
    background-repeat: repeat;
    border-top: 1px solid #B5B5B5;
    display: block;
    left: 0;
    position: absolute;
    right: 0;
    top: 100%;
    width: 100%;
    z-index: 99999;
  }

  #g-navi .navi-list {
    display: block;
    height: auto;
    margin: 0;
    order: unset;
    position: relative;
    width: 100%;
    z-index: 0;
  }

  #g-navi .navi-list.btn-nav {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    margin: 0;
    order: 2;
  }

  #g-navi .navi-list.btn-nav li.btn a {
    font-size: 15px;
    margin: 0;
    padding: 13px 10px 11px 45px;
    width: 100%;
  }

  #g-navi .navi-list.btn-nav li.btn a::before {
    height: 19px;
  }

  .sp-bottom-nav .bottom-nav-item a::before {
    background: url(../image/base/ico_access.svg) no-repeat center / contain;
    content: "";
    display: block;
    height: 19px;
    margin-right: 5px;
    position: relative;
    top: 1px;
    width: 16px;
  }

  .sp-bottom-nav .bottom-nav-item a.schedule::before {
    background-image: url(../image/base/ico_schedule.svg);
    margin-right: 7px;
    top: -1px;
  }

  #g-navi .navi-list li {
    border: none;
    border-bottom: 1px solid #B5B5B5;
    color: #0B233F;
    font-size: 90%;
    height: 100%;
    margin: 0;
    margin-bottom: 0;
    max-width: none;
    padding: 0;
    width: 100%;
  }

  #g-navi .navi-list li:last-child {
    border-right: none;
  }

  nav .navi-list .child-menu li {
    border: none;
    width: 100%;
  }

  #g-navi .navi-list li a {
    color: #0B233F;
    font-size: 15px;
    height: auto;
    justify-content: flex-start;
    padding: 11px 20px;
    position: relative;
    text-align: left;
    width: 100%;
  }

  .nav-area li a.sp-none {
    display: none;
  }

  #g-navi .child-nav .child-item:last-child {
    border-bottom: 0;
  }

  #g-navi .navi-list li::before {
    background-color: #FFF;
    height: 45px;
  }

  #g-navi ul.navi-list li .nav-ttl {
    display: block;
    height: 46px;
    position: absolute;
    right: 0;
    top: 0;
    width: 46px;
  }

  #g-navi ul.navi-list li span.nav-ttl.open::before {
    transform: rotate(180deg);
  }

  #g-navi ul.navi-list li .child {
    background-color: transparent;
    border-top: 1px solid #DEDEDE;
    box-shadow: none;
    display: none;
    max-width: 100%;
    opacity: 1;
    padding: 0;
    position: relative;
    transition: unset;
    visibility: visible;
    width: 100%;
  }

  #g-navi ul.navi-list li span.nav-ttl::before,
  #g-navi ul.navi-list li span.nav-ttl::after {
    background: #333;
    content: "";
    height: 2px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 47%;
    transition: all .5s ease-in-out;
    width: 13px;
  }

  nav .navi-list .child ul {
    padding: 0px;
    width: 100%;
  }

  /* footer */
  .footer {
    height: auto;
    min-height: 139px;
    padding-bottom: 0;
    padding-bottom: 0;
    position: static;
    position: absolute;
    text-align: center;
  }

  .footer .address {
    border-left-width: 0;
    padding: 0;
    text-align: center;
    width: 100%;
  }

  .footer .logo-area {
    width: 100%;
  }

  .footer-detail {
    flex-wrap: wrap;
    max-width: 400px;
    width: 90%;
  }

  .footer .inner {
    margin: 0 auto;
    width: 94%;
  }

  .view-button p.sp-button {
    display: none;
  }

  .footer-sitemap .sp-none {
    display: none;
  }

  /* error */
  .error404 #contents .error-txt {
    text-align: left;
  }

  .error404 #contents .error-txt br {
    display: none;
  }

  .error404 #contents h2 {
    font-size: 25px;
    margin-bottom: 30px;
  }

  /* 下層共通 */
  #contents .news-group {
    display: block;
    padding: 12px 10px;
  }

  #contents .news-group .ttl {
    font-size: 15px;
    width: 100%;
  }

  /* contents */
  body {
    min-width: 100%;
  }

  #contents {
    padding-bottom: 414px;
    padding-top: 0;
  }

  /* page ttl*/
  #page-ttl,
  .mobile-view #page-ttl {
    margin-top: 75px;
    padding: 45px 0 45px;
    text-align: center;
  }

  #page-ttl .inner h1 {
    font-size: 1.5em;
  }

  /* hx */
  #contents h2 {
    margin-bottom: 30px;
    line-height: 1.4em;
  }

  /* カラム数 */
  .txt-2box,
  .img-2box,
  .img-2box-txt,
  .img-2box.option-ico,
  .img-2box-txt.option-text {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }

  .txt-2box.end {
    margin-right: 0;
  }

  .txt-3box {
    margin-right: 0;
    width: 100%;
  }

  .txt-3box.end {
    margin-right: 0;
  }

  .anchor-box .txt-3box {
    width: calc(100% / 2 - 10px);
  }

  #contents .flex.center.anchor-box {
    justify-content: space-around;
  }

  .txt-4box {
    margin-right: 15px;
    width: calc(100% / 2 - 8px);
  }

  .txt-4box:nth-child(2n) {
    margin-right: 0;
  }

  /* table */
  .table-01 {
    width: 100%;
  }

  .table-01 tr {
    border-bottom: 1px solid #B5B5B5;
  }

  .table_over table {
    min-width: 710px;
  }

  .table-01 th {
    border: none;
    display: block;
    margin-left: 0;
    margin-right: 0;
    padding: 10px 15px;
    width: 100%;
  }

  .table-01 td {
    border: none;
    display: block;
    padding: 10px 15px;
  }

  .table-01 textarea {
    max-width: 100%;
    width: 100%;
  }

  .table-01.w-100 th {
    box-sizing: border-box;
    width: 100%;
  }

  .table-02 th,
  .table-02 td {
    padding: 10px;
  }

  /* view-none */
  .pc-none {
    display: block;
  }

  .pc-none.inline {
    display: inline;
  }

  .sp-none,
  .sp-none.inline,
  .header-inner .home-sub-area.sp-none {
    display: none;
  }

  input,
  select {
    font-size: 16px;
    width: 100%;
  }

  input[type="submit"] {
    width: 100%;
  }

  input[type="checkbox"],
  input[type="radio"] {
    width: auto;
  }

  #topcontrol {
    /* pagetopへ戻るボタン。jsのため!importantを使用 */
    display: none !important;
  }

  /*  */

  #g-navi .navi-list .child-box-right a::before {
    display: none;
  }

  #g-navi ul.nav-child {
    background-color: #FFF;
    border-top: 1px solid #D7D7D7;
    display: block;
    padding: 0;
  }

  #g-navi .navi-list .child-box-right a {
    background-color: #FFF;
    border: none;
    max-width: 100%;
    padding: 11px 20px 11px 45px;
  }

  #g-navi .navi-list .child-box-right a:hover {
    color: #333;
    opacity: .5;
  }

  #g-navi ul.navi-list .child-box li {
    border-bottom: 1px solid #D2D2D2;
  }

  #g-navi ul.navi-list .child-box li,
  #g-navi ul.navi-list .child-box li:nth-child(3n) {
    width: 100%;
  }

  #g-navi ul.navi-list .child-box li:last-child {
    border-bottom: unset;
  }

  .child-box-left {
    display: none;
  }

  .child-box .grid {
    display: block;
    width: 100%;
  }

  .child-box {
    box-shadow: unset;
    padding: 0;
    position: relative;
  }

  nav .nav-menu-link.open::before {
    transform: rotate(180deg);
  }

  #g-navi .navi-list li a.link-btn.black {
    border: 0;
    color: #333;
  }

  #g-navi .navi-list li a.link-btn.black:hover {
    border: none;
    color: #333;
    opacity: .5;
  }

  #g-navi .navi-list li a.link-btn.black::after {
    border-left: 6px solid #0B233F;
    left: 25px;
    right: auto;
  }

  #g-navi .navi-list li.reason.nav-parent .sp-ttl {
    width: 100%;
  }

  #g-navi .navi-list .child-box-right a {
    padding: 11px 20px 11px 45px;
  }

  #g-navi .navi-list li a.link-btn.black {
    border: 0;
    color: #333;
    padding: 11px 20px 11px 45px;
  }

  nav .nav-menu-link {
    display: block;
    height: 45px;
    margin: -50px 0 0 auto;
    position: relative;
    width: 53px;
  }

  nav .nav-menu-link::before {
    background: #333;
    border-left: none;
    bottom: unset;
    content: "";
    display: block;
    height: 2px;
    margin: unset;
    position: absolute;
    right: 20px;
    top: 48%;
    transform: rotate(90deg);
    transition: all .3s ease-in-out;
    width: 14px;
    z-index: 1;
  }

  nav .nav-menu-link::after {
    background: #333;
    content: "";
    display: block;
    height: 2px;
    position: absolute;
    right: 20px;
    top: 48%;
    transition: all .2s ease-in-out;
    width: 14px;
    z-index: 1;
  }

  #policy .table-02 th {
    min-width: 150px;
  }

  /*  */
  #contents .news-category ul li {
    width: calc(100% / 3 - 15px);
  }
}

@media screen and (max-width: 767px) {
  br.br-767 {
    display: block;
  }

  #column-list .column-group {
    margin: 0 30px 45px 0;
    width: calc(100% / 2 - 15px);
  }

  #column-list .column-group:nth-child(2n) {
    margin-right: 0;
  }

  #column-list .column-group .photo {
    height: calc(100vw / 3.8);
  }


  #contents .bnr-box .txt-3box {
    width: 100%;
    text-align: center;
  }

  /*  */
  #contents .news-category ul li {
    width: calc(100% / 2 - 15px);
  }

  .news-category .flex {
    gap: 10px;
  }

  #contents .news-category ul li a {
    font-size: 15px;
  }
}

@media screen and (max-width: 700px) {
  #contents .schedule-box td.ttl {
    width: 170px;
  }

  #contents .schedule-box th,
  #contents .schedule-box td {
    font-size: 15px;
  }
}

@media screen and (max-width: 640px) {
  .error404 #contents .link-box {
    margin-bottom: 65px;
  }

  .error404 #contents h2 {
    font-size: 22px;
    text-align: left;
  }

  .error404 #contents h2 br {
    display: none;
  }

  br.br-640 {
    display: block;
  }

}

@media screen and (max-width: 559px) {

  .anchor-box .txt-3box {
    width: 100%;
  }

  form table input {
    width: 100%;
  }

  /* 下層 */
  .bg-blue,
  .bg-beige,
  .bg-orange {
    padding: 45px 0;
  }

  #contents .box-mb {
    margin-bottom: 45px;
  }

  #contents .box-mb:last-child {
    margin-bottom: 80px;
  }

  .about-area {
    padding: 20px 15px;
  }

  #contents .about-area .main-txt {
    font-size: 17px;
  }

  #contents .tel-box a[href*="tel:"],
  #contents .tel-box .fax {
    font-size: 30px;
  }

  #contents .tel-box a[href*="tel:"]::before {
    height: 20px;
    width: 20px;
    top: 3px;
  }

  /*  */

  #g-navi .navi-list.btn-nav {
    grid-template-columns: 1fr;
  }

  .anchor-box {
    gap: 15px 0;
  }

  #column-list .column-group .photo {
    margin-bottom: 15px;
  }

  #contents #column-list .column-group .txt {
    font-size: 15px;
  }

  #contents #column-list .column-group .ttl {
    font-size: 14px;
  }

  #column-list .column-group {
    margin: 0 15px 45px 0;
    width: calc(100% / 2 - 8px);
  }

  #contents .bnr-box .bnr-ttl {
    font-size: 17px;
    padding: 10px;
  }

  #contents .schedule-box td.color {
    font-size: 11px;
  }

  #contents .schedule-box th,
  #contents .schedule-box td {
    padding: 10px 8px;
  }

  #contents .schedule-box td.ttl {
    letter-spacing: .05em;
    line-height: 1.6em;
    min-width: 98px;
    padding: 10px 5px;
    width: 25%;
    font-size: 13px;
  }

  #contents .schedule-box tr:first-child th:last-child {
    width: 19%;
  }

  #contents .schedule-box th,
  #contents .schedule-box td {
    font-size: 14px;
    padding: 10px 3px;
  }

  .footer .logo-area {
    max-width: 280px;
  }

  .header .img-logo {
    width: 280px;
  }

  br.br-559 {
    display: block;
  }

  br.br-none-559 {
    display: none;
  }

  .table-01 th,
  .table-01 td,
  .table-02 th,
  .table-02 td,
  #contents table td li,
  #contents table td p {
    font-size: 14px;
  }

  .link-btn {
    font-size: 17px;
    max-width: 100%;
    width: 100%;
  }

  #contents .sp-txt {
    display: block;
  }

  #contents {
    padding-bottom: 457px;
  }

  .error404 #contents .error-txt {
    margin-bottom: 25px;
  }

  .error404 #contents img {
    width: 60px;
  }

  input[type="submit"] {
    max-width: 100%;
  }

  .page-numbers {
    padding: 3px 15px;
  }

  .txt-4box {
    margin-right: 10px;
    width: calc(100% / 2 - 5px);
  }

  .table-01 th,
  .table-01 td {
    padding: 10px;
  }

  #page-ttl,
  .mobile-view #page-ttl {
    margin-top: 65px;
    padding: 42px 0 38px;
  }

  #contents .inner {
    width: 93%;
  }

  #contents h2 {
    font-size: 23px;
    line-height: 1.4em;
  }

  #contents h3 {
    font-size: 20px;
    margin-bottom: 25px;
    padding: 6px 15px 7px;
  }

  #contents h4 {
    font-size: 19px;
  }

  #breadcrumb {
    width: 93%;
  }

  .copyright {
    font-size: 13px;
  }

  .footer .address {
    font-size: 14px;
  }

  .view-button p.pc-button {
    display: block;
    margin: 15px 0;
  }

  .view-button p.pc-button a {
    border: 1px solid #FFF;
    color: #FFF;
    display: block;
    font-size: 14px;
    letter-spacing: .05em;
    margin: 0 auto 30px;
    max-width: 278px;
    padding: 5px;
    position: relative;
    text-align: center;
    text-decoration: none;
    transition: .5s;
    width: 100%;
  }

  .footer-sitemap .list-border {
    margin-bottom: 0;
  }

  .view-button {
    display: block;
    text-align: center;
    width: 100%;
  }

  #contents .news-group .ttl {
    line-height: 1.7em;
  }

  .header-inner {
    padding: 10px 0;
    width: 95%;
  }

  #g-navi {
    max-height: calc(100svh - 67px);
  }

  .bg-white {
    padding: 20px 15px;
  }

  .news-contents {
    padding: 20px 15px;
  }
}


@media screen and (max-width: 430px) {
  br.br-430 {
    display: block;
  }
}

@media screen and (max-width: 414px) {
  br.br-414 {
    display: block;
  }
}


@media screen and (max-width: 400px) {

  #contents .schedule-box th,
  #contents .schedule-box td {
    font-size: 13px;
  }
}

@media screen and (max-width: 390px) {
  br.br-390 {
    display: block;
  }
}

/* 管理画面ログイン後 上部メニューの固定化 */
#wpadminbar {
  position: fixed;
}