@charset "utf-8";
/*
Theme Name:mrp-child
Template:mrp
Version: 1.0.0
*/
/*
DesignCode CSS: ver 0.01
/*------------------------------------------------------
Theme Material
------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900');

:root {
  --color-background: #fff;
  --color-font: #333;
  --color-primary: #595757;
  --color-primary-shade: #111;
  --color-primary-tint: #bbb;
  --color-secondary: #aaa;
  --color-secondary-tint: #eee;
  --color-table-border: #ccc;
  --body-font-size: min(calc(1.6rem + (1vw - 1.92rem) * 0.1294), 1.6rem);
  --body-font-family: 'Noto Sans JP', sans-serif;
  --content-max-width: 1240px;
  --header-background: #fff;
  --header-color-font: #333;
  --header-color-primary: #595757;
  --header-color-primary-shade: #111;
  --header-color-primary-tint: #bbb;
  --footer-background: transparent;
  --footer-color-font: #333;
  --footer-color-primary: #bbb;
  --font-family01: 'Noto Sans JP', sans-serif;
  --font-family02: 'Poppins', 'Noto Sans JP', sans-serif;
}


/*================================
common-baseparts
================================*/

body {
  font-weight: 400;
  background: #F1F1F1;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

a {
  cursor: pointer;
  color: var(--color-font);
  -webkit-transition: .3s all;
  -o-transition: .3s all;
  transition: .3s all;
}

/* ----linkbtn----*/

.linkBtn, .post .linkBtn, a.linkBtn {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: var(--px40);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: none;
  font-size: 18px;
  color: var(--color-font);
  line-height: 1.4;
  text-align: left;
  background: transparent;
  font-weight: 400;
  padding: 10px 10px 10px 0;
  margin: var(--px40) auto 0 0;
  font-family: var(--font-family02);
  border: none;
  letter-spacing: 0.2rem;
  border-radius: 0;
  -webkit-transition: .3s all;
  -o-transition: .3s all;
  transition: .3s all;

  @media print, screen and (max-width: 960px) {
    font-size: 14px;
  }
}
.linkBtn.centerbtn, .post .linkBtn.centerbtn, a.linkBtn.centerbtn {
  margin: var(--px60) auto 0;
}
.post .linkBtn::after, .linkBtn::after, a.linkBtn::after {
  content: "";
  position: static;
  width: 50px;
  height: 50px;
  border: 1px solid;
  border-radius: 50%;
  right: inherit;
  top: inherit;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
  -webkit-transition: .3s all;
  -o-transition: .3s all;
  transition: .3s all;
  
  @media print, screen and (max-width: 960px) {
    width: 35px;
    height: 35px;
  }
}
.post .linkBtn::before, .linkBtn::before, a.linkBtn::before {
    content: '';
    position: absolute;
    width: 7px;
    height: 7px;
    border-style: solid;
    border-width: 1px 1px 0 0;
    top: calc(50% + -2px);
    right: 33px;
    -webkit-transform: translate(-70%, -50%) rotate(45deg);
    -ms-transform: translate(0%, -50%) rotate(45deg);
        transform: translate(0%, -50%) rotate(45deg);
    -webkit-transition: .3s all;
    -o-transition: .3s all;
    transition: .3s all;

    @media print, screen and (max-width: 960px) {
      width: 5px;
      height: 5px;
      right: 27px
    }
}
.linkBtn:hover, .post .linkBtn:hover, a.linkBtn:hover {
    color: var(--color-font);
    background: transparent;

    &::before {
      border-color: #fff;
    }
    &::after {
      background: var(--color-font);
    }
}

/* ----txtlink----*/

.txtlink {
  font-family: var(--font-family02);
  border-bottom: solid 1px;
  padding-bottom: 0.2rem;
  margin: var(--rem60) 0 0;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content
}

/* ----ctabtn----*/

a.ctabtn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: var(--px20);
    background:  var(--color-primary);
    color: #fff;
    max-width: 420px;
    width: 100%;
    font-size: var(--px24);
    font-family: var(--font-family02);
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;

    &:hover {
      background-color:  var(--color-primary-shade);
    }

    span.ctaja {
        font-size: var(--px16);
        font-family: var(--font-family01);
    }
}

/*================================
ctaarea
================================*/

.ctaarea {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    width: 100%;

    & > div {
        width: calc(100% / 3);
        height: 640px;
        font-size: var(--px20);
    }
    .ctaimg {
        overflow: hidden;
		line-height: 0;

        img {
            -o-object-fit: cover;
               object-fit: cover;
            width: 100%;
            height: 100%;
        }
    }
    .ctatxtarea {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        text-align: center;
        font-size: var(--px14);
        gap: var(--px30);
        padding: var(--px60);
        background: #fff;
    }
    .googlemap {
        margin: 0;
        padding: 0;
    }
    @media print, screen and (max-width: 960px) {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;

        & > div {
          width: 100%;
          min-height: 300px;
          height: auto;
        }
    }
}

