@charset "UTF-8";

/* Simple fluid media
   Note: Fluid media requires that you remove the media's height and width attributes from the HTML
   http://www.alistapart.com/articles/fluid-images/ 
*/
img,
object,
embed,
video {
  max-width: 100%;
}

/* IE 6 does not support max-width so default to width 100% */
.ie6 img {
  width: 100%;
}

/*
	Dreamweaver Fluid Grid Properties
	----------------------------------
	dw-num-cols-mobile:		4;
	dw-num-cols-tablet:		8;
	dw-num-cols-desktop:	12;
	dw-gutter-percentage:	25;
	
	Inspiration from "Responsive Web Design" by Ethan Marcotte 
	http://www.alistapart.com/articles/responsive-web-design
	
	and Golden Grid System by Joni Korpi
	http://goldengridsystem.com/
*/

.fluid {
  clear: both;
  margin-left: 0;
  width: 100%;
  float: left;
  display: block;
}

.fluidList {
  list-style: none;
  list-style-image: none;
  margin: 0;
  padding: 0;
}

body {
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ",
    Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  background-color: #fff;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

.pos {
  position: relative;
}

.left {
  text-align: left;
}

.t-j99 {
  text-align: justify;
}

.l199 {
  line-height: 1.5;
}

.z4 {
  position: relative;
  z-index: 4;
}

.z5 {
  position: relative;
  z-index: 5;
}

.z9 {
  position: relative;
  z-index: 9;
}

.hihyouji {
  display: none;
}

.m10 {
  margin-top: 10px;
}

.b-t {
  text-decoration: underline;
}

/* Mobile Layout: 480px and below. */

.gridContainer {
  margin-left: auto;
  margin-right: auto;
  width: 90%;
  padding-left: 2.275%;
  padding-right: 2.275%;
  clear: none;
  float: none;
}

.gridContainer__mv {
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  padding: 0 10%;

}

.gridContainer1400 {
  margin-left: auto;
  margin-right: auto;
  width: 90%;
  padding-left: 2.275%;
  padding-right: 2.275%;
  clear: none;
  float: none;
}

.gridContainer1400-g {
  margin-left: auto;
  margin-right: auto;
  width: 90%;
  padding-left: 2.275%;
  padding-right: 2.275%;
  clear: none;
  float: none;
}

/*  font 
---------------------------------------*/

p {
  font-size: 15px;
  line-height: 1.9;
  color: #471f00;
  font-family: a-otf-ud-shin-maru-go-pr6n, sans-serif;
  font-weight: 300;
  font-style: normal;
}

p.big {
  font-weight: bold;
  font-size: 25px;
  text-align: center;
}

.color-yellow {
  color: #aa941d;
}

.color-kon {
  color: #002d6e;
}

.color-white {
  color: #fff;
}

.color-green {
  color: #b9d988;
}

.color-orange {
  color: #ffc700;
}

.color-kin {
  color: #c09b54;
}

.color-pink {
  color: #f49ba6;
}

.size-5p {
  font-size: 18px;
}

.small-fa {
  font-size: 14px;
}

.size-m2 {
  font-size: 20px;
}

.size-m {
  font-size: 20px;
}

.size-ma {
  font-size: 20px;
}

.size-ma2 {
  font-size: 19px;
}

.size-b {
  font-size: 20px;
}

.size-s2 {
  font-size: 18px;
}

.size-top {
  font-size: 20px;
}

.big2 {
  font-size: 20px;
}

/*VDL Ｖ７丸ゴシック U
VDL Ｖ７丸ゴシック EB
VDL Ｖ７丸ゴシック B*/

.vdl-b {
  font-family: vdl-v7marugothic, sans-serif;
  font-weight: 700;
  font-style: normal;
}

.vdl-eb {
  font-family: vdl-v7marugothic, sans-serif;
  font-weight: 800;
  font-style: normal;
}

.vdl-u {
  font-family: vdl-v7marugothic, sans-serif;
  font-weight: 900;
  font-style: normal;
}

.g-goshic-n {
  font-family: vdl-v7marugothic, sans-serif;
  font-weight: 700;
  font-style: normal;
}

/*A-OTF UD新丸ゴ Pr6N L*/

.ud-m {
  font-family: a-otf-ud-shin-maru-go-pr6n, sans-serif;
  font-weight: 300;
  font-style: normal;
}

/*LiebeLotte Bold*/

.lie {
  font-family: liebelotte, sans-serif;
  font-weight: 700;
  font-style: normal;
}

/*  動き
---------------------------------------*/

.logo-s99 {
  opacity: 0;
  animation-name: fadein-bottom99;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}

.logo-right {
  opacity: 0;
  animation-name: fadein-bottom-right;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}

@keyframes fadein-bottom99 {
  0% {
    opacity: 0;
    transform: translateY(20px) translatex(-20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0px) translatex(0px);
  }
}

@keyframes fadein-bottom-right {
  0% {
    opacity: 0;
    transform: translatex(20px);
  }

  100% {
    opacity: 1;
    transform: translatex(0px);
  }
}

.fade-in-bottom {
  opacity: 0;
  animation-name: fadein-bottom;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}

.fade-in-bottom2 {
  opacity: 0;
  animation-name: fadein-bottom;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
  animation-delay: 0.3s;
}

.fade-in-bottom3 {
  opacity: 0;
  animation-name: fadein-bottom;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
  animation-delay: 0.6s;
}

@keyframes fadein-bottom {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/*  下から
-------------------------*/
.logo-s2 {
  transition: 1s;
  -webkit-transition: 1s;
  opacity: 0;
  transform: translate(0, 50px);
  -webkit-transform: translate(0, 50px);
  -ms-transform: translate(0, 50px);
}

.isAnimate {
  opacity: 1;
  transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
}

.fade01 {
  transition-duration: 1s;
  opacity: 0;
  transform: translate(0, 50px);
}

.fade02 {
  transition-duration: 1s;
  transition-delay: 0.3s;
  opacity: 0;
  transform: translate(0, 50px);
}

.fade03 {
  transition-duration: 1s;
  transition-delay: 0.6s;
  opacity: 0;
  transform: translate(0, 50px);
}

.isAnimate5 {
  opacity: 1;
  transform: translate(0, 0);
}

/*  hedaer
---------------------------------------*/

.w-na {
  width: 95%;
  margin: auto;
}

.sp-header {
  height: 4rem;
  top: 0;
  width: 100%;
  z-index: 999;
  background-color: #fff;
}

#category {
  font-size: 15px;
  color: #3c3c3c;
  font-weight: bold;
  padding-top: 10px;
  width: 100%;
  font-family: source-han-sans-japanese, sans-serif;
  font-weight: 300;
  font-style: normal;
}

.main_menu {
  padding-top: 15px;
  padding-bottom: 15px;
  font-weight: bold;
  text-indent: 10;
  display: block;
  position: relative;
  border-bottom: #c6c6c6 1px solid;
  width: 100%;
}

.main_menu::before {
  content: "";
  width: 8px;
  height: 8px;
  border: 0px;
  border-top: solid 2px #c09b54;
  border-right: solid 2px #c09b54;
  -ms-transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  position: absolute;
  top: 47%;
  right: 15px;
  margin-top: -6px;
}

.main_menu99 {
  padding-top: 20px;
  padding-bottom: 20px;
  font-weight: bold;
  text-indent: 10;
  display: block;
  position: relative;
  border-bottom: #603d22 1px solid;
  width: 100%;
}

.main_menu99 a {
  color: #603d22;
  font-family: vdl-v7marugothic, sans-serif;
  font-weight: 700;
  font-style: normal;
}

span.pl {
  padding-left: 20px;
}

#menu .open::before {
  -ms-transform: rotate(315deg);
  -webkit-transform: rotate(315deg);
  transform: rotate(315deg);
  margin-top: -3px;
}

dl.ut {
  margin: 0;
}

dl.ut dt {
  position: relative;
  border-bottom: #603d22 1px solid;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
  font-size: 15px;
  color: #603d22;
  font-family: vdl-v7marugothic, sans-serif;
  font-weight: 700;
  font-style: normal;
}

dl.ut dd {
  background-color: #faf7e7;
}

ul.komoji {
  padding-left: 40px;
  padding-top: 20px;
  padding-bottom: 10px;
  border-bottom: #c7c7c7 1px solid;
}

ul.komoji li {
  margin-bottom: 20px;
}

ul.komoji li a {
  color: #603d22;
  font-family: vdl-v7marugothic, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 15px;
}

.open3::before,
.open3::after {
  content: "";
  display: block;
  width: 15px;
  height: 2px;
  border-radius: 5px;
  background: #603d22;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.open3::after {
  background: #603d22;
  transform: translateY(-50%) rotate(90deg);
  transition: 0.5s;
}

.active3::after {
  transform: rotate(0);
  transition: 0.5s;
  position: absolute;
  top: 48%;
  right: 10px;
}

.sub_menu {
  border-bottom: #002d6e 1px solid;
  padding-top: 5px;
  padding-bottom: 5px;
}

.sub_menu li {
  width: 60%;
  float: left;
  margin-left: 3%;
}

.sub_menu li:first-child {
  width: 30%;
  margin-left: 2%;
}

.sub_menu li a {
  padding-top: 10px;
  padding-bottom: 10px;
  text-indent: 25px;
  display: block;
  position: relative;
  font-size: 13px;
  color: #c09b54;
  font-family: tbudgothic-std, sans-serif;
  font-weight: 700;
  font-style: normal;
}

.sub_menu li a::before {
  content: "";
  width: 8px;
  height: 8px;
  position: absolute;
  top: 43%;
  left: 0;
  border-top: 2px solid #c09b54;
  border-right: 2px solid #c09b54;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.sub_menu2 {
  border-bottom: #002d6e 1px solid;
  padding-top: 5px;
  padding-bottom: 5px;
}

.sub_menu2 li {
  width: 45%;
  float: left;
  margin-left: 8%;
}

.sub_menu2 li:nth-child(odd) {
  margin-left: 2%;
  clear: both;
}

.sub_menu2 li a {
  padding-top: 10px;
  padding-bottom: 10px;
  text-indent: 25px;
  display: block;
  position: relative;
  font-size: 13px;
  color: #c09b54;
  font-family: tbudgothic-std, sans-serif;
  font-weight: 700;
  font-style: normal;
}

.sub_menu2 li a::before {
  content: "";
  width: 8px;
  height: 8px;
  position: absolute;
  top: 43%;
  left: 0;
  border-top: 2px solid #c09b54;
  border-right: 2px solid #c09b54;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.sub_menu3 {
  border-bottom: #002d6e 1px solid;
  padding-top: 5px;
  padding-bottom: 5px;
}

.sub_menu3 li {
  width: 45%;
  float: left;
  margin-left: 3%;
}

.sub_menu3 li:first-child {
  width: 50%;
  margin-left: 2%;
}

.sub_menu3 li a {
  padding-top: 10px;
  padding-bottom: 10px;
  text-indent: 25px;
  display: block;
  position: relative;
  font-size: 13px;
  color: #c09b54;
  font-family: tbudgothic-std, sans-serif;
  font-weight: 700;
  font-style: normal;
}

.sub_menu3 li a::before {
  content: "";
  width: 8px;
  height: 8px;
  position: absolute;
  top: 43%;
  left: 0;
  border-top: 2px solid #c09b54;
  border-right: 2px solid #c09b54;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.bg-sp-header img {
  width: 100%;
}

.sp-home {
  position: fixed;
  top: 13px;
  left: 12px;
  width: 235px;
  display: block;
}

.sp-tel {
  height: 4rem;
  width: 5.5rem;
  position: fixed;
  top: 0;
  right: 5rem;
  display: block;
  background-color: #002f82;
}

.sp-tel3 {
  width: 68%;
  margin: auto;
  margin-top: 6px;
  margin-right: 2px;
}

.sp-mail {
  width: 4rem;
  position: fixed;
  top: 0;
  right: 3.8rem;
  display: block;
  background-color: #48a2d1;
}

.bg-sp {
  position: fixed;
  top: 0;
  right: 0;
  display: block;
  box-sizing: content-box;
  width: 3.5rem;
  height: 1.6rem;
  padding: 0;
  padding-top: 8px;
  padding-right: 0.75rem;
  padding-bottom: 30px;
  padding-left: 0.75rem;
  -webkit-transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  border: 0;
  outline: 0;
  background-color: #fff;
}

.header-logo {
  text-align: center;
  width: 30%;
  margin-top: 10px;
  float: left;
}

.header-logo img {
  width: 40%;
}

.header-tel {
  text-align: center;
  width: 27.5%;
  padding: 0 10px;
  float: left;
}

.header-tel .tel-num {
  width: 95%;
}

.h-mes {
  font-size: 15px;
  margin-top: 0;
  margin-bottom: 0;
}

.h-telnum {
  font-size: 29px;
  letter-spacing: 4px;
}

.h-telnum img {
  width: 12%;
  margin-bottom: 10px;
  margin-right: 10px;
}

.h-telnum:hover {
  color: #7d7d7d;
}

.pc-header {
  display: none;
}

p.me {
  color: #fff;
  font-size: 14px;
  margin-bottom: 0;
  margin-top: 15px;
  font-weight: bolder;
  position: absolute;
  bottom: 6px;
  left: 15px;
  z-index: 5;
}

.pb {
  padding-bottom: 4rem;
}

.pb2 {
  padding-bottom: 2rem;
}

#map {
  margin-top: -5rem;
  /* 固定ナビの高さ分のネガティブマージン */
  padding-top: 5rem;
  /* 打ち消し用のパディング */
}

#p1,
#p2,
#p3,
#p5 {
  margin-top: -6rem;
  /* 固定ナビの高さ分のネガティブマージン */
  padding-top: 6rem;
  /* 打ち消し用のパディング */
}

#p4 {
  margin-top: -6.5rem;
  /* 固定ナビの高さ分のネガティブマージン */
  padding-top: 6.5rem;
  /* 打ち消し用のパディング */
}

.sp-footer2 {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 31;
}

ul.sp-bun2 {
  margin: 0;
  padding: 0;
  width: 100%;
  margin: auto;
  background-color: #6f4d37;
}

ul.sp-bun2 li {
  width: 50%;
  float: left;
  margin: 0;
}

ul.sp-bun2 li:first-child {
  margin-left: 0;
  width: 50%;
}

.w-nav2 {
  position: absolute;
  width: 95%;
  bottom: -85px;
  left: 10px;
}

.w-nav2 li {
  float: left;
  width: 45%;
  list-style: none;
}

.w-nav2 li:nth-child(2) {
  float: left;
  width: 50%;
  margin-left: 5%;
}

.w1w {
  width: 85%;
  margin: auto;
  padding-top: 10px;
  padding-bottom: 10px;
}

.w1-c {
  background-color: #b9d988;
}

.w1-c2 {
  background-color: #f6abb4;
}

.f-bb {
  padding-bottom: 60px;
}

.yo-btn {
  background-color: #002d6e;
  display: none;
}

.yo-tel {
  background-color: #c09b54;
  display: none;
}

/*  bg
---------------------------------------*/

.bg-gray {
  background-color: #f7f8f8;
}

.bg-kon3 {
  background-color: #002f82;
}

.bg-white3 {
  background-color: #fff;
  box-shadow: 3px 3px 3px rgba(201, 202, 202, 0.8);
}

.bg-green5 {
  background-color: #eaf4db;
}

/*  下から
-------------------------*/
.logo-s2 {
  transition: 1s;
  -webkit-transition: 1s;
  opacity: 0;
  transform: translate(0, 50px);
  -webkit-transform: translate(0, 50px);
  -ms-transform: translate(0, 50px);
}

.isAnimate {
  opacity: 1;
  transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
}

/*  右から
-------------------------*/
.logo-s3 {
  transition: 1s;
  -webkit-transition: 1s;
  opacity: 0;
  transform: translatex(50px);
  -webkit-transform: translatex(50px);
  -ms-transform: translatex(50px);
  width: 0;
}

.isAnimate3 {
  opacity: 1;
  transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  width: 100%;
}

/*  左から
-------------------------*/
.logo-s4 {
  transition: 1s;
  -webkit-transition: 1s;
  opacity: 0;
  transform: translatex(-50px);
  -webkit-transform: translatex(-50px);
  -ms-transform: translatex(-50px);
}

.isAnimate4 {
  opacity: 1;
  transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
}

.logo-s7 {
  transition-duration: 0.3s;
  transition-delay: 0.5s;
  opacity: 0;
  transform: scale(0, 0);
}

.isAnimate07 {
  opacity: 1;
  transform: scale(1, 1);
}

.fade-in-bottom {
  opacity: 0;
  animation-name: fadein-bottom;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}

@keyframes fadein-bottom {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.zoom-image {
  max-width: 600px;
  /* 幅を指定 */
}

.zoom-link {
  display: block;
  overflow: hidden;
  padding: 60% 0 0;
  /* 縦横比を指定 */
  position: relative;
}

.zoom-photo {
  left: 0;
  top: 0;
  display: block;
  height: auto;
  left: 0;
  position: absolute;
  top: 0;
  transition: all 0.2s ease-in-out;
  width: 100%;
  z-index: 1;
}

.zoom-link:hover .zoom-photo {
  transform: scale3d(1.1, 1.1, 1);
  /* hover時の倍率を指定 */
}

.image_mouseover_4 {
  overflow: hidden;
  width: 100%;
  height: 100%;
  background: #fff;
}

.image_mouseover_4 img {
  display: block;
  transition-duration: 0.5s;
}

.image_mouseover_4 img:hover {
  transform: scale(1.5);
  transition-duration: 0.5s;
  opacity: 0.6;
}

/* 　メイン画像の設定（大)
----------------------------------*/

#bg1 {
  background-image: url(file:///Macintosh%20HD/Users/okuakinori/Desktop/tani/img);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  text-align: center;
  height: 200px;
}

/* 　メイン画像の設定（小)
----------------------------------*/

#bg2 {
  background-image: url(file:///Macintosh%20HD/Users/okuakinori/Desktop/tani/img);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  text-align: center;
  height: 200px;
}

/*  nav 
---------------------------------------*/

.js #menu {
  display: none;
}

.js .slicknav_menu {
  display: block;
}

/*  main
---------------------------------------*/

