@charset "UTF-8";
/****** Elad Shechter's RESET *******/
/*** box sizing border-box for all elements ***/
@import url("https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@400;500;700&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box; }

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer; }

button {
  background-color: transparent;
  color: inherit;
  border-width: 0;
  padding: 0;
  cursor: pointer; }

figure {
  margin: 0; }

input::-moz-focus-inner {
  border: 0;
  padding: 0;
  margin: 0; }

ul,
ol,
dl,
dd {
  margin: 0;
  padding: 0;
  list-style: none; }

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-size: inherit;
  font-weight: inherit; }

p {
  margin: 0; }

cite {
  font-style: normal; }

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

table {
  border-collapse: collapse; }

/*
font-family: 'Zen Kaku Gothic New', sans-serif;
font-family: 'Raleway', sans-serif;
*/
/* ------------------------------------
// base
------------------------------------ */
html {
  font-size: 62.5%; }
  @media screen and (max-width: 767px) {
    html {
      font-size: calc(1000vw / 320); } }

body {
  color: #333333;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 500;
  font-size: 2rem;
  line-height: 1.5;
  padding: 0;
  margin: 0; }
  @media screen and (max-width: 767px) {
    body {
      font-size: 1.4rem; } }

a:link {
  color: #333333;
  text-decoration: none; }
a:visited {
  color: #333333;
  text-decoration: none; }
a:hover {
  color: #333333;
  text-decoration: underline; }
  a:hover img {
    transition: 0.3s;
    opacity: 0.8; }
a:active {
  color: #333333;
  text-decoration: none; }
@media screen and (max-width: 767px) {
  a:hover {
    text-decoration: none; } }

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

a[href*="tel:"] {
  pointer-events: none; }
  @media screen and (max-width: 1023px) {
    a[href*="tel:"] {
      pointer-events: initial; } }

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

@media screen and (max-width: 1023px) {
  .pc {
    display: none !important; }

  .md {
    display: block !important; } }
@media screen and (max-width: 767px) {
  .sp {
    display: block !important; }

  .pc-md {
    display: none !important; }

  p {
    word-break: break-all; } }
/* ------------------------------------
// overlay
----------------------------------- */
@media screen and (max-width: 767px) {
  #overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
    visibility: hidden;
    opacity: 0;
    transform: translateX(-100%);
    transition: visibility 0.3s, opacity 0.3s, transform 0.1s linear 0.3s; }
    .js-menuOpen #overlay {
      visibility: visible;
      opacity: 1;
      transform: translateX(0);
      transition: visibility 0.3s, opacity 0.3s, transform 0s; } }