/*================================
table
================================*/

.post {
  table {
    margin: calc(30px + (1vw - 19.2px) * 0.6472) auto;
    border: none;

    tr {
      border-bottom: 1px solid var(--color-table-border);
    }
    th, td {
      padding: 24px 10px 18px;
      min-height: 40px;
      vertical-align: middle;
      border: none;
      background: transparent;
    }
    thead th, thead td {
      height: 20px;
    }
    th {
      font-weight: 600;
      width: 30%;
      border-bottom: 1px solid var(--color-font);
    }
    &:first-child {
      margin-top: 0;
    }
    &:last-child {
      margin-bottom: 0;
    }
    @media print, screen and (max-width: 640px) {
      &.responsive {
        th, td {
            text-align: left;
            max-width: none;
            padding: 16px 0 0 0;
            min-height: auto;
        }
        td {
          margin-bottom: 5px;
          padding: 4px 0 0 0;
        }
        th {
          font-size: 1.4rem;
          margin-top: 0;
          border: none;
        }
        tr:first-of-type th {
          margin-top: 0;
          padding-top: 0;
        }
      }
    }
  }
}

/*================================
head
================================*/

h1.title, .post h1, header#h1Header h1.title {
  text-align: center;;
  color: var(--color-font);
  line-height: 1.2;
  font-size: var(--rem60);
  font-family: var(--font-family02);
  font-weight: 200;
  letter-spacing: 0.4em;
}

.post { 
  h2 {
    position: relative;
    font-family: var(--font-family01);
    font-weight: 400;
    font-size: var(--rem28);
    line-height: 1.8;
    text-align: center;
    letter-spacing: 0.15em;
    color: var(--color-font);
    margin: var(--rem80) 0 0;
    padding-bottom: var(--rem60);

    &:before {
      content: "";
      position: absolute;
      width: 0.1rem;
      height: var(--rem40);
      background: var(--color-primary);
      bottom: 0;
      left: 50%;
      -webkit-transform: translateX(calc(-50% - 0.05rem));
          -ms-transform: translateX(calc(-50% - 0.05rem));
              transform: translateX(calc(-50% - 0.05rem));
    }
    &:after {
      content: none;
    }
  }

  h3 {
    font-size: var(--rem36);
    font-family: var(--font-family02);
    font-weight: 300;
    text-align: left;
    letter-spacing: .2rem;
    padding: 0;
    margin: var(--px120) auto var(--px50);
    border: none;
  }

  h4 {
    font-size: var(--rem30);
    font-family: var(--font-family02);
    font-weight: 300;
    text-align: left;
    letter-spacing: .2rem;
    margin: var(--px120) auto var(--px50);
  }
}

/*================================
txt
================================*/

@media print, screen and (max-width: 640px) {
  .read_txt {
    text-align: left;
  }
}

/*================================
#header
================================*/

nav#mainNav ul li a b {
  font-family: var(--font-family02);
  font-weight: 400;
}

@media print, screen and (min-width: 1024px) {
    #header {
      overflow: visible;
      color: var(--header-color-font);
      background: var(--header-background);
      width: 100%;
      height: 80px;
      margin: auto;
      z-index: 9999;
      position: absolute;
      top: 0;
      left: 0;
      background: transparent;

      #header-layout {
        -webkit-box-pack: end;
            -ms-flex-pack: end;
                justify-content: flex-end;
      }
      .header__nav-contact {
        backdrop-filter: blur(8px);
      }
      .logo {
        display: block;
        line-height: 0;
        padding: min(calc(10px + (1vw - 19.2px) * 0.5580), 10px) min(calc(20px + (1vw - 19.2px) * 1.1161), 20px);
        position: absolute;
        width: 120px;
        height: 120px;
        top: 1%;
        left: 1%;
      }
      a.ctabtn {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        padding: var(--px20) var(--px40);
        background: var(--color-primary);
        color: #fff;
        font-size: var(--px16);
        font-family: var(--font-family02);
        font-weight: 400;

        &:hover {
          background-color:  var(--color-primary-shade);
        }
        span.ctaja {
            font-size: var(--px12);
            font-family: var(--font-family01);
        }
      }
    }
    .sticky-header #header > .inner {
      height: auto;
      background: transparent;
      -webkit-box-shadow: none;
              box-shadow: none;
    }
    .sticky-header #header-layout {
      -webkit-box-pack: end;
          -ms-flex-pack: end;
              justify-content: flex-end;
    }

    /* ----navanimation----*/

    nav#mainNav ul li a b {
      position: relative;
      font-weight: 400;
    }
    nav#mainNav ul li a b:before {
      position: absolute;
      bottom: -8px;
      left: 0;
      content: '';
      width: 100%;
      height: 1px;
      background: var(--color-font);
      -webkit-transform: scale(0, 1);
          -ms-transform: scale(0, 1);
              transform: scale(0, 1);
      -webkit-transform-origin: right top;
          -ms-transform-origin: right top;
              transform-origin: right top;
      -webkit-transition: -webkit-transform .3s;
      transition: -webkit-transform .3s;
      -o-transition: transform .3s;
      transition: transform .3s;
      transition: transform .3s, -webkit-transform .3s;
      z-index: 0;
    }	
    nav#mainNav ul li a:hover b:before {
      -webkit-transform-origin:left top;
          -ms-transform-origin:left top;
              transform-origin:left top;
      -webkit-transform: scale(1, 1);
          -ms-transform: scale(1, 1);
              transform: scale(1, 1);
    }
    nav#mainNav ul li a:active, nav#mainNav ul li a:hover, nav#mainNav ul li.current-menu-ancestor a, nav#mainNav ul li.current-menu-item a, nav#mainNav ul li.current-menu-parent a {
      background: transparent;
    }
    nav#mainNav ul li.current-menu-item a b, nav#mainNav ul li a:hover b, nav#mainNav ul li a:active b, nav#mainNav ul li.current-menu-parent a b {
      color: inherit;
    }

    /* ----sub-menu----*/

    nav#mainNav ul ul.sub-menu {
        width: -webkit-max-content;
        width: -moz-max-content;
        width: max-content;
        height: auto;
    }
}

