@charset "UTF-8";
:root {
  --font_family: "Noto Sans JP", sans-serif;
  --main_font_color: #335467;
  --white: #FFFFFF;
  --green: #4DAE51;
  --bg_green: #E3F4CD;
  --bg_blue: #CDE8F4;
  --bg_blue_2: #D5F4F5;
  --bg_blue_3: #EDFAFA;
  --bg_blue_4: #E9F3F5;
  --border_color: #B9E9EE;
  --blue: #2F96AD;
  --bg_yellow: #F8F0C3;
  --yellow: #B8A74A;
  --orange: #EE8E49;
  --bg_orange: #F4E2CD;
  --pink: #C670D3;
  --bg_pink: #F4D9D9;
  --red: #674733;
  --box_shadow: 2px 2px 10px rgba(47, 150, 173, .3);
}

/* flexの基本の形 */
.flex_basic, footer .f_footer ul, footer .f_footer, footer .f_center ul, footer .f_head, .photo_gallery .right ul li a, .photo_gallery .right ul, .photo_gallery h2, .photo_gallery, .news_list ul li a strong, .news_list ul li a, #news .right .tab, .icon_lock, section, header .child .midashi a, header nav > ul, header .h_wrap .up .tel div, header .h_wrap .up, header .h_wrap, .icon_link {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* gideの基本の形 */
.grid_basic, footer .link_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

* {
  padding: 0;
  margin: 0;
}

html {
  font-size: 62.5%;
}

body {
  position: relative;
  font-family: var(--font_family);
  color: var(--main_font_color);
  font-size: 1.6rem;
  font-weight: 500;
  width: 100svw;
  overflow-x: hidden;
}
body.on {
  overflow: hidden;
  height: 100svh;
}
@media screen and (max-width: 1240px) {
  body {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 750px) {
  body {
    font-size: 3.7333333333vw;
    line-height: 1.5;
  }
}

h2 {
  font-size: 3.2rem;
}
@media screen and (max-width: 750px) {
  h2 {
    font-size: 6.4vw;
  }
}

.blue {
  color: var(--blue);
}

.green {
  color: var(--green);
}

.yellow {
  color: var(--yellow);
}

.pink {
  color: var(--pink);
}

.orange {
  color: var(--orange);
}

strong {
  font-weight: 600;
}

img {
  vertical-align: middle;
}

ul, ol {
  list-style: none;
}

.pc {
  display: block !important;
}

.pc_flex {
  display: flex !important;
}

.sp,
.sp_flex {
  display: none !important;
}

@media screen and (max-width: 750px) {
  .pc,
  .pc_flex {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
  .sp_flex {
    display: flex !important;
  }
}
.icon_link::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-left: 5px;
  background: url(../img/icon_link.svg) no-repeat center;
  background-size: 100% auto;
}
@media screen and (max-width: 750px) {
  .icon_link::after {
    width: 3.2vw;
    height: 3.2vw;
    margin-left: 1.3333333333vw;
  }
}

/* wrapper */
#wrapper {
  opacity: 0;
}
#wrapper.show {
  opacity: 1;
  height: auto;
  overflow: visible;
  transition: opacity 0.8s;
}

/* aタグ関連 */
a {
  color: var(--main_font_color);
  text-decoration: none;
}

.icon_arrow_down {
  display: flex;
  align-items: center;
}

.icon_arrow_down::after {
  content: "";
  display: block;
  width: 10px;
  height: 6px;
  margin-left: 8px;
  background: url(../img/arrow_down.svg) no-repeat center;
  width: 100% auto;
  transition: transform 0.5s;
}

.hover_line {
  position: relative;
  display: inline-block;
  transition: color 0.5s;
}

.hover_line::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  background: var(--blue);
  transition: transform 0.8s cubic-bezier(0.2, 0, 0.2, 1) 0s, opacity 0.5s;
  transform: scale(0, 1);
  transform-origin: right top;
}

.hover_line:hover {
  color: var(--blue);
}

.hover_line:hover::before {
  opacity: 1;
  transform-origin: left top;
  transform: scale(1, 1);
}

.link_next, .link_download {
  display: flex;
  align-items: center;
  font-size: 20px;
  color: var(--blue);
}
.link_next::after, .link_download::after {
  content: "";
  display: block;
  width: 22px;
  min-width: 22px;
  height: 22px;
  margin-left: 5px;
  border-radius: 50px;
  overflow: hidden;
  background: var(--blue) url(../img/link_next.svg) repeat-x center right;
  background-size: 100% auto;
}
.link_next:hover::after, .link_download:hover::after {
  animation: arrow_animation 2s infinite;
}
@media screen and (max-width: 750px) {
  .link_next, .link_download {
    font-size: 5.3333333333vw;
  }
  .link_next:hover::after, .link_download:hover::after {
    animation: arrow_animation_sp 2s infinite;
  }
  .link_next::after, .link_download::after {
    min-width: 5.8666666667vw;
    width: 5.8666666667vw;
    height: 5.8666666667vw;
    margin-left: 1.3333333333vw;
  }
}

@keyframes arrow_animation {
  0% {
    background-position: center right;
  }
  30% {
    background-position: center right -22px;
  }
  100% {
    background-position: center right -22px;
  }
}
@keyframes arrow_animation_sp {
  0% {
    background-position: center right;
  }
  30% {
    background-position: center right -5.8666666667vw;
  }
  100% {
    background-position: center right -5.8666666667vw;
  }
}
.link_download {
  min-width: 260px;
}
.link_download::after {
  margin-left: auto;
  background: var(--blue) url(../img/icon_downroad.svg) repeat-y center right;
  background-size: 100% auto;
}
.link_download:hover::after {
  animation: arrow_animation_down 2s infinite;
}
@media screen and (max-width: 750px) {
  .link_download {
    min-width: 69.3333333333vw;
  }
  .link_download:hover::after {
    animation: arrow_animation_down_sp 2s infinite;
  }
}