@keyframes animein {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes PageAnime {
  0% {
    transform-origin: bottom;
    transform: scaleY(0);
  }

  50% {
    transform-origin: bottom;
    transform: scaleY(1);
  }

  50.001% {
    transform-origin: top;
  }

  100% {
    transform-origin: top;
    transform: scaleY(0);
  }
}

@keyframes PageAnime99 {
  0% {
    transform-origin: left;
    transform: scalex(0);
  }

  50% {
    transform-origin: left;
    transform: scalex(1);
  }

  50.001% {
    transform-origin: right;
  }

  100% {
    transform-origin: right;
    transform: scalex(0);
  }
}

.w-photo {
  animation-name: animein;
  animation-timing-function: linear;
  animation-duration: 1s;
  animation-delay: 0.7s;
  animation-fill-mode: forwards;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 8;
  background-image: url("../img/main2p.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  width: 100%;
  height: 30vh;
}

.back-color {
  width: 100%;
  background-color: #002d6e;
  animation-name: PageAnime99;
  animation-timing-function: linear;
  animation-duration: 1s;
  animation-delay: 0s;
  animation-fill-mode: forwards;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9;
  height: 30vh;
}

.hei80 {
  height: 30vh;
}

.hei809 {
  height: 40vh;
}

.w-photo2 {
  animation-name: animein;
  animation-timing-function: linear;
  animation-duration: 1s;
  animation-delay: 0.7s;
  animation-fill-mode: forwards;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 8;
  background-image: url("../img/02-photo1.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  width: 100%;
  height: 30vh;
}

.back-color2 {
  width: 100%;
  background-color: #002d6e;
  animation-name: PageAnime;
  animation-timing-function: linear;
  animation-duration: 1s;
  animation-delay: 0s;
  animation-fill-mode: forwards;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9;
  height: 30vh;
}

.hei802 {
  height: 30vh;
}

.h33 {
  height: 15vh;
}

.h333 {
  height: 15vh;
  background-color: #fff;
}

.h39 {
  height: 18vh;
  background-color: #fff;
}

.h-maind-a {
  height: 30vh;
  position: absolute;
  top: 0;
  left: 0;
}

.h-maind-a2 {
  height: 40vh;
  position: absolute;
  top: 0;
  left: 0;
}

.main3,
.main4 {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.main3 {
  background-image: url("../img/main3.png");
}

.main4 {
  background-image: url("../img/main4.png");
}

.sp-main {

  /*height: 80vh;*/
  width: 90%;
  margin: auto;
  background-repeat: no-repeat;
  background-position: top center;
  border-radius: 20px 20px 20px 20px;


}

.sp-main_mv {
  position: absolute;

  background-image: url("../img/index-mv_sp01.png"),
    url("../img/index-mv_sp02.png"),
    url("../img/index-mv_sp03.png"),
    url("../img/index-mv_sp04.png");
  background-size: cover;
  aspect-ratio: 1/1;
  width: 100%;
  margin: auto;
  background-repeat: no-repeat;
  background-position: center center;
  border-radius: 20px 20px 20px 20px;
  animation: img_anime_sp 16s ease infinite;
}

@keyframes img_anime_sp {
  0% {
    background-image: url(../img/index-mv_sp01.png);
  }

  20% {
    background-image: url(../img/index-mv_sp01.png);
  }

  30% {
    background-image: url(../img/index-mv_sp02.png);
  }

  45% {
    background-image: url(../img/index-mv_sp02.png);
  }

  55% {
    background-image: url(../img/index-mv_sp03.png);
  }

  70% {
    background-image: url(../img/index-mv_sp03.png);
  }

  80% {
    background-image: url(../img/index-mv_sp04.png);
  }

  95% {
    background-image: url(../img/index-mv_sp04.png);
  }

  100% {
    background-image: url(../img/index-mv_sp01.png);
    /* 背景画像1を指定 */
  }
}

.bg-pink2,
.bg-pink2_sp {
  background-image: url("../img/08-pink-bg.png");
  background-repeat: repeat;
  background-size: contain;
  display: inline-block;
  padding: 5px;
  padding-left: 10px;
  padding-right: 10px;
  color: #fff;
  border-radius: 10px;
  line-height: 1.3;
  font-family: vdl-v7marugothic, sans-serif;
  font-weight: 700;
  font-style: normal;
  text-align: center;
  font-size: 12px;
  letter-spacing: 3px;
}

.small-pink {
  font-size: 10px;
}

.sp-on99 {
  height: 350px;
}

.htt2 {
  height: 330px;
  height: 100px;
}

.top-mai {
  margin-top: -90px;
}

.open2 {
  width: 110px;
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 999;
}

.spoff {
  display: none;
}

.main2p {
  height: 150px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.main2p {
  background-image: url("../img/main2p.png");
}

.htt2p {
  height: 20px;
}

.h1-area {
  margin: 0;
  position: relative;
  height: 150px;
}

h1.sub2 {
  font-family: vdl-v7marugothic, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 21px;
  text-shadow: 1px 1px 1px #fff, 1px -1px 1px #fff, -17px -3px 16px #fff,
    0 0 16px #fff, 0 0 16px #fff;
  text-align: center;
  position: absolute;
  top: 20%;
  left: 0;
  right: 0;
}

.h-main2 {
  height: 200px;
}

/*  content
---------------------------------------*/

br.sp-none {
  display: none;
}

.sp-none {
  display: none;
}

.c-r {
  padding-top: 30px;
}

.center {
  text-align: center;
}

.m-0 {
  margin: 0;
}

.pc-on {
  display: none;
}

.tab-d-kara {
  display: none;
}

.tab-d-made {
  display: block;
}

.pc-made3 {
  display: block;
}

.m50 {
  margin-top: 50px;
}

.m50-top {
  margin-top: 50px;
}

.pc-mode {
  display: none;
}

.bg-kon-sp {
  background-color: #002d6e;
}

.bg-pink {
  background-color: #fdeef0;
}

.bg-pink9 {
  background-color: #fdeef0;
}

.bg-sky2 {
  background-color: #e5eef9;
}

/*  1p 
------------------------------*/

.t1 {
  width: 95%;
  margin: auto;
  margin-bottom: 0px;
  text-align: center;
}

.n1 {
  width: 80px;
  position: absolute;
  left: 50%;
  margin-left: -40px;
  top: -40px;
}

.inner99 {
  width: 85%;
  margin: auto;
  padding-top: 30px;
  padding-bottom: 40px;
}

.inner99 img {
  text-align: center;
}

.inner {
  width: 85%;
  margin: auto;
  padding-top: 50px;
  padding-bottom: 50px;
}

.inner img {
  text-align: center;
}

.opensp {
  width: 85%;
  position: absolute;
  bottom: 35px;
  right: 10px;
  z-index: 15;
}

.main {
  display: none;
}

.bg-kon2 {
  background-color: rgba(0, 47, 130, 0.9);
  padding-top: 10px;
  padding-bottom: 10px;
  width: 90%;
  position: absolute;
  bottom: 30px;
  right: 0;
  border-radius: 10px 0 0 10px;
  z-index: 88;
}

.flex-area {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.inner2 {
  width: 90%;
  margin: auto;
}

.area1 {
  width: 20%;
}

.area22 {
  width: 70%;
}

.size-s99 {
  font-size: 17px;
}

.reaf1 {
  width: 30px;
  position: absolute;
  top: 0;
  left: 10px;
}

.reaf2 {
  width: 30px;
  position: absolute;
  top: 0;
  right: 10px;
}

.bg-white {
  background-color: #fff;
}

.inner-news {
  width: 90%;
  margin: auto;
  padding-top: 20px;
  padding-bottom: 40px;
}

.news-area {
  width: 100%;
  margin: auto;
}

.news-area:nth-child(2) {
  display: none;
}

.news-area:nth-child(3) {
  display: none;
}

.logo-t1 {
  width: 150px;
  position: absolute;
  top: -50px;
  left: 50%;
  margin-left: -75px;
}

.h100 {
  height: 60px;
}

.title {
  font-size: 20px;
}

.title-s {
  font-size: 14px;
}

.title2 {
  font-size: 20px;
}

.btn-all a {
  font-size: 16px;
  padding-top: 15px;
  padding-bottom: 15px;
  display: block;
  color: #fff;
  transition: 0.5s;
  background-color: #002d6e;
  text-align: center;
  border: 1px solid #fff;
  font-family: tbudgothic-std, sans-serif;
  font-weight: 400;
  font-style: normal;
  border-radius: 25px;
}

.btn-all a:hover {
  background-color: #fff;
  color: #002d6e;
}

.btn-all2 a {
  font-size: 16px;
  padding-top: 15px;
  padding-bottom: 15px;
  display: block;
  color: #603d22;
  transition: 0.5s;
  background-color: #b9d988;
  text-align: center;
  border: 1px solid #b9d988;
  font-family: vdl-v7marugothic, sans-serif;
  font-weight: 700;
  font-style: normal;
  border-radius: 25px;
  position: relative;
}

.btn-all2 a:hover {
  background-color: #ffffff;
  color: #603d22;
}

.btn-all6p a {
  font-size: 16px;
  padding-top: 15px;
  padding-bottom: 15px;
  display: block;
  color: #603d22;
  transition: 0.5s;
  background-color: #b9d988;
  text-align: center;
  border: 1px solid #b9d988;
  font-family: vdl-v7marugothic, sans-serif;
  font-weight: 700;
  font-style: normal;
  border-radius: 25px;
  position: relative;
}

.btn-all6p a:hover {
  background-color: #ffffff;
  color: #603d22;
}

.btn-all3 a {
  font-size: 16px;
  padding-top: 15px;
  padding-bottom: 15px;
  display: block;
  color: #002d6e;
  transition: 0.5s;
  text-align: center;
  border: 1px solid #002d6e;
  font-family: tbudgothic-std, sans-serif;
  font-weight: 400;
  font-style: normal;
  border-radius: 25px;
}

.btn-all3 a:hover {
  background-color: #002d6e;
  color: #fff;
}

.btn-width {
  width: 70%;
  margin: auto;
}

.btn-width-left {
  width: 70%;
  margin: auto;
}

.btn-width121 {
  width: 95%;
  margin: auto;
}

.btn-width122 {
  width: 75%;
  margin: auto;
}

.btn-width123 {
  width: 75%;
  margin: auto;
}

.btn-width1210p {
  width: 95%;
  margin: auto;
}

.btn-width1210p2 {
  width: 95%;
  margin: auto;
}

.btn99 a {
  font-size: 16px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 40px;
  padding-right: 60px;
  display: inline-block;
  color: #002f82;
  transition: 0.5s;
  background-color: #f7f8f8;
  text-align: left;
  border: 1px solid #f7f8f8;
  position: relative;
  font-family: dnp-shuei-mgothic-std, sans-serif;
  font-weight: 600;
  font-style: normal;
  border-radius: 10px;
}

.btn3 a {
  font-size: 16px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 40px;
  padding-right: 60px;
  display: inline-block;
  color: #002f82;
  transition: 0.5s;
  background-color: #fff;
  text-align: left;
  border: 1px solid #fff;
  position: relative;
  font-family: dnp-shuei-mgothic-std, sans-serif;
  font-weight: 600;
  font-style: normal;
  border-radius: 10px;
}

.btn3 a:hover {
  background-color: #002f82;
  color: #fff;
}

.btn3-2 a {
  font-size: 16px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 40px;
  padding-right: 60px;
  display: inline-block;
  color: #002f82;
  transition: 0.5s;
  background-color: #fff;
  text-align: left;
  border: 1px solid #fff;
  position: relative;
  font-family: dnp-shuei-mgothic-std, sans-serif;
  font-weight: 600;
  font-style: normal;
  border-radius: 10px;
  border: 1px #002f82 solid;
}

.btn3-2 a:hover {
  background-color: #002f82;
  color: #fff;
}

a.none {
  padding: 0;
  border: none;
}

.btn4 a {
  font-size: 16px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 20px;
  display: block;
  color: #fff;
  transition: 0.5s;
  background-color: #002d6e;
  text-align: left;
  border: 1px solid #002d6e;
  position: relative;
  font-family: dnp-shuei-mgothic-std, sans-serif;
  font-weight: 600;
  font-style: normal;
  border-radius: 10px;
}

.btn4 a:hover {
  background-color: #fff;
  color: #002d6e;
}

.btn4-2 a {
  font-size: 16px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 40px;
  padding-right: 60px;
  display: inline-block;
  color: #002f82;
  transition: 0.5s;
  background-color: #fff;
  text-align: left;
  border: 1px solid #fff;
  position: relative;
  font-family: dnp-shuei-mgothic-std, sans-serif;
  font-weight: 600;
  font-style: normal;
  border-radius: 10px;
}

.btn4-2 a:hover {
  background-color: #002f82;
  color: #fff;
}

.btn5 a {
  font-size: 16px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 40px;
  padding-right: 60px;
  display: inline-block;
  color: #fff;
  transition: 0.5s;
  background-color: #002f82;
  text-align: left;
  border: 1px solid #002f82;
  position: relative;
  font-family: dnp-shuei-mgothic-std, sans-serif;
  font-weight: 600;
  font-style: normal;
  border-radius: 10px;
}

.btn5 a:hover {
  background-color: #fff;
  color: #002f82;
}

.btn-all8 a {
  font-size: 16px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 20px;
  display: block;
  color: #603d22;
  transition: 0.5s;
  background-color: #b9d988;
  text-align: center;
  border: 1px solid #b9d988;
  font-family: vdl-v7marugothic, sans-serif;
  font-weight: 700;
  font-style: normal;
  border-radius: 25px;
  position: relative;
}

.btn-all8 a:hover {
  background-color: #ffffff;
  color: #603d22;
}

.btn-all9 a {
  font-size: 16px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 20px;
  display: block;
  color: #603d22;
  transition: 0.5s;
  background-color: #f6abb4;
  text-align: center;
  border: 1px solid #f6abb4;
  font-family: vdl-v7marugothic, sans-serif;
  font-weight: 700;
  font-style: normal;
  border-radius: 25px;
  position: relative;
}

.btn-all9 a:hover {
  background-color: #ffffff;
  color: #603d22;
}

.btn-all8 a::before {
  position: absolute;
  top: 26%;
  left: 50%;
  margin-left: -73px;
  content: url("../img/tel-icon.svg");
  width: 30px;
}

.btn-all9 a::before {
  position: absolute;
  top: 27%;
  left: 50%;
  margin-left: -85px;
  content: url("../img/tel-icon2.svg");
  width: 13px;
}

.f-box1 {
  width: 80%;
  margin: auto;
}

.f-box2 {
  width: 80%;
  margin: auto;
  margin-top: 15px;
}

.btn-all10p a {
  font-size: 16px;
  padding-top: 15px;
  padding-bottom: 15px;
  display: block;
  color: #603d22;
  transition: 0.5s;
  background-color: #faf7e7;
  text-align: center;
  border: 1px solid #faf7e7;
  font-family: vdl-v7marugothic, sans-serif;
  font-weight: 700;
  font-style: normal;
  border-radius: 25px;
  position: relative;
}

.btn-all10p a:hover {
  border: 1px solid #603d22;
  background-color: #603d22;
  color: #fff;
}

.btn-all10p2 a {
  font-size: 16px;
  padding-top: 15px;
  padding-bottom: 15px;
  display: block;
  color: #603d22;
  transition: 0.5s;
  background-color: #faf7e7;
  text-align: center;
  border: 1px solid #faf7e7;
  font-family: vdl-v7marugothic, sans-serif;
  font-weight: 700;
  font-style: normal;
  border-radius: 25px;
  position: relative;
}

.btn-all10p2 a:hover {
  border: 1px solid #603d22;
  background-color: #603d22;
  color: #fff;
}

.btn-all11p a {
  font-size: 16px;
  padding-top: 15px;
  padding-bottom: 15px;
  display: block;
  color: #603d22;
  transition: 0.5s;
  background-color: #e5eef9;
  text-align: center;
  border: 1px solid #e5eef9;
  font-family: vdl-v7marugothic, sans-serif;
  font-weight: 700;
  font-style: normal;
  border-radius: 25px;
  position: relative;
}

.btn-all11p a:hover {
  border: 1px solid #e5eef9;
  background-color: #e5eef9;
}

.btn-all11p a::after,
.btn-all10p a::after,
.btn-all2 a::after,
.btn3 a::after,
.btn3-2 a::after,
.btn4 a::after,
.btn4-2 a::after,
.btn5 a::after {
  position: absolute;
  top: 28%;
  right: 1.8rem;
  content: "→";
  font-size: 16px;
}

.btn-all10p2 a::after,
.btn-all6p a::after {
  position: absolute;
  top: 33%;
  right: 1.8rem;
  content: "→";
  font-size: 16px;
}

.bot-top {
  text-align: center;
}

.w2 {
  background-color: #002f82;
}

.w2-blue {
  background-color: #002f82;
}

.w2-yellow {
  background-color: #aa941d;
}

.inner3 {
  width: 95%;
  margin: auto;
  padding-top: 20px;
  padding-bottom: 30px;
}

hr.sen {
  border-top: solid 3px #fff;
  width: 40px;
  margin: auto;
  margin-top: 5px;
}

hr.sen2 {
  border-top: solid 1px #603d22;
  margin: 0;
}

.bot-top2 {
  text-align: center;
}

.wake3 {
  background-color: #f7f8f8;
  margin-bottom: 60px;
}

.inner4 {
  width: 90%;
  margin: auto;
  padding-top: 20px;
  padding-bottom: 40px;
}

.btn99 {
  margin-top: 40px;
}

.btn3 {
  margin-top: 40px;
}

br.tab {
  display: none;
}

br.tab2 {
  display: none;
}

br.tab3 {
  display: none;
}

.inner1p {
  width: 97%;
  margin: auto;
  padding-top: 30px;
  padding-bottom: 50px;
}

hr.sen5 {
  border-top: solid 3px #002f82;
  width: 30px;
  margin: auto;
  margin-top: 10px;
}

p.title-sub {
  padding: 0.1rem 1rem;
  border-left: 4px solid #002f82;
}

p.bule-title {
  background-color: #002f82;
  text-align: center;
  font-size: 20px;
}

.b-b {
  border-bottom: 1px solid #002f82;
  display: inline-block;
}

.b-b2 {
  border-bottom: 1px solid #fff;
  display: inline-block;
}

.b-b3 {
  text-decoration: underline;
}

.t-b {
  text-decoration: underline;
}

.b-b99 {
  border-bottom: 1px solid #002f82;
  text-align: center;
}

.sp-waku {
  width: 90%;
  margin: auto;
}

p.t-j {
  text-align: justify;
}

.left {
  text-align: left;
}

/*  新着 
------------------------------*/

.list-table {
  font-size: 16px;
  border-collapse: collapse;
  width: 98%;
  margin: auto;
  font-family: dnp-shuei-mgothic-std, sans-serif;
  font-weight: 400;
  font-style: normal;
}

.list-table th {
  color: #333333;
  font-weight: 400;
  text-align: center;
  padding: 5px 0px;
  width: 100%;
  text-align: left;
  display: block;
}

.list-table td {
  padding: 0px 0px;
  padding-bottom: 20px;
  text-align: left;
  width: 100%;
  border-bottom: dotted 1px #333333;
  display: block;
}

.list-table td a {
  color: #333333;
}

.list-table2 {
  font-size: 16px;
  border-collapse: collapse;
  width: 98%;
  margin: auto;
  color: #333333;
}

.list-table2 td:first-child {
  padding: 10px;
  vertical-align: top;
  text-align: left;
  width: 20%;
  margin-left: 5%;
}

.list-table2 td:nth-child(2) {
  padding: 10px;
  vertical-align: top;
  text-align: left;
  width: 73%;
  margin-left: 5%;
}

.list-table2 td a {
  color: #333333;
}

.list-table2 td a:hover {
  color: #e8e6e6;
}

.n-textarea {
  height: 300px;
  -webkit-overflow-scrolling: touch;
  overflow-y: auto;
}

.pink-box {
  background-color: #f11b64;
}

p.small-top {
  display: none;
}

.letter {
  letter-spacing: 3px;
}

.inner-news {
  width: 90%;
  margin: auto;
  padding-top: 40px;
  padding-bottom: 20px;
}

.news-area {
  width: 100%;
  margin: auto;
  position: relative;
}

.news-area a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.news-area:hover {
  background-color: #fff;
  opacity: 0.7;
}

.news-area:nth-child(2) {
  display: none;
}

.news-area:nth-child(3) {
  display: none;
}

.t1023 {
  display: none;
}

.bg-kon99 {
  background-color: #eaf4db;
  padding-top: 10px;
  padding-bottom: 10px;
}

p.size-h {
  font-size: 16px;
  color: #fff;
}

p.size-b a {
  font-size: 14px;
  color: #471f00;
}

p.size-b9 {
  font-size: 14px;
  color: #471f00;
}

p.size-b a:hover {
  color: #c4bfbf;
}

.w7p1,
.w7p2 {
  border-radius: 13px;
  color: #fff;
  font-size: 20px;
  letter-spacing: 3px;
  padding-top: 8px;
  padding-bottom: 8px;
}

.w7p1 {
  background-color: #ff457a;
  margin-bottom: 20px;
}

.w7p2 {
  background-color: #9eda00;
}

.wari2 {
  width: 90%;
  margin: auto;
  text-align: center;
}

a.b-b3 {
  color: #3333ff;
  text-decoration: underline;
}

.size-l {
  font-size: 25px;
}

.size-l-title {
  font-size: 22px;
}

.size-l-sp {
  font-size: 22px;
}

.size-ll {
  font-size: 20px;
}

.size-l2 {
  font-size: 18px;
}

.size-l9 {
  font-size: 20px;
}

.size-l2p {
  font-size: 23px;
}

.size-l2p99 {
  font-size: 23px;
}

.size-3p {
  font-size: 17px;
}

.s-sp {
  font-size: 11.5px;
}

.p-t99 {
  padding-top: 30px;
}

.w95 {
  width: 95%;
  margin: auto;
}

h1 {
  color: #471f00;
  font-family: a-otf-ud-shin-maru-go-pr6n, sans-serif;
  font-weight: 300;
  font-style: normal;
  text-align: center;
  font-size: 9px;
  font-weight: 400;
}

h2 {
  color: #603d22;
  font-family: vdl-v7marugothic, sans-serif;
  font-weight: 800;
  font-style: normal;
  text-align: center;
  font-size: 25px;
  line-height: 1.5;
  margin: 0;
  padding-top: 80px;
  position: relative;
}

h2.pt-n {
  padding-top: 0;
}

h2.ti-b::after {
  content: url("../img/02-title.svg");
  width: 20px;
  position: absolute;
  padding-left: 25px;
}

h2.ti-b::before {
  content: url("../img/02-title.svg");
  width: 20px;
  position: absolute;
  margin-left: -40px;
}

h2.hana::after {
  content: url("../img/hana-r.svg");
  width: 30px;
  position: absolute;
  padding-left: 35px;
}

h2.hana::before {
  content: url("../img/hana-l.svg");
  width: 30px;
  position: absolute;
  margin-left: -65px;
}

h2.dot-title {
  color: #f49ba6;
  padding-top: 0;
  font-size: 23px;
}

h2.dot-title::after {
  content: url("../img/dot-right.svg");
  width: 25px;
  position: absolute;
  padding-left: 15px;
  top: -5px;
}

h2.dot-title::before {
  content: url("../img/dot-left.svg");
  width: 25px;
  position: absolute;
  margin-left: -45px;
  top: -5px;
}

h2.dot-title2 {
  padding-top: 0;
  font-size: 23px;
}

h2.dot-title2::after {
  content: url("../img/dot-right.svg");
  width: 25px;
  position: absolute;
  padding-left: 15px;
  top: -5px;
}

h2.dot-title2::before {
  content: url("../img/dot-left.svg");
  width: 25px;
  position: absolute;
  margin-left: -45px;
  top: -5px;
}

h2.color-pink2 {
  color: #f6abb4;
  text-align: center;
  padding-top: 0;
  margin-bottom: 10px;
}

.m-auto {
  text-align: center;
}

h2.kon {
  color: #002d6e;
}

.small-t {
  font-family: tbudgothic-std, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 13px;
}

.small-tb {
  font-size: 13px;
}

h3 {
  color: #fff;
  text-align: center;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 18px;
  background-color: #93cb78;
  border-radius: 15px;
  font-family: vdl-v7marugothic, sans-serif;
  font-weight: 800;
  font-style: normal;
}

h3.green-h3 {
  background-image: url("../img/02-box-bg.png");
  background-color: transparent;
  background-size: cover;
}

h3.bule-h3 {
  background-image: url("../img/08-title-bg.png");
  background-color: transparent;
  background-size: cover;
}

h3.pink-h3 {
  background-image: url("../img/08-pink-bg.png");
  background-color: transparent;
  background-size: cover;
}

.bun1 {
  width: 60%;
  margin: auto;
}

.ten1 {
  width: 10px;
}

.ten1-2 {
  width: 95%;
}

.bg-gray2 {
  background-color: #f7f8f8;
}

.bg-c {
  background-image: url("../img/top-bg.png");
  background-repeat: repeat-y;
  background-position: top center;
  background-size: cover;
}

.inner1p1 {
  width: 90%;
  margin: auto;
  padding-top: 25px;
  padding-bottom: 25px;
}

.inner1p99 {
  width: 83%;
  margin: auto;
  padding-top: 25px;
  padding-bottom: 25px;
}

.small-f {
  font-size: 15px;
}

/*  2p 
------------------------------*/

.tab-d {
  display: none;
}

.tab-s-d {
  display: none;
}

.space2 {
  margin-top: 50px;
}

.breadcrumb span {
  font-size: 12px;
}

.breadcrumb {
  padding-left: 0;
  margin-left: 0;
  text-align: left;
  margin-top: 10px;
}

.breadcrumb li {
  display: inline;
  /*横に並ぶように*/
  list-style: none;
  font-weight: bold;
}

.breadcrumb li:after {
  /* >を表示*/
  content: ">";
  padding: 0 3px;
  top: 0px;
  position: relative;
  color: #471f00;
  font-size: 12px;
  font-family: a-otf-ud-shin-maru-go-pr6n, sans-serif;
  font-weight: 300;
  font-style: normal;
}

.breadcrumb li:last-child:after {
  content: "";
}

.breadcrumb li a {
  text-decoration: none;
  color: #93cb78;
  font-family: a-otf-ud-shin-maru-go-pr6n, sans-serif;
  font-weight: 300;
  font-style: normal;
}

.breadcrumb li a:hover {
  text-decoration: underline;
}

.this-page {
  color: #471f00 !important;
  font-family: a-otf-ud-shin-maru-go-pr6n, sans-serif;
  font-weight: 300;
  font-style: normal;
}

.size-s-ear {
  font-size: 19px;
}

.box2p1 {
  width: 70%;
  margin: auto;
}

.box2p2 {
  margin-top: 30px;
}

.boder-kon {
  border: solid 1px #002d6e;
}

.boder-kon2 {
  border: solid 1px #002d6e;
  background-color: #fff;
}

.inner2p {
  width: 90%;
  margin: auto;
  padding-top: 40px;
  padding-bottom: 40px;
}

.inner2p9p {
  width: 90%;
  margin: auto;
  padding-top: 40px;
  padding-bottom: 40px;
}

.inner2p9p1 {
  width: 90%;
  margin: auto;
  padding-top: 40px;
  padding-bottom: 40px;
}

.inner2p99 {
  width: 90%;
  margin: auto;
  padding-top: 40px;
  padding-bottom: 40px;
}

.yoyaku1 {
  width: 80%;
  margin: auto;
  margin-bottom: 10px;
}

.yoyaku2 {
  width: 80%;
  margin: auto;
}

.white-box {
  background-color: #fff;
  text-align: center;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #002d6e;
  font-family: tbudgothic-std, sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1.5;
  font-size: 18px;
}

.flow1 {
  width: 70px;
}

.flow2 {
  width: 73%;
}

.btn-width2 {
  width: 65%;
}

.btn-width2p99 {
  width: 65%;
  margin: auto;
}

/*  スライダー
---------------------------------------*/

div.slider {
  width: 100%;
  display: block;
  margin: 0px auto;
  overflow: hidden;
  position: relative;
}

ul.bxslider01 li {
  /*メインスライダー*/
  display: block;
  width: 100%;
}

.wrap {
  width: 100%;
  display: block;
  margin: 0 auto;
}

ul.bxslider02 {
  width: 100%;
  margin: auto;
}

ul.bxslider02 li {
  width: 47.5%;
  margin-left: 5%;
  float: left;
  margin-bottom: 10px;
}

ul.bxslider02 li:first-child {
  margin-left: 0%;
}

ul.bxslider02 li:nth-child(3) {
  margin-left: 0%;
  clear: both;
}

ul.bxslider02 li:nth-child(5) {
  margin-left: 0%;
  clear: both;
}

ul.bxslider02 li:nth-child(7) {
  margin-left: 0%;
  clear: both;
}

ul.bxslider02 li:nth-child(10) {
  margin-left: 0%;
  clear: both;
}

ul.bxslider02 li a {
  /*サムネイル*/
  display: block;
  width: 100%;
}

ul.bxslider02 li a img {
  /*サムネイルの画像*/
  display: block;
  height: auto;
}

div.controlWrap {
  width: 380px;
  display: block;
  position: relative;
  margin: 0 auto;
  height: 70px;
}

div.controlWrap p#PrevIcon a {
  /*矢印画像（前へ）*/
  display: block;
  width: 30px;
  height: 30px;
  position: absolute;
  background: url(../img/left.png) left center no-repeat;
  color: #fff;
  top: 20px;
  left: 50%;
  margin-left: -40px;
  text-indent: -9999px;
}

div.controlWrap p#NextIcon a {
  /*矢印画像（次へ）*/
  display: block;
  width: 30px;
  height: 30px;
  position: absolute;
  background: url(../img/right.png) left center no-repeat;
  color: #fff;
  top: 20px;
  left: 50%;
  margin-left: 20px;
  text-indent: -9999px;
}

#bx-pager a img {
  opacity: 0.5;
  filter: alpha(opacity=50);
}

#bx-pager a.active img {
  opacity: 1;
  filter: alpha(opacity=100);
}

.irast2-1 {
  width: 230px;
  position: absolute;
  top: -130px;
  left: 50%;
  margin-left: -115px;
}

hr.sen6 {
  border-top: 1px solid #002f82;
}

.k2 {
  width: 90%;
  margin: auto;
}

.bg-white4 {
  background-color: #fff;
  background-image: url("../img/aero2-02.png");
  background-size: 300px;
  background-repeat: no-repeat;
  background-position: left bottom;
}

/*  3p 
------------------------------*/

.inner3p {
  width: 90%;
  margin: auto;
  padding-top: 30px;
  padding-bottom: 20px;
}

.ll1 {
  line-height: 1.4;
}

.l1 {
  line-height: 1.6;
}

.l1-99 {
  line-height: 1.5;
}

.yoyaku3 {
  width: 47.5%;
  margin: 0;
  margin-bottom: 0px;
}

.yoyaku4 {
  width: 47.5%;
  margin: 0;
}

.bg-kon-d {
  background-color: #002f82;
  border: solid 1px #002f82;
  color: #fff;
  font-size: 28px;
  text-align: center;
  font-family: dnp-shuei-mgothic-std, sans-serif;
  font-weight: 600;
  font-style: normal;
  border-radius: 7px;
  padding-top: 5px;
  padding-bottom: 15px;
  letter-spacing: 3px;
  line-height: 1.4;
  position: relative;
  transition: 0.5s;
}

.bg-kon-d:before {
  content: url("../img/icon.svg");
  width: 20px;
  position: absolute;
  bottom: 11px;
  left: 25px;
  transition: 0.5s;
}

.bg-kon-d:hover {
  background-color: #fff;
  color: #002f82;
}

.bg-kon-d:hover:before {
  content: url("../img/icon-hover.svg");
}

.small {
  font-size: 14px;
}

.small3 {
  font-size: 16px;
  letter-spacing: 2px;
}

.bg-white2 {
  background-color: #fff;
  width: 85%;
  margin: auto;
}

.inner5 {
  width: 90%;
  margin: auto;
  padding-top: 20px;
  padding-bottom: 20px;
}

.sikaku {
  width: 8%;
}

.kome {
  width: 88%;
}

.m30 {
  margin-top: 10px;
}

.flex-sp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.flex-sp2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.flex-sp3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.flex-sp4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.right {
  text-align: right;
}

.irast3-1 {
  width: 200px;
  position: absolute;
  top: -130px;
  left: 50%;
  margin-left: -100px;
}

.mt3 {
  margin-top: 40px;
}

.s1:nth-child(3) {
  margin-top: 10px;
}

.bg-yellow {
  background-color: #aa941d;
  color: #fff;
  padding: 5px;
}

.tab-only {
  display: none;
}

.hyou {
  display: none;
}

.hyou2 {
  display: none;
}

/*  4p 
------------------------------*/

.kon-box1 {
  background-color: #002d6e;
  color: #fff;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 16px;
}

.box4p1 {
  width: 80%;
  margin: auto;
}

.box4p2 {
  margin-top: 30px;
}

.inner4p {
  width: 90%;
  margin: auto;
  padding-top: 30px;
  padding-bottom: 20px;
}

.flex-sp2 {
  display: flex;
  justify-content: flex-start;
}

.flex-sp2 p {
  line-height: 2.1;
}

.nen {
  width: 30%;
}

.naiyou {
  width: 75%;
  text-align: left;
}

.pc-d {
  display: none;
}

.w4p1 {
  width: 70%;
  margin: auto;
}

.w4p2 {
  width: 95%;
  margin: auto;
  margin-top: 40px;
}

.w4p3 {
  margin-top: 40px;
  text-align: center;
}

.w4p4 {
  width: 95%;
  margin: auto;
  margin-top: 40px;
}

hr.sen3 {
  border-top: 4px dotted #333333;
  padding-left: 4%;
}

hr.sen4 {
  border-top: 1px solid #f49ba6;
  margin: 0;
}

.rya1:nth-child(2) {
  margin-top: 40px;
}

.name {
  width: 90%;
  margin: auto;
}

table.ten-da {
  width: 100%;
  font-size: 14px;
  font-family: tbudgothic-std, sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 2;
}

table.ten-da th {
  width: 2%;
  vertical-align: top;
  font-weight: 400;
}

table.ten-da td {
  width: 95%;
  padding-left: 1%;
}

/*  price 
---------------------*/

table.full-screen th {
  padding: 10px;
}

table.full-screen td {
  padding: 10px;
}

.div-title-pink {
  width: 95%;
  margin: 0 auto;
}

.title-pink {
  width: 100%;
  background-color: #56d2d8;
}

.in-p {
  padding-left: 10px;
  padding-top: 5px;
  font-size: 16px;
  letter-spacing: 5px;
  color: #fff;
}

.th-pink {
  width: 50%;
  background-color: #e0faf8;
  font-size: 12px;
  padding: 5px 9px;
}

.td-pink {
  width: 50%;
  background-color: #fff;
  font-size: 12px;
  padding: 5px 9px;
  text-align: right;
}

.border-ec {
  border: 1px solid #56d2d8;
}

.border-bl {
  border: 1px solid #00b3ec;
}

.border-bl2 {
  border: 1px solid #00b3ec;
}

.border-gl {
  border: 1px solid #56d2d8;
}

.border-gl2 {
  border: 2px solid #f49ba6;
  background-color: #fff;
}

.border-gl11 {
  border: 2px solid #7dabe1;
}

.bg-sky {
  background-color: #e6fbff;
}

.bg-sky2 {
  background-color: #e3ecf5;
}

.border-pi {
  border: 1px solid #002d6e;
}

.tax-list {
  width: 100%;
}

.tax-list img {
  width: 10%;
}

.tax-list {
  border: 2px solid #603d22;
  margin-top: 5px;
}

.tax-list th,
.tax-list td {
  border: 1px solid #603d22;
}

.middle {
  vertical-align: middle;
}

.bg-fa {
  background-color: #8adfe5;
}

.bg-fa2 {
  background-color: #f0fcfa;
}

.bg-fa3 {
  background-color: #d2a000;
}

.bg-fa5 {
  background-color: #e0faf8;
}

.bg-fa6 {
  background-color: #d8e6f6;
}

.bg-fc {
  background-color: #fce1e4;
}

.bg-fa9 {
  background-color: #8adfe5;
}

.bg-fa10 {
  background-color: #f49ba6;
  border: solid #f49ba6 2px;
}

.bg-fg3 {
  background-color: #7dabe1;
  border: solid #7dabe1 2px;
}

.color-gray33 {
  color: #333333;
}

.color-gold {
  color: #603d22;
}

.color-tya {
  color: #471f00;
}

.color-33 {
  color: #603d22;
}

.color-pi {
  color: #f49ba6;
}

.th-tax {
  font-size: 13px;
  padding: 10px 20px;
}

.th-tax-s {
  font-size: 10px;
}

.td-tax {
  font-size: 13px;
  padding: 10px 20px;
}

.td-tax-s {
  font-size: 12px;
  padding: 10px 20px;
}

.red {
  color: #ff3333;
}

.red-o {
  color: #ff4500;
}

.deduction-div {
  display: block;
  width: 60%;
  float: none;
  margin: 0 auto;
}

.deduction-div02 {
  display: block;
  width: 60%;
  float: none;
  margin: 0 auto;
}

.calc-title {
  font-size: 12px;
  line-height: 1.6;
}

.calc-title-l {
  font-size: 16px;
}

.calc-title-ll {
  font-size: 17px;
}

.bbold {
  font-weight: bold;
}

.deduction-dt {
  height: 4rem;
  padding: 1em;
}

.deduction-dt02 {
  height: 4rem;
  padding: 1.8em 1em;
}

.deduction-dt03 {
  height: 5rem;
  padding: 0.5em;
}

.calc-title-s {
  font-size: 10px;
  letter-spacing: -1px;
  padding: 1%;
}

.w20 {
  width: 50%;
}

.fl-left {
  float: left;
}

.calc-symbol-space {
  margin-top: 5%;
}

.calc-text {
  font-size: 12px;
  padding: 15px 0 0 0;
  line-height: 1.6;
}

.calc-symbol {
  width: 20%;
  padding: 5%;
  float: none;
  margin: 0 auto;
}

.calc-symbol img {
  display: block;
  margin: 0 auto;
  transform: rotate(90deg);
}

.formula01 {
  padding-top: 5%;
  padding-left: 2%;
}

.formula02 {
  padding-top: 5%;
  padding-left: 2%;
}

.space-05e {
  margin-right: 0.5em;
}

.br-tab::before {
  content: "\A";
  white-space: pre;
}

.pc-mode {
  display: none;
}

.circle01 {
  font-size: 20px;
  border-bottom: 2px dotted #51648c;
}

.circle02 {
  font-size: 14px;
}

.circle03 {
  font-size: 12px;
  margin-top: 5px;
}

.circle04 {
  font-size: 14px;
  line-height: 1;
}

.circle05 {
  font-size: 14px;
}

.circle-img img {
  width: 45px;
  position: absolute;
  top: 0;
  left: 0;
}

.ex-space {
  padding: 2px 5px;
  margin: 5px 0;
}

.ex-space02 {
  padding: 2px 5px;
  margin: 7px 0;
}

.ex-calc {
  float: left;
}

table.ten7 {
  width: 100%;
  font-size: 16px;
  line-height: 2;
}

table.ten7 th {
  width: 3%;
  vertical-align: top;
  border: none;
  padding: 0;
  font-weight: 400;
  background-color: #fff;
  text-align: left;
}

table.ten7 td {
  width: 95%;
  border: none;
  margin-left: 2%;
  padding: 0;
}

ul.bunkatu2-10 {
  width: 100%;
}

ul.bunkatu2-10 li {
  width: 95%;
  margin: auto;
  background-color: #fff;
  margin-bottom: 30px;
}

.box1,
.box2 {
  border: #f49ba6 solid 2px;
  height: 100px;
  display: table;
  width: 100%;
  border-radius: 10px;
}

.box3,
.box4 {
  border: #7dabe1 solid 2px;
  height: 8rem;
  display: table;
  width: 100%;
  border-radius: 10px;
}

.box3 {
  background-color: #7dabe1;
  text-align: center;
  color: #fff;
  font-family: vdl-v7marugothic, sans-serif;
  font-weight: 800;
  font-style: normal;
}

.box4 {
  background-color: #fff;
  text-align: center;
}

.box1 {
  background-color: #f49ba6;
  text-align: center;
  border: #f49ba6 solid 2px;
  font-family: vdl-v7marugothic, sans-serif;
  font-weight: 800;
  font-style: normal;
}

.box2 {
  border: #f49ba6 solid 2px;
  text-align: center;
  background-color: #fff;
}

.color-4p1 {
  color: #69b4ff;
}

.color-yellow {
  color: #49aaed;
}

.inner4p3 {
  display: table-cell;
  vertical-align: middle;
}

.cont1 {
  width: 22%;
  float: left;
}

.eqol {
  width: 4%;
  float: left;
  text-align: center;
}

.eqol-body {
  height: 100px;
  display: table;
  width: 100%;
}

.eqol-body2 {
  height: 8rem;
  display: table;
  width: 100%;
}

.minus {
  width: 4%;
  float: left;
  text-align: center;
}

.cont2 {
  width: 36%;
  float: left;
}

.cont2:first-child {
  width: 20%;
}

.eqol2 {
  width: 4%;
  float: left;
  text-align: center;
}

.puls {
  width: 4%;
  float: left;
  text-align: center;
}

.dis-table {
  display: table;
  width: 95%;
  margin: auto;
  padding-top: 0px;
}

.b4p {
  background-color: #f49ba6;
  border: #f49ba6 solid 1px;
  border-radius: 5px;
  /* CSS3草案 */
  -webkit-border-radius: 5px;
  /* Safari,Google Chrome用 */
  -moz-border-radius: 5px;
  color: #fff;
  font-weight: bold;
  font-size: 11px;
  padding: 5px;
  display: table-cell;
  margin: 0;
  font-family: vdl-v7marugothic, sans-serif;
  font-weight: 700;
  font-style: normal;
}

.size-t {
  font-size: 20px;
}

.box-naka2 p {
  font-size: 11px;
  display: inline;
  margin: 0;
}

.box-naka3 p {
  font-size: 11px;
  display: table-cell;
  margin: 0;
}

.box-naka5 p {
  font-size: 11px;
  display: inline;
  margin: 0;
}

.box-naka6 p {
  font-size: 11px;
  display: table-cell;
  margin: 0;
}

.box-naka1 {
  width: 62%;
  float: left;
  display: table-cell;
  vertical-align: middle;
  margin-top: 3px;
}

.box-naka2 {
  width: 5%;
  float: left;
  display: table-cell;
  vertical-align: middle;
  padding-top: 3px;
}

.box-naka3 {
  width: 31%;
  float: left;
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  padding-left: 5px;
}

.box-naka4 {
  width: 62%;
  float: left;
  display: table-cell;
  vertical-align: middle;
  margin-top: 3px;
}

.box-naka5 {
  width: 7%;
  float: left;
  display: table-cell;
  vertical-align: middle;
  padding-top: 3px;
}

.box-naka6 {
  width: 25%;
  float: left;
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  margin-left: 5%;
}

.pc-mode2 {
  display: none;
}

.pc-mode-99 {
  display: none;
}

.sp-mode4 {
  display: none;
}

.size-pay {
  font-size: 17px;
}

.m16 {
  margin-top: 15px;
}

/*  スライダー
----------------------------------*/

#slider {
  display: none;
}

#slides {
  display: block;
  margin: 0 auto;
}