/* ----sub-page----*/

body:not(.home) header#header {
  position: static;
    
  @media print, screen and (min-width: 1024px) {
    #header-layout {
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
    }
    .logo {
      position: static;
    }
  }
}

/* ----sp---*/

.spmenu #menu span, .spmenu #menu span:after, .spmenu #menu span:before {
    height: 1px;
}
@media print, screen and (max-width: 1023px) {
    .mobile #header {
        background: transparent;
        box-shadow: none;
        z-index: 9999;
    }
    body.mobile {
      margin-top: 0;
    }
}


/*================================
footer
================================*/

/* ----全体LAYOUT調整----*/

#footer {
  color: var(--color-font);
  font-size: var(--rem14);
  padding: 0;
  background: transparent;
  
  .toparea {
      width: 94%;
      margin: 0 auto;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      gap: 3%;
      padding: var(--px50) 0;
      
      @media print, screen and (max-width: 768px) {
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
              -ms-flex-direction: column;
                  flex-direction: column;
      }
      .logoarea {
        text-align: left;
        font-size: var(--rem12);
        color: var(--color-primary);
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;

        .logo {
          max-width: var(--px80);
          margin-bottom: var(--px20);
        }
        @media print, screen and (max-width: 1023px) {
          margin-bottom: var(--px30);
        }
      }
      .navarea {
          width: -webkit-fit-content;
          width: -moz-fit-content;
          width: fit-content;
      }
      .footnav {
      
          &:not(:last-child) {
              margin-bottom: 0;
          }
          
          ul {
              -webkit-box-pack: start;
              -ms-flex-pack: flex-start;
              justify-content: flex-start;
              
               li {
                  margin: 0;
                  display: inline-block;
              }
              @media print, screen and (max-width: 768px) {
                  -webkit-box-pack: flex-start;
                  -ms-flex-pack: flex-start;
                  justify-content: flex-start;
              }
          }
      }
  }
  .bottomarea {
    margin: var(--px40) auto var(--px30);
    width: 94%;
    font-size: var(--rem12);
    color: var(--color-primary);
    font-weight: 400;

    #copyright {
        color: var(--color-font);
        line-height: inherit;
        text-align: left;
        margin: 0;
        background: transparent;
        -ms-flex-item-align: center;
            -ms-grid-row-align: center;
            align-self: center;
        
        @media print, screen and (max-width: 768px) {
            margin-top: 10px;
            text-align: left;
        }
    }
  }
}

#footer .socialicon ul, .socialicon ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0;
    margin-top: var(--rem24w);
}
#footer .socialicon .fa-facebook:before, #footer .socialicon .fa-twitter:before, #footer .socialicon .fa-youtube:before, #footer .socialicon .fa-instagram:before, #footer .socialicon .fa-x-twitter:before, #footer .socialicon .fa-line:before, #footer .socialicon .fa-tiktok:before {
    color: var(--footer-color-font);
    font-size: var(--rem24w);
}

#footer li a, .footeradd, .footertel, #footer li a:hover {
  color: var(--footer-color);
}

#footer ul li a:hover, #footer ul li.navlist-item a:hover, #footer ul li.navlist-item ul.sub-menu > li a:hover {
  text-decoration: none;
  opacity: 0.7;
}


/*-----------navlist --------------*/