@keyframes arrow_animation_down {
  0% {
    background-position: center bottom;
  }
  30% {
    background-position: center bottom -22px;
  }
  100% {
    background-position: center bottom -22px;
  }
}
@keyframes arrow_animation_down_sp {
  0% {
    background-position: center bottom;
  }
  30% {
    background-position: center bottom -5.8666666667vw;
  }
  100% {
    background-position: center bottom -5.8666666667vw;
  }
}
.link_left {
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  margin-bottom: 0.8em;
  padding-left: 5px;
  gap: 5px;
}
.link_left::before {
  content: "";
  display: block;
  width: 8px;
  height: 10px;
  background: url(../img/icon_arrow_right.svg) no-repeat center;
  background: 100% auto;
}
@media screen and (max-width: 750px) {
  .link_left {
    font-size: 3.7333333333vw;
    padding-left: 1.3333333333vw;
    gap: 1.3333333333vw;
  }
  .link_left::before {
    width: 2.1333333333vw;
    height: 2.6666666667vw;
  }
}

/* header */
header {
  position: fixed;
  top: 0;
  left: 0;
  background: var(--white);
  width: 100%;
  box-sizing: border-box;
  z-index: 100;
  transition: box-shadow 0.5s;
}
header.on {
  box-shadow: var(--box_shadow);
}
header .h_wrap {
  padding: 0 40px;
}
header .h_wrap .h_head #btn_menu {
  display: none;
}
@media screen and (max-width: 1240px) {
  header .h_wrap .h_head #text_logo {
    position: fixed;
    top: 20px;
    left: 40px;
  }
  header .h_wrap .h_head #text_logo img {
    width: 250px;
  }
}
header .h_wrap .gnav {
  display: block;
  margin-top: 15px;
}
header .h_wrap .gnav nav > ul {
  justify-content: flex-end;
}
header .h_wrap .up {
  justify-content: flex-end;
  margin-bottom: 10px;
}
header .h_wrap .up .tel div {
  margin-left: 30px;
  gap: 10px;
}
header .h_wrap .up .tel div span {
  width: block;
  padding: 3px 10px;
  border-radius: 4px;
  background: var(--bg_blue_4);
}
header .h_wrap .up .tel div strong {
  font-size: 24px;
}
header .h_wrap .up nav {
  font-size: 1.4rem;
}
header .h_wrap .up nav ul {
  gap: 20px;
}
header nav > ul .parent {
  padding: 0 10px 15px;
}
header nav > ul .parent:last-child {
  padding-right: 0;
}
header .child {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 96px;
  left: 0;
  width: 100%;
  min-height: 170px;
  padding: 0 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 1px solid var(--border_color);
  box-sizing: border-box;
  background: var(--white);
  box-shadow: 2px 5px 5px rgba(47, 150, 173, 0.3);
  z-index: 1;
}
header .child .midashi {
  padding-right: 30px;
  margin-right: 30px;
  border-right: 1px solid var(--border_color);
}
header .child .midashi a {
  flex-direction: column;
}
header .child .midashi a:hover .link_next::after, header .child .midashi a:hover .link_download::after {
  animation: arrow_animation 2s infinite;
}
header .child .midashi a:hover .hover_line::before {
  opacity: 1;
  transform-origin: left top;
  transform: scale(1, 1);
}
header .child .midashi a img {
  width: 70px;
  margin-bottom: 5px;
}
header .child .midashi a span {
  display: block;
  text-align: center;
  font-size: 1.8rem;
}
header .child table td {
  padding: 5px 40px 5px 0;
}
header .child table td a {
  font-size: 1.6rem !important;
  margin-bottom: 0 !important;
}
@media screen and (min-width: 751px) {
  header .parent:hover > .icon_arrow_down .hover_line {
    color: var(--blue);
    cursor: pointer;
  }
  header .parent:hover > .icon_arrow_down .hover_line::before {
    opacity: 1;
    transform-origin: left top;
    transform: scale(1, 1);
  }
  header .parent:hover > .icon_arrow_down::after {
    transform: rotate(180deg);
  }
  header .parent:hover .child {
    visibility: visible;
    opacity: 1;
  }
}
@media screen and (max-width: 750px) {
  header {
    padding: 0;
  }
  header .h_wrap {
    height: auto;
    padding: 0;
  }
  header .h_wrap .h_head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    padding: 0 5.3333333333vw;
    height: 18.6666666667vw;
    background: var(--white);
    position: relative;
    border-bottom: 3px solid var(--white);
    z-index: 5;
  }
  header .h_wrap .h_head.on {
    border-bottom: 3px solid var(--bg_blue);
  }
  header .h_wrap .h_head #text_logo {
    position: relative;
    left: 0;
    top: 0;
  }
  header .h_wrap .h_head #text_logo a {
    display: block;
  }
  header .h_wrap .h_head #text_logo a img {
    width: auto;
    height: 6.4vw;
  }
  header .h_wrap .h_head #btn_menu {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 6.6666666667vw;
    height: 4vw;
    cursor: pointer;
  }
  header .h_wrap .h_head #btn_menu::before, header .h_wrap .h_head #btn_menu::after {
    content: "";
  }
  header .h_wrap .h_head #btn_menu::before, header .h_wrap .h_head #btn_menu::after,
  header .h_wrap .h_head #btn_menu span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--main_font_color);
    transition: all 0.5s;
  }
  header .h_wrap .h_head #btn_menu.on span {
    opacity: 0;
    transform: translateX(13.3333333333vw);
  }
  header .h_wrap .h_head #btn_menu.on::before {
    transform: translateY(1.6vw) rotate(135deg);
  }
  header .h_wrap .h_head #btn_menu.on::after {
    transform: translateY(-1.8666666667vw) rotate(-135deg);
  }
  header .h_wrap .gnav {
    opacity: 0;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 18.6666666667vw;
    right: 0;
    width: 100%;
    height: calc(100vh - 18.6666666667vw);
    height: calc(100svh - 18.6666666667vw);
    margin: 0;
    padding: 0;
    background: var(--white);
    overflow-x: hidden;
    overflow-y: scroll;
    box-sizing: border-box;
    border-top: 1px solid var(--bg_blue);
    z-index: 3;
    transition: opacity 0.5s;
  }
  header .h_wrap .gnav.on {
    opacity: 1;
    pointer-events: all;
  }
  header .h_wrap .gnav .up {
    order: 2;
  }
  header nav > ul {
    flex-direction: column;
    align-items: flex-start;
  }
  header nav > ul li {
    width: 100%;
    border-bottom: 2px solid var(--bg_blue);
    font-size: 4.2666666667vw;
  }
  header nav > ul li.link {
    background: url(../img/icon_arrow_right.svg) no-repeat right 4vw center;
    background-size: 3.2vw auto;
  }
  header nav > ul li .hover_line {
    display: block;
    padding: 4vw;
  }
  header nav > ul li .hover_line::before {
    display: none;
  }
  header nav > ul li .icon_arrow_down {
    display: block;
  }
  header nav > ul li .icon_arrow_down::after {
    display: none;
  }
  header nav > ul .parent {
    padding: 0;
  }
  header nav > ul .parent > a {
    display: block;
    position: relative;
    cursor: pointer;
  }
  header nav > ul .parent > a::before, header nav > ul .parent > a::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 2.6666666667vw;
    margin: auto 0;
    display: block;
    width: 5.3333333333vw;
    height: 2px;
    background: var(--main_font_color);
    transition: all 0.5s;
  }
  header nav > ul .parent > a::after {
    transform: rotate(90deg);
  }
  header nav > ul .parent > a.on::before {
    opacity: 0;
    transform: translateX(5.3333333333vw);
  }
  header nav > ul .parent > a.on::after {
    transform: rotate(360deg);
  }
  header nav > ul .parent .child {
    display: none;
    position: relative;
    visibility: visible;
    opacity: 1;
    top: 0;
    left: 0;
    flex-direction: column;
    padding: 0;
    box-shadow: none;
    border-top: none;
    min-height: 0;
  }
  header nav > ul .parent .child .midashi {
    display: none;
  }
  header nav > ul .parent .child table {
    width: 100%;
    padding-left: 2.6666666667vw;
    box-sizing: border-box;
  }
  header nav > ul .parent .child table tr, header nav > ul .parent .child table th, header nav > ul .parent .child table td {
    display: block;
    padding: 0;
  }
  header nav > ul .parent .child table td {
    margin-bottom: 1em;
  }
  header nav > ul .parent .child table td a {
    font-size: 3.7333333333vw !important;
  }
  header nav > ul .parent .child table td a span {
    padding: 0 !important;
  }
  header .gnav .up {
    flex-direction: column;
  }
  header .gnav .up nav {
    width: 100%;
    font-size: 4.2666666667vw;
  }
  header .gnav .up nav ul {
    gap: 0;
  }
  header .gnav .tel {
    width: calc(100% - 5.3333333333vw);
    margin: 5.3333333333vw auto 16vw;
    padding: 2.6666666667vw 5.3333333333vw;
    border: 2px solid var(--bg_blue);
    border-radius: 2.6666666667vw;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  header .gnav .tel p {
    font-size: 4.2666666667vw;
    margin-bottom: 0;
  }
  header .gnav .tel div {
    margin-left: 0 !important;
  }
  header .gnav .tel div span {
    padding: 0 2.6666666667vw !important;
    font-size: 4.2666666667vw;
  }
  header .gnav .tel div strong {
    font-size: 5.3333333333vw !important;
  }
}