/* ------------------------------------
// header
----------------------------------- */
#header {
  background: #c8dbe9;
  padding-bottom: 20px; }
  #header header {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 190px 0 0;
    position: relative;
    display: flex;
    justify-content: space-between; }
    #header header .logo {
      width: 64%; }
      #header header .logo a {
        display: block;
        padding: 0 0 2px 105px;
        background: url(img/cmn/header_onpu.png) no-repeat left bottom;
        transition: 0.3s; }
        #header header .logo a p {
          margin-bottom: 15px;
          font-size: 1.8rem; }
        #header header .logo a:hover {
          text-decoration: none;
          opacity: 0.9; }
    #header header .contact .tel {
      margin-bottom: 5px; }
      #header header .contact .tel a {
        font-size: 4rem;
        font-weight: 700;
        padding-left: 47px;
        position: relative;
        display: block;
        line-height: 1; }
        #header header .contact .tel a::before {
          content: "";
          width: 38px;
          height: 35px;
          background: url(img/cmn/icon_tel.png) no-repeat;
          background-size: 100% auto;
          position: absolute;
          left: 0;
          top: 2px;
          display: block; }
    #header header .contact .access {
      display: flex;
      justify-content: flex-end;
      align-items: flex-end; }
      #header header .contact .access > * {
        margin-right: 30px;
        position: relative; }
        #header header .contact .access > * span {
          position: absolute;
          visibility: hidden;
          top: 0;
          left: 0; }
    #header header .web_reception {
      position: absolute;
      right: 0;
      top: 0; }
      #header header .web_reception a {
        display: block;
        width: 160px;
        height: 120px;
        background: #e35a67;
        color: #fff;
        font-size: 2.6rem;
        font-weight: 700;
        padding-top: 65px;
        text-align: center;
        text-decoration: none;
        transition: 0.3s; }
        #header header .web_reception a::before {
          content: "";
          width: 45px;
          height: 33px;
          background: url(img/cmn/icon_pc.png) no-repeat;
          display: block;
          position: absolute;
          top: 20px;
          left: 50%;
          transform: translateX(-50%); }
        #header header .web_reception a::after {
          content: "";
          position: absolute;
          left: 0;
          top: 100%;
          height: 0;
          width: 0;
          border-left: 80px solid #e35a67;
          border-right: 80px solid #e35a67;
          border-bottom: 40px solid transparent; }
        #header header .web_reception a:hover {
          opacity: 0.8; }
  #header .gnav {
    max-width: 1200px;
    margin: 35px auto 0;
    display: flex;
    justify-content: space-between; }
    #header .gnav li {
      width: 14.6%; }
      #header .gnav li a {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 53px;
        border-radius: 26.5px;
        background: #fff;
        color: #2d2622;
        font-size: 2rem;
        font-weight: 700;
        text-decoration: none;
        transition: 0.3s;
        position: relative; }
        #header .gnav li a:hover {
          opacity: 0.8; }
        #header .gnav li a span {
          position: absolute;
          left: 50%;
          top: calc(100% + 5px);
          padding: 5px;
          display: block;
          border: 2px solid #FFF;
          transform: translate(-50%);
          background: #f89b3c;
          color: #FFF;
          width: 75%;
          text-align: center;
          z-index: 10;
          border-radius: 50vh; }
          #header .gnav li a span:after {
            width: 10px;
            aspect-ratio: 1/cos(30deg);
            clip-path: polygon(50% 0, 100% 100%, 0 100%);
            background: #f89b3c;
            content: "";
            display: block;
            position: absolute;
            left: calc(50% - 5px);
            bottom: 100%; }
  @media screen and (max-width: 1023px) {
    #header header {
      display: block;
      padding: 15px 170px 20px 15px; }
      #header header .logo {
        width: auto;
        margin-bottom: 10px; }
        #header header .logo a p {
          font-size: 1.6rem; }
      #header header .contact {
        display: flex;
        align-items: center; }
        #header header .contact .tel {
          margin-right: 20px; }
      #header header .web_reception a {
        width: 140px; }
        #header header .web_reception a::after {
          border-left-width: 70px;
          border-right-width: 70px;
          border-bottom-width: 30px; }
    #header .gnav {
      margin: 0 15px; }
      #header .gnav li {
        width: 15.7%; }
        #header .gnav li a {
          font-size: 1.8rem; } }
  @media screen and (max-width: 767px) {
    #header {
      padding-bottom: 1rem; }
      #header header {
        padding: 1rem 0 0 0;
        display: block; }
        #header header .logo {
          width: auto;
          text-align: center;
          margin-bottom: 1rem; }
          #header header .logo a {
            display: block;
            padding: 0;
            background: none; }
            #header header .logo a p {
              display: none; }
            #header header .logo a img {
              width: 21.3rem;
              margin: 0 auto; }
        #header header .contact {
          display: block; }
          #header header .contact .tel {
            display: none; }
          #header header .contact .access {
            justify-content: center;
            flex-direction: row-reverse; }
            #header header .contact .access > * {
              margin: 0 0.3rem;
              background: #4b3614;
              color: #fff;
              font-size: 1.4rem;
              padding: 0 1.3rem;
              border-radius: 1.1rem;
              font-weight: 700; }
              #header header .contact .access > * img {
                display: none; }
              #header header .contact .access > * span {
                position: static;
                visibility: visible; }
        #header header .web_reception {
          display: none; }
      #header .gnav {
        display: none; } }