#footer ul.navlist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: var(--rem60);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: left;
  padding: 0;
  margin: var(--rem20) 0 0 0;
  padding: 0;
  margin: 0;
  
  li {
      padding: 0;
      margin: 0;
      
      &.navlist-item {
          min-width: 100px;
          font-size: var(--rem20);
          margin-bottom: 0.2rem;
          
          a {
              padding: 0.2rem 0.5rem;
              line-height: 1.4;
              color: var(--color-font);
              font-size: var(--rem12);
              position: relative;
              overflow: inherit;
              display: inline-block;
          }
          
          .footer_nav > ul > li > a {
              font-size: var(--rem12);
              margin-bottom: 0.2rem;
          }
      }
  }
  ul.sub-menu {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
          display: -webkit-box;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      margin-left: 1rem;
      gap: 5px 20px;
      max-height: 16rem;
      
      li {
          position: relative;
          margin: 0;
          line-height: 1;
          
          a {
              color: var(--footer-color-font);
              font-size: var(--rem12);
              padding: 0.2rem 0 0.2rem 1.6rem;
              
              &::before {
                display: block;
                content: '';
                position: absolute;
                top: 50%;
                left: 0;
                width: 4px;
                height: 4px;
                border-right: 1px solid var(--color-font);
                border-bottom: 1px solid var(--color-font);
                background: transparent;
                -webkit-transform: rotate(-45deg);
                -ms-transform: rotate(-45deg);
                    transform: rotate(-45deg);
                margin-top: -2px;
                -webkit-transition: .3s all;
                -o-transition: .3s all;
                transition: .3s all;
              }
          }
      }
  }
}
@media screen and (max-width: 640px) {
#footer ul.navlist {
    gap: 0px;
    -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  li {
  &.navlist-item {
          display: inline-block;
      }
    }
  }
}
/*================================
spfooter
================================*/

#MESY_FTMFM_footer_bar-wrapper ul#MESY_FTMFM_footer_bar li {
  &.link_menu.bg_01 {
    background: var(--color-primary);

    p.menu_name {
      color: #fff;
      padding: 10px 0;
      font-family: var(--font-family02);
      font-weight: 400;
    }
  }

  &.link_menu.bg_02 {
    background: var(--color-primary-shade);

    p.menu_name {
      color: #fff;
      padding: 10px 0;
      font-family: var(--font-family02);
      font-weight: 400;
    }
  }

  &.link_menu.bg_wt {
    background: #fff;

    p.menu_name {
      color: var(--color-font);
      padding: 10px 0;
    }
  }

  p.icon {
    display: none;
  }
}

#scrollUp {
  bottom: 70px !important;
}

/*==============================================
frontpage
==============================================*/
p {
  line-height: 1.8;

  & + p {
    margin-top: var(--rem20);
  }
}

/*-----------mainimga --------------*/

body:not(.home) .mainimgarea {
    display: none;
}

.mainimgarea {
    position: relative;
}
.bannerarea {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;

  a.bannerlink {
    background-color: #ffffffe5;
    padding: var(--px30) var(--px30);
    display: block;
    min-width: 480px;
        -webkit-transition: .3s all;
    -o-transition: .3s all;
    transition: .3s all;
    color: var(--color-font);

    &:hover {
        background-color: var(--color-font);
        color: #fff;
    }
  }
  p {
    font-family: var(--font-family02);
    font-weight: 300;
    font-size: var(--px24);
    line-height: 1.4;
    letter-spacing: 0.15em;
  }
  .bannerttl {
    font-size: var(--px24);
    margin-bottom: 5px;
  }
  .bannercolumn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: var(--px12);
  }
  .bannerday {
    font-size: var(--px18);
    letter-spacing: 0.15em;
    font-weight: 300;
  }
  .bannerbtntxt {
    font-size: var(--px12);
  }
}
@media screen and (max-width: 640px) {
  .bannerarea {
    a.bannerlink {
      min-width: inherit;
      width: fit-content;
      padding: 14px;
    }
    .bannerttl {
      margin-bottom: 5px;
      font-size: 16px;
    }
    .bannercolumn {
      gap: 0;
      flex-direction: column;
    }
    .bannerday {
      font-size: 12px;
    }
    .bannerbtntxt {
      font-size: 11px;
      margin-top: 10px;
    }
  }
}

/*-----------body --------------*/