/* main */
main {
  width: 100%;
  box-sizing: border-box;
}

header,
main,
footer {
  box-sizing: border-box;
}
@media screen and (max-width: 1000px) {
  header,
  main,
  footer {
    width: 1000px;
  }
}
@media screen and (max-width: 750px) {
  header,
  main,
  footer {
    width: 100%;
  }
}

/* section設定 */
section {
  align-items: flex-start;
  width: 100%;
  box-sizing: border-box;
  padding: 70px 40px 0;
}
@media screen and (max-width: 750px) {
  section {
    padding: 16vw 5.3333333333vw;
  }
}

.w1100 {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

h2 {
  margin-bottom: 1em;
  line-height: 1;
  font-weight: 600;
}

.find {
  font-size: 3.2rem;
  margin-top: 1em;
  letter-spacing: 0.1em;
  line-height: 1.8;
}
@media screen and (max-width: 750px) {
  .find {
    margin: 5.3333333333vw 0;
    font-size: 7.4666666667vw;
  }
}

p {
  line-height: 1.5;
  margin-bottom: 1.5em;
}

.note {
  font-weight: 500;
  text-indent: -1em;
  margin-left: 1em;
  font-size: 1.4rem;
  line-height: 1.5;
}
@media screen and (max-width: 750px) {
  .note {
    font-size: 3.7333333333vw;
  }
}

.text_right {
  text-align: right;
}

.text_center {
  text-align: center;
}

.fs18 {
  font-size: 18px;
}
@media screen and (max-width: 750px) {
  .fs18 {
    font-size: 4.2666666667vw;
  }
}

.fs20 {
  font-size: 20px;
}
@media screen and (max-width: 750px) {
  .fs20 {
    font-size: 4.8vw;
  }
}

.fs22 {
  font-size: 22px;
}
@media screen and (max-width: 750px) {
  .fs22 {
    font-size: 5.3333333333vw;
  }
}

.fs24 {
  font-size: 24px;
}
@media screen and (max-width: 750px) {
  .fs24 {
    font-size: 6.4vw;
  }
}

.fs32 {
  font-size: 32px;
  font-weight: 600;
}
@media screen and (max-width: 750px) {
  .fs32 {
    font-size: 8.5333333333vw;
  }
}

.mb0 {
  margin-bottom: 0;
}

.mb10 {
  margin-bottom: 10px;
}
@media screen and (max-width: 750px) {
  .mb10 {
    margin-bottom: 2.6666666667vw;
  }
}

.mb20 {
  margin-bottom: 20px !important;
}
@media screen and (max-width: 750px) {
  .mb20 {
    margin-bottom: 5.3333333333vw !important;
  }
}

.mt30 {
  margin-top: 30px !important;
}
@media screen and (max-width: 750px) {
  .mt30 {
    margin-top: 8vw !important;
  }
}

.mb30 {
  margin-bottom: 30px !important;
}
@media screen and (max-width: 750px) {
  .mb30 {
    margin-bottom: 8vw !important;
  }
}

.mb40 {
  margin-bottom: 40px !important;
}
@media screen and (max-width: 750px) {
  .mb40 {
    margin-bottom: 10.6666666667vw !important;
  }
}

.mb50 {
  margin-bottom: 50px;
}
@media screen and (max-width: 750px) {
  .mb50 {
    margin-bottom: 13.3333333333vw;
  }
}

.mb60 {
  margin-bottom: 60px;
}
@media screen and (max-width: 750px) {
  .mb60 {
    margin-bottom: 16vw;
  }
}

.mb80 {
  margin-bottom: 80px !important;
}
@media screen and (max-width: 750px) {
  .mb80 {
    margin-bottom: 21.3333333333vw !important;
  }
}

.mb100 {
  margin-bottom: 100px;
}
@media screen and (max-width: 750px) {
  .mb100 {
    margin-bottom: 26.6666666667vw;
  }
}

.pb50 {
  padding-bottom: 50px;
}
@media screen and (max-width: 750px) {
  .pb50 {
    padding-bottom: 13.3333333333vw;
  }
}

/* photo_gallery */
.icon_lock {
  justify-content: flex-start;
  font-weight: 600;
  margin-bottom: 1em;
}
.icon_lock::before {
  content: "";
  display: block;
  width: 16px;
  height: 20px;
  margin-right: 5px;
  background: url(../img/icon_lock.svg) no-repeat left center;
  background-size: 100% auto;
}
@media screen and (max-width: 750px) {
  .icon_lock::before {
    width: 4.2666666667vw;
    height: 6.4vw;
    margin-right: 1.3333333333vw;
  }
}

/* news */
#news {
  padding-top: 80px;
}
#news .n_wrap {
  display: flex;
  justify-content: space-between;
  min-height: 180px;
}
#news .left {
  white-space: nowrap;
  margin-right: 70px;
}
#news .right {
  width: 100%;
}
#news .right .tab {
  justify-content: flex-start;
  margin-bottom: 30px;
}
#news .right .tab li {
  padding: 0 20px;
  border-right: 2px solid var(--bg_blue);
  cursor: pointer;
}
#news .right .tab li:first-child {
  border-left: 2px solid var(--bg_blue);
}
#news .right .tab li span::before {
  height: 2px;
}
#news .right .tab li.current {
  color: var(--blue);
}
#news .right .tab li.current span::before {
  opacity: 1;
  height: 2px;
  transform-origin: left top;
  transform: scale(1, 1);
}
@media screen and (max-width: 750px) {
  #news {
    padding-top: 10.6666666667vw;
  }
  #news .n_wrap {
    flex-direction: column;
  }
  #news .n_wrap .left {
    margin-right: 0;
  }
  #news .n_wrap .right .tab {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 2.6666666667vw;
  }
  #news .n_wrap .right .tab li {
    text-align: center;
    margin-bottom: 4vw;
    padding: 0;
    font-size: 3.7333333333vw;
  }
  #news .n_wrap .right .tab li:nth-child(even) {
    border-left: 2px solid var(--bg_blue);
  }
  #news .n_wrap .right .tab li:first-child {
    border-right: none;
  }
  #news .link_next, #news .link_download {
    margin: 2.6666666667vw auto 0;
  }
}