/* ------------------------------------
// footer
----------------------------------- */
#footer {
  background: #dad4c8;
  margin-top: 150px; }
  #footer .pagetop {
    position: fixed;
    z-index: 10;
    right: 20px;
    bottom: 20px;
    width: 63px;
    height: 63px;
    background: url(img/cmn/icon_pagetop.png) no-repeat 0 0/100% auto;
    cursor: pointer;
    transition: .3s;
    opacity: 0;
    visibility: hidden; }
    #footer .pagetop.show {
      opacity: .9;
      visibility: visible; }
  #footer table.times {
    width: 100%;
    border-radius: 10px;
    border: solid 1px #4b3614;
    font-size: 2rem;
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden; }
    #footer table.times th,
    #footer table.times td {
      padding: 10px; }
    #footer table.times thead th {
      color: #fff;
      text-align: center;
      background: #4b3614;
      border-right: solid 1px #fff; }
      #footer table.times thead th:last-child {
        border-right: none; }
    #footer table.times tbody th,
    #footer table.times tbody td {
      padding: 8px 10px; }
    #footer table.times tbody th {
      border-right: solid 1px #4b3614;
      border-bottom: solid 1px #4b3614; }
    #footer table.times tbody td {
      vertical-align: center;
      text-align: center;
      border-right: solid 1px #4b3614;
      border-bottom: solid 1px #4b3614; }
      #footer table.times tbody td:last-child {
        border-right: none; }
    #footer table.times tbody tr:last-child td,
    #footer table.times tbody tr:last-child th {
      border-bottom: none; }
  #footer footer {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    padding-top: 70px;
    display: flex;
    justify-content: space-between;
    color: #4b3614; }
    #footer footer::before {
      content: "";
      width: 100%;
      height: 134px;
      background: url(img/cmn/footer_bg_homes.png) no-repeat center bottom;
      background-size: 100% auto;
      display: block;
      position: absolute;
      left: 0;
      top: -110px; }
    #footer footer .clinic {
      width: 44%; }
      #footer footer .clinic .tagline {
        font-size: 1.6rem;
        margin-bottom: 15px; }
      #footer footer .clinic .logo {
        margin-bottom: 10px; }
      #footer footer .clinic .address {
        font-size: 2rem;
        margin-bottom: 15px;
        line-height: 1.6; }
      #footer footer .clinic .access {
        display: flex;
        align-items: flex-end; }
        #footer footer .clinic .access > * {
          margin-right: 30px;
          position: relative; }
          #footer footer .clinic .access > * span {
            position: absolute;
            top: 0;
            left: 0;
            visibility: hidden; }
    #footer footer .contact {
      width: 50%; }
      #footer footer .contact h2 {
        font-size: 2rem;
        padding: 12px 0;
        border: dashed 1px #4b3614;
        text-align: center;
        margin-bottom: 40px; }
      #footer footer .contact .reservation {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        margin-bottom: 45px; }
        #footer footer .contact .reservation a {
          text-decoration: none; }
        #footer footer .contact .reservation .tel {
          font-size: 5.2rem;
          font-weight: 700;
          line-height: 1;
          margin-bottom: 10px; }
          #footer footer .contact .reservation .tel a {
            color: #4b3614; }
        #footer footer .contact .reservation .btn_online a {
          width: 270px;
          height: 54px;
          display: block;
          color: #fff;
          border-radius: 10px;
          font-size: 2rem;
          font-weight: 700;
          display: flex;
          align-items: center;
          justify-content: center;
          background: #e35a67; }
          #footer footer .contact .reservation .btn_online a::before {
            content: "";
            width: 36px;
            height: 36px;
            background: url(img/cmn/icon_calendar.png) no-repeat;
            background-size: 100% auto;
            margin-right: 20px; }
  #footer .copy {
    text-align: center;
    padding: 30px 0 35px;
    font-size: 1.4rem; }
  #footer .gmap {
    height: 660px; }
    #footer .gmap iframe {
      width: 100%;
      height: 100%;
      vertical-align: top; }
  #footer .fixed_footer,
  #footer #menu {
    display: none; }
  @media screen and (max-width: 1023px) {
    #footer table.times {
      font-size: 1.7rem; }
      #footer table.times thead th {
        padding: 10px 0; }
      #footer table.times tbody th,
      #footer table.times tbody td {
        padding: 5px 10px; }
    #footer footer {
      padding-left: 15px;
      padding-right: 15px; }
      #footer footer .clinic {
        width: 49%; }
      #footer footer .contact {
        width: 48%; }
        #footer footer .contact h2 {
          margin-bottom: 15px; }
        #footer footer .contact .reservation {
          margin-bottom: 25px; }
          #footer footer .contact .reservation .tel {
            margin-bottom: 15px; }
    #footer .gmap {
      height: 400px; } }
  @media screen and (max-width: 767px) {
    #footer {
      margin-top: 4rem;
      padding-bottom: 5.3rem; }
      #footer .pagetop {
        display: none; }
      #footer table.times {
        border-radius: 0.5rem;
        font-size: 1rem; }
        #footer table.times th,
        #footer table.times td {
          padding: 0.4rem 1rem; }
        #footer table.times tbody th,
        #footer table.times tbody td {
          padding: 0.4rem 1rem; }
      #footer footer {
        padding: 2rem 1.5rem 0;
        display: block; }
        #footer footer::before {
          content: "";
          height: 3rem;
          top: -2.5rem;
          width: calc(100% - 2.4rem);
          left: 1.2rem; }
        #footer footer .clinic {
          width: auto; }
          #footer footer .clinic .tagline {
            font-size: 1rem;
            margin-bottom: 1rem; }
          #footer footer .clinic .logo {
            margin-bottom: 1rem; }
            #footer footer .clinic .logo img {
              width: 27.5rem; }
          #footer footer .clinic .address {
            font-size: 1.4rem;
            margin-bottom: 1rem;
            line-height: 1.3; }
          #footer footer .clinic .access {
            align-items: center;
            justify-content: flex-end;
            flex-direction: row-reverse;
            margin-bottom: 2rem; }
            #footer footer .clinic .access > * {
              margin-right: 0.5rem;
              background: #4b3614;
              color: #fff;
              font-size: 1.4rem;
              font-weight: 700;
              padding: 0 1.3rem;
              border-radius: 1.1rem; }
              #footer footer .clinic .access > * img {
                display: none; }
              #footer footer .clinic .access > * span {
                position: static;
                visibility: visible; }
        #footer footer .contact {
          width: auto; }
          #footer footer .contact h2 {
            font-size: 1.4rem;
            padding: 0.3rem 0;
            margin-bottom: 1.5rem; }
          #footer footer .contact .reservation {
            margin-bottom: 1rem; }
            #footer footer .contact .reservation a {
              text-decoration: none; }
            #footer footer .contact .reservation .tel {
              font-size: 2.4rem;
              margin-bottom: 1rem; }
            #footer footer .contact .reservation .btn_online a {
              width: 13.5rem;
              height: 2.7rem;
              border-radius: 1.3rem;
              font-size: 1.4rem; }
              #footer footer .contact .reservation .btn_online a::before {
                content: "";
                width: 1.3rem;
                height: 1.3rem;
                margin-right: 0.5rem; }
      #footer .copy {
        padding: 1.5rem 0 2rem;
        font-size: 1rem; }
      #footer .gmap {
        height: 23.5rem; }
      #footer .fixed_footer {
        display: flex;
        background: #dad4c8;
        position: fixed;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 5.3rem;
        z-index: 10; }
        #footer .fixed_footer a {
          text-decoration: none; }
        #footer .fixed_footer .btn_menu {
          width: 16%;
          height: 5.3rem;
          cursor: pointer;
          position: relative;
          background: #4b3614; }
          #footer .fixed_footer .btn_menu > div {
            width: 2.3rem;
            height: 2.3rem;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%); }
            #footer .fixed_footer .btn_menu > div span {
              position: absolute;
              display: block;
              width: 100%;
              height: 0.25rem;
              background: #fff;
              border-radius: 0.15rem;
              transition: 0.2s; }
              #footer .fixed_footer .btn_menu > div span:nth-child(1) {
                top: 0; }
              #footer .fixed_footer .btn_menu > div span:nth-child(2) {
                top: 50%;
                transform: translateY(-50%); }
              #footer .fixed_footer .btn_menu > div span:nth-child(3) {
                bottom: 0; }
            .js-menuOpen #footer .fixed_footer .btn_menu > div span:nth-child(1) {
              top: 50%;
              transform: translateY(-50%) rotate(135deg); }
            .js-menuOpen #footer .fixed_footer .btn_menu > div span:nth-child(2) {
              opacity: 0; }
            .js-menuOpen #footer .fixed_footer .btn_menu > div span:nth-child(3) {
              bottom: auto;
              top: 50%;
              transform: translateY(-50%) rotate(-135deg); }
        #footer .fixed_footer .reservation {
          width: 39%; }
          #footer .fixed_footer .reservation a {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 5.3rem;
            text-decoration: none;
            color: #fff;
            font-size: 1.4rem;
            font-weight: 700;
            background: #e35a67; }
            #footer .fixed_footer .reservation a::before {
              content: "";
              width: 1.8rem;
              height: 1.6rem;
              background: url(img/cmn/icon_pc.png) no-repeat;
              background-size: 100% auto;
              margin: 0.4rem 0.5rem 0 0; }
        #footer .fixed_footer .tel {
          width: 45%; }
          #footer .fixed_footer .tel a {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 5.3rem;
            font-size: 1.6rem;
            font-weight: 700;
            color: #2d2622;
            background: #fff; }
            #footer .fixed_footer .tel a::before {
              content: "";
              width: 1.4rem;
              height: 1.4rem;
              background: url(img/cmn/icon_tel.png) no-repeat;
              background-size: 100% auto;
              margin: 0.2rem 0.3rem 0 0; }
      #footer #menu {
        display: block;
        position: fixed;
        left: 0;
        bottom: 0;
        width: 100%;
        z-index: 5;
        padding: 1.5rem 1.5rem 7.3rem 1.5rem;
        background: #dad4c8;
        transform: translateY(100%);
        opacity: 0;
        visibility: hidden;
        transition: 0.3s; }
        #footer #menu .logo {
          margin-bottom: 1rem; }
          #footer #menu .logo img {
            width: 27.5rem; }
        #footer #menu .address {
          font-size: 1.4rem; }
        #footer #menu .tel {
          margin-bottom: 0.5rem; }
          #footer #menu .tel a {
            font-size: 2.4rem;
            font-weight: 700;
            text-decoration: none;
            color: #4b3614; }
        #footer #menu .gnav {
          margin: 2rem -1.5rem 0;
          display: flex;
          flex-wrap: wrap; }
          #footer #menu .gnav li {
            width: 50%;
            border-right: solid 1px #dad4c8;
            border-bottom: solid 1px #dad4c8; }
            #footer #menu .gnav li:nth-child(even) {
              border-right: none; }
            #footer #menu .gnav li a {
              display: block;
              text-align: center;
              padding: 0.3rem 0;
              text-decoration: none;
              font-size: 1.4rem;
              position: relative;
              background: #fff; }
              #footer #menu .gnav li a span {
                font-size: 1.0rem;
                position: absolute;
                left: 50%;
                top: calc(100% + 3px);
                padding: 2px;
                display: block;
                border: 2px solid #FFF;
                transform: translate(-50%);
                background: #f89b3c;
                color: #FFF;
                width: 75%;
                text-align: center;
                z-index: 10;
                border-radius: 50vh; }
                #footer #menu .gnav li a span:after {
                  width: 10px;
                  aspect-ratio: 1/cos(30deg);
                  clip-path: polygon(50% 0, 100% 100%, 0 100%);
                  background: #f89b3c;
                  content: "";
                  display: block;
                  position: absolute;
                  left: calc(50% - 5px);
                  bottom: 100%; }
        .js-menuOpen #footer #menu {
          transform: translateY(0);
          opacity: 1;
          visibility: visible; } }