.post  {
  .sec01 {
    .wrapper_content {
        max-width: 1638px;

        .flexbox {
            gap: 5%;
            -webkit-box-pack: justify;
                -ms-flex-pack: justify;
                    justify-content: space-between;
            margin-left: 2%;

          .imgarea {
            max-width: 927px;
            width: 94%;
          }
            
          .txtarea {
            margin-top: 2%;
            width: 600px;
            text-align: left;

            h1 {
            font-family: var(--font-family01);
            font-weight: 300;
            line-height: 1.4;
            font-size: var(--rem42);
            letter-spacing: 0.1em;
            color: var(--color-font);
            text-align: left;
            margin-right: auto;
            margin-left: 0;
          }
        }
      }
      @media print, screen and (max-width: 960px) {
        .flexbox {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          margin-left: auto;
          margin-right: auto;
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
              -ms-flex-direction: column;
                  flex-direction: column;
          gap: var(--px40);
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center;

          .txtarea {
            width: auto;
          }
          .imgarea {
            max-width: none;
            width: 100%;
          }
        }
      }
    }
  }
  .sec02 {
    padding-top: 0;

    .wrapper_content {
      position: relative;
      width: 100%;
      max-width: none;
      margin: 0 auto;

      .ttlarea {
        width: 94%;
        max-width: var(--content-max-width);
        margin: 0 auto;
      }

      h1 {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        padding: 0;
        gap: var(--rem16);
        font-family: var(--font-family01);
        font-weight: 400;
        font-size: var(--rem16);
        line-height: 1.6;
        text-align: center;
        letter-spacing: 0.1em;
        color: var(--color-font);

        .enttl {
            line-height: 1;
            font-size: var(--rem42);
            font-family: var(--font-family02);
            font-weight: 300;
            letter-spacing: 0.4em;
        }
      }
    }
  }
  .sec03 {
    padding-top: 0;

    .wrapper_content {
        max-width: 1500px;
    }
    h2 {
        font-family: var(--font-family01);
        font-weight: 400;
        font-size: var(--rem24w);
        line-height: 1.8;
        letter-spacing: 0.15em;
        color: var(--color-font);
        text-align: left;
        margin: 0 0 var(--rem30);
        padding-bottom: 0;

        &:before, &:after {
          content: none;
        }
    }
    ul.col2_list {
      display: -ms-grid;
      display: grid;
      -ms-grid-columns: 1fr var(--px160) 1fr;
      grid-template-columns: repeat(2, 1fr);
      grid-column-gap: var(--px160);
      grid-row-gap: var(--px60);
      margin: 0 auto var(--px180);
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;

      @media print, screen and (max-width: 768px) {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
      }
    }
    .flexbox {
      gap: 10%;
      max-width: 1206px;
      margin: 0 auto;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;

      .txtarea {
          max-width: 728px;
      }

      h1 {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: start;
            -ms-flex-pack: start;
                justify-content: flex-start;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        gap: var(--rem16);
        font-family: var(--font-family01);
        font-weight: 400;
        font-size: var(--rem16);
        line-height: 1.6;
        text-align: left;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        letter-spacing: 0.15em;
        color: var(--color-font);
        margin: 0 0 var(--rem48);

        .enttl {
          line-height: 1;
          font-size: var(--rem42);
          font-family: var(--font-family02);
          font-weight: 300;
          letter-spacing: 0.4em;
        }
      }
      dl {
        margin-bottom: var(--rem30);
      }
      dt {
        font-family: var(--font-family01);
        font-style: normal;
        font-weight: 400;
        font-size: var(--rem14);
        line-height: 1.8;
        letter-spacing: 0.05em;
        color: var(--color-font);
        margin-bottom: var(--rem12);
      }
      dd {
            font-size: var(--rem18);
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-pack: start;
                -ms-flex-pack: start;
                    justify-content: flex-start;
            -webkit-box-align: center;
                -ms-flex-align: center;
                    align-items: center;
            gap: var(--rem14);
      }
      span.position {
        font-size: var(--rem12);
      }
    }
    @media print, screen and (max-width: 960px) {
		.profimg {
          width: 65%;
          margin: 0 auto;
		}
      .flexbox {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
              -ms-flex-direction: column;
                  flex-direction: column;
          gap: var(--px80);

          .txtarea {
            max-width: none;
            width: 60%;
          }
      }
    }
    @media print, screen and (max-width: 640px) {
      .flexbox .txtarea {
        width:100%;
      }
    }
  }

  .sec04 {
    .wrapper_content {
      max-width: 1500px;

      .flexbox {
        max-width: 1267px;
        margin: 0 auto;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
      }

      h2 {
        font-family: var(--font-family01);
        font-weight: 400;
        font-size: var(--rem24w);
        line-height: 1.8;
        letter-spacing: 0.15em;
        color: var(--color-font);
        text-align: left;
        margin: 0 0 var(--rem30);
        padding-bottom: 0;

        &:before, &:after {
          content: none;
        }
      }
    }
    @media print, screen and (max-width: 960px) {
      padding-top: 0;

      .wrapper_content .flexbox {
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
              -ms-flex-direction: column;
                  flex-direction: column;
          gap: var(--px80);
      }
    }
  }
  .instaerea {
      max-width: 1500px;
      width: 94%;
      margin: 0 auto var(--px120);

      h1 {
          font-family: var(--font-family02);
          font-style: normal;
          font-weight: 300;
          font-size: var(--rem42);
          line-height: 1;
          text-align: center;
          letter-spacing: 0.4em;
          color: var(--color-font);
      }
  }

  .columnttlarea {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    border-bottom: solid 1px;
    margin-bottom: var(--rem80);
    padding-bottom: var(--rem30);
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;

    @media print, screen and (max-width: 768px) {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      gap: var(--px40);
      border-bottom: none;
      border-top: solid 1px;
      padding-bottom: 0;
      padding-top: var(--px120);
    }

    h1 {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: start;
          -ms-flex-pack: start;
              justify-content: flex-start;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      gap: var(--rem16);
      font-family: var(--font-family01);
      font-weight: 400;
      font-size: var(--rem16);
      line-height: 1.6;
      text-align: center;
      letter-spacing: 0.15em;
      color: var(--color-font);
      margin: 0;

      .enttl {
        line-height: 1;
        font-size: var(--rem42);
        font-family: var(--font-family02);
        font-weight: 300;
        letter-spacing: 0.4em;
      }
      @media print, screen and (max-width: 768px) {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
      }
    }
    a.linkBtn {
      margin: 0;
    }
  }

  .gallerylistarea {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 0px 1fr;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 0px;

    @media print, screen and (max-width: 960px) {
      display: block;
    }
    a.linkfill {
      aspect-ratio: 1 / 0.594;
      position: relative;
      display: block;
      overflow: hidden;

      img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
      }

      .ontxt {
        position: absolute;
        left: 50%;
        top: 50%;
        -webkit-transform: translate(-50%, -50%);
            -ms-transform: translate(-50%, -50%);
                transform: translate(-50%, -50%);
        color: #fff;
        font-family: var(--font-family01);
        font-weight: 400;
        font-size: var(--px24);
        line-height: 1.4;
        text-align: center;
        letter-spacing: 0.1rem;
        z-index: 2;
        opacity: 0;
        -webkit-transition: .3s all;
        -o-transition: .3s all;
        transition: .3s all;

        @media print, screen and (max-width: 960px) {
          font-size: 16px;
        }
      }
      &:before {
        content: "";
        width: 100%;
        height: 100%;
        position: absolute;
        left: 0;
        top: 0;
        background: #00000061;
        z-index: 1;
        opacity: 0;
        -webkit-transition: .3s all;
        -o-transition: .3s all;
        transition: .3s all;
      }
      
      &:hover {
        .ontxt, &:before {
          opacity: 1;
        }
        img {
            opacity: 1;
        }
      }
    }
  }
  .galleryttl {
      position: relative;
      font-family: var(--font-family01);
      font-weight: 400;
      font-size: var(--rem28);
      line-height: 1.8;
      text-align: center;
      letter-spacing: 0.15em;
      color: var(--color-font);
      margin: var(--rem80) 0 0;
      padding-bottom: var(--rem60);

      &:before {
        content: "";
        position: absolute;
        width: 0.1rem;
        height: var(--rem40);
        background: var(--color-primary);
        bottom: 0;
        left: 50%;
        -webkit-transform: translateX(calc(-50% - 0.05rem));
            -ms-transform: translateX(calc(-50% - 0.05rem));
                transform: translateX(calc(-50% - 0.05rem));
    }
  }
}