#slides {
  position: relative;
  list-style: none;
  overflow: hidden;
  width: 100%;
  padding: 0;
  margin: 0;
}

#slides li {
  -webkit-backface-visibility: hidden;
  position: absolute;
  display: none;
  width: 100%;
  left: 0;
  top: 0;
}

#slides li:first-child {
  position: relative;
  display: block;
  float: left;
}

#slides img {
  display: block;
  height: auto;
  float: left;
  width: 100%;
  border: 0;
}

/*  ホーバー時半透明
----------------------------------*/

.alpha a:hover img {
  opacity: 0.7;
  filter: alpha(opacity=70);
  -ms-filter: "alpha(opacity=70)";
}

.alpha9 a:hover img {
  opacity: 0.7;
  filter: alpha(opacity=70);
  -ms-filter: "alpha(opacity=70)";
}

.alpha9 a:hover p {
  opacity: 0.7;
  filter: alpha(opacity=70);
  -ms-filter: "alpha(opacity=70)";
}

/* 　画像切り替えclass
----------------------------------*/

.switch {
  visibility: hidden;
}

/*  上下のスペース
----------------------------------*/

.space {
  padding-top: 30px;
  padding-bottom: 30px;
}

.space-top {
  padding-top: 30px;
  padding-bottom: 30px;
}

.block {
  padding-top: 30px;
  padding-bottom: 30px;
  text-align: center;
}

/*  dl 　(pcの場合横並び　画像右)
----------------------------------*/
dl.yoko2p dd {
  padding-top: 20px;
}

/*  dl 　(pcの場合横並び　画像左)
----------------------------------*/
dl.yoko3 {
  padding-top: 10px;
}

dl.yoko3 dt {
  padding-top: 5px;
}

dl.yoko3 dd {
  text-align: center;
  padding-top: 20px;
}

/*  ul 　(pcの場合横並び　４つ分け)
----------------------------------*/

ul.bunkatu4 {
  width: 100%;
}

ul.bunkatu4 li {
  width: 75%;
  margin: 0 auto;
  padding-top: 30px;
}

/*  ul 　(pcの場合横並び　2つ分け)
----------------------------------*/

ul.bunkatu2 {
  width: 100%;
}

ul.bunkatu2 li {
  width: 95%;
  margin: 0 auto;
  padding-top: 30px;
  display: block;
}

/*  table（求人募集）
----------------------------------*/

.kyujin {
  width: 100%;
  border-collapse: collapse;
  font-size: 11px;
  margin: 0 auto;
  color: #471f00;
  line-height: 1.8;
}

.kyujin p {
  font-size: 11px;
}

.kyujin th {
  width: 18%;
  border-bottom: 1px #603d22 dashed;
  padding: 20px 0px;
  font-family: vdl-v7marugothic, sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #603d22;
  vertical-align: middle;
  text-align: left;
}

.kyujin td {
  width: 80%;
  border-bottom: 1px #603d22 dashed;
  padding: 20px 15px;
  text-align: justify;
  border-top: 1px #603d22 dashed;
  font-family: a-otf-ud-shin-maru-go-pr6n, sans-serif;
  font-weight: 300;
  font-style: normal;
}

/* .kyujin tr:first-child th {
  border-bottom: 0;
}

.kyujin tr:last-child td {
  border-bottom: 0;
} */

.kyujin tr:first-child th {
  border-top: 1px #603d22 dashed;
}

.kyujin tr:first-child td {
  border-top: 1px #603d22 dashed;
}

.kyujin a {
  color: #323232;
}

.kyujin a:hover {
  color: #b3b1b1;
}

/*  table（分割２）
----------------------------------*/
table.ka th {
  display: block;
  width: 100%;
}

table.ka td {
  padding-top: 20px;
  display: block;
  width: 100%;
}

/*  footer 
---------------------------------------*/

.h150 {
  height: 100px;
}

.h170 {
  height: 130px;
}

ul.site {
  text-align: center;
  margin: auto;
  color: #fff;
  width: 90%;
  margin: auto;
  margin-top: 20px;
  margin-bottom: 30px;
}

ul.site li {
  width: 33%;
  float: left;
  box-sizing: border-box;
  border-left: solid 1px #fff;
  margin-bottom: 20px;
}

ul.site li:nth-child(4) {
  clear: both;
}

ul.site li:nth-child(6) {
  border-right: solid 1px #fff;
}

ul.site li:nth-child(8) {
  border-right: solid 1px #fff;
}

ul.site li:nth-child(3) {
  border-right: solid 1px #fff;
}

ul.site li a {
  color: #fff;
  font-size: 11px;
}

ul.site2 {
  text-align: center;
  margin: auto;
  color: #fff;
  width: 90%;
  margin: auto;
  margin-top: 20px;
  margin-bottom: 30px;
}

ul.site2 li {
  width: 33%;
  float: left;
  box-sizing: border-box;
  border-left: solid 1px #002f82;
  margin-bottom: 20px;
}

ul.site2 li:nth-child(4) {
  clear: both;
}

ul.site2 li:nth-child(6) {
  border-right: solid 1px #002f82;
}

ul.site2 li:nth-child(8) {
  border-right: solid 1px #002f82;
}

ul.site2 li:nth-child(3) {
  border-right: solid 1px #002f82;
}

ul.site2 li a {
  color: #002f82;
  font-size: 11px;
}

.bg-footer {
  background-color: #fff;
}

.f-left {
  padding-top: 10px;
}

.f-right {
  padding-top: 20px;
}

.f-tel {
  width: 90%;
  margin: auto;
  margin-bottom: 10px;
}

.tel-f {
  display: none;
}

.tel-f2 {
  display: none;
}

.kamoku-box {
  width: 47.5%;
  margin-right: 5%;
  margin-bottom: 10px;
}

.kamoku-box:nth-child(even) {
  margin-right: 0%;
}

ul.bunkatu2-2 li {
  width: 80%;
  margin: auto;
  margin-bottom: 20px;
}

ul.bunkatu2-3 li {
  width: 85%;
  margin: auto;
  margin-bottom: 20px;
}

table.kamoku2 {
  width: 100%;
  font-size: 12.5px;
  line-height: 2.5;
  color: #603d22;
  font-family: a-otf-ud-shin-maru-go-pr6n, sans-serif;
  font-weight: 300;
  font-style: normal;
}

table.kamoku2 th {
  width: 17%;
  text-align: left;
  vertical-align: top;
  font-weight: 300;
  color: #603d22;
  font-family: vdl-v7marugothic, sans-serif;
  font-weight: 700;
  font-style: normal;
}

.kkk p.copy {
  color: #603d22;
  font-size: 9px;
}

.kamoku99 {
  font-size: 12.5px;
  margin-top: 5px;
  font-family: a-otf-ud-shin-maru-go-pr6n, sans-serif;
  font-weight: 300;
  font-style: normal;
  color: #603d22;
}

a.tel-font {
  font-family: a-otf-ud-shin-go-pr6n, sans-serif;
  font-weight: 300;
  font-style: normal;
  color: #002d6e;
}

.tab-site {
  display: none;
}

.kkk p {
  font-size: 12px;
}

ul.sit li {
  margin-bottom: 5px;
}

ul.sit li a {
  color: #fff;
  font-size: 13px;
}

.wake1 {
  width: 57%;
}

.wake2 {
  width: 34%;
}

.f-logo {
  width: 80%;
  margin: auto;
  margin-bottom: 20px;
}

.sp1 {
  width: 55%;
}

.sp1 a {
  color: #603d22;
}

.sp1 a:hover {
  color: #bcb9b9;
}

.sp1:nth-child(2) {
  width: 44%;
}

p.size-s {
  font-size: 13px;
  color: #603d22;
}

.size-ss {
  font-size: 12px;
}

.tab-kara {
  display: none;
}

.g-goshic-b {
  font-family: vdl-v7marugothic, sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #603d22;
}

/*  pagetop設定
----------------------------------*/

.pagetop {
  display: none;
  position: fixed;
  bottom: 10px;
  right: 10px;
  width: 110px;
  z-index: 999;
}

.pagetop a {
  display: block;
  text-decoration: none;
}

.pagetop a:hover {
  display: block;
  text-decoration: none;
}

/*  footer内の二つ分け要素
----------------------------------*/

.f-r {
  padding-top: 5px;
}

.f-r2 {
  padding-top: 5px;
}

.kazari1 {
  width: 100px;
  position: absolute;
  right: 0;
  top: -60px;
}

.kazari2 {
  width: 100px;
  position: absolute;
  bottom: -50px;
  left: 0;
}

.kazari4 {
  width: 150px;
  position: absolute;
  left: -50px;
  top: 20px;
}

.kazari5 {
  width: 100px;
  position: absolute;
  bottom: -20px;
  right: 0;
}

.kazari6 {
  width: 150px;
  position: absolute;
  left: -50px;
  top: 1300px;
}

.kazari7 {
  width: 100px;
  position: absolute;
  top: 500px;
  left: 0;
}

.kazari8 {
  width: 130px;
  position: absolute;
  bottom: -20px;
  right: 0;
}

.size-ss {
  font-size: 13px;
}

/*  googlemap枠
----------------------------------*/

.ggmap {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}

.ggmap iframe,
.ggmap object,
.ggmap embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ggmap2 {
  position: relative;
  padding-bottom: 90.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}

.ggmap2 iframe,
.ggmap2 object,
.ggmap2 embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ggmap99 {
  position: relative;
  padding-bottom: 125%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}

.ggmap99 iframe,
.ggmap99 object,
.ggmap99 embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.zeroMargin_mobile {
  margin-left: 0;
}

.hide_mobile {
  display: none;
}

.pc-nomi {
  display: none;
}

.indent {
  text-indent: -1.2em;
  padding-left: 1.2em;
}

.white-box191 {
  background-image: url("../img/top-bg.png");
  background-size: cover;
  border-radius: 5px;
}

.inner191 {
  width: 90%;
  margin: auto;
  padding-top: 20px;
  padding-bottom: 30px;
}

.inner1910p {
  width: 90%;
  margin: auto;
  padding-top: 20px;
  padding-bottom: 60px;
}

.inner1910p2 {
  width: 90%;
  margin: auto;
  padding-top: 10px;
  padding-bottom: 30px;
}

.inner191b {
  width: 90%;
  margin: auto;
  padding-top: 20px;
  padding-bottom: 30px;
}

.b-b1 {
  display: inline-block;
  border-bottom: #fff solid 1px;
}

.b-b99 {
  display: inline-block;
  border-bottom: #fff solid 1px;
}

.bbb2 {
  display: inline-block;
  border-bottom: #fff solid 1px;
}

.white-box2 {
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 5px;
}

.inner11 {
  width: 90%;
  margin: auto;
  padding-top: 30px;
  padding-bottom: 40px;
}

.inner118 {
  width: 90%;
  margin: auto;
  padding-top: 30px;
  padding-bottom: 40px;
}

.inner119 {
  width: 90%;
  margin: auto;
  padding-top: 30px;
  padding-bottom: 20px;
}

.inner12p {
  width: 90%;
  margin: auto;
  padding-top: 30px;
  padding-bottom: 40px;
}

.inner12p2 {
  width: 90%;
  margin: auto;
  padding-top: 30px;
  padding-bottom: 40px;
}

.white-box2 p {
  color: #471f00;
}

.color-bule {
  color: #603d22;
}

.num {
  position: absolute;
  left: 50%;
  top: -5px;
  width: 50px;
  margin-left: -25px;
  z-index: 9;
}

.b-boder {
  background-color: #f6abb4;
  text-align: center;
  padding-top: 10px;
  padding-bottom: 10px;
  border-radius: 10px;
  font-size: 16px;
  font-family: vdl-v7marugothic, sans-serif;
  font-weight: 700;
  font-style: normal;
  width: 90%;
  margin: auto;
}

.b-boder2 {
  background-color: #b9d988;
  text-align: center;
  padding-top: 10px;
  padding-bottom: 10px;
  border-radius: 10px;
  font-size: 16px;
  font-family: vdl-v7marugothic, sans-serif;
  font-weight: 700;
  font-style: normal;
  width: 90%;
  margin: auto;
}

.box1ppp:nth-child(2) {
  margin-top: 20px;
}

.pc-main {
  display: none;
}

br.spd {
  display: none;
}

.p-hero__ttl {
  font-family: kinuta-maruminyoshino-stdn, serif;
  font-weight: 400;
  font-style: normal;
  color: #231815;
  background-color: #fff;
  margin: 0;
  padding: 0;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
  display: inline-block;
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path: inset(0 100% 0 0);
  line-height: 1.2 !important;
  -webkit-transition: 0.8s ease-in;
  transition: 0.8s ease-in;
  font-size: 17px;
}

.p-hero__ttl2 {
  font-family: kinuta-maruminyoshino-stdn, serif;
  font-weight: 400;
  font-style: normal;
  color: #231815;
  background-color: #fff;
  margin: 0;
  padding: 0;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
  display: inline-block;
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path: inset(0 100% 0 0);
  line-height: 1.2 !important;
  -webkit-transition: 0.8s ease-in;
  transition: 0.8s ease-in;
  font-size: 17px;
}

.p-hero__ttl3 {
  font-family: kinuta-maruminyoshino-stdn, serif;
  font-weight: 400;
  font-style: normal;
  color: #231815;
  background-color: #fff;
  margin: 0;
  padding: 0;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
  display: inline-block;
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path: inset(0 100% 0 0);
  line-height: 1.2 !important;
  -webkit-transition: 0.8s ease-in;
  transition: 0.8s ease-in;
  font-size: 17px;
}

.p-hero__ttlSlideIn {
  -webkit-clip-path: inset(0);
  clip-path: inset(0);
}

.m111 {
  position: relative;
  top: 30px;
  z-index: 88;
}

.m112 {
  position: relative;
  top: 40px;
  z-index: 88;
}

.slideIn {
  -webkit-animation-name: slideIn;
  animation-name: slideIn;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.slideIn2 {
  -webkit-animation-name: slideIn;
  animation-name: slideIn;
  -webkit-animation-duration: 1.3s;
  animation-duration: 1.3s;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes slideIn {
  0% {
    -webkit-clip-path: inset(0 100% 0 0);
    clip-path: inset(0 100% 0 0);
  }

  100% {
    -webkit-clip-path: inset(0);
    clip-path: inset(0);
  }
}

.bg-green {
  background-image: url("../img/top-bg2.png");
  background-repeat: repeat-y;
  background-size: cover;
}

.bg-green10p {
  background-color: #93cb78;
  padding-bottom: 5px;
  border-radius: 20px;
}

.inner-new {
  width: 90%;
  margin: auto;
  padding-top: 15px;
  padding-bottom: 15px;
}

.rya121 {
  background-color: #fff;
  width: 95%;
  margin: auto;
  border-radius: 0px 0px 20px 20px;
  /* 左上、右上、右下、左下 */
}

.rya121 p {
  font-size: 14px;
}

.rya110 p {
  font-size: 18px;
  text-align: center;
  padding-top: 15px;
  padding-bottom: 15px;
  line-height: 1.6;
}

/* contact */
.contact-table {
  width: 100%;
  margin: 0 auto;
}

.contact-item {
  width: 35%;
  font-size: 12px;
}

.contact-note {
  font-size: 10px;
}

.contact-textbox {
  width: 65%;
}

p.contact-text {
  line-height: 2;
}

.text99 {
  font-size: 15px;
}

input,
textarea {
  font-family: source-han-sans-japanese, sans-serif;
  font-weight: 300;
  font-style: normal;
}

ul.b3 {
  margin-top: 10px;
  margin-bottom: 10px;
}

ul.b3 li {
  font-family: source-han-sans-japanese, sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 13px;
  margin-bottom: 5px;
}

.w909 {
  width: 90%;
  margin: auto;
}

.input-text {
  width: 55%;
  margin: 20px 15px;
  padding: 10px;
  border: 1px solid #cccccc;
}

.input-text1 {
  width: 75%;
  margin: 20px 15px;
  padding: 10px;
  border: 1px solid #cccccc;
}

.input-text2 {
  width: 75%;
  margin: 20px 15px;
  padding: 10px;
  border: 1px solid #cccccc;
}

.input-button {
  font-size: 14px;
  width: 120px;
  background-color: #fff;
  border: 1px solid #cccccc;
  border-radius: 4px;
  -webkit-border-radius: 6px;
  -ms-border-radius: 6px;
  -moz-border-radius: 6px;
  -o-border-radius: 6px;
  font-family: source-han-sans-japanese, sans-serif;
  font-weight: 300;
  font-style: normal;
}

ul.bu2 {
  width: 250px;
  margin: auto;
  margin-top: 10px;
  margin-bottom: 10px;
}

ul.bu2 li {
  float: left;
}

ul.bu2 li:nth-child(2) {
  margin-left: 10px;
}

.contact-caution {
  width: 80%;
  margin: 30px auto 0 auto;
  font-size: 12px;
  line-height: 2;
}

table.contact-table {
  border: solid 1px #595757;
  margin-top: 20px;
}

table.contact-table th {
  border: solid 1px #595757;
  text-align: center;
  color: #0e68b2;
  font-size: 14px;
}

.color-red {
  color: #d94742;
  font-size: 13px;
}

.color-r {
  color: #d94742;
}

.m4 {
  margin-bottom: 10px;
  font-size: 13px;
}

.font {
  font-size: 13px;
}

table.contact-table td {
  border: solid 1px #595757;
  text-align: left;
}

#formWrap {
  width: 100%;
  margin: 0 auto;
  line-height: 120%;
  font-size: 90%;
  ont-family: a-otf-ud-shin-maru-go-pr6n, sans-serif;
  font-weight: 300;
  font-style: normal;
}

table.form1 {
  width: 100%;
  margin: 0 auto;
  border-collapse: collapse;
  background-image: url("../img/top-bg.png");
  border: solid 1px #af9e90;
}

table.form1 td,
table.form1 th {
  border: solid 1px #af9e90;
  padding: 10px;
  font-size: 14px;
}

table.form1 th {
  width: 45%;
  font-weight: normal;
  text-align: left;
  border: solid 1px #af9e90;
  font-family: vdl-v7marugothic, sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #603d22;
}

table.form1 td {
  background-color: #fff;
}

#formWrap input {
  background-color: #fff;
  border: 1px solid #cccccc;
  border-radius: 4px;
  -webkit-border-radius: 6px;
  -ms-border-radius: 6px;
  -moz-border-radius: 6px;
  -o-border-radius: 6px;
}

.th-gray {
  background-color: #f5f2e9;
}

.td-gray {
  background-color: #fff;
}

.scroll {
  height: 200px;
  overflow-y: scroll;
  border: solid 1px #d9d9d9;
}

.inner1119 {
  width: 90%;
  margin: auto;
  padding-top: 20px;
  padding-bottom: 20px;
}

.h355 {
  height: 50px;
}

.top11 {
  margin-top: 40px;
}

.logo-space {
  height: 30px;
}

.logo-s {
  width: 120px;
  position: absolute;
  top: -30px;
  left: 50%;
  margin-left: -60px;
}

.logo-s3p {
  width: 120px;
  position: absolute;
  top: -30px;
  left: 50%;
  margin-left: -60px;
}

.logo-s6p {
  width: 120px;
  position: absolute;
  top: 0px;
  left: 50%;
  margin-left: -60px;
}

.open999 {
  width: 230px;
  position: absolute;
  left: 50%;
  margin-left: -115px;
  bottom: 3%;
}

.open999_sp {
  width: 70%;
  margin: auto;

}

.updown {
  animation: updown 1s infinite ease-in-out alternate;
}

.koment {
  width: 200px;
  position: absolute;
  left: 17%;
  top: 60%;
}

.koment_sp {
  width: 75%;
  margin: 1rem auto;

}

.bg-pink2_sp {
  padding: 7px;
  padding-left: 15px;
  padding-right: 15px;
  line-height: 1.3;
  font-size: 18px;
  letter-spacing: 2px;
}

.komen2 {
  position: absolute;
  display: inline-block;
  left: 17%;
  top: 49%;
  width: 100%;
}

.komen2_sp {
  width: 100%;
  position: absolute;
  bottom: 1.5rem;
  text-align: center;
}

.name2 {
  width: 90%;
  margin: auto;
  position: absolute;
  right: 0;
}

.box-ko2 {
  margin-top: 30px;
}

.img201 img {
  height: 200px !important;
  width: 100% !important;
  object-fit: cover;
}

.ori {
  line-height: 1.4;
}

.h-top {
  height: 70px;
}

.h-top2 {
  height: 40px;
}

.bun6 li {
  width: 31%;
  float: left;
  margin-left: 3.5%;
  margin-bottom: 20px;
}

.bun6 li:first-child {
  margin-left: 0%;
}

.bun6 li:nth-child(4) {
  margin-left: 0%;
  clear: both;
}

.bun6 li:nth-child(7) {
  margin-left: 0%;
  clear: both;
}

.bun6 li:nth-child(10) {
  margin-left: 0%;
  clear: both;
}

.doted {
  width: 80px;
  margin: auto;
}

.top-box1 {
  width: 60%;
  margin: auto;
}

.top-box1_gaikan {
  overflow: hidden;
  border-radius: 1rem;
  width: 80%;
  margin: auto;
  box-shadow: 6px 6px 0px 0px #ebd099;
  border-radius: 10px;
}

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

.top-box21:nth-child(2) {
  margin-top: 30px;
}

.top-box212 {
  text-align: center;
}

.top-box212 {
  margin-top: 30px;
}

.top-box29 {
  border: solid 2px #aac8eb;
  border-radius: 10px;
  background-color: #fff;
}

.top-box29:nth-child(2) {
  margin-top: 30px;
}

.top-box292 {
  border-radius: 10px;
  background-color: #fff;
}

.top-box292:nth-child(2) {
  margin-top: 30px;
}

.sp-center {
  text-align: center;
}

.f-kaza {
  position: absolute;
  width: 70px;
  bottom: 180px;
  right: 0;
}

.bg-tya {
  background-image: url("../img/02-title-bg.png");
  text-align: center;
  color: #fff;
  font-family: vdl-v7marugothic, sans-serif;
  font-weight: 800;
  font-style: normal;
  padding-top: 5px;
  padding-bottom: 5px;
  font-size: 15px;
}

.bg-aqa {
  background-image: url("../img/08-title-bg.png");
  text-align: center;
  color: #fff;
  font-family: vdl-v7marugothic, sans-serif;
  font-weight: 800;
  font-style: normal;
  padding-top: 5px;
  padding-bottom: 5px;
  font-size: 15px;
}

.n02 {
  width: 45px;
  position: absolute;
  top: -10px;
  left: 5px;
}

.bg-crem {
  background-color: #faf7e7;
  padding-top: 20px;
}

.bg-aqa-b {
  background-color: #e5eef9;
  padding-top: 20px;
}

.w2p2 {
  margin-top: 20px;
}

.bg-green-box {
  background-image: url("../img/02-box-bg.png");
  background-size: cover;
  border-radius: 15px;
}

.bg-pink-box {
  background-image: url("../img/08-pink-bg.png");
  background-size: cover;
  border-radius: 15px;
}

.tel-02 {
  width: 85%;
  margin: auto;
}

.sp-dake12 {
  padding-left: 80px;
}

.kaza2p {
  width: 130px;
  margin: auto;
}

p.ken {
  background-color: #fff;
  border: solid 1px #603d22;
  text-align: center;
  font-family: vdl-v7marugothic, sans-serif;
  font-weight: 700;
  font-style: normal;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 18px;
}

.small-ken {
  font-family: a-otf-ud-shin-maru-go-pr6n, sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 14px;
}

.top3p {
  position: relative;
  top: -70px;
}

.htt3p {
  height: 80px;
}

.top3p2 {
  position: relative;
  top: -60px;
}