.news_list ul {
  display: none;
}
.news_list ul.current {
  display: block;
}
.news_list ul li {
  list-style: none;
}
.news_list ul li a {
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 10px;
}
.news_list ul li a:hover p {
  text-decoration: underline;
}
.news_list ul li a::before {
  bottom: -6px;
}
.news_list ul li a span,
.news_list ul li a strong {
  white-space: nowrap;
}
.news_list ul li a strong {
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  min-width: 110px;
  height: 26px;
  margin: 0 10px;
  border-radius: 4px;
}
.news_list ul li a .icon_news {
  color: #3B673C;
  background: var(--bg_green);
}
.news_list ul li a .icon_medical {
  color: var(--main_font_color);
  background: var(--bg_blue);
}
.news_list ul li a .icon_event {
  color: var(--red);
  background: var(--bg_orange);
}
.news_list ul li a .icon_hospital {
  color: #6D6029;
  background: var(--bg_yellow);
}
.news_list ul li p {
  margin-bottom: 0;
  line-height: 1.5;
}
@media screen and (max-width: 750px) {
  .news_list ul li {
    border-bottom: 2px solid var(--bg_blue);
    margin-bottom: 2.6666666667vw;
  }
  .news_list ul li.no_border {
    border-bottom: none;
    padding: 5.3333333333vw 0;
  }
  .news_list ul li a {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .news_list ul li a::before {
    display: none;
  }
  .news_list ul li a strong {
    width: 29.3333333333vw;
    height: 6.9333333333vw;
    font-size: 3.7333333333vw;
    border-radius: 1.0666666667vw;
  }
  .news_list ul li a p {
    flex: 100%;
  }
}

/*photo_gallery*/
.photo_gallery {
  align-items: flex-start;
  gap: 25px;
  padding: 30px;
  box-sizing: border-box;
  border-radius: 10px;
  border: 10px solid var(--border_color);
  background: var(--white);
}
.photo_gallery h2 {
  justify-content: flex-start;
  margin-bottom: 10px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border_color);
}
.photo_gallery h2 img {
  width: 46px;
  height: 46px;
  margin-bottom: -5px;
  margin-right: 5px;
}
.photo_gallery .left {
  width: 100%;
  max-width: 496px;
  background: url(../img/img_photogallery.webp) no-repeat right top;
  background-size: 150px 90px;
}
.photo_gallery .left .rireki strong {
  display: block;
  color: var(--blue);
  margin-bottom: 5px;
}
.photo_gallery .left .rireki span {
  margin-right: 1em;
}
.photo_gallery .right {
  width: 100%;
}
.photo_gallery .right ul {
  width: 100%;
  gap: 20px;
  margin-bottom: 25px;
}
.photo_gallery .right ul li {
  width: 100%;
  height: 110px;
  border-radius: 10px;
  border: 5px solid #fff;
  box-shadow: var(--box_shadow);
  transition: box-shadow 0.5s;
}
.photo_gallery .right ul li:hover {
  box-shadow: none;
}
.photo_gallery .right ul li a {
  padding: 17px;
  height: 100%;
  font-size: 20px;
  border-radius: 6px;
  box-sizing: border-box;
  color: var(--main_font_color);
  background-color: var(--bg_pink);
}
.photo_gallery .right ul li:last-child a {
  background-color: var(--bg_yellow);
}
@media screen and (max-width: 750px) {
  .photo_gallery {
    flex-direction: column;
    margin: 0 5.3333333333vw 16vw;
    padding: 4vw 4vw 8vw;
    width: auto;
    border-radius: 2.6666666667vw;
    border-width: 2.6666666667vw;
  }
  .photo_gallery .icon_lock {
    font-size: 4vw;
    align-items: flex-start;
    margin-top: 2.6666666667vw;
    margin-bottom: 6.6666666667vw;
  }
  .photo_gallery h2 {
    justify-content: center;
    font-size: 6.9333333333vw;
  }
  .photo_gallery h2 img {
    width: 12vw;
    height: 12vw;
  }
  .photo_gallery .left {
    background-size: 28.8vw auto;
  }
  .photo_gallery .left .rireki {
    margin-top: 2.6666666667vw;
  }
  .photo_gallery .left .rireki p {
    line-height: 1.5;
  }
  .photo_gallery .left .rireki p span {
    display: block;
  }
  .photo_gallery .right ul {
    margin-left: 0;
    gap: 2.6666666667vw;
  }
  .photo_gallery .right ul li {
    height: auto;
  }
  .photo_gallery .right ul li a {
    padding: 2.6666666667vw;
    font-size: 4.5333333333vw;
    text-align: center;
    flex-direction: column;
  }
  .photo_gallery .right ul li a::after {
    margin-top: 1.3333333333vw;
  }
  .photo_gallery .right .note {
    text-align: left;
  }
}