/*==============================================
postarea
==============================================*/

.frontpostlist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: var(--px30);
  max-width: 1200px;
  width: 100%;
  margin: var(--px120) auto 0;
  text-align: left;

  p.ttltxt {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-align: start;
          -ms-flex-align: start;
              align-items: flex-start;
      text-align: left;
      font-size: var(--rem42);
      font-family: var(--font-family02);
      font-weight: 300;
      letter-spacing: 1.4rem;

      span.subtxt {
        font-size: var(--rem16);
        font-family: var(--font-family01);
        font-weight: 400;
        letter-spacing: 0.1rem;
    }
  }
  .listbodyarea {
    width: 870px;
  }
  @media print, screen and (max-width: 960px) {
    .listbodyarea {
      width: 100%;
    }
    h1.title.bottom-loop {
        margin-bottom: 0;
    }
  }
  a.linkBtn {
    margin-left: auto;
    margin-right: 0;
  }
}

.postlist li {
  border-bottom: 1px solid var(--color-table-border);

  &:first-child {
    border-top: none;
  }
  .post_text {
      gap: 8px;
      width: 100%;
  }
  p.date {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    margin: 0;
    font-family: var(--font-family02);
    line-height: 1;
  }
  .time {
    background: transparent;
    color: var(--color-font);
    border-left: solid 1px;
    margin: 0;
    padding: 0 0 0 8px;
    font-family: var(--font-family02);

    a {
      color: var(--color-font);
      padding: 5px;
    }
  }
  .ttls {
    overflow: hidden;
    white-space: nowrap;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
    margin: 0;

    a:hover {
      text-decoration: none;
      opacity: 0.7;
    }
  }
}