/* 
Theme Name:きしもと内科クリニック
*/
/* ------------------------------------
// content structure
----------------------------------- */
main article {
  max-width: 1240px;
  margin: 0 auto;
  padding: 60px 20px 100px; }
  main article section {
    margin-bottom: 80px; }
    main article section:last-child {
      margin-bottom: 0; }
  main article p,
  main article ul {
    margin-bottom: 30px;
    line-height: 1.8; }
    main article p:last-child,
    main article ul:last-child {
      margin-bottom: 0; }
  main article li,
  main article dt,
  main article dd {
    line-height: 1.8; }
main .posC {
  text-align: center; }
main .posR {
  text-align: right; }
@media screen and (max-width: 1200px) {
  main article {
    padding: 40px 20px 100px 20px; } }
@media screen and (max-width: 767px) {
  main article {
    padding: 2rem 2rem 5rem; }
    main article section {
      margin-bottom: 3rem; }
    main article p,
    main article ul {
      margin-bottom: 2rem; } }

/* ------------------------------------
// pagetitle
----------------------------------- */
#pagetitle {
  padding-bottom: 160px;
  position: relative;
  background: url(img/cmn/bg_pagetitle_03.png) no-repeat center 242px;
  background-size: 100% auto; }
  #pagetitle::before, #pagetitle::after {
    content: "";
    display: block;
    position: absolute;
    z-index: 1; }
  #pagetitle::before {
    width: 156px;
    height: 222px;
    top: 42px;
    left: 40px;
    background: url(img/cmn/bg_pagetitle_01.png) no-repeat; }
  #pagetitle::after {
    width: 255px;
    height: 185px;
    top: 80px;
    right: 40px;
    background: url(img/cmn/bg_pagetitle_02.png) no-repeat; }
  #pagetitle .vi {
    position: absolute;
    top: 0;
    right: 0;
    display: inline-block;
    width: 929px;
    height: 242px;
    background: #fff url(img/greeting/vi.jpg) no-repeat right top; }
    #pagetitle .vi::before {
      content: "";
      width: 62px;
      height: 242px;
      background: url(img/cmn/bg_pagetitle_04.png);
      position: absolute;
      top: 0;
      right: 929px;
      transform: translateX(100%); }
  #pagetitle h1 {
    max-width: 1200px;
    margin: 0 auto;
    height: 242px;
    position: relative; }
    #pagetitle h1 span {
      font-size: 3.2rem;
      font-weight: 700;
      position: absolute;
      top: 50%;
      left: 0;
      width: 476px;
      text-align: center;
      transform: translateY(-50%);
      z-index: 1; }
  @media screen and (max-width: 1400px) {
    #pagetitle .vi {
      width: 66vw; }
      #pagetitle .vi::before {
        right: 66vw; } }
  @media screen and (max-width: 1023px) {
    #pagetitle {
      padding-bottom: 80px; }
      #pagetitle .vi {
        background-position: center top; } }
  @media screen and (max-width: 767px) {
    #pagetitle {
      padding-bottom: 10vw;
      background-position: center 60vw; }
      #pagetitle::before {
        width: 19vw;
        height: 30vw;
        top: auto;
        bottom: 5vw;
        left: 2vw;
        background-size: 100% auto; }
      #pagetitle::after {
        width: 34vw;
        height: 22.8vw;
        top: auto;
        bottom: 7.5vw;
        right: 1vw;
        background-size: 100% auto; }
      #pagetitle .vi {
        position: absolute;
        top: 0;
        right: 0;
        display: inline-block;
        width: 100%;
        height: 60vw;
        background-position: center top;
        background-size: cover; }
        #pagetitle .vi::before {
          display: none; }
      #pagetitle h1 {
        max-width: 1200px;
        margin: 0 auto;
        height: 60vw;
        position: relative; }
        #pagetitle h1 span {
          font-size: 2.6rem;
          font-weight: 700;
          position: absolute;
          left: 0;
          width: 100%;
          background: rgba(255, 255, 255, 0.8);
          padding: 0.5rem 0; } }