/* footer */
footer {
  padding: 80px 40px 20px;
}
footer .f_head {
  margin-bottom: 50px;
}
footer .f_head .left img {
  width: 258px;
  height: auto;
  margin-bottom: 5px;
}
footer .f_head .left p {
  font-size: 15px;
  margin-bottom: 0;
}
footer .f_head .right strong {
  font-size: 1.8rem;
}
footer .f_head .right p {
  font-size: 2rem;
  margin-bottom: 0;
}
footer .link_list {
  gap: 20px;
}
footer .link_list div strong {
  display: block;
  padding-bottom: 0.5em;
  margin-bottom: 0.7em;
  font-size: 1.8rem;
  border-bottom: 2px solid var(--border_color);
}
footer .link_list div .flex_basic, footer .link_list div .f_footer ul, footer .f_footer .link_list div ul, footer .link_list div .f_footer, footer .link_list div .f_center ul, footer .f_center .link_list div ul, footer .link_list div .icon_link, footer .link_list div header .h_wrap, header footer .link_list div .h_wrap, footer .link_list div header .h_wrap .up, header .h_wrap footer .link_list div .up, footer .link_list div header .h_wrap .up .tel div, header .h_wrap .up .tel footer .link_list div div, footer .link_list div header nav > ul, header footer .link_list div nav > ul, footer .link_list div header .child .midashi a, header .child .midashi footer .link_list div a, footer .link_list div section, footer .link_list div .icon_lock, footer .link_list div #news .right .tab, #news .right footer .link_list div .tab, footer .link_list div .news_list ul li a, .news_list ul li footer .link_list div a, footer .link_list div .news_list ul li a strong, .news_list ul li a footer .link_list div strong, footer .link_list div .photo_gallery, footer .link_list div .photo_gallery h2, .photo_gallery footer .link_list div h2, footer .link_list div .photo_gallery .right ul, .photo_gallery .right footer .link_list div ul, footer .link_list div .photo_gallery .right ul li a, .photo_gallery .right ul li footer .link_list div a, footer .link_list div .f_head {
  flex-wrap: wrap;
  align-items: flex-start;
}
footer .link_list div .flex_basic li, footer .f_footer .link_list div ul li, footer .link_list div .f_footer li, footer .link_list div .f_center ul li, footer .f_center .link_list div ul li, footer .link_list div .icon_link li, footer .link_list div header .h_wrap li, header footer .link_list div .h_wrap li, header .h_wrap footer .link_list div .up li, header .h_wrap .up .tel footer .link_list div div li, footer .link_list div header nav > ul li, header footer .link_list div nav > ul li, footer .link_list div header .child .midashi a li, header .child .midashi footer .link_list div a li, footer .link_list div section li, footer .link_list div .icon_lock li, footer .link_list div #news .right .tab li, #news .right footer .link_list div .tab li, footer .link_list div .news_list ul li a li, .news_list ul li footer .link_list div a li, .news_list ul li a footer .link_list div strong li, footer .link_list div .photo_gallery li, .photo_gallery footer .link_list div h2 li, .photo_gallery .right footer .link_list div ul li, .photo_gallery .right ul li footer .link_list div a li, footer .link_list div .f_head li {
  flex: 48%;
}
footer .f_center {
  padding: 40px 0 30px;
  border-bottom: 2px solid var(--border_color);
}
footer .f_center ul {
  justify-content: center;
  gap: 20px;
}
footer .f_center ul li .icon_lock {
  margin-bottom: 0;
}
footer .f_center ul li .icon_lock::before {
  width: 12px;
}
footer .f_footer {
  align-items: flex-start;
  padding: 20px 0 30px;
}
footer .f_footer .left {
  display: flex;
  align-items: center;
  gap: 20px;
}
footer .f_footer .left img {
  width: 96px;
}
footer .f_footer .left div strong {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 10px;
}
footer .f_footer .left div p {
  font-size: 1.2rem;
  line-height: 1.5;
}
footer .f_footer ul {
  gap: 20px;
}
footer .f_footer ul li {
  font-size: 1.4rem;
}
footer .copyright {
  font-size: 1.3rem;
  text-align: center;
}
@media screen and (max-width: 750px) {
  footer {
    padding: 8vw 5.3333333333vw;
  }
  footer .f_head {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 0;
  }
  footer .f_head .left {
    margin-bottom: 2.6666666667vw;
  }
  footer .f_head .left img {
    width: 64vw;
    margin-bottom: 4vw;
  }
  footer .f_head .left p {
    font-size: 4vw;
    line-height: 1.5;
  }
  footer .f_head .right {
    margin-bottom: 5.3333333333vw;
  }
  footer .f_head .right strong {
    display: block;
    font-size: 4.2666666667vw;
    line-height: 2;
  }
  footer .f_head .right p {
    font-size: 4vw;
    line-height: 1.5;
    margin-bottom: 0;
  }
  footer .link_list,
  footer .f_center ul {
    display: block;
  }
  footer .link_list > div strong {
    position: relative;
    width: 100%;
    border-top: 2px solid var(--border_color);
    border-bottom: 0;
    padding: 4vw 0;
    font-size: 4.2666666667vw;
    margin-bottom: 0;
    cursor: pointer;
  }
  footer .link_list > div strong::before, footer .link_list > div strong::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 2.6666666667vw;
    margin: auto 0;
    display: block;
    width: 5.3333333333vw;
    height: 2px;
    background: var(--main_font_color);
    transition: all 0.5s;
  }
  footer .link_list > div strong::after {
    transform: rotate(90deg);
  }
  footer .link_list > div strong.on::before {
    opacity: 0;
    transform: translateX(5.3333333333vw);
  }
  footer .link_list > div strong.on::after {
    transform: rotate(360deg);
  }
  footer .link_list > div ul {
    display: none;
  }
  footer .link_list > div ul li {
    font-size: 4vw;
  }
  footer .f_center {
    padding: 0;
  }
  footer .f_center ul li {
    border-top: 2px solid var(--border_color);
    font-size: 4vw;
  }
  footer .f_center ul li a {
    display: flex;
    padding: 4vw 0;
  }
  footer .f_center ul li a:not(.hover_line):not(.icon_lock) {
    background: url(../img/icon_arrow_right.svg) no-repeat right 4vw center;
    background-size: 3.2vw auto;
  }
  footer .hover_line::before {
    display: none;
  }
  footer .icon_lock::before {
    order: 2;
    margin-left: auto;
    margin-right: 4vw;
    width: 3.2vw !important;
    height: 5.3333333333vw !important;
  }
  footer .f_footer {
    flex-direction: column;
    padding: 5.3333333333vw 0 8vw;
  }
  footer .f_footer .left {
    order: 2;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
  footer .f_footer .left img {
    width: 20.5333333333vw;
  }
  footer .f_footer .left div strong {
    font-size: 4vw;
  }
  footer .f_footer .left div p {
    font-size: 3.2vw;
  }
  footer .f_footer ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 4vw;
    margin-bottom: 8vw;
  }
  footer .f_footer ul li a {
    font-size: 3.7333333333vw;
  }
  footer .copyright {
    font-size: 2.6666666667vw;
  }
}