ul.post {
  li.clearfix {
    h2.cat-loop {
      text-align: left;
    }
    h2 a {
        font-size: var(--rem20w);
        font-family: var(--font-family01);
        font-style: normal;
        font-weight: 400;
        font-size: var(--rem24w);
        line-height: 1.8;
        letter-spacing: 0.05em;
        color: var(--color-font);
    }
    .time {
      display: none;
    }
    .post_link {
      position: static;
      width: -webkit-fit-content;
      width: -moz-fit-content;
      width: fit-content;
      margin-top: var(--rem36);
    }
  }
}

/*==============================================
singlepost
==============================================*/

.dateLabel {
    font-family: var(--font-family02);
    font-style: normal;
    font-weight: 300;
}
.single-post h1.title {
    font-family: var(--font-family01);
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0.15em;
}

/*==============================================
subpage
==============================================*/

/* outline */
.page_contents_inner + .page_contents_inner {
  margin-top: var(--px100);
}

/* wpcf7form */
.wpcf7-form .must {
  background: var(--color-primary-shade);
  color: #fff;
}
input[type="text"], input[type="tel"], input[type="email"], input[type="date"], input[type="url"], input[type="number"], select, textarea {
  height: 40px;
}
.wpcf7-form input[type=submit] {
    margin-top: var(--rem36);
    padding: var(--rem16) var(--rem40);
    width: 100%;
    max-width: 240px;
    font-size: var(--rem16);
    color: #fff;
    font-family: var(--font-family01);
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0.1rem;
}
.submit_btn, .post .submit_btn {
    position: relative;
    width: auto !important;
}
submit_btn .wpcf7-spinner, .post .submit_btn .wpcf7-spinner {
    top: inherit;
  }



/* パンくず */
div#breadcrumb span.enttl {
  display: none;
}
@media print, screen and (max-width: 1023px) {
  div#breadcrumb, body.mobile #breadcrumb {
    margin-top: 60px;
  }
}

/*------------------------------------------
subpage - sitemap
------------------------------------------*/

.post ul#sitemap_list li {
  border-bottom: solid 1px;
  padding: var(--rem30) 1rem;
}
.post ul#sitemap_list li span {
  display: none;
}
.post ul#sitemap_list li a {
  line-height: 1.4;
  position: relative;
  overflow: inherit;
  display: inline-block;
  padding: 0.5rem 0.5rem 0.5rem 1.5rem;
}
.post ul#sitemap_list li a:before {
  display: block;
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 4px;
  height: 4px;
  border-right: 1px solid var(--color-font);
  border-bottom: 1px solid var(--color-font);
  background: transparent;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
      transform: rotate(-45deg);
  margin-top: -2px;
  -webkit-transition: .3s all;
  -o-transition: .3s all;
  transition: .3s all;
}

/*------------------------------------------
subpage - privacy
------------------------------------------*/

#privacy h3 {
  color: var(--color-primary);
  background: none;
  font-size: var(--rem24w);
  font-weight: 700;
  text-align: left;
  padding: 0 0 10px;
  margin: var(--px40w) auto var(--px20);
  border: none;
}

/*------------------------------------------
subpage - 404
------------------------------------------*/

.error404 h1.title.first {
  text-align: left;

  &::after {
    content: '';
    position: relative;
    visibility: visible;
    display: block;
    width: var(--rem60);
    height: 0.2rem;
    background: var(--color-primary);
    margin: var(--rem24w) auto 0 0;
    border-radius: 50vh;
  }
}