/* ------------------------------------
// heading
----------------------------------- */
main .htype01 {
  display: flex;
  align-items: center;
  font-size: 3.6rem;
  font-weight: 700;
  color: #4b3614;
  padding-left: 80px;
  min-height: 76px;
  position: relative;
  margin-bottom: 40px; }
  main .htype01::before {
    content: "";
    width: 42px;
    height: 76px;
    background: url(img/cmn/icon_tree_01.png) no-repeat;
    background-size: 100% auto;
    position: absolute;
    left: 0;
    top: 0; }
main .htype02 {
  display: flex;
  align-items: center;
  font-size: 2.8rem;
  font-weight: 700;
  color: #4b3614;
  padding-left: 75px;
  min-height: 46px;
  position: relative;
  margin-bottom: 25px; }
  main .htype02::before {
    content: "";
    width: 38px;
    height: 46px;
    background: url(img/cmn/icon_reef_01.png) no-repeat;
    background-size: 100% auto;
    position: absolute;
    left: 0;
    top: 0; }
@media screen and (max-width: 767px) {
  main .htype01 {
    font-size: 2rem;
    padding-left: 4rem;
    min-height: 5rem;
    margin-bottom: 1rem; }
    main .htype01::before {
      content: "";
      width: 2.6rem;
      height: 5rem; }
  main .htype02 {
    font-size: 1.7rem;
    padding-left: 5rem;
    min-height: 3.3rem;
    margin-bottom: 1rem; }
    main .htype02::before {
      width: 2.5rem;
      height: 3.3rem; } }