.box3p21 {
  width: 40%;
}

.box3p22 {
  width: 60%;
}

.box3p213 {
  width: 60%;
}

.box3p223 {
  width: 40%;
}

.w87 {
  display: none;
}

.w878 {
  display: none;
}

.w879 {
  display: none;
}

.mt2 {
  margin-top: 40px;
}

ul.ten-d li {
  width: 92%;
  margin-left: 15px;
  float: left;
}

ul.ten-d li:first-child {
  margin-left: 0;
  width: 10px;
}

.box-green5p {
  background-color: #eaf4db;
  border-radius: 10px;
}

.box-bule5p {
  background-color: #e5eef9;
  border-radius: 10px;
}

.box-pink5p {
  background-color: #fdeef0;
  border-radius: 10px;
}

.t-j {
  text-align: justify;
}

.r-b {
  position: absolute;
  bottom: 15px;
  right: 0;
}

.htt6p {
  height: 70px;
}

.ssa {
  font-size: 9px;
  text-align: center;
}

a.pink-m {
  color: #f49ba6;
  text-decoration: underline;
  font-family: vdl-v7marugothic, sans-serif;
  font-weight: 700;
  font-style: normal;
}

a.pink-m:hover {
  color: #a8a4a4;
}

.size-s-top {
  font-size: 16px;
}

br.pc-dake {
  display: none;
}

br.tab-y {
  display: none;
}

.top-k1,
.top-k2,
.top-k3 {
  display: none;
}

.top-k4,
.top-k5,
.top-k6,
.top-k7,
.top-k8 {
  display: none;
}

.k2-01,
.k2-02,
.k2-03,
.k2-04,
.k2-05,
.k2-06 {
  display: none;
}

.bun6 li a:hover img {
  transform: scale(1.2, 1.2);
  transition: 0.2s;
}

.sample01 {
  width: 100%;
  padding-top: 40px;
  position: absolute;
  overflow: hidden;
}

.sample01::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  top: 0;
  left: 50%;
  border-top: 40px solid #faf7e7;
  border-left: 50vw solid transparent;
  border-right: 50vw solid transparent;
  transform: translateX(-50%);
}

.h2p {
  height: 20px;
}

.k3-01,
.k3-02,
.k3-03,
.k3-04,
.k3-05,
.k3-06 {
  display: none;
}

.k3-07,
.k3-08,
.k3-09,
.k3-10,
.k3-11 {
  display: none;
}

.k4-01,
.k4-02,
.k4-03 {
  display: none;
}

.k5-01,
.k5-02,
.k5-03,
.k5-04,
.k5-05 {
  display: none;
}

.k6-01,
.k6-02,
.k6-03 {
  display: none;
}

.k7-01,
.k7-02 {
  display: none;
}

.k9-01,
.k9-02 {
  display: none;
}

.k11-01,
.k11-02,
.k11-03,
.k11-04,
.k11-05 {
  display: none;
}

.k11-06,
.k11-07,
.k11-08,
.k11-09 {
  display: none;
}

.k12-01,
.k12-02,
.k12-03,
.k12-04,
.k12-09,
.k12-10,
.k12-11,
.k12-12,
.k12-13,
.k12-14 {
  display: none;
}

.k14-01,
.k14-02,
.k14-03,
.k14-04,
.k14-05 {
  display: none;
}

.mtop5p {
  margin-top: -60px;
}

@keyframes hei {
  0% {
    width: 0;
  }

  100% {
    width: 100%;
  }
}

.v-line {
  background-color: #f49ba6;
  height: 1px;
  position: absolute;
  left: 0%;
}

.bar-bottom {
  -webkit-animation: hei 1s;
  animation: hei 1s;
  animation-fill-mode: forwards;
}

.bt-top {
  position: relative;
}

.bt-top .chiled {
  position: absolute;
  top: 130px;
  right: 0px;
  background-color: #fff;
  border: solid 1px #f6abb4;
  border-radius: 50%;
  padding: 10px;
  width: 50px;
  height: 50px;
  z-index: 9;
  transition: 1s;
}

.bt-top .chiled .chiled2 {
  content: url("../img/more.svg");
  position: relative;
  left: 2.5px;
  top: 2.5px;
  width: 45px;
  height: 45px;
}

.bt-top:hover .chiled {
  border: solid 1px #f6abb4;
  background-color: #f6abb4;
}

.bt-top:hover .chiled .chiled2 {
  content: url("../img/more-w.svg");
}

.btn-all92 a {
  font-size: 13px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 20px;
  display: block;
  color: #603d22;
  transition: 0.5s;
  background-color: #f6abb4;
  text-align: center;
  border: 1px solid #f6abb4;
  font-family: vdl-v7marugothic, sans-serif;
  font-weight: 700;
  font-style: normal;
  border-radius: 25px;
  position: relative;
}

.btn-all92 a:hover {
  background-color: #ffffff;
  color: #603d22;
}

.btn-all92 a::before {
  position: absolute;
  top: 25%;
  left: 50%;
  margin-left: -100px;
  content: url("../img/tel-icon2.svg");
  width: 13px;
}

.btn-s {
  margin-top: 10px;
  width: 104%;
}

.news {
  background: #b9d988;
}

.news2 {
  background: #dd3333;
}

.osakacastle {
  background: #eeee22;
}

.teeth {
  background: #81d742;
}

.foodrepo {
  background: #dd9933;
}

p.size-s8 {
  font-size: 14px;
  margin: 0;
}

.cat-pos {
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 10px;
  padding-right: 10px;
  position: absolute;
  top: 0;
  right: 0;
  display: inline-block;
}

/* 20230123 */
/*   footer
--------------------------------------- */
.color__footer__pdf,
a.color__footer__pdf:visited {
  color: #603d22;
}

a.color__footer__pdf:hover {
  color: #d54a8f;
}

.footer__pdf {
  border: 2px solid #f6abb4;
  background-color: #faf7e7;
  border-radius: 5rem;
  padding: 0.58rem 0.4rem;
  margin: 0.95rem auto 0 auto;
  font-family: vdl-v7marugothic, sans-serif;
  font-weight: 700;
  font-style: normal;
  box-sizing: border-box;
  width: 80%;
  gap: 0.5em;
  font-size: 0.8em;
}

.footer__pdf__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer__pdf>span {
  display: block;
}

.footer__pdf__arrow {
  color: #f6abb4;
}

.footer__pdf>span>a {
  display: inline-block;
  padding: 0.15em 0;
}

.footer__pdf__border {
  border-right: 2px solid #f6abb4;
  padding-right: 1em !important;
  margin-right: 1em;
}

.footer__pdf__note {
  margin: 0 auto 1.2rem auto;
  text-align: center;
  font-size: 0.7rem;
}

/* 20230425 */
.c-br--sp {
  display: block;
}

:root {
  --c-white: #ffffff;
  --c-green: #b9d988;
  --c-pink: #f6abb4;
  --c-brown: #603d22;
}