/*------------------------------------------
subpage 共通
------------------------------------------*/
.fm {
	font-size: 120%;
	font-weight: 500;
}
/*------------------------------------------
subpage - FEATURE
------------------------------------------*/
#feature_about {
	display: flex;
	flex-wrap: wrap;
	column-gap: 2%;
	row-gap: 40px;
}
#feature_about .box {
	width: 23.5%;
}
#feature_about h4 {
	margin: 15px 0;
	padding: 0;
	font-size: var(--rem24);
	text-align: center;
}
#feature_about h4::before {
	display: none;
}
@media only screen and (max-width: 768px) {  /* タブレット以下用 */
	#feature_about {
		column-gap: 4%;
	}
	#feature_about .box {
		width: 100%;}
	
	#feature_about h4 {
			font-size: var(--rem28);
		}
	
}
/*------------------------------------------
subpage - FLOW
------------------------------------------*/
#flow h3 {
	text-align: center;
}
#flow hr+h3 {
	margin-top: 0;
}
#flow h4 {
	position: relative;
	margin-top: var(--px50);
	margin-bottom: var(--px14);
	padding: 0 0 0 3em;
	font-size: var(--rem24w);
}
#flow h4::before {
	display: none;
}
#flow h4 span {
	position: absolute;
	top: 0;
	left: 0;
}
#flow h4 span::after {
	margin-left: 0.4em;
	content: "｜";
}
/*------------------------------------------
subpage - PROFILE
------------------------------------------*/
#profile h3 {
	font-size: var(--rem24w);
}
#profile .photo img {
	width: 335px;
}
#profile .txt .name {
	font-size: 110%;
	letter-spacing: 0.1em;
}
#profile .txt .name span {
	margin-left: 1em;
	font-size: var(--rem28);
}
#profile .txt .fm {
	margin-top: 0;
	font-weight: normal;
	letter-spacing: 0.1em;
}
#profile .txt table,
#profile .txt table tr,
#profile .txt table th,
#profile .txt table td {
	width: auto;
	background: none;
	border: none;
}
#profile .txt table {
	margin: 0;
}
#profile .txt table th {
	padding-right: 2em;
	font-weight: normal;
	white-space: nowrap;
}
#profile .txt table td {
	padding-bottom: 10px;
}
@media print, screen and (min-width:769px){ /* PCのみ */
	#profile .photo {
		width: 40%;
	}
	#profile .txt {
		width: 55%;
	}
}
@media only screen and (max-width: 768px) {  /* タブレット以下用 */
	#profile .photo {
		margin-bottom: 30px;
	}
}
/**/
#profile .msg {
	font-size: 115%;
}
#profile .msg .fm {
	font-weight: normal;
}
#profile .gallery {
	justify-content: flex-start;
	column-gap: 4%;
}
#profile .gallery .gallery-item {
	width: 22% !important;
}
#profile .gallery .gallery-item img {
	max-width: 100%;
}
@media only screen and (max-width: 640px){ /* スマホ用 */
	#profile .gallery .gallery-item {
		width: 48% !important;
	}
}
/*------------------------------------------
subpage - works
------------------------------------------*/
.works_ttl {
	font-size: var(--rem20);
	text-align: center;
}
#works_link {
	font-size: var(--rem20);
	/* フレックス */
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
#works_link li+li::before {
	margin: 0 0.5em;
	content: "/";
}
/**/
.post a.btn_link {
	position: relative;
	display: inline-block;
	width: 190px;
	padding: 10px 15px;
	border: 1px solid var(--color-font);
	font-weight: 300;
	text-align: left;
	letter-spacing: 0.1em;
}
.post a.btn_link::after {
	position: absolute;
	top: 50%;
	right: 15px;
	transform: translateY(-50%);
	font-weight: 400;
	font-family: 'FontAwesome';
	content: '\f105';
}
.post ul.link_sub {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	column-gap: 50px;
	row-gap: 20px;
}
/**/
#works_list {
	width: 100vw;
	margin-left: calc(((100vw - 100%) / 2) * -1);
	margin-right: calc(((100vw - 100%) / 2) * -1);
	/* フレックス */
	display: flex;
	flex-wrap: wrap;
}
#works_list li {
	width: calc(100% / 3);
}
#works_list li a {
	overflow: hidden;
	position: relative;
	display: block;
}
#works_list li a .photo {
	aspect-ratio: 3 / 2;
}
#works_list li a .photo img {
	object-fit: cover;
	width: 100%;
	height: 100%;
	max-width: none;
}
#works_list li a:hover .photo img {
	filter:alpha(opacity=100);
	-moz-opacity: 1;
	opacity: 1;
}
#works_list li a .txt {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #00000061;
	opacity: 0;
	color: #fff;
	z-index: 2;
	transition: all 0.3s ease-in-out;
	/* 縦方向中央揃え */
	display: flex;
	align-items: center;
	justify-content: center;
}
#works_list li a:hover .txt {
	opacity: 1;
}
@media only screen and (max-width: 768px) {  /* タブレット以下用 */
	#works_list li {
		width: calc(100% / 2);
	}
}
@media only screen and (max-width: 640px){ /* スマホ用 */
	#works_list li {
		width: 100%;
	}
}
/**/
#works_detail h1 {
	font-size: var(--rem24w);
	font-weight: 350;
}
#works_detail .movie,
#works_detail .photo {
	width: 100vw;
	margin-left: calc(((100vw - 100%) / 2) * -1);
	margin-right: calc(((100vw - 100%) / 2) * -1);
}
#works_detail .photo img {
	width: 100%;
	height: auto;
}
#works_detail .msg {
	color: #000;
	font-size: 110%;
	font-weight: 300;
	line-height: 2;
}
#works_detail table {
	width: auto;
	margin: 0;
	font-size: 100%;
	font-weight: 300;
}
#works_detail table tr {
	border: none;
}
#works_detail table th,
#works_detail table td {
	padding: 0;
	padding-bottom: 12px;
	font-size: 100%;
	font-weight: 300;
}
#works_detail table th {
	width: auto;
	padding-right: 1.5em;
	white-space: nowrap;
}
@media print, screen and (min-width: 641px){ /* PC用 */
	#works_detail .photo ul {
		/* フレックス */
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	#works_detail .photo ul li {
		width: 50%;
	}
	#works_detail .photo ul li.w1 {
		width: 100%;
	}
}