/* ------------------------------------
// table, form
----------------------------------- */
main .hissu {
  display: inline-block;
  width: 65px;
  background: #e35a67;
  color: #fff;
  font-size: 1.6rem;
  padding: 0 15px 2px;
  border-radius: 5px; }
main .tbl01 {
  border: solid 1px #eaced1;
  padding: 4px; }
  main .tbl01 table {
    width: 100%;
    font-size: 2rem;
    color: #3b2519; }
    main .tbl01 table th,
    main .tbl01 table td {
      padding: 25px 30px; }
    main .tbl01 table th {
      width: 28%;
      text-align: left;
      border-bottom: solid 1px #fff;
      background: #eaced1;
      position: relative; }
      main .tbl01 table th .hissu {
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%); }
    main .tbl01 table td {
      border-bottom: solid 1px #eaced1; }
      main .tbl01 table td.input {
        padding: 10px; }
        main .tbl01 table td.input input[type="text"],
        main .tbl01 table td.input input[type="email"],
        main .tbl01 table td.input textarea {
          background: #dee9f2;
          border-radius: 10px;
          padding: 15px 20px;
          border: none;
          width: 100%;
          max-width: 700px;
          font-size: 2rem;
          font-weight: 500;
          font-family: "Zen Maru Gothic", sans-serif;
          vertical-align: top; }
          main .tbl01 table td.input input[type="text"]::placeholder,
          main .tbl01 table td.input input[type="email"]::placeholder,
          main .tbl01 table td.input textarea::placeholder {
            color: rgba(59, 37, 25, 0.5); }
        main .tbl01 table td.input input.name {
          max-width: 500px; }
        main .tbl01 table td.input input.age {
          max-width: 120px;
          margin-right: 10px;
          vertical-align: middle; }
        main .tbl01 table td.input textarea {
          height: 150px; }
      main .tbl01 table td ul.radio {
        display: flex;
        margin-top: 5px; }
        main .tbl01 table td ul.radio li {
          margin-right: 50px; }
          main .tbl01 table td ul.radio li:last-child {
            margin-right: 0; }
          main .tbl01 table td ul.radio li label {
            position: relative;
            padding-left: 30px;
            cursor: pointer; }
            main .tbl01 table td ul.radio li label .ind {
              position: absolute;
              left: 0;
              top: 5px;
              width: 20px;
              height: 20px;
              border: solid 3px #3b2519;
              border-radius: 50%;
              display: block; }
            main .tbl01 table td ul.radio li label input {
              position: absolute;
              opacity: 0;
              z-index: -1; }
              main .tbl01 table td ul.radio li label input:checked ~ .ind::after {
                content: "";
                width: 10px;
                height: 10px;
                background: #3b2519;
                display: block;
                position: absolute;
                border-radius: 50%;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%); }
      main .tbl01 table td .mwform-radio-field.horizontal-item {
        margin-right: 40px;
        display: inline-block; }
        main .tbl01 table td .mwform-radio-field.horizontal-item:last-child {
          margin-right: 0; }
        main .tbl01 table td .mwform-radio-field.horizontal-item label {
          position: relative;
          padding-left: 30px;
          cursor: pointer; }
          main .tbl01 table td .mwform-radio-field.horizontal-item label .ind {
            position: absolute;
            left: 0;
            top: 5px;
            width: 20px;
            height: 20px;
            border: solid 3px #3b2519;
            border-radius: 50%;
            display: block; }
          main .tbl01 table td .mwform-radio-field.horizontal-item label input {
            position: absolute;
            opacity: 0;
            z-index: -1; }
            main .tbl01 table td .mwform-radio-field.horizontal-item label input:checked ~ .ind::after {
              content: "";
              width: 10px;
              height: 10px;
              background: #3b2519;
              display: block;
              position: absolute;
              border-radius: 50%;
              top: 50%;
              left: 50%;
              transform: translate(-50%, -50%); }
    main .tbl01 table tr:last-child th,
    main .tbl01 table tr:last-child td {
      border-bottom: none; }