#pageTop {
  opacity: 0;
  pointer-events: none;
  position: fixed;
  bottom: 40px;
  right: 20px;
  width: 60px;
  height: 60px;
  border-radius: 100px;
  background: var(--bg_blue_4) url(../img/icon_page_top.svg) no-repeat center;
  border: 4px solid var(--white);
  box-sizing: border-box;
  box-shadow: var(--box_shadow);
  cursor: pointer;
  transition: opacity 0.5s;
  z-index: 10;
}
#pageTop.on {
  opacity: 1;
  pointer-events: all;
}
@media screen and (max-width: 750px) {
  #pageTop {
    bottom: 5.3333333333vw;
    right: 5.3333333333vw;
    width: 13.3333333333vw;
    height: 13.3333333333vw;
    background-size: 5.3333333333vw auto;
  }
}

/*/////////////////////////////////*/
/* page */
/*/////////////////////////////////*/
.page {
  padding-top: 96px;
}
.page #main_view {
  width: 100%;
  height: 300px !important;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page #main_view h1 {
  font-size: 4rem;
  font-weight: 600;
  color: var(--white);
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}
.page main {
  padding-bottom: 120px;
}
.page main section {
  max-width: 1180px;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
  padding: 120px 40px 0;
}
.page main section h2.find {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.8rem;
  margin: 0 auto 40px;
  gap: 1em;
}
.page main section h2.find::before, .page main section h2.find::after {
  content: "";
  display: block;
  min-width: 50px;
  height: 40px;
}
.page main section h2.find::before {
  background: url(../img/blue_leaves.webp) no-repeat center;
  background-size: 100% auto;
}
.page main section h2.find::after {
  background: url(../img/green_leaves.webp) no-repeat center;
  background-size: 100% auto;
}
.page main section .find_2 {
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 1em;
}
.page main section .find_3 {
  position: relative;
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 1em;
  padding-left: 0.7em;
}
.page main section .find_3::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 5px;
  height: 24px;
  background: var(--blue);
}
.page main table {
  width: 100%;
  border: 2px solid var(--bg_blue);
  border-spacing: 0;
  border-collapse: collapse;
  text-align: left;
  background: #fff;
}
.page main table th, .page main table td {
  padding: 0.8em 1em;
  border-bottom: 2px solid var(--bg_blue);
  line-height: 1.5;
}
.page main table th {
  min-width: 178px;
  background: var(--bg_blue_4);
}
.page main ol li {
  text-indent: -1em;
  margin-left: 1em;
}
.page main ol li::before {
  content: "・";
}
.page main ul {
  list-style: decimal;
  margin-left: 1em;
}
.page main ul li {
  margin-bottom: 0.5em;
}
.page main .scroll {
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid var(--border_color);
}
.page footer {
  border-top: 15px solid var(--bg_blue_3);
}
@media screen and (max-width: 750px) {
  .page {
    padding-top: 18.6666666667vw;
  }
  .page #main_view {
    height: 58.6666666667vw !important;
  }
  .page #main_view h1 {
    font-size: 6.4vw;
  }
  .page main {
    padding-bottom: 16vw;
  }
  .page main section {
    position: relative;
    padding: 16vw 5.3333333333vw 0;
  }
  .page main section h2.find {
    font-size: 6.4vw;
    line-height: 1.3;
    text-align: center;
    gap: 4vw;
    margin-bottom: 8vw;
  }
  .page main section h2.find::before, .page main section h2.find::after {
    min-width: 9.3333333333vw;
    height: 6.6666666667vw;
  }
  .page main section .find_2 {
    font-size: 5.3333333333vw;
  }
  .page main section .find_3 {
    font-size: 4.8vw;
  }
  .page main section .find_3::before {
    top: 1.3333333333vw;
    width: 1.3333333333vw;
    height: 4.8vw;
  }
  .page main section table {
    border-bottom: none;
  }
  .page main section table tr, .page main section table th, .page main section table td {
    display: block;
  }
  .page main .scroll {
    position: relative;
    width: 100%;
    border-radius: 2.6666666667vw;
    overflow-x: scroll !important;
  }
  .page main .scroll .icon_scroll {
    content: "";
    position: absolute;
    top: 8vw;
    left: calc((100% - 5.3333333333vw) / 2.5);
    display: block;
    width: 26.6666666667vw;
    height: 26.6666666667vw;
    background: url(../../assets/img/icon_slide.svg) no-repeat left top;
    background-size: 100% auto;
  }
  .page main .scroll img {
    height: 100%;
  }
}