/*  doctor
--------------------------------------- */
.doctor-director__introduction {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.doctor-director__introduction__list {
  box-sizing: border-box;
  width: 100%;
  background-color: var(--c-white);
  margin: 0 0 2rem 0;
}

.doctor-director__introduction__list--01,
.doctor-director__introduction__list--03 {
  border: 4px solid var(--c-green);
}

.doctor-director__introduction__list--01>.doctor-director__introduction__title,
.doctor-director__introduction__list--03>.doctor-director__introduction__title {
  background-color: var(--c-green);
}

.doctor-director__introduction__list--02,
.doctor-director__introduction__list--04 {
  border: 4px solid var(--c-pink);
}

.doctor-director__introduction__list--02>.doctor-director__introduction__title,
.doctor-director__introduction__list--04>.doctor-director__introduction__title {
  background-color: var(--c-pink);
}

.doctor-director__introduction__title {
  /* VDL Ｖ７丸ゴシック EB */
  font-family: vdl-v7marugothic, sans-serif;
  font-weight: 800;
  font-style: normal;
  color: var(--c-brown);
  line-height: 1;
  font-size: 1.125rem;
  padding: 0.75rem 1.2rem;
}

.doctor-director__introduction__text {
  background-color: var(--c-white);
}

.doctor-director__introduction__text ul {
  list-style: none;
  /*A-OTF UD新丸ゴ Pr6N L*/
  font-family: a-otf-ud-shin-maru-go-pr6n, sans-serif;
  font-weight: 300;
  font-style: normal;
  color: var(--c-brown);
  letter-spacing: 0.05em;
  line-height: 1.6;
  font-size: 0.75rem;
  padding: 1rem 1.2rem;
}

.doctor-director__introduction__text--indent {
  text-indent: -1em;
  padding-left: 1em;
  position: relative;
}

.doctor-director__introduction__note {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
}

.googlepolicy {
  padding: 1rem 0;
  line-height: 1.9;
  font-size: 15px;
}

.googlepolicy li {
  color: #2a1f1f;
  margin-left: 1.5em;
  text-indent: -1.5em;
}

.googlepolicy li a {
  text-decoration: underline;
}

.spbr {
  display: inline;
}

@media only screen and (min-width: 321px) {
  .kyujin {
    font-size: 12px;
  }

  .kyujin p {
    font-size: 12px;
  }

  br.ssp {
    display: none;
  }
}

@media only screen and (min-width: 376px) {
  .kyujin {
    font-size: 13px;
  }

  .kyujin p {
    font-size: 13px;
  }

  .open999 {
    width: 220px;
    margin-left: -110px;
    bottom: 10%;
  }

  .koment {
    width: 200px;
    left: 7.5px;
    top: 55%;
  }

  .komen2 {
    left: 10px;
    top: 43%;
  }

  .h355 {
    height: 100px;
  }

  .top11 {
    margin-top: 40px;
  }

  .size-l-title {
    font-size: 24px;
  }

  .sp-home {
    width: 245px;
  }

  .open2 {
    width: 120px;
    bottom: 10px;
    right: 10px;
  }

  .pagetop {
    display: none;
    position: fixed;
    width: 120px;
  }

  .p-hero__ttl {
    font-size: 18px;
  }

  .b-b99 {
    display: none;
  }

  .opensp {
    width: 85%;
    bottom: 15px;
    right: 10px;
  }

  .top-mai {
    margin-top: -130px;
  }

  .htt2 {
    height: 150px;
  }

  br.spd {
    display: none;
  }

  /*  1p 
------------------------------*/

  .inner1p {
    width: 90%;
    margin: auto;
    padding-top: 30px;
    padding-bottom: 50px;
  }

  table.kamoku2 {
    width: 100%;
    font-size: 12.5px;
    line-height: 2.5;
  }

  table.kamoku2 th {
    width: 17%;
    text-align: left;
    vertical-align: top;
  }

  .s-sp {
    font-size: 13px;
  }

  .rya110 p {
    font-size: 19px;
  }

  .rya121 p {
    font-size: 15px;
  }

  .sp-on99 {
    height: 380px;
  }
}

@media only screen and (min-width: 427px) {
  .koment {
    width: 210px;
    left: 5px;
    top: 47%;
  }

  .komen2 {
    left: 10px;
    top: 35%;
  }

  .bg-pink2 {
    padding: 7px;
    padding-left: 15px;
    padding-right: 15px;
    line-height: 1.3;
    font-size: 14px;
    letter-spacing: 2px;
  }

  .small-pink {
    font-size: 11px;
  }
}

/* Tablet Layout: 481px to 768px. Inherits styles from: Mobile Layout. */

@media only screen and (min-width: 481px) {
  .size-l9 {
    font-size: 22px;
    line-height: 1.8;
  }

  .ggmap2 {
    padding-bottom: 56.25%;
  }

  .ggmap99 {
    /*padding-bottom: 85.25%;*/
    padding-bottom: 74%;
  }

  .bt-top .chiled {
    top: 150px;
  }

  .bt-top .chiled .chiled2 {
    content: url("../img/more.svg");
    position: relative;
    left: 2.5px;
    top: 2.5px;
    width: 45px;
    height: 45px;
  }

  .btn-all92 a {
    font-size: 14px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 20px;
  }

  .btn-all92 a::before {
    position: absolute;
    top: 25%;
    left: 50%;
    margin-left: -115px;
    content: url("../img/tel-icon2.svg");
    width: 13px;
  }

  .btn-s {
    margin-top: 10px;
    width: 55%;
  }

  .mtop5p {
    position: absolute;
    top: -100px;
    left: 50%;
    margin-left: -45%;
    width: 90%;
  }

  .h5p {
    height: 500px;
  }

  .h5p2 {
    height: 150px;
  }

  br.tab-y {
    display: block;
  }

  .htt6p {
    height: 100px;
  }

  .btn-all6p a::after {
    top: 29%;
  }

  .btn-all10p2 a::after {
    top: 28%;
  }

  .bg-green10p {
    padding-bottom: 15px;
  }

  .m5p {
    margin-top: 30px;
  }

  ul.bxslider02 li {
    width: 15%;
    margin-left: 2%;
    float: left;
    margin-bottom: 10px;
  }

  ul.bxslider02 li:first-child {
    margin-left: 0%;
  }

  ul.bxslider02 li:nth-child(3) {
    margin-left: 2%;
    clear: none;
  }

  ul.bxslider02 li:nth-child(4) {
    margin-left: 2%;
    clear: none;
  }

  ul.bxslider02 li:nth-child(5) {
    margin-left: 2%;
    clear: none;
  }

  ul.bxslider02 li.gh1 a {
    position: relative;
  }

  ul.bxslider02 li.gh1 a:hover {
    transform: scale(1.3);
    height: 120px;
    transition: all 0.5s 0s ease;
    /*transitionの記述を追加*/
  }

  ul.bxslider02 li.gh1 a:hover:after {
    position: absolute;
    width: 88%;
    top: 70px;
    left: 12%;
    content: url("../img/g-hover1.svg");
  }

  ul.bxslider02 li.gh2 a {
    position: relative;
  }

  ul.bxslider02 li.gh2 a:hover {
    transform: scale(1.3);
    height: 120px;
    transition: all 0.5s 0s ease;
    /*transitionの記述を追加*/
  }

  ul.bxslider02 li.gh2 a:hover:after {
    position: absolute;
    width: 88%;
    top: 70px;
    left: 6%;
    content: url("../img/g-hover2.svg");
  }

  ul.bxslider02 li.gh3 a {
    position: relative;
  }

  ul.bxslider02 li.gh3 a:hover {
    transform: scale(1.3);
    height: 120px;
    transition: all 0.5s 0s ease;
    /*transitionの記述を追加*/
  }

  ul.bxslider02 li.gh3 a:hover:after {
    position: absolute;
    width: 88%;
    top: 70px;
    left: 6%;
    content: url("../img/g-hover3.svg");
  }

  ul.bxslider02 li.gh4 a {
    position: relative;
  }

  ul.bxslider02 li.gh4 a:hover {
    transform: scale(1.3);
    height: 120px;
    transition: all 0.5s 0s ease;
    /*transitionの記述を追加*/
  }

  ul.bxslider02 li.gh4 a:hover:after {
    position: absolute;
    width: 88%;
    top: 70px;
    left: 6%;
    content: url("../img/g-hover4.svg");
  }

  ul.bxslider02 li.gh5 a {
    position: relative;
  }

  ul.bxslider02 li.gh5 a:hover {
    transform: scale(1.3);
    height: 120px;
    transition: all 0.5s 0s ease;
    /*transitionの記述を追加*/
  }

  ul.bxslider02 li.gh5 a:hover:after {
    position: absolute;
    width: 88%;
    top: 70px;
    left: 6%;
    content: url("../img/g-hover5.svg");
  }

  ul.bxslider02 li.gh6 a {
    position: relative;
  }

  ul.bxslider02 li.gh6 a:hover {
    transform: scale(1.3);
    height: 120px;
    transition: all 0.5s 0s ease;
    /*transitionの記述を追加*/
  }

  ul.bxslider02 li.gh6 a:hover:after {
    position: absolute;
    width: 88%;
    top: 70px;
    left: 6%;
    content: url("../img/g-hover6.svg");
  }

  dl.yoko2p dt {
    width: 50%;
    margin: auto;
  }

  dl.yoko2p dd {
    width: 80%;
    margin: auto;
    padding-top: 20px;
  }

  .w3p199 {
    width: 60%;
    margin: auto;
  }

  .w3p199 img {
    width: 100%;
  }

  .w3p299 {
    width: 70%;
    margin: auto;
  }

  .w3p1 {
    width: 60%;
    margin: auto;
  }

  .w3p1 img {
    width: 100%;
  }

  .w3p2 {
    width: 70%;
    margin: auto;
  }

  .htt2p {
    height: 50px;
  }

  p.ken {
    font-size: 20px;
  }

  .small-ken {
    font-size: 15px;
  }

  .sp-dake12 {
    display: none;
  }

  .tel-02 {
    width: 40%;
  }

  .bg-tya {
    padding-top: 5px;
    padding-bottom: 5px;
    font-size: 21px;
  }

  .bg-aqa {
    padding-top: 5px;
    padding-bottom: 5px;
    font-size: 21px;
  }

  .n02 {
    width: 75px;
    position: absolute;
    top: -15px;
    left: 20px;
  }

  .w2p1 {
    width: 60%;
    margin: auto;
  }

  .w2p2 {
    width: 80%;
    margin: auto;
    margin-top: 20px;
  }

  .w9p1 {
    width: 60%;
    margin: auto;
  }

  .w9p2 {
    width: 80%;
    margin: auto;
    margin-top: 20px;
  }

  .btn-width121 {
    width: 70%;
    margin: auto;
  }

  .btn-width122 {
    width: 70%;
    margin: auto;
  }

  .btn-width123 {
    width: 70%;
    margin: auto;
  }

  .btn-width124 {
    width: 70%;
    margin: auto;
  }

  .btn-width1210p {
    width: 70%;
    margin: auto;
  }

  .btn-width1210p2 {
    width: 55%;
    margin: 0;
    margin-right: auto;
  }

  .f-kaza {
    position: absolute;
    width: 90px;
    bottom: 160px;
    right: 20px;
  }

  .top-box1 {
    width: 40%;
    margin: auto;
  }

  .top-box1_gaikan {
    overflow: hidden;
    border-radius: 1rem;
    width: 60%;
    margin: 2rem auto 0;
  }

  .top-box2 {
    width: 80%;
    margin: auto;
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .top-box21 {
    width: 49%;
  }

  .top-box21:nth-child(2) {
    margin-top: 0px;
  }

  .top-box29 {
    width: 48%;
  }

  .top-box29:nth-child(2) {
    margin-top: 0px;
  }

  .top-box292 {
    width: 48%;
  }

  .top-box292:nth-child(2) {
    margin-top: 0px;
  }

  .top-box212 {
    width: 49%;
  }

  .top-box212 {
    margin-top: 0px;
  }

  .pc-m502 {
    margin-top: 50px;
  }

  .btn-all8 a {
    font-size: 16px;
    padding-left: 50px;
  }

  .btn-all9 a {
    font-size: 16px;
    padding-left: 25px;
  }

  .btn-all8 a::before {
    top: 26%;
    margin-left: -53px;
    width: 30px;
  }

  .btn-all9 a::before {
    top: 28%;
    margin-left: -80px;
    width: 13px;
  }

  .f-box1 {
    width: 45%;
    margin: 0;
  }

  .f-box2 {
    width: 50%;
    margin: 0;
  }

  /*  footer 
---------------------------------------*/

  .tab-kara {
    display: block;
  }

  .sp-dake {
    display: none;
  }

  span.sp-of {
    display: inline-block;
  }

  ul.bun2 li {
    width: 30%;
    float: left;
    margin-left: 5%;
  }

  ul.bun2 li:first-child {
    margin-left: 0%;
    clear: both;
  }

  ul.bun2 li:nth-child(3) {
    margin-left: 0%;
    clear: both;
  }

  ul.bun2 li:nth-child(5) {
    margin-left: 0%;
    clear: both;
  }

  ul.bun2 li:nth-child(7) {
    margin-left: 0%;
    clear: both;
  }

  ul.bun2 li:nth-child(9) {
    margin-left: 0%;
    clear: both;
  }

  ul.bun2 li:nth-child(11) {
    margin-left: 0%;
    clear: both;
  }

  .f-logo {
    width: 80%;
    margin: auto;
  }

  .f-left {
    width: 85%;
    margin: auto;
    margin-top: 10px;
  }

  .f-right {
    width: 85%;
    margin: auto;
    margin-top: 30px;
  }

  .insta-b {
    width: 50%;
    margin: auto;
    margin-top: 10px;
  }

  .ten {
    width: 1%;
  }

  .ten-r {
    width: 96%;
  }

  .flex-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .flex-footer p {
    color: #603d22;
  }

  .flex-footer a {
    color: #603d22;
  }

  .flex-footer a:hover {
    color: #bcb9b9;
  }

  .inner-footer {
    width: 85%;
    margin: auto;
  }

  .inner-footer2 {
    width: 97%;
    margin: auto;
  }

  .footer1 {
    border-left: dashed 1px #603d22;
    width: 27%;
    box-sizing: border-box;
  }

  .footer2 {
    border-left: dashed 1px #603d22;
    width: 27%;
    box-sizing: border-box;
  }

  .footer3 {
    border-left: dashed 1px #603d22;
    border-right: dashed 1px #603d22;
    width: 46%;
    box-sizing: border-box;
  }

  .footer4 {
    margin-top: 30px;
    border-left: dashed 1px #603d22;
    border-right: dashed 1px #603d22;
    width: 100%;
    box-sizing: border-box;
  }

  .doted {
    width: 100px;
    margin: auto;
  }

  .bun6 li {
    width: 15%;
    float: left;
    margin-left: 2%;
    margin-bottom: 20px;
  }

  .bun6 li:first-child {
    margin-left: 0%;
  }

  .bun6 li:nth-child(4) {
    margin-left: 2%;
    clear: none;
  }

  .bun6 li:nth-child(7) {
    margin-left: 8.5%;
    clear: both;
  }

  .bun6 li:nth-child(10) {
    margin-left: 2%;
    clear: none;
  }

  .h-top {
    height: 100px;
  }

  .h-top2 {
    height: 70px;
  }

  .p-hero__ttl {
    font-size: 24px;
  }

  .p-hero__ttl2,
  .p-hero__ttl3 {
    font-size: 24px;
  }

  br.spd {
    display: block;
  }

  .b-b99 {
    display: inline-block;
    border-bottom: #fff solid 1px;
  }

  .pc-main {
    display: block;
    background-image: url("../img/index-mv01.png"),
      url("../img/index-mv02.png"),
      url("../img/index-mv03.png"),
      url("../img/index-mv04.png");
    height: 450px;
    width: 90%;
    margin: auto;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 80% top;
    border-radius: 20px 20px 20px 20px;
    position: relative;
    animation: img_anime 16s ease infinite;
  }

  @keyframes img_anime {
    0% {
      background-image: url(../img/index-mv01.png);
    }

    20% {
      background-image: url(../img/index-mv01.png);
    }

    30% {
      background-image: url(../img/index-mv02.png);
    }

    45% {
      background-image: url(../img/index-mv02.png);
    }

    55% {
      background-image: url(../img/index-mv03.png);
    }

    70% {
      background-image: url(../img/index-mv03.png);
    }

    80% {
      background-image: url(../img/index-mv04.png);
    }

    95% {
      background-image: url(../img/index-mv04.png);
    }

    100% {
      background-image: url(../img/index-mv01.png);
      /* 背景画像1を指定 */
    }
  }

  .nakami {
    height: 450px;
  }

  .open2 {
    bottom: 10px;
    right: 10px;
    width: 150px;
  }

  .pagetop {
    display: none;
    position: fixed;
    width: 150px;
  }

  .ko {
    position: relative;
    top: 20px;
  }

  .pc-dddd {
    height: 400px;
    position: relative;
    z-index: 88;
  }

  .b-boder {
    font-size: 19px;
    width: 100%;
  }

  .b-boder2 {
    font-size: 19px;
    width: 100%;
  }

  .w111 {
    width: 80%;
    margin: auto;
  }

  .box1ppp {
    width: 47.5%;
  }

  .box1ppp:nth-child(2) {
    margin-top: 0px;
  }

  .bbb2 {
    border-bottom: none;
  }

  .pc-center {
    text-align: center;
  }

  .gridContainer {
    width: 90%;
    padding-left: 1.1625%;
    padding-right: 1.1625%;
    clear: none;
    float: none;
    margin-left: auto;
  }

  .gridContainer1400 {
    width: 90%;
    padding-left: 1.1625%;
    padding-right: 1.1625%;
    clear: none;
    float: none;
    margin-left: auto;
  }

  .gridContainer1400-g {
    width: 90%;
    padding-left: 1.1625%;
    padding-right: 1.1625%;
    clear: none;
    float: none;
    margin-left: auto;
    background-color: #002d6e;
  }

  .n-textarea {
    -webkit-overflow-scrolling: none;
  }

  /*  font 
---------------------------------------*/

  p {
    font-size: 14px;
  }

  ul {
    font-size: 14px;
  }

  .sp-waku {
    width: 100%;
    margin: auto;
  }

  p.t-j {
    text-align: center;
  }

  .sp-main {
    display: none;
  }

  .spoff {
    display: block;
  }

  .w-photo3 {
    animation-name: animein;
    animation-timing-function: linear;
    animation-duration: 1s;
    animation-delay: 0.7s;
    animation-fill-mode: forwards;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 8;
    background-image: url("../img/main1.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    width: 96%;
    height: 550px;
  }

  .back-color3 {
    width: 96%;
    background-color: #002d6e;
    animation-name: PageAnime99;
    animation-timing-function: linear;
    animation-duration: 1s;
    animation-delay: 0s;
    animation-fill-mode: forwards;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9;
    height: 550px;
  }

  .hei805 {
    height: 550px;
  }

  .h35 {
    height: 15vh;
  }

  .hei809 {
    height: 33vh;
  }

  .h39 {
    height: 24vh;
  }

  .main {
    display: block;
    background-image: url("../img/main1.png");
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    width: 96%;
    height: 550px;
  }

  .h-main {
    height: 550px;
  }

  .open {
    position: absolute;
    width: 400px;
    right: 20px;
    bottom: 30px;
  }

  table.form1 td,
  table.form1 th {
    padding: 20px;
    font-size: 15px;
  }

  /*  hedaer
---------------------------------------*/

  /*  header内の二つ分け要素
----------------------------------*/

  .h-l {
    width: 45%;
    float: left;
  }

  .h-r {
    width: 55%;
    float: right;
    text-align: left;
  }

  /*  bg
---------------------------------------*/

  /* 　メイン画像の設定（大)
----------------------------------*/

  #bg1 {
    height: 300px;
  }

  /* 　メイン画像の設定（小)
----------------------------------*/

  #bg2 {
    height: 300px;
  }

  /*  nav 
---------------------------------------*/

  .slicknav_menu {
    display: none;
  }

  .nav {
    background-color: #8ec323;
  }

  /*  メニュー設定（tab・pc）
----------------------------------*/

  /*  メニューの横線
----------------------------------*/

  li.solid {
    border-left: #fff solid 1px;
    border-right: #fff solid 1px;
  }

  li.solid-r {
    border-right: #fff solid 1px;
  }

  /*  main
---------------------------------------*/

  .bg-kon-sp {
    background-color: #fff;
  }

  /*  content
---------------------------------------*/

  .pc-center {
    text-align: center;
  }

  br.sp-none {
    display: block;
  }

  .sp-none {
    display: inline-block;
  }

  br.sp {
    display: none;
  }

  ba.pc-da {
    display: none;
  }

  .sp-on {
    display: none;
  }

  .sp-on99 {
    display: none;
  }

  .pc-on {
    display: block;
  }

  .sp-home {
    position: fixed;
    top: 12px;
    left: 20px;
    width: 300px;
    display: block;
  }

  .pc-o {
    display: none;
  }

  /*  1p 
------------------------------*/

  table.contact-table {
    width: 90%;
    margin: auto;
  }

  table.contact-table {
    margin-top: 20px;
  }

  .contact-item {
    width: 25%;
  }

  ul.b3 {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  ul.b3 li {
    width: 47.5%;
    float: left;
    font-size: 15px;
    margin-bottom: 5px;
    margin-left: 5%;
  }

  ul.b3 li:nth-child(odd) {
    margin-bottom: 5px;
    margin-left: 0%;
  }

  ul.b3 li:nth-child(3) {
    margin-bottom: 0px;
    margin-left: 0%;
  }

  .w909 {
    width: 95%;
    margin: auto;
  }

  .input-text {
    width: 35%;
  }

  .input-text1 {
    width: 65%;
  }

  .input-text2 {
    width: 85%;
  }

  .input-button {
    font-size: 15px;
    width: 135px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  ul.bu2 {
    width: 280px;
    margin: auto;
    margin-top: 0px;
    margin-bottom: 30px;
  }

  table.contact-table th {
    font-size: 16px;
  }

  .color-red {
    font-size: 15px;
  }

  .m4 {
    margin-bottom: 20px;
    font-size: 15px;
  }

  .font {
    font-size: 15px;
  }

  .inner1p1 {
    width: 90%;
    margin: auto;
    padding-top: 35px;
    padding-bottom: 35px;
  }

  .inner1p99 {
    width: 83%;
    margin: auto;
    padding-top: 35px;
    padding-bottom: 35px;
  }

  .flex-area99 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .t1 {
    width: 45%;
    margin: 0;
    margin-bottom: 10px;
  }

  .n1 {
    width: 80px;
    position: absolute;
    left: 50%;
    margin-left: -40px;
    top: -40px;
  }

  .inner {
    width: 85%;
    margin: auto;
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .inner99 {
    width: 85%;
    margin: auto;
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .news-area {
    width: 45%;
    margin: auto;
  }

  .wari2 {
    width: 45%;
    margin: 0;
  }

  .box7p {
    width: 80%;
    margin: auto;
  }

  .flex-tab-s-on {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .flex-tab-s-on2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .flex-tab-s-on3 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .flex-tab-s-on9999 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .bosyu {
    width: 50%;
    margin-top: 20px;
  }

  .title-t {
    margin-top: 0px;
    border-bottom: solid #002d6e 1px;
    position: absolute;
    right: 30px;
    top: -5px;
  }

  .kannsen {
    width: 350px;
    bottom: -30px;
    left: 0;
    position: absolute;
  }

  .bg-gray2 {
    position: absolute;
    right: -70px;
    bottom: 45px;
    width: 55%;
  }

  .small-f {
    font-size: 15px;
  }

  .logo-s {
    width: 130px;
    top: -30px;
    margin-left: -65px;
  }

  .logo-s3p {
    width: 130px;
    top: -30px;
    margin-left: -65px;
  }

  .logo-s6p {
    width: 130px;
    top: 0px;
    margin-left: -65px;
  }

  h2 {
    font-size: 26px;
  }

  h2.ti-b::after {
    width: 25px;
    padding-left: 35px;
  }

  h2.ti-b::before {
    width: 25px;
    margin-left: -50px;
  }

  h2.dot-title {
    padding-top: 0;
    font-size: 25px;
  }

  h2.dot-title::after {
    width: 25px;
    padding-left: 15px;
    top: -5px;
  }

  h2.dot-title::before {
    width: 25px;
    margin-left: -45px;
    top: -5px;
  }

  h2.dot-title2 {
    padding-top: 0;
    font-size: 25px;
  }

  h2.dot-title2::after {
    width: 25px;
    padding-left: 15px;
    top: -5px;
  }

  h2.dot-title2::before {
    width: 25px;
    margin-left: -45px;
    top: -5px;
  }

  h2.color-pink2 {
    text-align: left;
  }

  .small-t {
    font-size: 15px;
  }

  h3 {
    font-size: 20px;
  }

  .bun1 {
    width: 30%;
  }

  .tab-s-d {
    display: block;
  }

  .btn-width {
    width: 35%;
  }

  .btn-width-left {
    width: 35%;
  }

  /*  2p 
------------------------------*/

  .box2p1 {
    width: 65%;
    margin: auto;
  }

  .box2p2 {
    width: 80%;
    margin: auto;
    margin-top: 50px;
  }

  .yoyaku1 {
    width: 47.5%;
    margin: 0;
    margin-bottom: 0px;
  }

  .yoyaku2 {
    width: 47.5%;
    margin: 0;
  }

  .inner2p {
    width: 80%;
    margin: auto;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .inner2p9p {
    width: 90%;
    margin: auto;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .inner2p9p1 {
    width: 90%;
    margin: auto;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .inner2p99 {
    width: 80%;
    margin: auto;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .ten2 {
    width: 20px;
  }

  .ten2-2 {
    width: 97%;
    padding-left: 1%;
  }

  .flow1 {
    width: 70px;
  }

  .flow2 {
    width: 83%;
  }

  .btn-width2 {
    width: 40%;
  }

  .btn-width2p99 {
    width: 40%;
    margin: 0;
  }

  /*  3p 
------------------------------*/

  .width70 {
    width: 55%;
    margin: auto;
    margin-top: 10px;
  }

  .yoyaku3 {
    width: 45%;
  }

  .yoyaku4 {
    width: 45%;
  }

  .inner3p {
    width: 85%;
    padding-top: 50px;
    padding-bottom: 30px;
  }

  table.hyou {
    display: table;
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
  }

  table.hyou th {
    width: 18%;
    padding: 10px;
    text-align: center;
    vertical-align: middle;
    border: solid 1px #002f82;
  }

  table.hyou td {
    width: 11%;
    padding: 15px 5px;
    text-align: center;
    vertical-align: middle;
    border: solid 1px #002f82;
  }

  table.hyou td.dot-b {
    border-bottom: dotted 1px #002f82;
  }

  table.hyou td.dot-t {
    border-top: none;
  }

  table.hyou2 {
    display: table;
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
  }

  table.hyou2 th {
    width: 35%;
    padding: 10px;
    text-align: center;
    vertical-align: middle;
    border: solid 1px #002f82;
  }

  table.hyou2 td {
    width: 9.2%;
    padding: 15px 5px;
    text-align: center;
    vertical-align: middle;
    border: solid 1px #002f82;
  }

  .bg-kon4 {
    background-color: #002f82;
    color: #fff;
  }

  .bg-mens {
    background-color: #f8ffff;
  }

  .bg-redy {
    background-color: #ffeef8;
  }

  /*  4p 
------------------------------*/

  .box4p1 {
    width: 50%;
    margin: auto;
  }

  .box4p2 {
    margin-top: 40px;
  }

  .inner4p {
    width: 85%;
    padding-top: 50px;
    padding-bottom: 30px;
  }

  .kon-box1 {
    font-size: 17px;
  }

  /*  price
---------------------------*/

  .in-p {
    padding-left: 10px;
    padding-top: 5px;
    font-size: 18px;
  }

  .th-pink {
    font-size: 15px;
    text-align: left;
  }

  .td-pink {
    font-size: 14px;
  }

  .th-tax {
    font-size: 15px;
  }

  .th-tax-s {
    font-size: 11px;
  }

  .td-tax {
    font-size: 15px;
  }

  .td-tax-s {
    font-size: 13px;
  }

  .calc-title {
    font-size: 14px;
  }

  .calc-title-l {
    font-size: 20px;
  }

  .calc-title-ll {
    font-size: 21px;
  }

  .calc-title-s {
    font-size: 11px;
  }

  .deduction-dt02 {
    height: 4.5rem;
    padding: 1.8em 1em;
  }

  .deduction-dt03 {
    height: 5.5rem;
    padding: 0.5em;
  }

  .deduction-dt {
    height: 4.5rem;
    padding: 1em;
  }

  .calc-text {
    font-size: 13px;
  }

  .formula01 {
    padding-top: 2%;
    padding-left: 8%;
  }

  .formula02 {
    padding-top: 2%;
    padding-left: 8%;
  }

  .ex-space02 {
    padding: 2px 5px;
    margin: 10px 0;
  }

  /*  content内の二つ分け要素
----------------------------------*/

  .c-l {
    width: 45%;
    float: left;
    margin: 0 auto;
  }

  .c-r {
    width: 45%;
    float: right;
    margin: 0 auto;
    padding-top: 0;
  }

  /*  上下のスペース
----------------------------------*/

  .space {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .space-top {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .block {
    padding-top: 30px;
    padding-bottom: 30px;
    text-align: center;
  }

  /*  dl 　(pcの場合横並び　画像右)
----------------------------------*/

  dl.yoko2 {
    width: 100%;
    padding-top: 10px;
  }

  dl.yoko2 dt {
    width: 65%;
    float: left;
    padding-top: 0;
  }

  dl.yoko2 dd {
    width: 30%;
    float: right;
    padding-top: 0;
  }

  /*  dl 　(pcの場合横並び　画像左)
----------------------------------*/

  dl.yoko3 {
    width: 100%;
    padding-top: 10px;
  }

  dl.yoko3 dt {
    width: 65%;
    float: right;
    padding-top: 0;
  }

  dl.yoko3 dd {
    width: 30%;
    float: left;
    padding-top: 0;
  }

  /*  ul 　(pcの場合横並び　４つ分け)
----------------------------------*/

  ul.bunkatu4 {
    width: 100%;
    padding-top: 30px;
  }

  ul.bunkatu4 li {
    width: 21%;
    margin-left: 3%;
    padding-top: 0px;
    float: left;
  }

  /*  ul 　(pcの場合横並び　2つ分け)
----------------------------------*/

  ul.bunkatu2 {
    width: 100%;
    padding-top: 30px;
  }

  ul.bunkatu2 li {
    width: 45%;
    margin-left: 10%;
    padding-top: 20px;
    float: left;
  }

  ul.bunkatu2 li:first-child {
    margin-left: 0;
  }

  /*  table（求人募集）
----------------------------------*/
  .kyujin {
    font-size: 15px;
  }

  .kyujin p {
    font-size: 15px;
  }

  .kyujin th {
    padding: 20px;
  }

  .kyujin td {
    padding: 20px;
  }

  .kyujin th {
    width: 22%;
  }

  .kyujin td {
    width: 75%;
  }

  .ten1 {
    width: 10px;
  }

  .ten1-2 {
    width: 97%;
  }

  .ten2 {
    width: 20px;
  }

  .ten2-2 {
    width: 96%;
    padding-left: 2%;
  }

  /*  table（分割２）
----------------------------------*/
  table.ka th {
    display: inline-block;
    width: 35%;
    text-align: left;
  }

  table.ka td {
    padding-top: 20px;
    display: inline-block;
    width: 60%;
    padding-left: 3%;
    vertical-align: middle;
  }

  /*  footer 
---------------------------------------*/

  .f-logo {
    width: 60%;
    margin: auto;
    margin-bottom: 20px;
  }

  .f-left {
    width: 80%;
    margin: auto;
    margin-top: 10px;
  }

  .f-right {
    width: 80%;
    margin: auto;
    margin-top: 30px;
  }

  .f-bb {
    padding-bottom: 150px;
  }

  .kamoku-box {
    width: 30%;
    margin-right: 5%;
    margin-bottom: 20px;
  }

  .kamoku-box:nth-child(even) {
    margin-right: 0%;
  }

  .kamoku-box:nth-child(2) {
    margin-right: 5%;
  }

  .kamoku-box:nth-child(4) {
    margin-right: 5%;
  }

  .kamoku-box:nth-child(8) {
    margin-right: 5%;
  }

  .kamoku-box:nth-child(3) {
    margin-right: 0%;
  }

  .kamoku-box:nth-child(9) {
    margin-right: 0%;
  }

  ul.bunkatu2-2 {
    width: 70%;
    margin: auto;
  }

  ul.bunkatu2-2 li {
    float: left;
    width: 47.5%;
    margin-left: 5%;
  }

  ul.bunkatu2-2 li:first-child {
    margin-left: 0%;
  }

  ul.bunkatu2-3 {
    width: 80%;
    margin: auto;
  }

  ul.bunkatu2-3 li {
    float: left;
    width: 47.5%;
    margin-left: 5%;
  }

  ul.bunkatu2-3 li:first-child {
    margin-left: 0%;
  }

  .tab-site {
    display: block;
  }

  .sp-site {
    display: none;
  }

  .kkk p {
    font-size: 13px;
  }

  ul.sit li a {
    font-size: 13px;
  }

  ul.sit2 li a {
    font-size: 13px;
    color: #fff;
  }

  ul.sit li {
    margin-bottom: 10px;
  }

  ul.sit2 li {
    width: 47.5%;
    margin-left: 5%;
    float: left;
    margin-bottom: 10px;
  }

  ul.sit2 li:nth-child(odd) {
    margin-left: 0%;
  }

  .wakep1 {
    width: 14%;
  }

  .wakep2 {
    width: 23%;
  }

  .wakep3 {
    width: 15%;
  }

  .wakep4 {
    width: 37%;
  }

  /*  footer内の二つ分け要素
----------------------------------*/

  .sps {
    display: none;
  }

  .kazari1 {
    width: 100px;
    top: 10px;
  }

  .kazari2 {
    width: 180px;
    bottom: -100px;
  }

  .kazari4 {
    width: 220px;
    left: -50px;
    top: 40px;
  }

  .kazari5 {
    width: 150px;
    bottom: -20px;
  }

  .kazari6 {
    width: 190px;
    left: -90px;
    top: 1300px;
  }

  .kazari7 {
    width: 150px;
    top: 370px;
    left: -90px;
  }

  .kazari8 {
    width: 180px;
    bottom: -20px;
    right: -50px;
  }

  /*  googlemap枠
----------------------------------*/

  .ggmap {
    position: relative;
    padding-bottom: 45%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
  }

  .zeroMargin_tablet {
    margin-left: 0;
  }

  .hide_tablet {
    display: none;
  }

  .open9-pc {
    width: 230px;
    position: absolute;
    bottom: 30px;
    left: 0;
  }

  .main2p {
    height: 250px;
    background-size: cover;
  }

  .h1-area {
    height: 250px;
  }

  h1.sub2 {
    font-size: 26px;
    top: 30%;
  }

  .inner118 {
    height: 450px;
    width: 88%;
    padding-top: 40px;
    padding-bottom: 50px;
  }

  .inner12p2 {
    width: 90%;
    margin: auto;
    padding-top: 30px;
    padding-bottom: 40px;
  }

  /* 20230123 */
  /*   footer
--------------------------------------- */
  .footer__pdf {
    gap: 1.5em;
    width: 100%;
    font-size: 0.9em;
  }

  .googlepolicy {
    font-size: 14px;
  }
}

@media only screen and (min-width: 767px) {
  /*  font
---------------------------------------*/

  p {
    font-size: 16px;
  }

  .size-m2 {
    font-size: 22px;
  }

  .size-mm {
    font-size: 20px;
  }

  .size-s2 {
    font-size: 21px;
  }

  .size-top {
    font-size: 23px;
  }

  /*  main
---------------------------------------*/

  .main2,
  .main3,
  .main4 {
    height: 300px;
  }

  /*  content
---------------------------------------*/

  /*  1p 
------------------------------*/

  .size-s99 {
    font-size: 20px;
  }

  .size-s-top {
    font-size: 18px;
  }

  .big2 {
    font-size: 27px;
  }

  .size-m {
    font-size: 27px;
  }

  .size-ma {
    font-size: 27px;
  }

  .size-ma2 {
    font-size: 20px;
  }

  .size-m-top {
    font-size: 29px;
  }

  .bg-kon2 {
    width: 85%;
    position: absolute;
    bottom: 30px;
    right: 0;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .area1 {
    width: 11%;
  }

  .area2 {
    width: 45%;
  }

  .area3 {
    width: 58%;
  }

  .area22 {
    width: 85%;
  }

  .reaf1 {
    width: 30px;
    top: -1px;
    left: 130px;
  }

  .reaf2 {
    width: 30px;
    top: -1px;
    right: 130px;
  }

  .flex-area2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .news-area {
    width: 55%;
  }

  .inner-news {
    width: 85%;
  }

  .logo-t1 {
    width: 180px;
    top: -70px;
    left: 50%;
    margin-left: -90px;
  }

  .h100 {
    height: 70px;
  }

  .title {
    font-size: 23px;
  }

  .title-s {
    font-size: 16px;
  }

  .btn99 {
    margin-top: 25px;
  }

  .btn99 a {
    font-size: 18px;
    padding-left: 50px;
    padding-right: 70px;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .btn3 {
    margin-top: 25px;
  }

  .btn3 a {
    font-size: 18px;
    padding-left: 50px;
    padding-right: 70px;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .btn3-2 {
    margin-top: 25px;
  }

  .btn3-2 a {
    font-size: 18px;
    padding-left: 50px;
    padding-right: 70px;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .btn4 a {
    font-size: 18px;
    padding-left: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .btn4-2 a {
    font-size: 18px;
    padding-left: 50px;
    padding-right: 70px;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .btn5 a {
    font-size: 18px;
    padding-left: 50px;
    padding-right: 70px;
  }

  .btn3 a::after,
  .btn3-2 a::after,
  .btn4 a::after,
  .btn4-2 a::after,
  .btn5 a::after {
    position: absolute;
    top: 20%;
    right: 2rem;
    font-size: 18px;
  }

  .w1 {
    width: 50%;
  }

  .w2 {
    width: 55%;
  }

  .w12 {
    width: 70%;
    margin: auto;
  }

  .w2-blue {
    width: 70%;
    margin: auto;
  }

  .w2-yellow {
    width: 70%;
    margin: auto;
  }

  .flex-area-tab6 {
    display: flex;
  }

  .flex-area33 {
    display: flex;
    justify-content: space-between;
  }

  .wake3 {
    width: 100%;
    display: flex;
  }

  .img100 {
    width: 48%;
  }

  .inner4 {
    /*	width: 45%;*/
    width: 40%;
    padding-bottom: 30px;
  }

  br.tab {
    display: block;
  }

  .bg-white3 {
    width: 90%;
    margin: auto;
  }

  p.small-top {
    display: block;
    text-align: right;
    font-size: 14px;
    margin: 0;
    margin-top: 10px;
    margin-bottom: 20px;
  }

  /*  2p 
------------------------------*/

  .irast2-1 {
    width: 300px;
    top: -140px;
    margin-left: -150px;
  }

  .c-tel {
    width: 70%;
    margin: auto;
  }

  .bg-white4 {
    background-size: 200px;
  }

  .k1 {
    width: 60%;
  }

  .k2 {
    width: 30%;
  }

  .size-s-ear {
    font-size: 22px;
  }

  .box2p1 {
    width: 30%;
    margin: 0;
  }

  .box2p2 {
    width: 58%;
    margin: 0;
    margin-top: 0px;
  }

  /*  3p 
------------------------------*/

  .bg-white2 {
    width: 100%;
  }

  .sikaku {
    width: 8%;
  }

  .kome {
    width: 88%;
  }

  .m30 {
    margin-top: 10px;
  }

  .flex-are5 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .s1 {
    width: 45%;
  }

  .s1:nth-child(3) {
    display: none;
    margin-top: 10px;
  }

  .inner5 {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .tab-only {
    display: flex;
  }

  .bg-kon-d {
    font-size: 35px;
    line-height: 1.4;
    width: 60%;
    margin: auto;
    padding-bottom: 20px;
  }

  .bg-kon-d:before {
    width: 26px;
    bottom: 13px;
    left: 45px;
    transition: 0.5s;
  }

  .small3 {
    font-size: 18px;
  }

  /*  4p 
------------------------------*/

  table.ten-da {
    font-size: 16px;
  }

  table.ten-da th {
    width: 2%;
    vertical-align: top;
    font-weight: 400;
  }

  table.ten-da td {
    width: 95%;
    padding-left: 1%;
  }

  .h150 {
    height: 150px;
  }

  .fl {
    width: 70%;
    margin: auto;
  }

  .fr {
    width: 70%;
    margin: auto;
  }

  ul.site {
    margin: auto;
    margin-top: 20px;
    margin-bottom: 30px;
    width: 90%;
  }

  ul.site li {
    width: 16.6666%;
    margin-bottom: 10px;
  }

  ul.site li:nth-child(4) {
    border-left: none;
    clear: none;
  }

  ul.site li:nth-child(5) {
    clear: none;
  }

  ul.site li a {
    font-size: 12px;
  }

  ul.site2 {
    margin: auto;
    margin-top: 20px;
    margin-bottom: 30px;
    width: 90%;
  }

  ul.site2 li {
    width: 16.6666%;
    margin-bottom: 10px;
  }

  ul.site2 li:nth-child(4) {
    border-left: none;
    clear: none;
  }

  ul.site2 li:nth-child(5) {
    clear: none;
  }

  ul.site2 li a {
    font-size: 12px;
  }

  .f-tel {
    width: 90%;
    margin: auto;
    margin-bottom: 10px;
  }

  .tel-f {
    display: none;
  }

  .f-l {
    width: 70%;
    margin: auto;
  }

  .f-r {
    width: 70%;
    margin: auto;
  }

  .f-l2 {
    width: 70%;
    margin: auto;
    margin-top: 20px;
  }

  .f-r2 {
    width: 55%;
    margin: auto;
    margin-top: 20px;
  }

  table.kamoku2 {
    width: 100%;
    font-size: 16px;
    line-height: 2.5;
  }

  table.kamoku2 th {
    width: 17%;
    text-align: left;
    vertical-align: top;
  }

  .kamoku99 {
    font-size: 16px;
    margin-top: 6px;
  }

  .kkk p.copy {
    font-size: 13px;
  }

  .irast3-1 {
    width: 230px;
    top: -130px;
    margin-left: -115px;
  }

  .mt3 {
    margin-top: 50px;
  }

  .nen {
    width: 18%;
  }

  .naiyou {
    width: 75%;
    text-align: left;
  }

  .w4p1 {
    width: 55%;
    margin: auto;
  }

  .w4p2 {
    width: 80%;
    margin-top: 40px;
  }

  .w4p3 {
    margin-top: 60px;
  }

  .w4p4 {
    width: 80%;
    margin-top: 40px;
  }

  .name {
    width: 70%;
  }

  .rya1:nth-child(2) {
    margin-top: 0px;
  }

  .rya1 {
    width: 70%;
  }

  .rya1:nth-child(2) {
    width: 30%;
  }

  h1 {
    font-size: 7px;
  }

  .inner191 {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .inner1910p {
    padding-top: 30px;
    padding-bottom: 80px;
  }

  .inner1910p2 {
    padding-top: 0px;
    padding-bottom: 40px;
  }

  .inner191b {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .scroll {
    height: 350px;
  }

  .box-ko1 {
    width: 50%;
    margin: auto;
  }

  .box-ko2 {
    width: 75%;
    margin: auto;
    margin-top: 50px;
  }

  .koment-pc {
    position: absolute;
    top: 30px;
    left: 0px;
  }

  .open9-pc {
    width: 270px;
    position: absolute;
    bottom: 30px;
    left: 0;
  }

  .koment {
    width: 270px;
    left: 0;
    top: 31%;
  }

  .komen2 {
    left: 10px;
    top: 17%;

  }

  .bg-pink2 {
    padding: 10px;
    padding-left: 25px;
    padding-right: 25px;
    font-size: 16px;
    letter-spacing: 3px;
  }

  .small-pink {
    font-size: 17px;
  }

  /* 20230123 */
  /*   footer
--------------------------------------- */
  .footer__pdf__note {
    font-size: 0.95rem;
  }

  /* 20230425 */
  /*   doctor
--------------------------------------- */
  .doctor-director__introduction__title {
    font-size: 1.25rem;
    padding: 1rem 1.5rem;
  }

  .doctor-director__introduction__text ul {
    font-size: 1rem;
    padding: 1.2rem 1.5rem;
  }

  .name1 {
    width: 80%;
    right: 0;
    top: 5%;
    position: absolute;
  }

  .googlepolicy {
    font-size: 16px;
  }

  .spbr {
    display: none;
  }
}

@media only screen and (min-width: 1023px) {
  .img201 img {
    height: 230px !important;
    width: 100% !important;
    object-fit: cover;
  }

  #map {
    margin-top: -9rem;
    /* 固定ナビの高さ分のネガティブマージン */
    padding-top: 9rem;
    /* 打ち消し用のパディング */
  }

  #p1,
  #p2,
  #p3,
  #p5 {
    margin-top: -9rem;
    /* 固定ナビの高さ分のネガティブマージン */
    padding-top: 9rem;
    /* 打ち消し用のパディング */
  }

  .white-box2 {
    width: 75%;
    margin-left: 10%;
  }

  .logo-space {
    height: 0px;
  }

  .top-mai {
    margin-top: 0px;
  }

  .htt {
    height: 100px;
  }

  .htt2 {
    height: 0px;
  }

  .logo-pc {
    width: 180px;
    position: absolute;
    top: 40px;
    left: 5%;
    z-index: 999;
  }

  .name1 {
    width: 60%;
    right: 0;
    top: 10%;
    position: absolute;
  }

  .koment-pc {
    position: absolute;
    top: 130px;
    left: -30px;
  }

  .open9-pc {
    width: 340px;
    position: absolute;
    bottom: 30px;
    left: 20px;
  }

  .koment {
    width: 320px;
    left: 30px;
    /*top: 46%;*/
    top: 36%;
  }

  .komen2 {
    left: 10px;
    /*top: 35%;*/
    top: 20%;
  }

  .bg-pink2 {
    padding: 10px;
    padding-left: 25px;
    padding-right: 25px;
    font-size: 20px;
  }

  .small-pink {
    font-size: 17px;
  }

  .h355 {
    height: 30px;
  }

  .top11 {
    margin-top: 80px;
  }

  .pc-m50 {
    margin-top: 50px;
  }

  .size-5p {
    font-size: 20px;
  }

  .small-fa {
    font-size: 16px;
  }

  .w-photo3 {
    width: 96%;
    height: 650px;
  }

  .back-color3 {
    width: 96%;
    height: 650px;
  }

  .hei805 {
    height: 650px;
  }

  .h15 {
    width: 96%;
    margin-top: 100px;
  }

  .h35 {
    height: 15vh;
  }

  .main {
    height: 650px;
    margin-top: 100px;
  }

  .h-main {
    height: 650px;
  }

  .h12 {
    width: 95%;
    margin-top: 100px;
  }

  .w-photo {
    width: 95%;
  }

  .h33 {
    height: 33vh;
  }

  .h333 {
    height: 33vh;
  }

  .h39 {
    height: 36vh;
  }

  .main2p {
    height: 300px;
    width: 98%;
    margin: auto;
    margin-top: 100px;
  }

  .h1-area {
    height: 350px;
  }

  h1.sub2 {
    font-size: 26px;
    top: 30%;
  }

  .h-main2 {
    height: 250px;
    position: relative;
  }

  h1 {
    font-size: 10px;
  }

  .size-l {
    font-size: 38px;
  }

  .size-l-title {
    font-size: 38px;
  }

  .size-ll {
    font-size: 25px;
  }

  .size-l2 {
    font-size: 23px;
    line-height: 1.8;
  }

  .size-l9 {
    font-size: 25px;
    line-height: 1.8;
  }

  .size-l2p {
    font-size: 30px;
  }

  .size-l2p99 {
    font-size: 28px;
  }

  .size-3p {
    font-size: 22px;
  }

  .gridContainer {
    width: 80%;
    padding-left: 1.1625%;
    padding-right: 1.1625%;
    clear: none;
    float: none;
    margin-left: auto;
  }

  .gridContainer1400 {
    width: 90%;
    padding-left: 1.1625%;
    padding-right: 1.1625%;
    clear: none;
    float: none;
    margin-left: auto;
  }

  .gridContainer1400-g {
    width: 90%;
    padding-left: 1.1625%;
    padding-right: 1.1625%;
    clear: none;
    float: none;
    margin-left: auto;
  }

  .w87 {
    margin-left: -48%;
    width: 95%;
    position: absolute;
    top: 0;
    left: 50%;
    display: block;
  }

  .w878 {
    margin-left: -45%;
    width: 95%;
    position: absolute;
    top: 0;
    left: 50%;
    display: block;
  }

  p {
    font-size: 16px;
  }

  .bg-green {
    background-color: #b9d988;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-right: 5px;
  }

  .inner-new {
    width: 85%;
    margin: auto;
    padding-top: 25px;
    padding-bottom: 25px;
  }

  .rya121 {
    width: 65%;
    margin: 0;
    border-radius: 0px 20px 20px 0px;
    /* 左上、右上、右下、左下 */
  }

  .rya110 {
    width: 35%;
    margin: 0;
  }

  .rya121 p {
    font-size: 16px;
  }

  .rya110 p {
    font-size: 20px;
    text-align: center;
    height: auto;
    line-height: normal;
    padding-top: 55px;
  }

  .size-m2 {
    font-size: 23px;
  }

  .size-mm {
    font-size: 22px;
  }

  .size-top {
    font-size: 28px;
  }

  .sp-header {
    display: none;
  }

  .sp-footer2 {
    display: none;
  }

  .yo-btn {
    background-color: #002d6e;
    display: block;
    width: 80px;
    position: fixed;
    right: 0;
    top: 50px;
    z-index: 999;
  }

  .yo-tel {
    background-color: #c09b54;
    display: block;
    width: 80px;
    position: fixed;
    right: 0;
    top: 250px;
    z-index: 999;
  }

  .inner-ic1 {
    width: 60%;
    margin: auto;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .inner-ic2 {
    width: 45%;
    margin: auto;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .tab-on99 {
    display: block;
  }

  .tab-made {
    display: none;
  }

  br.tabd {
    display: none;
  }

  .m50-top {
    margin-top: 70px;
  }

  .space-top {
    padding-top: 0px;
  }

  .pb {
    padding-bottom: 0;
  }

  .open {
    bottom: 30px;
    right: 30px;
    width: 450px;
  }

  .bg-blue01 {
    background-color: #002f82;
  }

  .flex-box03 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .pc-mode {
    display: block;
  }

  /*  pankuzu
-----------------------*/

  .breadcrumb span {
    font-size: 13px;
  }

  .pc-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 998;
    width: 100%;
    height: 135px;
    display: block;
    background-color: #fff;
  }

  .pc-hd {
    width: 40%;
    margin-left: auto;
    margin-top: 10px;
  }

  .h1011 {
    height: 100px;
  }

  .menu {
    margin-top: 10px;
    width: 90%;
    float: right;
    margin-left: auto;
    position: relative;
  }

  .flo-right {
    float: right;
    width: 100%;
  }

  .menu>li {
    text-align: right;
    float: left;
    margin-left: 2%;
  }

  .menu>li a {
    font-size: 14px;
    position: relative;
    color: #603d22;
    font-family: vdl-v7marugothic, sans-serif;
    font-weight: 700;
    font-style: normal;
    padding-bottom: 2px;
    margin-bottom: -2px;
  }

  .menu>li a:after {
    content: "●";
    color: #f6abb4;
    position: absolute;
    left: 50%;
    top: -25px;
    margin-left: -5px;
    width: 10px;
    font-size: 11px;
  }

  .menu>li a:hover:after {
    top: -35px;
    transition: 0.5s;
    -webkit-transition: 0.5s;
    color: #b9d988;
  }

  .hhl {
    width: 10%;
  }

  .hhr {
    width: 85%;
    padding-left: 5%;
  }

  ul.menu__second-level {
    visibility: hidden;
    opacity: 0;
    z-index: 3;
  }

  ul.menu__second-level2 {
    visibility: hidden;
    opacity: 0;
    z-index: 3;
  }

  ul.menu__second-level3 {
    visibility: hidden;
    opacity: 0;
    z-index: 3;
  }

  ul.menu__third-level {
    visibility: hidden;
    opacity: 0;
  }

  ul.menu__fourth-level {
    visibility: hidden;
    opacity: 0;
  }

  .menu>li:hover {
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }

  .menu__second-level li {
    border-style: none;
  }

  .menu__second-level3 li {
    border-style: none;
  }

  .menu__third-level li {
    border-top: 1px solid #111;
  }

  .menu__second-level li a:hover {
    background: #baf0f3;
  }

  .menu__third-level li a:hover {
    background: #2a1f1f;
  }

  .menu__fourth-level li a:hover {
    background: #1d0f0f;
  }

  /* 下矢印 */
  .init-bottom:after {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    margin: 0 0 0 15px;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  /* floatクリア */
  .menu:before,
  .menu:after {
    content: " ";
    display: table;
  }

  .menu:after {
    clear: both;
  }

  .menu {
    *zoom: 1;
  }

  .menu>li.menu__single {
    position: relative;
  }

  /*  single
---------------------*/

  li.menu__single ul.menu__second-level {
    position: absolute;
    top: 30px;
    width: 100%;
    margin: auto;
    background: #fff;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    border-collapse: collapse;
  }

  li.menu__single:hover ul.menu__second-level {
    top: 50px;
    visibility: visible;
    opacity: 1;
  }

  /*  mega
---------------------*/

  li.menu__mega ul.menu__second-level {
    position: absolute;
    top: 0px;
    left: 0;
    box-sizing: border-box;
    width: 100%;
    margin: auto;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    background-color: rgba(255, 255, 255, 0.8);
    border-collapse: collapse;
    display: table;
    z-index: 99;
  }

  li.menu__mega:hover ul.menu__second-level {
    top: 30px;
    visibility: visible;
    opacity: 1;
  }

  li.menu__mega ul.menu__second-level>li {
    width: 20%;
    border-width: thin;
    border-collapse: collapse;
    display: table-row;
    text-align: center;
    float: left;
  }

  li.menu__mega ul.menu__second-level>li:nth-child(odd) {
    background-color: rgba(240, 235, 189, 0.8);
  }

  li.menu__mega ul.menu__second-level>li a {
    color: #603d22;
    font-family: vdl-v7marugothic, sans-serif;
    font-weight: 700;
    font-style: normal;
    display: block;
    padding-bottom: 15px;
    padding-top: 15px;
  }

  li.menu__mega ul.menu__second-level>li a::after {
    content: none;
  }

  li.menu__mega ul.menu__second-level>li a:hover:before {
    content: none;
  }

  li.menu__mega ul.menu__second-level a:hover {
    background-color: #c09b54;
    color: #fff;
    display: block;
  }

  /*  mega3
---------------------*/

  li.menu__mega3 ul.menu__second-level3 {
    position: absolute;
    top: 0px;
    left: 0;
    box-sizing: border-box;
    width: 100%;
    margin: auto;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    background-color: rgba(255, 255, 255, 0.8);
    border-collapse: collapse;
    display: table;
    z-index: 99;
  }

  li.menu__mega3:hover ul.menu__second-level3 {
    top: 30px;
    visibility: visible;
    opacity: 1;
  }

  li.menu__mega3 ul.menu__second-level3>li {
    width: 50%;
    border-width: thin;
    border-collapse: collapse;
    display: table-row;
    text-align: center;
    float: left;
  }

  li.menu__mega3 ul.menu__second-level3>li:nth-child(odd) {
    background-color: rgba(240, 235, 189, 0.8);
  }

  li.menu__mega3 ul.menu__second-level3>li a {
    color: #603d22;
    font-family: vdl-v7marugothic, sans-serif;
    font-weight: 700;
    font-style: normal;
    display: block;
    padding-bottom: 15px;
    padding-top: 15px;
  }

  li.menu__mega3 ul.menu__second-level3>li a::after {
    content: none;
  }

  li.menu__mega3 ul.menu__second-level3>li a::after {
    content: "＞";
    font-size: 15px;
    position: absolute;
    right: 0;
    padding-left: 160px;
    top: 12px;
    color: #603d22;
  }

  li.menu__mega3 ul.menu__second-level3>li a:hover:before {
    content: none;
  }

  li.menu__mega3 ul.menu__second-level3 a:hover {
    background-color: #c09b54;
    color: #fff;
    display: block;
  }

  /*  mega2
---------------------*/

  li.menu__mega2 ul.menu__second-level {
    position: absolute;
    top: 0px;
    right: -85%;
    box-sizing: border-box;
    width: 280%;
    margin: auto;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    background-color: rgba(255, 255, 255, 0.7);
    border-collapse: collapse;
    display: table;
    z-index: 99;
  }

  li.menu__mega2:hover ul.menu__second-level {
    top: 38px;
    visibility: visible;
    opacity: 1;
  }

  li.menu__mega2 ul.menu__second-level>li {
    width: 100%;
    border-width: thin;
    border-collapse: collapse;
    display: table-row;
    text-align: center;
  }

  li.menu__mega2 ul.menu__second-level>li:nth-child(2) {
    border-top: none;
  }

  li.menu__mega2 ul.menu__second-level>li:nth-child(3) {
    border-top: none;
  }

  li.menu__mega2 ul.menu__second-level>li a {
    color: #333333;
    font-family: vdl-v7marugothic, sans-serif;
    font-weight: 700;
    font-style: normal;
    display: block;
    padding-bottom: 15px;
    padding-top: 15px;
  }

  li.menu__mega2 ul.menu__second-level>li a:hover:before {
    content: none;
  }

  li.menu__mega2 ul.menu__second-level a:hover {
    background-color: #c09b54;
    color: #fff;
    display: block;
  }

  .flex-area-news {
    display: flex;
    justify-content: space-between;
  }

  .main2,
  .main3,
  .main4 {
    height: 450px;
  }

  .bg-kon2 {
    width: 75%;
    bottom: 50px;
  }

  .size-s99 {
    font-size: 21px;
  }

  .size-s-top {
    font-size: 18px;
  }

  .big2 {
    font-size: 29px;
  }

  .size-m {
    font-size: 29px;
  }

  .size-ma {
    font-size: 29px;
  }

  .size-ma2 {
    font-size: 25px;
  }

  .size-b {
    font-size: 25px;
  }

  .size-m-top {
    font-size: 31px;
  }

  .area1 {
    width: 10%;
  }

  .area2 {
    width: 45%;
  }

  .area3 {
    width: 55%;
  }

  .area22 {
    width: 85%;
  }

  .reaf1 {
    width: 30px;
    top: auto;
    bottom: 3px;
    left: 0;
  }

  .reaf2 {
    width: 30px;
    top: auto;
    bottom: 3px;
    right: 0;
  }

  .logo-t1 {
    width: 180px;
    top: -80px;
    margin-left: -90px;
  }

  .h100 {
    height: 80px;
  }

  .title {
    font-size: 26px;
  }

  .title-s {
    font-size: 18px;
  }

  .flex-area-tab4p {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .flex-area-tab4p99 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .flex-area-tab4p991 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .flex-area-tab {
    display: flex;
  }

  .w1 {
    width: 50%;
  }

  .w2 {
    width: 50%;
    height: 322px;
  }

  .w2-blue {
    width: 50%;
    height: 301px;
  }

  .w12 {
    width: 50%;
  }

  .w2-yellow {
    width: 50%;
    height: 301px;
  }

  .inner3 {
    padding-top: 35px;
  }

  .flex-area-tab2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }

  .flex-area-tab99 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: stretch;
  }

  .flex-area-tab9 {
    display: flex;
    align-items: center;
  }

  .wake3 {
    width: 31%;
    display: block;
  }

  br.tab2 {
    display: block;
  }

  br.tab3 {
    display: block;
  }

  .inner4 {
    width: 90%;
    padding-top: 20px;
  }

  .inner4 {
    padding-bottom: 45px;
  }

  .btn99 {
    margin-top: 35px;
  }

  .btn3 {
    margin-top: 35px;
  }

  .btn3-2 {
    margin-top: 35px;
  }

  .img100 {
    width: 100%;
  }

  .fl {
    width: 50%;
  }

  .fr {
    width: 45%;
  }

  .f-l {
    width: 45%;
    float: left;
    padding-top: 20px;
  }

  .f-r {
    width: 48%;
    float: right;
    position: relative;
    padding-top: 0;
  }

  .f-l2 {
    width: 48%;
    float: left;
    padding-top: 0px;
    margin-top: 0;
  }

  .f-r2 {
    width: 46%;
    float: right;
    position: relative;
    padding-top: 0;
  }

  ul.site {
    margin-top: 20px;
    margin-bottom: 40px;
  }

  ul.site li {
    width: 16.66%;
    margin-bottom: 10px;
  }

  ul.site li:nth-child(4) {
    border-right: none;
  }

  ul.site li:nth-child(5) {
    clear: none;
  }

  ul.site li a {
    font-size: 15px;
  }

  ul.site2 {
    margin-top: 20px;
    margin-bottom: 40px;
  }

  ul.site2 li {
    width: 16.66%;
    margin-bottom: 10px;
  }

  ul.site2 li:nth-child(4) {
    border-right: none;
  }

  ul.site2 li:nth-child(5) {
    clear: none;
  }

  ul.site2 li a {
    font-size: 15px;
  }

  .f-tel {
    display: none;
  }

  .tel-f {
    display: block;
  }

  .tel-f a {
    color: #333333;
    font-size: 33px;
    letter-spacing: 2px;
    line-height: 1.5;
    margin: 0;
  }

  .tel-f2 {
    display: block;
  }

  .tel-f2 a {
    color: #fff;
    font-size: 33px;
    letter-spacing: 2px;
    line-height: 1;
    margin: 0;
  }

  .small {
    font-size: 18px;
  }

  table.kamoku2 {
    width: 100%;
    font-size: 16px;
    line-height: 2.5;
  }

  table.kamoku2 th {
    width: 17%;
    text-align: left;
    vertical-align: top;
  }

  .kkk p.copy {
    font-size: 11px;
  }

  .tab-off {
    display: none;
  }

  .tab-d {
    display: block;
  }

  .space2 {
    margin-top: 0px;
  }

  ul.bxslider02 li:nth-child(7) {
    margin-left: 2%;
    clear: none;
  }

  ul.bxslider02 li:nth-child(10) {
    margin-left: 0%;
    clear: both;
  }

  .irast2-1 {
    width: 330px;
    top: -155px;
    margin-left: -165px;
  }

  .mt2 {
    margin-top: 50px;
  }

  .c-tel {
    width: 60%;
  }

  .sikaku {
    width: 8%;
  }

  .kome {
    width: 88%;
  }

  .m30 {
    margin-top: 10px;
  }

  .s1 {
    width: 31%;
  }

  .s1:nth-child(3) {
    display: block;
    margin-top: 0px;
  }

  .inner5 {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .rya1 {
    width: 70%;
  }

  .rya1:nth-child(2) {
    width: 30%;
  }

  .nen {
    width: 19%;
  }

  .pc-d {
    display: block;
  }

  .sp-d {
    display: none;
  }

  .w4p1 {
    width: 30%;
    margin: 0;
  }

  .w4p2 {
    width: 65%;
    margin: 0;
    margin-top: 0px;
  }

  .w4p4 {
    width: 95%;
    margin: 0;
    margin-top: 0px;
  }

  .w4p3 {
    position: absolute;
    top: 0;
    right: 0;
    width: 350px;
  }

  .name {
    width: 80%;
  }

  .h170 {
    height: 150px;
  }

  .naiyou {
    width: 80%;
    text-align: left;
  }

  .tab-only {
    display: none;
  }

  .bg-kon-d {
    font-size: 40px;
    line-height: 1.3;
    width: 60%;
    margin: auto;
    letter-spacing: 4px;
  }

  .bg-kon-d:before {
    width: 26px;
    bottom: 12px;
    left: 40px;
    transition: 0.5s;
  }

  .small3 {
    font-size: 18px;
  }

  .bg-kon-d {
    font-size: 38px;
    line-height: 1.4;
    width: 57%;
    margin: auto;
    padding-bottom: 20px;
  }

  .bg-kon-d:before {
    width: 26px;
    bottom: 15px;
    left: 40px;
    transition: 0.5s;
  }

  .small3 {
    font-size: 19px;
  }

  .bg-white3 {
    width: 100%;
  }

  p.bule-title {
    font-size: 24px;
  }

  table.hyou {
    display: table;
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    font-size: 18px;
  }

  table.hyou th {
    width: 20%;
    padding: 10px;
    text-align: center;
    vertical-align: middle;
    border: solid 1px #002f82;
  }

  table.hyou td {
    width: 13.333%;
    padding: 15px 5px;
    text-align: center;
    vertical-align: middle;
    border: solid 1px #002f82;
  }

  table.hyou2 {
    display: table;
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    font-size: 18px;
  }

  table.hyou2 th {
    padding: 10px;
    text-align: center;
    vertical-align: middle;
    border: solid 1px #002f82;
  }

  table.hyou2 td {
    padding: 15px 5px;
    text-align: center;
    vertical-align: middle;
    border: solid 1px #002f82;
  }

  .list-table {
    font-size: 18px;
  }

  .list-table2 {
    font-size: 18px;
  }

  p.small-top {
    font-size: 16px;
  }

  .k1 {
    width: 53%;
  }

  .k2 {
    width: 44%;
  }

  .bg-white4 {
    background-size: 300px;
  }

  .flex-area2-10 {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .size-s-ear {
    font-size: 20px;
  }

  .pc-o {
    display: flex;
  }

  .t1023 {
    display: block;
  }

  .tab-made {
    display: none;
  }

  .flex-area-news {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .news-area {
    width: 31%;
    margin: 0;
  }

  .news-area:nth-child(2) {
    display: block;
  }

  .news-area:nth-child(3) {
    display: block;
  }

  p.size-h {
    font-size: 20px;
    color: #fff;
  }

  p.size-b a {
    font-size: 16px;
  }

  p.size-b9 {
    font-size: 16px;
  }

  .box7p {
    width: 70%;
  }

  .w7p1,
  .w7p2 {
    font-size: 25px;
  }

  .kyujin {
    font-size: 16px;
  }

  .kyujin th {
    padding: 40px;
  }

  .kyujin td {
    padding: 40px;
  }

  .kyujin th {
    width: 24%;
  }

  .kyujin td {
    width: 75%;
  }

  .flex-tab-b-on {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .flex-tab-b-on2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .f-logo {
    width: 90%;
    margin-bottom: 50px;
  }

  .f-left {
    width: 45%;
    margin: 0px;
    padding: 0;
    padding-top: 15px;
  }

  .f-right {
    width: 50%;
    margin: 0px;
    padding: 0;
  }

  .bosyu {
    width: 50%;
    margin-top: 40px;
  }

  .title-t {
    border-bottom: solid #002d6e 1px;
    position: absolute;
    right: 25px;
    top: 50px;
  }

  .kannsen {
    width: 400px;
    bottom: -30px;
    left: 0;
    position: absolute;
  }

  .bg-gray2 {
    position: absolute;
    right: -70px;
    bottom: -30px;
    width: 55%;
  }

  .h-tab-b {
    height: 40px;
  }

  .small-f {
    font-size: 20px;
  }

  .logo-s {
    width: 150px;
    top: -40px;
    margin-left: -75px;
  }

  .logo-s3p {
    width: 150px;
    top: -40px;
    margin-left: -75px;
  }

  .logo-s6p {
    width: 150px;
    top: 0px;
    margin-left: -75px;
  }

  h2 {
    font-size: 30px;
    padding-top: 100px;
  }

  h2.pt-n {
    padding-top: 0;
  }

  h2.ti-b::after {
    width: 30px;
    padding-left: 45px;
  }

  h2.dot-title {
    padding-top: 0;
    font-size: 28px;
  }

  h2.hana::after {
    width: 35px;
    padding-left: 50px;
  }

  h2.hana::before {
    width: 35px;
    margin-left: -85px;
  }

  h2.dot-title::after {
    width: 30px;
    padding-left: 25px;
    top: -5px;
  }

  h2.dot-title::before {
    width: 30px;
    margin-left: -55px;
    top: -5px;
  }

  h2.dot-title2 {
    padding-top: 0;
    font-size: 28px;
  }

  h2.dot-title2::after {
    width: 30px;
    padding-left: 25px;
    top: -5px;
  }

  h2.dot-title2::before {
    width: 30px;
    margin-left: -55px;
    top: -5px;
  }

  h2.ti-b::before {
    width: 30px;
    margin-left: -60px;
  }

  h2.color-pink2 {
    padding-top: 0;
  }

  .small-t {
    font-size: 15px;
  }

  .small-tb {
    font-size: 15px;
  }

  h3 {
    font-size: 24px;
  }

  .bun1 {
    width: 25%;
  }

  .w4p3 {
    margin-top: 0px;
  }

  .tab-d-kara {
    display: block;
  }

  .tab-d-made {
    display: none;
  }

  .name99 {
    width: 75%;
    margin-bottom: 30px;
  }

  .kazari1 {
    width: 130px;
    top: 10px;
    right: -50px;
  }

  .kazari2 {
    width: 230px;
    bottom: -120px;
    left: -50px;
  }

  .kazari4 {
    width: 230px;
    left: -50px;
    top: 60px;
  }

  .kazari5 {
    width: 150px;
    bottom: -20px;
    right: -50px;
  }

  .kazari6 {
    width: 230px;
    left: -50px;
    top: 1400px;
  }

  .kazari7 {
    width: 150px;
    top: 370px;
    left: -70px;
  }

  .kazari8 {
    width: 200px;
    bottom: 0px;
    right: -80px;
  }

  .f-bb {
    padding-bottom: 0px;
  }

  .btn-width {
    width: 30%;
  }

  .btn-width-left {
    width: 30%;
    margin: 0;
  }

  .kamoku-box {
    width: 18%;
    margin-right: 2.5%;
    margin-bottom: 20px;
  }

  .kamoku-box:nth-child(even) {
    margin-right: 0%;
  }

  .kamoku-box:nth-child(2) {
    margin-right: 2.5%;
  }

  .kamoku-box:nth-child(4) {
    margin-right: 2.5%;
  }

  .kamoku-box:nth-child(5) {
    margin-right: 0%;
  }

  .kamoku-box:nth-child(6) {
    margin-right: 2.5%;
    margin-left: 10.25%;
  }

  .kamoku-box:nth-child(8) {
    margin-right: 2.5%;
  }

  .kamoku-box:nth-child(3) {
    margin-right: 2.5%;
  }

  .kamoku-box:nth-child(9) {
    margin-right: 0%;
  }

  ul.bunkatu2-2 {
    width: 63%;
    margin: auto;
  }

  br.tab-b {
    display: none;
  }

  .size-ss {
    font-size: 12px;
  }

  .white-box {
    padding-top: 25px;
    padding-bottom: 25px;
    line-height: 1.5;
    font-size: 22px;
  }

  .ten2 {
    width: 15px;
  }

  .ten2-2 {
    width: 97%;
    padding-left: 1%;
  }

  .flow1 {
    width: 80px;
  }

  .flow2 {
    width: 78%;
  }

  .btn-width2 {
    width: 50%;
  }

  .btn-width2p99 {
    width: 50%;
  }

  /*  price
---------------------------*/

  .sp-mode2 {
    display: none;
  }

  .pc-mode2 {
    display: block;
  }

  .sp-mode3 {
    display: none;
  }

  dl.yoko2p dt {
    width: 40%;
    float: left;
    padding-top: 0;
  }

  dl.yoko2p dd {
    width: 54%;
    float: right;
    padding-top: 0;
    margin-top: 0;
  }

  .in-p {
    font-size: 22px;
  }

  .th-pink {
    font-size: 18px;
    padding: 10px 15px;
  }

  .td-pink {
    font-size: 16px;
    padding: 10px 25px;
  }

  .th-tax {
    font-size: 18px;
  }

  .th-tax-s {
    font-size: 12px;
  }

  .td-tax {
    font-size: 18px;
  }

  .td-tax-s {
    font-size: 15px;
  }

  .deduction-div {
    display: block;
    width: 20%;
    float: left;
  }

  .deduction-div02 {
    display: block;
    width: 33.5%;
    float: left;
  }

  .calc-title {
    font-size: 18px;
  }

  .calc-title-l {
    font-size: 20px;
  }

  .calc-title-ll {
    font-size: 28px;
  }

  .calc-title-s {
    font-size: 12px;
    line-height: 1.4;
  }

  .deduction-dt02 {
    height: 6rem;
    padding: 1.8em 1em;
  }

  .deduction-dt03 {
    height: 6rem;
    padding: 0.5em;
  }

  .calc-symbol-space {
    margin-top: 5%;
  }

  .deduction-dt {
    height: 6rem;
    padding: 1.5em 0.5em;
  }

  .calc-text {
    font-size: 14px;
    padding: 15px 0;
  }

  .calc-symbol {
    width: 3%;
    padding: 6% 1%;
    float: left;
  }

  .calc-symbol img {
    width: 85%;
    transform: rotate(0deg);
  }

  .formula01 {
    padding-top: 5%;
    padding-left: 8%;
  }

  .formula02 {
    padding-top: 5%;
    padding-left: 8%;
  }

  .sp-mode {
    display: none;
  }

  .pc-mode {
    display: block;
  }

  .case-left {
    width: 41%;
    margin: auto;
  }

  .case-right {
    width: 90%;
    margin: auto;
    margin-top: 40px;
  }

  p.white-box-price {
    background-color: #fff;
    font-size: 23px;
    display: inline-block;
    padding: 5px 10px;
    border-radius: 5px;
    /* CSS3草案 */
    -webkit-border-radius: 5px;
    /* Safari,Google Chrome用 */
    -moz-border-radius: 5px;
  }

  span.big2 {
    font-size: 30px;
  }

  span.big3 {
    font-size: 28px;
  }

  .circle-pink {
    border-radius: 50%;
    width: 11em;
    height: 11em;
    margin-left: 27px;
    padding: 10px;
  }

  .circle01 {
    font-size: 35px;
    width: 4.3em;
    margin: 0 auto;
  }

  .circle02 {
    font-size: 20px;
  }

  .circle03 {
    font-size: 18px;
  }

  .circle04 {
    font-size: 23px;
  }

  .circle05 {
    font-size: 18px;
  }

  .circle-img img {
    width: 105px;
    position: absolute;
    top: 20px;
    left: -35px;
  }

  .b4p {
    font-size: 12px;
  }

  .inner4p {
    width: 90%;
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .sp-mode4 {
    display: block;
  }

  .box4p1 {
    width: 26%;
    margin: 0;
  }

  .box4p2 {
    width: 72%;
    margin-top: 0px;
  }

  .kon-box1 {
    font-size: 18px;
  }

  .inner191 {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .inner1910p {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .inner191b {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .inner11 {
    padding-top: 40px;
    padding-bottom: 50px;
  }

  .inner119 {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .inner118 {
    height: 450px;
    width: 85%;
    padding-top: 40px;
    padding-bottom: 50px;
  }

  .inner12p {
    width: 85%;
    margin: auto;
    padding-top: 30px;
    padding-bottom: 40px;
  }

  .num {
    top: -5px;
    width: 40px;
    margin-left: -20px;
  }

  .b-boder {
    font-size: 19px;
  }

  .b-boder2 {
    font-size: 19px;
  }

  .w111 {
    width: 70%;
    margin: auto;
  }

  .pc-main {
    height: 650px;
    width: 90%;
  }

  .nakami {
    height: 650px;
  }

  .open2 {
    width: 170px;
    bottom: 10px;
    right: 10px;
  }

  .ko {
    top: 150px;
  }

  .pc-dddd {
    height: 600px;
    margin-top: 80px;
  }

  .p-hero__ttl {
    font-size: 24px;
  }

  .p-hero__ttl2,
  .p-hero__ttl3 {
    font-size: 25px;
  }

  .m111 {
    position: absolute;
    top: 140px;
  }

  .m112 {
    position: absolute;
    top: 210px;
  }

  .pc-m20 {
    margin-top: 30px;
  }

  .pagetop {
    display: none;
    position: fixed;
    width: 200px;
  }

  .contact-table {
    width: 85%;
    margin: auto;
  }

  .contact-item {
    width: 25%;
  }

  ul.b3 {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .w909 {
    width: 92%;
    margin: auto;
  }

  .input-text {
    width: 35%;
  }

  .input-text1 {
    width: 75%;
  }

  .input-text2 {
    width: 85%;
  }

  .input-button {
    font-size: 16px;
  }

  table.contact-table th {
    font-size: 16px;
  }

  .color-red {
    font-size: 16px;
  }

  .m4 {
    margin-bottom: 20px;
    font-size: 16px;
  }

  .font {
    font-size: 16px;
  }

  table.form1 td,
  table.form1 th {
    font-size: 16px;
  }

  .box-ko1 {
    width: 32%;
    margin: 0;
  }

  .box-ko2 {
    width: 65%;
    margin: 0;
    margin-top: 0px;
  }

  .h-top {
    height: 130px;
  }

  .flex-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .inner-footer {
    width: 83%;
    margin: auto;
  }

  .inner-footer2 {
    width: 85%;
    margin: auto;
  }

  .footer1 {
    border-left: none;
    width: 15%;
    box-sizing: border-box;
  }

  .footer2 {
    border-left: dashed 1px #603d22;
    width: 15%;
    box-sizing: border-box;
  }

  .footer3 {
    border-left: dashed 1px #603d22;
    border-right: none;
    width: 28%;
    box-sizing: border-box;
  }

  .footer4 {
    margin-top: 0px;
    width: 42%;
    box-sizing: border-box;
  }

  ul.bun2 li {
    width: 40%;
    margin-left: 2%;
  }

  ul.bun2 li:first-child {
    margin-left: 0%;
    clear: both;
    width: 53%;
  }

  ul.bun2 li:nth-child(3) {
    margin-left: 0%;
    clear: both;
    width: 53%;
  }

  ul.bun2 li:nth-child(5) {
    margin-left: 0%;
    clear: both;
    width: 53%;
  }

  ul.bun2 li:nth-child(7) {
    margin-left: 0%;
    clear: both;
    width: 53%;
  }

  ul.bun2 li:nth-child(9) {
    margin-left: 0%;
    clear: both;
    width: 53%;
  }

  ul.bun2 li:nth-child(11) {
    margin-left: 0%;
    clear: both;
    width: 53%;
  }

  .btn-all8 a {
    font-size: 16px;
    padding-left: 40px;
  }

  .btn-all9 a {
    font-size: 16px;
    padding-left: 25px;
  }

  .btn-all8 a::before {
    top: 26%;
    margin-left: -63px;
    width: 30px;
  }

  .btn-all9 a::before {
    top: 28%;
    margin-left: -80px;
    width: 13px;
  }

  .f-box1 {
    width: 45%;
    /* margin: auto; */
    margin: 0;
  }

  .f-box2 {
    width: 50%;
    /* margin: auto; */
    margin: 0;
  }

  .pc-m502 {
    margin-top: 90px;
  }

  .topflex {
    align-items: flex-start;
  }

  .topflex_text {
    line-height: 1.6;
  }

  .top-box1 {
    width: 30%;
    margin: 0;
  }

  .top-box1_gaikan {
    overflow: hidden;
    border-radius: 1rem;
    width: 40%;
    margin: 0;
    box-shadow: 6px 6px 0px 0px #ebd099;
    border-radius: 10px;
  }

  .top-box2 {
    /*width: 65%;*/
    width: 55%;
    margin: 0;
    margin-top: 0px;
    margin-bottom: 0px;
  }

  .sp-center {
    text-align: left;
  }

  .f-kaza {
    width: 110px;
    bottom: 200px;
    right: 0px;
  }

  .bg-tya {
    padding-top: 5px;
    padding-bottom: 5px;
    font-size: 23px;
  }

  .bg-aqa {
    padding-top: 5px;
    padding-bottom: 5px;
    font-size: 23px;
  }

  .n02 {
    width: 80px;
    position: absolute;
    top: -20px;
    left: 20px;
  }

  .w2p1 {
    width: 45%;
    margin: 0;
  }

  .w2p2 {
    width: 50%;
    margin: 0;
    margin-top: 0px;
  }

  .w9p1 {
    width: 45%;
    margin: 0;
  }

  .w9p2 {
    width: 50%;
    margin: 0;
    margin-top: 0px;
  }

  .btn-width121 {
    width: 78%;
    margin: 0;
  }

  .btn-width122 {
    width: 64%;
    margin: 0;
    margin-left: auto;
  }

  .btn-width123 {
    width: 64%;
    margin: 0;
    margin-right: auto;
  }

  .btn-width124 {
    width: 60%;
    margin: auto;
  }

  .btn-width1210p {
    width: 68%;
    margin: 0;
    margin-right: auto;
  }

  .btn-width1210p2 {
    width: 48%;
  }

  .size-sw {
    font-size: 17px;
  }

  .kaza2p {
    width: 140px;
    margin: auto;
  }

  p.ken {
    font-size: 22px;
  }

  .small-ken {
    font-size: 16px;
  }

  .bg-3p1 {
    background-image: url("../img/03-photo1.png");
    background-position: right center;
    background-repeat: no-repeat;
    background-size: 600px;
    height: 390px;
  }

  .bg-3p2 {
    background-image: url("../img/03-photo2.png");
    background-position: left center;
    background-repeat: no-repeat;
    background-size: 650px;
    height: 390px;
  }

  .bg-3p12 {
    background-image: url("../img/03-photo3.png");
    background-position: right center;
    background-repeat: no-repeat;
    background-size: 690px;
    height: 390px;
  }

  .bg-3p22 {
    background-image: url("../img/03-photo42.png");
    background-position: left center;
    background-repeat: no-repeat;
    background-size: 620px;
    height: 390px;
  }

  .bg-3p13 {
    background-image: url("../img/03-photo53.png");
    background-position: right center;
    background-repeat: no-repeat;
    background-size: 870px;
    height: 420px;
  }

  .bg-3p23 {
    background-image: url("../img/03-photo6.png");
    background-position: left center;
    background-repeat: no-repeat;
    background-size: 630px;
    height: 420px;
  }

  .bg-11p1 {
    background-image: url("../img/11-photo1.png");
    background-position: right center;
    background-repeat: no-repeat;
    background-size: 520px;
    height: 390px;
  }

  .bg-11p2 {
    background-image: url("../img/11-photo2.png");
    background-position: right center;
    background-repeat: no-repeat;
    background-size: 595px;
    height: 390px;
  }

  .bg-11p3 {
    background-image: url("../img/11-photo6.png");
    background-position: left center;
    background-repeat: no-repeat;
    background-size: 710px;
    height: 460px;
  }

  .bg-11p4 {
    background-image: url("../img/11-photo4.png");
    background-position: right center;
    background-repeat: no-repeat;
    background-size: 650px;
    height: 460px;
  }

  .bg-12p1 {
    background-image: url("../img/12-photo1.png");
    background-position: right center;
    background-repeat: no-repeat;
    background-size: 620px;
    height: 460px;
  }

  .bg-12p2 {
    background-image: url("../img/12-photo7.png");
    background-position: right center;
    background-repeat: no-repeat;
    background-size: 450px;
    height: 340px;
  }

  .pt11p {
    padding-top: 40px;
  }

  .tab-box3p {
    width: 53%;
    margin-top: 20px;
  }

  .tab-box3p2 {
    width: 55%;
    margin-left: auto;
    margin-top: 10px;
  }

  .tab-box11p1 {
    width: 65%;
    margin-left: auto;
    margin-top: 10px;
  }

  .tab-box11p2 {
    width: 65%;
    margin-top: 20px;
  }

  .w3p1 {
    width: 53%;
    margin: 0;
  }

  .w3p199 {
    width: 60%;
    margin: auto;
  }

  .w3p199 img {
    width: 100%;
  }

  .w3p299 {
    width: 68%;
    margin: auto;
  }

  ul.ten-d li {
    width: 90%;
    margin-left: 25px;
    float: left;
  }

  ul.ten-d li:first-child {
    margin-left: 0;
    width: 10px;
  }

  .top-box212 {
    width: 47.5%;
  }

  .m5p {
    margin-top: 40px;
  }

  .bg-green10p {
    padding-top: 5px;
    padding-right: 5px;
    padding-bottom: 5px;
  }

  .r-b {
    bottom: 25px;
  }

  .htt6p {
    height: 150px;
  }

  .ssa {
    font-size: 10px;
  }

  .fons {
    font-size: 16px;
  }

  .top-k1 {
    display: block;
    width: 100px;
    position: absolute;
    right: -50px;
    top: -30px;
  }

  .top-k2 {
    display: block;
    width: 40px;
    position: absolute;
    right: 0px;
    bottom: -25px;
  }

  .top-k3 {
    display: block;
    width: 45px;
    position: absolute;
    left: -50px;
    bottom: -20px;
  }

  .top-k4 {
    display: block;
    width: 70px;
    position: absolute;
    right: 0px;
    top: 25px;
  }

  .top-k5 {
    display: block;
    width: 75px;
    position: absolute;
    left: -50px;
    bottom: 90px;
  }

  .top-k6 {
    display: block;
    width: 105px;
    position: absolute;
    right: 0px;
    top: 95px;
  }

  .top-k7 {
    display: block;
    width: 75px;
    position: absolute;
    right: 0px;
    bottom: 90px;
  }

  .top-k8 {
    display: block;
    width: 95px;
    position: absolute;
    right: -60px;
    bottom: 100px;
  }

  .k2-01 {
    display: block;
    width: 105px;
    position: absolute;
    left: -60px;
    top: 40px;
  }

  .k2-02 {
    display: block;
    width: 85px;
    position: absolute;
    right: -30px;
    top: -30px;
  }

  .k2-03 {
    display: block;
    width: 135px;
    position: absolute;
    left: -60px;
    top: -20px;
  }

  .sample01 {
    padding-top: 60px;
  }

  .sample01::after {
    border-top: 60px solid #faf7e7;
  }

  .h2p {
    height: 90px;
  }

  .k2-04 {
    display: block;
    width: 105px;
    position: absolute;
    right: 0px;
    bottom: -110px;
  }

  .k2-05 {
    display: block;
    width: 95px;
    position: absolute;
    left: 0px;
    bottom: -110px;
  }

  .k2-06 {
    display: block;
    width: 55px;
    position: absolute;
    left: 0px;
    bottom: -90px;
  }

  .k3-01 {
    display: block;
    width: 155px;
    position: absolute;
    left: 0px;
    bottom: 0px;
  }

  .k3-02 {
    display: block;
    width: 45px;
    position: absolute;
    left: 170px;
    bottom: 10px;
  }

  .k3-03 {
    display: block;
    width: 55px;
    position: absolute;
    right: 30px;
    top: 90px;
  }

  .k3-04 {
    display: block;
    width: 45px;
    position: absolute;
    left: 0px;
    bottom: 30px;
  }

  .k3-05 {
    display: block;
    width: 85px;
    position: absolute;
    left: 0px;
    bottom: 0px;
  }

  .k3-06 {
    display: block;
    width: 45px;
    position: absolute;
    left: 150px;
    bottom: 10px;
  }

  .k3-07 {
    display: block;
    width: 75px;
    position: absolute;
    right: 30px;
    bottom: 0px;
  }

  .k3-08 {
    display: block;
    width: 45px;
    position: absolute;
    left: -50px;
    bottom: 20px;
  }

  .k3-10 {
    display: block;
    width: 95px;
    position: absolute;
    right: 30px;
    bottom: 0px;
  }

  .k3-11 {
    display: block;
    width: 45px;
    position: absolute;
    left: -50px;
    bottom: 20px;
  }

  .k4-01 {
    display: block;
    width: 115px;
    position: absolute;
    left: 0px;
    bottom: 40px;
  }

  .k4-02 {
    display: block;
    width: 105px;
    position: absolute;
    right: 0px;
    bottom: 50px;
  }

  .k4-03 {
    display: block;
    width: 155px;
    position: absolute;
    right: 0px;
    bottom: 180px;
  }

  .k5-01 {
    display: block;
    width: 125px;
    position: absolute;
    left: -60px;
    bottom: 40px;
  }

  .k5-02 {
    display: block;
    width: 75px;
    position: absolute;
    right: 0px;
    top: 130px;
  }

  .k5-03 {
    display: block;
    width: 125px;
    position: absolute;
    left: -60px;
    top: 40px;
  }

  .k5-04 {
    display: block;
    width: 75px;
    position: absolute;
    right: 0px;
    top: 240px;
  }

  .k5-05 {
    display: block;
    width: 255px;
    position: absolute;
    right: 0px;
    bottom: 0px;
  }

  .k6-01 {
    display: block;
    width: 135px;
    position: absolute;
    right: -60px;
    bottom: 80px;
  }

  .k6-02 {
    display: block;
    width: 155px;
    position: absolute;
    left: -90px;
    bottom: 160px;
  }

  .k6-03 {
    display: block;
    width: 155px;
    position: absolute;
    right: -90px;
    bottom: 160px;
  }

  .k7-01 {
    display: block;
    width: 75px;
    position: absolute;
    right: 0px;
    bottom: -30px;
  }

  .k7-02 {
    display: block;
    width: 85px;
    position: absolute;
    left: -50px;
    bottom: 10px;
  }

  .k9-01 {
    display: block;
    width: 75px;
    position: absolute;

    left: -70px;
    bottom: 200px;
  }

  .k9-02 {
    display: block;
    width: 75px;
    position: absolute;
    right: -70px;
    bottom: 200px;
  }

  .k11-01 {
    display: block;
    width: 105px;
    position: absolute;

    left: 30px;
    top: 30px;
  }

  .k11-02 {
    display: block;
    width: 95px;
    position: absolute;
    right: 10px;
    bottom: 30px;
  }

  .k11-04 {
    display: block;
    width: 145px;
    position: absolute;
    left: 10px;
    top: -120px;
  }

  .k11-05 {
    display: block;
    width: 115px;
    position: absolute;
    right: -40px;
    top: 70px;
  }

  .k11-06 {
    display: block;
    width: 85px;
    position: absolute;
    right: -50px;
    bottom: 190px;
  }

  .k11-07 {
    display: block;
    width: 85px;
    position: absolute;
    left: -50px;
    bottom: 190px;
  }

  .k11-08 {
    display: block;
    width: 85px;
    position: absolute;
    left: 0px;
    bottom: -120px;
  }

  .k11-09 {
    display: block;
    width: 85px;
    position: absolute;
    left: 0px;
    bottom: 120px;
  }

  .k12-01 {
    display: block;
    width: 55px;
    position: absolute;

    right: -10px;
    bottom: -20px;
  }

  .k12-02 {
    display: block;
    width: 270px;
    position: absolute;

    right: 0px;
    bottom: 0px;
  }

  .k12-03 {
    display: block;
    width: 60px;
    position: absolute;

    left: -120px;
    bottom: 20px;
  }

  .k12-04 {
    display: block;
    width: 50px;
    position: absolute;

    right: -120px;
    bottom: 20px;
  }

  .k12-09 {
    display: block;
    width: 85px;
    position: absolute;

    right: -30px;
    bottom: -20px;
  }

  .k12-10 {
    display: block;
    width: 85px;
    position: absolute;

    left: -30px;
    bottom: -40px;
  }

  .k12-11 {
    display: block;
    width: 95px;
    position: absolute;

    right: -10px;
    bottom: 100px;
  }

  .k12-12 {
    display: block;
    width: 95px;
    position: absolute;

    left: -10px;
    bottom: 100px;
  }

  .k12-13 {
    display: block;
    width: 155px;
    position: absolute;

    right: -30px;
    top: 60px;
  }

  .k12-14 {
    display: block;
    width: 155px;
    position: absolute;

    left: -30px;
    top: 60px;
  }

  .k14-01 {
    display: block;
    width: 60px;
    position: absolute;

    left: -70px;
    bottom: 10px;
  }

  .k14-02 {
    display: block;
    width: 110px;
    position: absolute;

    right: 0px;
    bottom: -20px;
  }

  .k14-03 {
    display: block;
    width: 80px;
    position: absolute;

    left: 0px;
    bottom: 20px;
  }

  .k14-04 {
    display: block;
    width: 80px;
    position: absolute;

    left: -50px;
    top: 120px;
  }

  .k14-05 {
    display: block;
    width: 80px;
    position: absolute;

    right: -50px;
    bottom: 120px;
  }

  .mtop5p {
    top: -180px;
    margin-left: -40%;
    width: 80%;
  }

  .h5p {
    height: 500px;
  }

  .h5p2 {
    height: 180px;
  }

  .btn-all92 a {
    font-size: 14px;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 20px;
  }

  .btn-all92 a::before {
    position: absolute;
    top: 25%;
    left: 50%;
    margin-left: -110px;
    content: url("../img/tel-icon2.svg");
    width: 11px;
  }

  .btn-s {
    display: inline-block;
    margin-top: 0px;
    width: 55%;
  }

  .bt-top .chiled {
    top: 170px;
    width: 55px;
    height: 55px;
  }

  .bt-top .chiled .chiled2 {
    content: url("../img/more.svg");
    position: relative;
    left: 5px;
    top: 3.5px;
    width: 45px;
    height: 45px;
  }

  .ggmap2 {
    padding-bottom: 65.25%;
  }

  .ggmap99 {
    /*padding-bottom: 111.25%;*/
    padding-bottom: 70%;
  }

  /* 20230123 */
  /*   footer
--------------------------------------- */
  .footer__pdf {
    gap: 1em;
  }

  /* 20230425 */
  .c-br--sp {
    display: none;
  }

  /*  doctor
--------------------------------------- */
  .doctor-director__introduction {
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
  }

  .doctor-director__introduction__list {
    width: 47.5%;
  }

  .doctor-director__introduction__list--03 {
    border: 4px solid var(--c-pink);
  }

  .doctor-director__introduction__list--03>.doctor-director__introduction__title {
    background-color: var(--c-pink);
  }

  .doctor-director__introduction__list--04 {
    border: 4px solid var(--c-green);
  }

  .doctor-director__introduction__list--04>.doctor-director__introduction__title {
    background-color: var(--c-green);
  }

  .doctor-director__introduction__title {
    font-size: 1.35rem;
    padding: 1rem 1.5rem;
  }

  .doctor-director__introduction__text ul {
    line-height: 1.89;
    font-size: 0.95rem;
    padding: 1.2rem 1.5rem;
  }
}

@media only screen and (min-width: 1112px) {
  .ggmap99 {
    /*padding-bottom: 100.25%;*/
    padding-bottom: 70%;
  }
}

/* Desktop Layout: 769px to a max of 1232px.  Inherits styles from: Mobile Layout and Tablet Layout. */

@media only screen and (min-width: 1199px) {
  .pc-made3 {
    display: none;
  }

  .ggmap99 {
    /*padding-bottom: 74.25%;*/
    padding-bottom: 70%;
  }

  .ggmap2 {
    padding-bottom: 60.25%;
  }

  .bt-top .chiled {
    top: 150px;
  }

  .btn-all92 a {
    font-size: 15px;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 20px;
  }

  .btn-all92 a::before {
    position: absolute;
    top: 25%;
    left: 50%;
    margin-left: -120px;
    content: url("../img/tel-icon2.svg");
    width: 11px;
  }

  .btn-s {
    display: inline-block;
    margin-top: 0px;
    width: 37%;
  }

  ul.bxslider02 li.gh1 a:hover {
    transform: scale(1.2);
    height: 150px;
  }

  ul.bxslider02 li.gh1 a:hover:after {
    position: absolute;
    width: 88%;
    top: 70px;
    left: 10%;
  }

  ul.bxslider02 li.gh2 a:hover {
    transform: scale(1.2);
    height: 150px;
  }

  ul.bxslider02 li.gh2 a:hover:after {
    position: absolute;
    width: 88%;
    top: 70px;
    left: 6%;
  }

  ul.bxslider02 li.gh3 a:hover {
    transform: scale(1.2);
    height: 150px;
  }

  ul.bxslider02 li.gh3 a:hover:after {
    position: absolute;
    width: 88%;
    top: 70px;
    left: 6%;
  }

  ul.bxslider02 li.gh4 a:hover {
    transform: scale(1.2);
    height: 150px;
  }

  ul.bxslider02 li.gh4 a:hover:after {
    position: absolute;
    width: 88%;
    top: 70px;
    left: 6%;
  }

  ul.bxslider02 li.gh5 a:hover {
    transform: scale(1.2);
    height: 150px;
  }

  ul.bxslider02 li.gh5 a:hover:after {
    position: absolute;
    width: 88%;
    top: 70px;
    left: 6%;
  }

  ul.bxslider02 li.gh6 a:hover {
    transform: scale(1.2);
    height: 150px;
  }

  ul.bxslider02 li.gh6 a:hover:after {
    position: absolute;
    width: 88%;
    top: 70px;
    left: 2%;
  }

  .mtop5p {
    top: -280px;
    margin-left: -550px;
    width: 1100px;
  }

  .h5p {
    height: 550px;
  }

  .h5p2 {
    height: 280px;
  }

  .k14-01 {
    width: 60px;

    left: -60px;
    bottom: 20px;
  }

  .k14-02 {
    width: 170px;

    right: 0px;
    bottom: -20px;
  }

  .k14-03 {
    width: 90px;

    left: 0px;
    bottom: 20px;
  }

  .k14-04 {
    width: 90px;

    left: 0px;
    top: 140px;
  }

  .k14-05 {
    width: 100px;

    right: 0px;
    bottom: 120px;
  }

  .k12-01 {
    width: 75px;
    right: -20px;
    bottom: -30px;
  }

  .k12-02 {
    width: 330px;
  }

  .k12-03 {
    width: 65px;

    left: -130px;
    bottom: 20px;
  }

  .k12-04 {
    width: 55px;

    right: -130px;
    bottom: 20px;
  }

  .k12-09 {
    width: 95px;
    right: -35px;
    bottom: -20px;
  }

  .k12-10 {
    width: 90px;
    left: -35px;
    bottom: -40px;
  }

  .k12-11 {
    width: 125px;

    right: -10px;
    bottom: 100px;
  }

  .k12-12 {
    width: 125px;

    left: -10px;
    bottom: 100px;
  }

  .k12-13 {
    width: 185px;

    right: -30px;
    top: 60px;
  }

  .k12-14 {
    width: 185px;

    left: -30px;
    top: 60px;
  }

  .k11-01 {
    width: 115px;

    left: 30px;
    top: 30px;
  }

  .k11-02 {
    width: 105px;
    right: 30px;
    bottom: 30px;
  }

  .k11-05 {
    width: 135px;
    right: 0px;
    top: 130px;
  }

  .k11-06 {
    width: 85px;
    right: 0px;
    bottom: 220px;
  }

  .k11-07 {
    width: 85px;
    left: 0px;
    bottom: 220px;
  }

  .k11-08 {
    width: 85px;
    left: 0px;
    bottom: -140px;
  }

  .k11-09 {
    width: 85px;
    left: -60px;
    bottom: 90px;
  }

  .k9-01 {
    width: 95px;

    left: -10px;
    bottom: 200px;
  }

  .k9-02 {
    width: 95px;
    right: 0px;
    bottom: 200px;
  }

  .w-t7 {
    width: 90%;
    margin: auto;
  }

  .k7-01 {
    width: 75px;
    right: 0px;
    bottom: -30px;
  }

  .k7-02 {
    width: 85px;
    left: 0px;
    bottom: 10px;
  }

  .k6-01 {
    width: 165px;
    right: 0px;
    bottom: 210px;
  }

  .k6-02 {
    width: 185px;
    left: -20px;
    bottom: 160px;
  }

  .k6-03 {
    width: 185px;
    right: -20px;
    bottom: 160px;
  }

  .k5-01 {
    width: 155px;
    left: 0px;
    bottom: 40px;
  }

  .k5-02 {
    width: 95px;
    right: 50px;
    top: 140px;
  }

  .k5-03 {
    width: 145px;
    left: 40px;
    top: 40px;
  }

  .k5-04 {
    width: 95px;
    right: 40px;
    top: 230px;
  }

  .k5-05 {
    width: 285px;
    right: 0px;
    bottom: 0px;
  }

  .k4-01 {
    width: 135px;
    left: 60px;
    bottom: 30px;
  }

  .k4-02 {
    width: 145px;
    right: 50px;
    bottom: 30px;
  }

  .k4-03 {
    width: 265px;
    right: 0px;
    bottom: 100px;
  }

  .k3-01 {
    width: 155px;
    left: 0px;
    bottom: 0px;
  }

  .k3-02 {
    width: 45px;
    left: 310px;
    bottom: 10px;
  }

  .k3-03 {
    width: 65px;
    right: 30px;
    top: 100px;
  }

  .k3-04 {
    width: 45px;
    left: 0px;
    bottom: 30px;
  }

  .k3-05 {
    width: 95px;
    left: 0px;
    bottom: 0px;
  }

  .k3-06 {
    width: 45px;
    left: 280px;
    bottom: 10px;
  }

  .k3-07 {
    width: 85px;
    right: 30px;
    bottom: 0px;
  }

  .k3-08 {
    width: 45px;
    left: -50px;
    bottom: 20px;
  }

  .k3-09 {
    display: block;
    width: 105px;
    position: absolute;
    left: -70px;
    bottom: 0px;
  }

  .k3-10 {
    width: 125px;
    right: 30px;
    bottom: 0px;
  }

  .k3-11 {
    width: 45px;
    left: -50px;
    bottom: 20px;
  }

  .top-k1 {
    width: 140px;
    /*right: 0px;*/
    right: -40px;
    top: -30px;
  }

  .top-k2 {
    width: 50px;
    right: 0px;
    bottom: 0px;
  }

  .top-k3 {
    width: 65px;
    left: -80px;
    bottom: -40px;
  }

  .top-k4 {
    width: 80px;
    right: 0px;
    top: 25px;
  }

  .top-k5 {
    width: 85px;
    left: -50px;
    bottom: 90px;
  }

  .top-k6 {
    width: 125px;
    top: 65px;
  }

  .top-k7 {
    width: 85px;
    bottom: 90px;
  }

  .top-k8 {
    width: 105px;
    right: 30px;
    bottom: 100px;
  }

  .k2-01 {
    width: 125px;
    left: 0px;
    top: 40px;
  }

  .k2-02 {
    width: 95px;
    right: -30px;
    top: -30px;
  }

  .h2p {
    height: 90px;
  }

  br.tab-y {
    display: none;
  }

  .fons {
    font-size: 17px;
  }

  br.pc-made {
    display: none;
  }

  br.pc-dake {
    display: block;
  }

  .ssa {
    font-size: 14px;
  }

  .r-b {
    bottom: 22px;
  }

  .m5p {
    margin-top: 60px;
  }

  .pc-wak11 {
    width: 1100px;
    margin: auto;
  }

  .inner118 {
    width: 90%;
    margin: auto;
    padding-top: 40px;
    padding-bottom: 50px;
    height: 530px;
  }

  .inner12p {
    height: 170px;
    width: 85%;
    margin: auto;
    padding-top: 30px;
    padding-bottom: 40px;
  }

  .inner12p2 {
    width: 85%;
    margin: auto;
    padding-top: 40px;
    padding-bottom: 50px;
  }

  .bg-3p1 {
    background-size: 750px;
    height: 480px;
  }

  .bg-3p2 {
    background-size: 750px;
    height: 460px;
  }

  .bg-3p12 {
    background-size: 830px;
    height: 480px;
  }

  .bg-3p22 {
    background-size: 750px;
    height: 460px;
  }

  .bg-3p13 {
    background-size: 990px;
    height: 480px;
  }

  .bg-3p23 {
    background-size: 750px;
    height: 460px;
  }

  .bg-11p1 {
    background-size: 610px;
    height: 460px;
  }

  .bg-11p9 {
    background-image: url("../img/13-photo4.png");
    background-position: right center;
    background-repeat: no-repeat;
  }

  .bg-11p92 {
    background-image: url("../img/13-photo3.png");
    background-position: right center;
    background-repeat: no-repeat;
  }

  .bg-11p9 {
    background-size: 590px;
    height: 320px;
  }

  .bg-11p92 {
    background-size: 650px;
    height: 320px;
  }

  .bg-11p2 {
    background-size: 700px;
    height: 460px;
  }

  .bg-11p3 {
    background-size: 790px;
    height: 510px;
  }

  .bg-11p4 {
    background-size: 630px;
    height: 430px;
  }

  .bg-12p2 {
    background-size: 490px;
    height: 370px;
  }

  .bg-12p1 {
    background-size: 660px;
    height: 490px;
  }

  .tab-box3p99 {
    width: 64%;
    margin-top: 50px;
  }

  .tab-box3p {
    width: 53%;
    margin-top: 40px;
  }

  .tab-box3p2 {
    width: 51%;
    margin-left: auto;
    margin-top: 30px;
  }

  .tab-box11p1 {
    width: 60%;
    margin-left: auto;
    margin-top: 30px;
  }

  .tab-box11p2 {
    width: 65%;
    margin-top: 30px;
  }

  p.ken {
    font-size: 26px;
  }

  .small-ken {
    font-size: 17px;
  }

  .kaza2p {
    width: 160px;
    margin: auto;
  }

  .tel-02 {
    width: 33%;
  }

  .size-sw {
    font-size: 19px;
  }

  .btn-width121 {
    width: 60%;
    margin: 0;
  }

  .btn-width122 {
    width: 45%;
  }

  .btn-width123 {
    width: 45%;
  }

  .btn-width124 {
    width: 45%;
  }

  .btn-width1210p {
    width: 50%;
    margin: 0;
    margin-right: auto;
  }

  .btn-width1210p2 {
    width: 35%;
  }

  .w2p1 {
    width: 40%;
    margin: 0;
  }

  .w2p2 {
    width: 50%;
    margin: 0;
    margin-top: 0px;
  }

  .pc-hd {
    width: 30%;
  }

  .f-kaza {
    width: 130px;
    bottom: 140px;
  }

  .top-box1 {
    width: 30%;
    margin: 0;
  }

  .top-box1_gaikan {
    border-radius: 1.25rem;
    width: 44%;
    box-shadow: 8px 8px 0px 0px #ebd099;
    border-radius: 10px;
  }

  .top-box2 {
    /*width: 63%;*/
    width: 50%;
    margin: 0;
    margin-top: 0px;
    margin-bottom: 0px;
  }

  .w-pc {
    width: 90%;
    margin: auto;
  }

  .box-ko1 {
    width: 31%;
    margin: 0;
  }

  .box-ko2 {
    width: 62%;
    margin: 0;
    margin-top: 0px;
  }

  .htt {
    height: 230px;
  }

  .logo-pc {
    width: 270px;
    position: absolute;
    top: 40px;
    left: 8%;
  }

  .name1 {
    width: 55%;
    right: 0;
    top: 3%;
    position: absolute;
  }

  .koment-pc {
    position: absolute;
    top: 160px;
    left: -40px;
  }

  .open9-pc {
    width: 450px;
    bottom: 20px;
    left: 50px;
  }

  .koment {
    width: 400px;
    left: 75px;
    /*top: 42%;*/
    top: 35%;
  }

  .komen2 {
    left: 50px;
    /*top: 30%;*/
    top: 23%;
  }

  .bg-pink2 {
    padding: 10px;
    padding-left: 25px;
    padding-right: 25px;
    font-size: 26px;
  }

  .small-pink {
    font-size: 23px;
  }

  .scroll {
    height: 400px;
  }

  .pc-m20 {
    margin-top: 40px;
  }

  .p-hero__ttl {
    font-size: 38px;
  }

  .p-hero__ttl2,
  .p-hero__ttl3 {
    font-size: 31px;
  }

  .m111 {
    position: absolute;
    top: 120px;
  }

  .m112 {
    position: absolute;
    top: 210px;
  }

  .pc-nomi {
    display: block;
  }

  .sp-nomi {
    display: none;
  }

  .w87 {
    margin-left: -600px;
    width: 1200px;
  }

  .w878 {
    margin-left: -600px;
    width: 1200px;
  }

  .w879 {
    margin-left: -600px;
    width: 1200px;
    position: absolute;
    top: 0;
    left: 50%;
    display: block;
  }

  .gridContainer {
    width: 1200px;
    max-width: 1920px;
    padding-left: 0.75%;
    padding-right: 0.75%;
    margin: auto;
    clear: none;
    float: none;
    margin-left: auto;
  }

  .gridContainer1400 {
    width: 1200px;
    max-width: 1920px;
    padding-left: 0.75%;
    padding-right: 0.75%;
    margin: auto;
    clear: none;
    float: none;
    margin-left: auto;
  }

  .gridContainer1400-g {
    width: 1100px;
    max-width: 1920px;
    padding-left: 0.75%;
    padding-right: 0.75%;
    margin: auto;
    clear: none;
    float: none;
    margin-left: auto;
  }

  .yo-btn {
    background-color: #002d6e;
    display: block;
    width: 100px;
    position: fixed;
    right: 0;
    top: 90px;
    z-index: 999;
  }

  .yo-tel {
    background-color: #c09b54;
    display: block;
    width: 100px;
    position: fixed;
    right: 0;
    top: 310px;
    z-index: 999;
  }

  .inner-ic1 {
    width: 60%;
    margin: auto;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .inner-ic2 {
    width: 45%;
    margin: auto;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  /*  font 
---------------------------------------*/

  p {
    font-size: 18px;
  }

  .googlepolicy {
    font-size: 18px;
  }

  .bg-green {
    background-color: #b9d988;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-right: 5px;
  }

  .inner-new {
    width: 85%;
    margin: auto;
    padding-top: 25px;
    padding-bottom: 25px;
  }

  .rya121 {
    width: 70%;
    margin: 0;
  }

  .rya121 p {
    font-size: 17px;
  }

  .rya110 p {
    font-size: 22px;
    padding-top: 60px;
  }

  ul {
    font-size: 16px;
  }

  .size-mm {
    font-size: 29px;
  }

  .size-m2 {
    font-size: 27px;
  }

  .size-s2 {
    font-size: 23px;
  }

  .size-top {
    font-size: 35px;
  }

  .size-5p {
    font-size: 24px;
  }

  .small-fa {
    font-size: 18px;
  }

  /*  hedaer
---------------------------------------*/

  .open {
    bottom: 30px;
    right: 50px;
    width: 500px;
  }

  .pc-main {
    height: 900px;
    width: 90%;
  }

  .nakami {
    height: 750px;
  }

  .open2 {
    width: 200px;
    bottom: 10px;
    right: 10px;
  }

  .ko {
    top: 150px;
  }

  .pc-dddd {
    height: 700px;
    margin-top: 150px;
  }

  /*  bg
---------------------------------------*/

  /* 　メイン画像の設定（大）
----------------------------------*/

  #bg1 {
    height: 650px;
  }

  /* 　メイン画像の設定（小)
----------------------------------*/

  #bg2 {
    height: 360px;
  }

  /*  nav 
---------------------------------------*/

  .pc-header {
    height: 145px;
  }

  .h1011 {
    height: 100px;
  }

  .menu {
    margin-top: 10px;
    width: 90%;
  }

  .menu>li a {
    font-size: 17px;
  }

  .menu>li {
    margin-left: 3.5%;
  }

  .navdrop-inner>ul li a {
    font-size: 16px;
  }

  .navdrop {
    left: -6.7em;
  }

  .pc-menu.isfixed .navdrop {
    left: -5.8em;
  }

  li.menu__mega ul.menu__second-level {
    top: 30px;
  }

  li.menu__mega2 ul.menu__second-level {
    top: 30px;
  }

  li.menu__mega3 ul.menu__second-level3 {
    top: 30px;
  }

  li.menu__mega3 ul.menu__second-level3>li a::after {
    font-size: 15px;
    padding-left: 200px;
    top: 12px;
    color: #603d22;
  }

  .hhl {
    width: 13%;
  }

  .hhr {
    width: 85%;
  }

  /*  main
---------------------------------------*/

  .w-photo3 {
    width: 91%;
    height: 700px;
  }

  .back-color3 {
    width: 91%;
    height: 700px;
  }

  .hei805 {
    height: 700px;
  }

  .h35 {
    height: 15vh;
  }

  .main {
    height: 700px;
    width: 91%;
    margin-top: 150px;
  }

  .h-main {
    height: 700px;
  }

  .h12 {
    width: 92%;
    margin-top: 150px;
  }

  .h15 {
    width: 92%;
    margin-top: 150px;
  }

  .w-photo {
    width: 92%;
  }

  .main2p {
    height: 350px;
    margin-top: 150px;
    width: 95%;
    background-size: contain;
  }

  .h1-area {
    height: 350px;
  }

  h1.sub2 {
    font-size: 32px;
    top: 30%;
  }

  .h-main2 {
    height: 300px;
  }

  h1 {
    font-size: 14px;
  }

  .title-t {
    border-bottom: solid #002d6e 1px;
    position: absolute;
    right: 120px;
    top: 89px;
  }

  .kannsen {
    width: 450px;
    bottom: -30px;
    left: 0;
    position: absolute;
  }

  .bg-gray2 {
    position: absolute;
    right: -70px;
    bottom: -30px;
    width: 600px;
  }

  .h-tab-b {
    height: 40px;
  }

  .small-f {
    font-size: 20px;
  }

  .size-l {
    font-size: 47px;
  }

  .size-l-title {
    font-size: 47px;
  }

  .size-ll {
    font-size: 30px;
  }

  .size-l2 {
    font-size: 25px;
  }

  .size-l9 {
    font-size: 28px;
  }

  .size-l2p {
    font-size: 35px;
  }

  .size-l2p99 {
    font-size: 31px;
  }

  .pc-w80 {
    width: 100%;
    margin: auto;
  }

  .contact-table {
    width: 85%;
    margin: auto;
  }

  table.contact-table {
    margin-top: 30px;
  }

  .contact-item {
    width: 25%;
  }

  ul.b3 {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  ul.b3 li {
    font-size: 18px;
  }

  .w909 {
    width: 92%;
    margin: auto;
  }

  .input-text {
    width: 35%;
  }

  .input-text1 {
    width: 75%;
  }

  .input-text2 {
    width: 85%;
  }

  .input-button {
    font-size: 18px;
  }

  .input-button {
    width: 145px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  table.form1 td,
  table.form1 th {
    padding: 30px;
    font-size: 18px;
  }

  ul.bu2 {
    width: 300px;
    margin: auto;
    margin-top: 0px;
    margin-bottom: 30px;
  }

  table.contact-table th {
    font-size: 18px;
  }

  .color-red {
    font-size: 18px;
  }

  .color-r {
    color: #d94742;
  }

  .m4 {
    margin-bottom: 20px;
    font-size: 17px;
  }

  .font {
    font-size: 18px;
  }

  /*  content
---------------------------------------*/

  .w80 {
    width: 800px;
    margin: 0 auto;
    margin-top: 20px;
  }

  .space-top {
    padding-top: 10px;
  }

  .m50-top {
    margin-top: 90px;
  }

  ba.pc-da {
    display: block;
  }

  /*  1p 
------------------------------*/

  .num {
    top: -7px;
    width: 50px;
    margin-left: -25px;
  }

  .white-box2 {
    width: 70%;
    margin-left: 37%;
  }

  .bun1 {
    width: 20%;
  }

  .bg-kon2 {
    width: 60%;
    bottom: 70px;
  }

  .size-s99 {
    font-size: 20px;
  }

  .size-s-top {
    font-size: 23px;
  }

  .big2 {
    font-size: 29px;
  }

  .size-m {
    font-size: 29px;
  }

  .size-ma {
    font-size: 35px;
  }

  .size-ma2 {
    font-size: 28px;
  }

  .size-b {
    font-size: 28px;
  }

  .size-m-top {
    font-size: 33px;
  }

  .area1 {
    width: 10%;
  }

  .area2 {
    width: 45%;
  }

  .area3 {
    width: 57%;
  }

  .area22 {
    width: 88%;
    margin-left: 5%;
  }

  .reaf1 {
    width: 40px;
    top: auto;
    bottom: 6px;
    left: 5px;
  }

  .reaf2 {
    width: 40px;
    top: auto;
    bottom: 6px;
    right: 5px;
  }

  .logo-t1 {
    width: 210px;
    top: -90px;
    margin-left: -105px;
  }

  .h100 {
    height: 100px;
  }

  .title {
    font-size: 30px;
  }

  .title-s {
    font-size: 20px;
  }

  .btn99 a {
    font-size: 20px;
    padding-bottom: 15px;
    padding-left: 50px;
    padding-right: 80px;
  }

  .btn3 a {
    font-size: 20px;
    padding-bottom: 15px;
    padding-left: 50px;
    padding-right: 80px;
  }

  .btn3-2 a {
    font-size: 20px;
    padding-bottom: 15px;
    padding-left: 50px;
    padding-right: 80px;
  }

  .btn4 a {
    font-size: 20px;
    padding-bottom: 15px;
    padding-left: 20px;
  }

  .btn4-2 a {
    font-size: 20px;
    padding-bottom: 15px;
    padding-left: 50px;
    padding-right: 80px;
  }

  .btn5 a {
    font-size: 20px;
    padding-bottom: 15px;
    padding-left: 50px;
    padding-right: 80px;
  }

  .btn3 a::after,
  .btn3-2 a::after,
  .btn4 a::after,
  .btn4-2 a::after,
  .btn5 a::after {
    position: absolute;
    top: 22%;
    right: 2.6rem;
    font-size: 20px;
  }

  .w1 {
    width: 50%;
  }

  .w2 {
    width: 50.5%;
    height: 402px;
  }

  .w2-blue {
    width: 50%;
    height: 404px;
  }

  .w2-yellow {
    width: 50%;
    height: 403px;
  }

  .inner3 {
    padding-top: 60px;
  }

  .bot-top2 {
    position: absolute;
    bottom: 60px;
    left: 0;
    right: 0;
  }

  br.tab2 {
    display: none;
  }

  .wake3 {
    margin-top: 10px;
  }

  .inner4 {
    width: 250px;
    margin: auto;
    padding-top: 20px;
  }

  p.bule-title {
    font-size: 27px;
  }

  table.hyou {
    font-size: 20px;
  }

  .list-table {
    font-size: 20px;
  }

  .list-table2 {
    font-size: 20px;
  }

  p.small-top {
    font-size: 17px;
  }

  p.size-h {
    font-size: 22px;
  }

  p.size-b a {
    font-size: 18px;
  }

  p.size-b9 {
    font-size: 18px;
  }

  .box7p {
    width: 65%;
  }

  .w7p1,
  .w7p2 {
    font-size: 30px;
  }

  .bosyu {
    width: 40%;
    margin-top: 50px;
  }

  .logo-s {
    width: 160px;
    top: -45px;
    margin-left: -80px;
  }

  .logo-s3p {
    width: 160px;
    top: -45px;
    margin-left: -80px;
  }

  .logo-s6p {
    width: 160px;
    top: 0px;
    margin-left: -80px;
  }

  h2 {
    font-size: 34px;
  }

  h2.dot-title {
    padding-top: 0;
    font-size: 30px;
  }

  h2.dot-title::after {
    width: 30px;
    padding-left: 25px;
    top: -5px;
  }

  h2.dot-title::before {
    width: 30px;
    margin-left: -55px;
    top: -5px;
  }

  h2.dot-title2 {
    padding-top: 0;
    font-size: 30px;
  }

  h2.dot-title2::after {
    width: 30px;
    padding-left: 25px;
    top: -5px;
  }

  h2.dot-title2::before {
    width: 30px;
    margin-left: -55px;
    top: -5px;
  }

  .small-t {
    font-size: 16px;
  }

  .small-tb {
    font-size: 16px;
  }

  h3 {
    font-size: 28px;
  }

  .t1 {
    width: 31%;
    margin-bottom: 20px;
  }

  .n1 {
    width: 100px;
    margin-left: -50px;
    top: -50px;
  }

  .inner {
    width: 80%;
    margin: auto;
    padding-top: 75px;
    padding-bottom: 50px;
  }

  .inner99 {
    width: 85%;
    margin: auto;
    padding-top: 25px;
    padding-bottom: 50px;
  }

  .name99 {
    width: 60%;
    margin-bottom: 45px;
  }

  .w4p3 {
    width: 450px;
  }

  .nen {
    width: 12%;
  }

  .naiyou {
    width: 85%;
    text-align: left;
  }

  .kazari1 {
    width: 140px;
    top: 10px;
    right: -80px;
  }

  .kazari2 {
    width: 250px;
    bottom: -120px;
    left: -50px;
  }

  .kazari4 {
    width: 250px;
    left: -50px;
    top: 70px;
  }

  .kazari5 {
    width: 200px;
    bottom: -20px;
    right: -50px;
  }

  .kazari6 {
    width: 270px;
    left: -60px;
    top: 1500px;
  }

  .kazari7 {
    width: 170px;
    top: 450px;
    left: -20px;
  }

  .kazari8 {
    width: 220px;
    bottom: 0px;
    right: -100px;
  }

  .btn-width {
    width: 260px;
  }

  .btn-width-left {
    width: 260px;
  }

  .inner191 {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .inner1910p2 {
    padding-top: 10px;
    padding-bottom: 50px;
  }

  .inner191b {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .b-boder {
    font-size: 21px;
  }

  .b-boder2 {
    font-size: 21px;
  }

  .w111 {
    width: 60%;
    margin: auto;
  }

  /*  2p 
------------------------------*/

  .flow1 {
    width: 80px;
  }

  .flow2 {
    width: 82%;
  }

  .btn-width2 {
    width: 250px;
  }

  .btn-width2p99 {
    width: 250px;
  }

  .white-box {
    padding-top: 25px;
    padding-bottom: 25px;
    line-height: 1.5;
    font-size: 25px;
  }

  .box2p1 {
    width: 35%;
  }

  .w-photo2 {
    height: 30vh;
  }

  .back-color2 {
    height: 30vh;
  }

  .hei802 {
    height: 30vh;
  }

  .box2p2 {
    width: 54%;
    margin: 0;
    margin-top: 0px;
  }

  ul.bxslider02 {
    width: 1099px;
  }

  .irast2-1 {
    width: 390px;
    top: -155px;
    margin-left: -195px;
  }

  .mt2 {
    margin-top: 100px;
  }

  .c-tel {
    width: 45%;
  }

  .h170 {
    height: 180px;
  }

  .bg-white4 {
    background-size: 350px;
  }

  .size-s-ear {
    font-size: 27px;
  }

  .inner2p {
    width: 75%;
    margin: auto;
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .inner2p9p {
    width: 85%;
    margin: auto;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .inner2p9p1 {
    width: 92%;
    margin: auto;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .inner2p99 {
    width: 76%;
    margin: auto;
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .w2p2p {
    width: 99%;
    margin: auto;
  }

  /*  3p 
------------------------------*/

  .inner3p {
    width: 76%;
    padding-top: 70px;
    padding-bottom: 60px;
  }

  .irast3-1 {
    width: 260px;
    top: -160px;
    margin-left: -130px;
  }

  .mt3 {
    margin-top: 50px;
  }

  .bg-kon-d {
    font-size: 45px;
    line-height: 1.2;
    width: 550px;
    margin: auto;
    padding-top: 0px;
    padding-bottom: 25px;
  }

  .bg-kon-d:before {
    width: 28px;
    bottom: 20px;
    left: 55px;
    transition: 0.5s;
  }

  .small3 {
    font-size: 23px;
  }

  .size-3p {
    font-size: 25px;
  }

  /*  4p 
------------------------------*/

  table.ten-da {
    font-size: 18px;
  }

  .inner4p {
    width: 93%;
    padding-top: 70px;
    padding-bottom: 80px;
  }

  .nen {
    width: 20%;
  }

  .w4p1 {
    width: 30%;
  }

  .w4p2 {
    width: 65%;
  }

  .name {
    width: 70%;
  }

  /*  price
---------------------------*/

  .pc-mode-99 {
    display: block;
  }

  .sp-mode4 {
    display: none;
  }

  .in-p {
    font-size: 27px;
  }

  .th-pink {
    font-size: 20px;
    padding: 10px 25px;
  }

  .td-pink {
    font-size: 18px;
    padding: 10px 35px;
  }

  .th-tax {
    font-size: 20px;
  }

  .th-tax-s {
    font-size: 14px;
  }

  .td-tax {
    font-size: 20px;
  }

  .td-tax-s {
    font-size: 17px;
  }

  .calc-title {
    font-size: 22px;
  }

  .calc-title-l {
    font-size: 27px;
  }

  .calc-title-ll {
    font-size: 30px;
  }

  .calc-title-s {
    font-size: 13px;
    padding: 2% 1%;
  }

  .calc-pc-space {
    margin-top: 2%;
  }

  .w20 {
    width: 60%;
  }

  .calc-symbol-space {
    margin-top: 3%;
  }

  .deduction-dt {
    height: 6rem;
    padding: 1em;
  }

  .deduction-dt02 {
    height: 6rem;
    padding: 1.8em 1em;
  }

  .deduction-dt03 {
    height: 6rem;
    padding: 0.5em;
  }

  .calc-text {
    font-size: 16px;
  }

  .calc-symbol {
    width: 2%;
    padding: 4% 2%;
    float: left;
  }

  .calc-symbol img {
    width: 75%;
  }

  .formula01 {
    padding-top: 1.5%;
    padding-left: 0.5%;
  }

  .formula02 {
    padding-top: 1.5%;
    padding-left: 0.5%;
  }

  .br-tab::before {
    content: "";
  }

  .circle-pink {
    width: 14em;
    height: 14em;
    margin-left: 24px;
    padding: 15px;
  }

  .circle01 {
    width: 4.7em;
    font-size: 41.73px;
    margin-top: 5px;
  }

  .circle02 {
    font-size: 30.45px;
  }

  .circle03 {
    font-size: 23.69px;
    padding-top: 10px;
  }

  .circle04 {
    font-size: 31px;
  }

  .circle05 {
    font-size: 24px;
  }

  .circle-img img {
    width: 130px;
    top: 30px;
    left: -40px;
  }

  table.ten7 {
    font-size: 19px;
  }

  ul.bunkatu2-10 {
    width: 800px;
  }

  p.bg-pink7 a,
  p.bg-green7 a {
    font-size: 23px;
  }

  .b4p {
    font-size: 15px;
    width: 100%;
  }

  .box-naka2 p {
    font-size: 17px;
  }

  .box-naka3 p {
    font-size: 15px;
  }

  .box-naka5 p {
    font-size: 17px;
  }

  .box-naka6 p {
    font-size: 15px;
  }

  .box1,
  .box2 {
    height: 130px;
  }

  .box3,
  .box4 {
    height: 9rem;
    display: table;
    width: 100%;
  }

  .eqol-body {
    height: 130px;
  }

  .eqol-body2 {
    height: 9rem;
  }

  .box-naka1 {
    margin-top: 7px;
    width: 60%;
  }

  .box-naka2 {
    padding-left: 7px;
    padding-top: 8px;
  }

  .box-naka3 {
    padding-left: 12px;
    width: 29%;
  }

  .box-naka4 {
    margin-top: 7px;
    width: 60%;
  }

  .box-naka5 {
    padding-top: 8px;
    padding-left: 8px;
  }

  .box-naka6 {
    width: 19%;
  }

  .size-t {
    font-size: 26px;
  }

  .size-sss {
    font-size: 13px;
  }

  .case-left {
    width: 43%;
    margin: auto;
  }

  .case-right {
    width: 90%;
    margin-top: 60px;
  }

  .kon-box1 {
    font-size: 20px;
  }

  .size-pay {
    font-size: 20px;
  }

  .box4p1 {
    width: 28%;
    margin: 0;
  }

  .box4p2 {
    width: 65%;
    margin-top: 0px;
  }

  /*  スライダー
--------------------------------*/
  #slides {
    display: none;
  }

  #slider {
    overflow: hidden;
    position: relative;
    width: 100%;
    display: block;
  }

  #sliderInner {
    position: relative;
    left: 50%;
    width: 4840px;
    margin-left: -2420px;
  }

  #sliderInner li {
    width: 1200px;
  }

  /*  table（求人募集）
----------------------------------*/

  .kyujin {
    font-size: 18px;
  }

  .kyujin p {
    font-size: 18px;
  }

  .kyujin th {
    font-size: 21px;
    padding: 40px;
  }

  .kyujin td {
    padding: 40px;
  }

  .kyujin th {
    width: 19%;
  }

  .kyujin td {
    width: 80%;
  }

  /*  table（分割２）
----------------------------------*/

  table.ka {
    font-size: 16px;
  }

  /*  footer 
---------------------------------------*/

  ul.bun2 li {
    width: 40%;
    margin-left: 2%;
  }

  ul.bun2 li:first-child {
    margin-left: 0%;
    clear: both;
    width: 53%;
  }

  ul.bun2 li:nth-child(3) {
    margin-left: 0%;
    clear: both;
    width: 53%;
  }

  ul.bun2 li:nth-child(5) {
    margin-left: 0%;
    clear: both;
    width: 53%;
  }

  ul.bun2 li:nth-child(7) {
    margin-left: 0%;
    clear: both;
    width: 53%;
  }

  ul.bun2 li:nth-child(9) {
    margin-left: 0%;
    clear: both;
    width: 53%;
  }

  ul.bun2 li:nth-child(11) {
    margin-left: 0%;
    clear: both;
    width: 53%;
  }

  .inner-footer {
    width: 80%;
    margin: auto;
  }

  .inner-footer2 {
    width: 85%;
    margin: auto;
  }

  .footer1 {
    width: 17.5%;
  }

  .footer2 {
    width: 18.5%;
  }

  .footer3 {
    width: 25%;
  }

  .footer4 {
    margin-top: 0px;
    width: 39%;
    box-sizing: border-box;
  }

  .kkk p.copy {
    font-size: 13px;
  }

  .fl {
    width: 47%;
  }

  .fr {
    width: 40%;
  }

  .tel-f a {
    color: #333333;
    font-size: 40px;
    letter-spacing: 2px;
    line-height: 1.5;
    margin: 0;
  }

  .tel-f2 a {
    font-size: 40px;
    letter-spacing: 2px;
    line-height: 1.5;
    margin: 0;
  }

  ul.site {
    width: 75%;
    margin: auto;
    margin-top: 30px;
    margin-bottom: 80px;
  }

  ul.site2 {
    width: 75%;
    margin: auto;
    margin-top: 30px;
    margin-bottom: 80px;
  }

  .f-logo2 {
    width: 500px;
  }

  .f-logo {
    width: 75%;
    margin-bottom: 20px;
  }

  .small {
    font-size: 18px;
  }

  ul.bunkatu2-2 {
    width: 500px;
    margin: auto;
  }

  ul.sit li a {
    font-size: 14px;
  }

  ul.sit2 li a {
    font-size: 14px;
  }

  .size-ss {
    font-size: 16px;
  }

  /*  googlemap枠
----------------------------------*/

  .ggmap {
    padding-bottom: 38%;
  }

  .zeroMargin_desktop {
    margin-left: 0;
  }

  .hide_desktop {
    display: none;
  }

  /* 20230123 */
  /*   footer
--------------------------------------- */
  .footer__pdf {
    width: 90%;
    font-size: 1em;
    padding: 0.4rem 0.4rem;
  }

  /* 20230425 */
  /*  doctor
--------------------------------------- */
  .doctor-director__introduction__title {
    font-size: 1.5rem;
  }

  .doctor-director__introduction__text ul {
    font-size: 1.0625rem;
  }
}

@media only screen and (min-width: 1399px) {
  .k3-03 {
    width: 75px;
    right: -80px;
    top: 100px;
  }

  .bg-3p1 {
    background-size: 950px;
    height: 480px;
  }

  .bg-3p2 {
    background-size: 950px;
    height: 460px;
  }

  .bg-3p12 {
    background-size: 950px;
    height: 480px;
  }

  .bg-3p22 {
    background-size: 950px;
    height: 460px;
  }

  .bg-3p13 {
    background-size: 1050px;
    height: 480px;
  }

  .bg-3p23 {
    background-size: 950px;
    height: 460px;
  }

  .bg-11p1 {
    background-size: 750px;
    height: 500px;
  }

  .bg-11p9 {
    background-size: 700px;
    height: 350px;
  }

  .bg-11p92 {
    background-size: 730px;
    height: 330px;
  }

  .tab-box3p99 {
    margin-top: 70px;
  }

  .bg-11p2 {
    background-size: 770px;
    height: 500px;
  }

  .bg-11p3 {
    background-size: 850px;
    height: 510px;
  }

  .bg-11p4 {
    background-size: 830px;
    height: 430px;
  }

  .bg-12p1 {
    background-size: 860px;
    height: 520px;
  }

  .bg-12p2 {
    background-size: 690px;
    height: 370px;
  }

  .gridContainer1400 {
    width: 1400px;
    max-width: 1920px;
    padding-left: 0.75%;
    padding-right: 0.75%;
    margin: auto;
    clear: none;
    float: none;
    margin-left: auto;
  }

  .gridContainer1400-g {
    width: 1400px;
    max-width: 1920px;
    padding-left: 0.75%;
    padding-right: 0.75%;
    margin: auto;
    clear: none;
    float: none;
    margin-left: auto;
  }

  /*  nav 
---------------------------------------*/

  .menu {
    margin-top: 10px;
    width: 89%;
  }

  .pc-menu-inner {
    max-width: 1450px;
  }

  .menu>li a {
    font-size: 17px;
  }

  .menu>li {
    margin-left: 4.5%;
  }

  li.menu__mega3 ul.menu__second-level3>li a::after {
    font-size: 15px;
    padding-left: 230px;
    top: 14px;
    color: #603d22;
  }

  .header-logo {
    width: 21%;
    margin-left: 2rem;
  }

  .square-tel {
    width: 3.5rem;
    height: 3.5rem;
    padding: 0.3rem 0.2rem;
    border-radius: 10px;
    margin-left: 2%;
    margin-right: 2.5rem;
  }

  .big2 {
    font-size: 38px;
  }

  .size-m-top {
    font-size: 38px;
  }

  .bg-kon2 {
    width: 1000px;
  }

  .kazari6 {
    width: 320px;
    left: -20px;
    top: 1500px;
  }

  .hhl {
    width: 15%;
  }

  .hhr {
    width: 80%;
  }

  .main2p {
    height: 450px;
    margin-top: 150px;
    width: 92%;
    background-size: contain;
  }

  .h1-area {
    height: 450px;
  }

  /* 20230123 */
  /*   footer
--------------------------------------- */
  .footer__pdf {
    gap: 1.5em;
  }
}

@media only screen and (min-width: 1599px) {
  .w878 {
    margin-left: -550px;
  }

  /* 20230425 */
  /*  doctor
--------------------------------------- */
  .doctor-director__introduction__title {
    font-size: 1.655rem;
  }

  .doctor-director__introduction__text ul {
    font-size: 1.125rem;
  }
}