@media screen and (max-width: 767px) {
  main .hissu {
    width: auto;
    font-size: 1.2rem;
    padding: 0.1rem 1rem 0.2rem;
    border-radius: 0.5rem; }
  main .tbl01 {
    padding: 0.4rem; }
    main .tbl01 table {
      width: 100%;
      font-size: 1.4rem; }
      main .tbl01 table th,
      main .tbl01 table td {
        display: block;
        width: 100%;
        padding: 1rem; }
      main .tbl01 table th {
        width: 100%; }
        main .tbl01 table th .hissu {
          right: 1rem; }
      main .tbl01 table td.input {
        padding: 0.5rem 0.2rem; }
        main .tbl01 table td.input input[type="text"],
        main .tbl01 table td.input input[type="email"],
        main .tbl01 table td.input textarea {
          border-radius: 0.5rem;
          padding: 1rem;
          font-size: 1.4rem; }
          main .tbl01 table td.input input[type="text"]::placeholder,
          main .tbl01 table td.input input[type="email"]::placeholder,
          main .tbl01 table td.input textarea::placeholder {
            color: rgba(59, 37, 25, 0.5); }
        main .tbl01 table td.input input.age {
          max-width: 6rem;
          margin-right: 1rem; }
        main .tbl01 table td.input textarea {
          height: 10rem; }
      main .tbl01 table td .mwform-radio-field.horizontal-item {
        margin-right: 2rem;
        display: inline-block; }
        main .tbl01 table td .mwform-radio-field.horizontal-item label {
          padding-left: 2rem;
          cursor: pointer; }
          main .tbl01 table td .mwform-radio-field.horizontal-item label .ind {
            top: 0.4rem;
            width: 1.5rem;
            height: 1.5rem;
            border-width: 0.3rem; }
          main .tbl01 table td .mwform-radio-field.horizontal-item label input:checked ~ .ind::after {
            content: "";
            width: 0.7rem;
            height: 0.7rem; } }