.btn_shadow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  padding: 20px 15px;
  border-radius: 10px;
  font-size: 1.8rem;
  color: var(--main_font_color) !important;
  box-sizing: border-box;
  background: var(--white);
  box-shadow: var(--box_shadow);
  transition: background-color 0.5s, box-shadow 0.5s;
}
.btn_shadow:hover {
  background-color: var(--bg_blue_2);
  box-shadow: none;
}
@media screen and (max-width: 750px) {
  .btn_shadow {
    padding: 5.3333333333vw 4vw;
    border-radius: 2.6666666667vw;
    font-size: 4.8vw;
  }
}

#breadcrumbs {
  padding: 20px 40px;
  opacity: 0.7;
  display: flex;
  justify-content: flex-start;
  font-size: 1.4rem;
  gap: 0.5em;
}
#breadcrumbs span::before {
  content: url(../img/icon_arrow_right.svg);
  margin-right: 0.5em;
}
@media screen and (max-width: 750px) {
  #breadcrumbs {
    margin-bottom: 8vw;
    padding: 2.6666666667vw 5.3333333333vw;
    font-size: 3.2vw;
  }
}

.page_link {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none !important;
  margin-left: 0 !important;
  font-feature-settings: "palt";
}
.page_link li {
  padding: 0 1em;
  border-right: 2px solid var(--bg_blue);
}
.page_link li:first-child {
  border-left: 2px solid var(--bg_blue);
}
@media screen and (max-width: 750px) {
  .page_link {
    flex-wrap: wrap;
    align-items: stretch;
  }
  .page_link li {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30%;
    font-size: 3.4666666667vw;
    padding: 0;
    text-align: center;
    margin-bottom: 2.6666666667vw !important;
  }
  .page_link li:nth-child(4n) {
    border-left: 2px solid var(--bg_blue);
  }
}