/* ------------------------------------
// btn
----------------------------------- */
.btn01 {
  text-align: center;
  margin-top: 35px; }
  .btn01 a,
  .btn01 button {
    display: inline-block;
    min-width: 392px;
    margin: 0 auto;
    border-radius: 26px;
    background: #e35a67;
    color: #fff;
    padding: 6px 0 8px;
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: 2.6rem;
    position: relative;
    text-decoration: none;
    transition: 0.3s; }
    .btn01 a:hover,
    .btn01 button:hover {
      opacity: 0.8; }
    .btn01 a.arrow,
    .btn01 button.arrow {
      font-size: 3.2rem;
      padding: 22px 0 24px;
      border-radius: 45px;
      min-width: 520px; }
      .btn01 a.arrow::after,
      .btn01 button.arrow::after {
        content: "";
        width: 33px;
        height: 33px;
        background: url(img/cmn/icon_arrow_01.png) no-repeat 0 0/100% auto;
        position: absolute;
        top: 50%;
        right: 45px;
        transform: translateY(-50%); }
  @media screen and (max-width: 767px) {
    .btn01 {
      margin-top: 1.5rem; }
      .btn01 a,
      .btn01 button {
        width: 100%;
        min-width: 0;
        font-size: 1.6rem; }
        .btn01 a.arrow,
        .btn01 button.arrow {
          font-size: 1.8rem;
          padding: 0.6rem 0 0.8rem;
          border-radius: 2rem;
          min-width: 0; }
          .btn01 a.arrow::after,
          .btn01 button.arrow::after {
            width: 2.8rem;
            height: 2.8rem; } }

/* ------------------------------------
// notFound
----------------------------------- */
.notFound {
  text-align: center;
  padding: 100px 0; }