.border_radius {
  border: 2px solid var(--border_color);
  border-radius: 10px;
  padding: 30px;
  overflow: hidden;
  background: var(--white);
}
@media screen and (max-width: 750px) {
  .border_radius {
    border-radius: 2.6666666667vw;
  }
}

.list_box {
  margin-left: 0 !important;
}
.list_box img {
  min-width: 350px;
  border-radius: 2.6666666667vw;
}
.list_box li {
  display: flex;
  align-items: flex-start;
  gap: 50px;
  list-style: none;
  width: 100%;
  margin-bottom: 60px !important;
}
.list_box li img {
  border-radius: 20px;
  box-shadow: var(--box_shadow);
}
.list_box li div strong.find {
  display: block;
  font-size: 2.4rem;
  color: var(--blue);
  margin: 0 0 0.5em;
}
.list_box li div p {
  margin-bottom: 0;
}
@media screen and (max-width: 750px) {
  .list_box li {
    flex-direction: column;
    gap: 0;
  }
  .list_box li img {
    min-width: 100%;
    border-radius: 2.6666666667vw;
    margin-bottom: 8vw;
  }
  .list_box li div strong.find {
    font-size: 5.3333333333vw;
    text-align: center;
  }
}

/* access */
#access {
  padding-bottom: 80px;
  background: var(--bg_blue_3);
}
#access > div {
  gap: 40px;
}
#access .address {
  display: flex;
  font-size: 1.8rem;
}
#access .address span {
  display: block;
  padding: 0 15px;
  margin-right: 10px;
  border-radius: 4px;
  color: var(--white);
  background: var(--blue);
}
#access .box {
  width: 100%;
  padding: 25px 30px;
  box-sizing: border-box;
  border: 2px solid var(--border_color);
  background: #fff;
  border-radius: 10px;
  font-feature-settings: "palt";
}
#access .box > div.border_bottom {
  border-bottom: 1px solid var(--border_color);
  padding-bottom: 15px;
  margin-bottom: 15px;
}
#access .box > div > strong {
  display: block;
  margin-bottom: 5px;
  color: var(--blue);
  font-weight: 700;
}
#access .box > div p {
  font-size: 1.5rem;
  line-height: 1.6;
  margin-bottom: 0;
}
#access .box > div p strong {
  color: var(--orange);
  font-weight: 700;
}
@media screen and (max-width: 750px) {
  #access > div {
    flex-direction: column;
    gap: 5.3333333333vw;
  }
  #access .address {
    align-items: center;
    font-size: 4.2666666667vw;
    line-height: 1.5;
  }
  #access .address span {
    display: flex;
    align-items: center;
    white-space: nowrap;
    min-height: 10.6666666667vw;
    padding: 0 2.1333333333vw;
  }
  #access .box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5.3333333333vw;
  }
  #access .box > div > strong {
    font-size: 5.3333333333vw !important;
  }
  #access .box > div p {
    font-size: 3.7333333333vw !important;
  }
  #access .box .note {
    width: 100%;
  }
  #access iframe {
    margin-top: 5.3333333333vw;
    width: 100%;
    height: 62.6666666667vw;
  }
}

.icon_find {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 2.8rem;
  gap: 10px;
  margin: 0 auto;
}
.icon_find img {
  width: 70px;
  height: auto;
}

.no_list_style li {
  text-indent: 0;
  margin-left: 0;
}
.no_list_style li::before {
  content: "" !important;
}

/* conrents accordion */
.c_accordion {
  width: 100%;
  max-width: 1180px;
}
.c_accordion .btn {
  position: relative;
  display: block;
  width: 100%;
  padding: 12px 0;
  margin-bottom: 0 !important;
  border-bottom: 2px dotted var(--border_color);
  transition: background-color 0.5s;
  cursor: pointer;
}
.c_accordion .btn:hover {
  background-color: rgba(47, 150, 173, 0.1);
}
.c_accordion .btn::before, .c_accordion .btn::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px;
  margin: auto 0;
  display: block;
  width: 22px;
  height: 22px;
}
.c_accordion .btn::before {
  background: url(../img/icon_plus.svg) no-repeat center;
  background-size: 100% auto;
  transition: opacity 0.3s;
}
.c_accordion .btn::after {
  background: url(../img/icon_minus.svg) no-repeat center;
  background-size: 100% auto;
}
.c_accordion .btn.on::after {
  opacity: 0;
}
.c_accordion a.icon_link {
  display: inline-block;
  text-decoration: underline;
  color: var(--blue);
}
.c_accordion a.icon_link:hover {
  text-decoration: none;
}/*# sourceMappingURL=styles.css.map */