@charset "UTF-8";
/*============================================
  CSS Document: utility.css
  Description: 余白やテキストのユーティリティクラス
============================================*/
.mt5 {
  margin-top: 5px;
}

.mt10 {
  margin-top: 10px;
}

.mt20 {
  margin-top: 20px;
}

.mt30 {
  margin-top: 30px;
}

.mb5 {
  margin-bottom: 5px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb30 {
  margin-bottom: 30px;
}

.pt5 {
  padding-top: 5px;
}

.pt10 {
  padding-top: 10px;
}

.pt20 {
  padding-top: 20px;
}

.pt30 {
  padding-top: 30px;
}

.pb5 {
  padding-bottom: 5px;
}

.pb10 {
  padding-bottom: 10px;
}

.pb20 {
  padding-bottom: 20px;
}

.pb30 {
  padding-bottom: 30px;
}

/*============================================
  CSS Document: components.css
  Description: コンポーネントスタイル
============================================*/
/*============================================
  CSS Document: mobile.css
  Description: ベーススタイル
============================================*/
/*-------------------------
index.php（HOME） sp
header
---------------------------*/
@media screen and (max-width: 768px) {
  #header_outer {
    background: rgba(153, 153, 153, 0.2);
  }
  #header_outer.change .infolist .bt01 a::before {
    background: #f4f4f4;
  }
  #header_outer.change .header {
    height: 80px;
  }
  .header {
    height: 95px;
    padding: 10px 0;
  }
  .header_in {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .logo_wrap {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .logo a {
    width: 103px;
  }
  .header_bt_area {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .header_link {
    width: auto;
    padding-top: 0px;
  }
  .infolist {
    width: auto;
  }
  .infolist .bt01 {
    margin-right: 10px;
  }
  .infolist .bt01:last-child {
    margin-right: 10px;
  }
  .infolist .bt01 a {
    width: 90px;
    height: 60px;
    border-radius: 0px;
    background: transparent;
    -webkit-transition: top 0.3s ease;
    transition: top 0.3s ease;
    position: relative;
  }
  .infolist .bt01 a::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100%;
    height: 100%;
    padding: 5px;
    -webkit-mask-image: url(../images/pencil.svg);
            mask-image: url(../images/pencil.svg);
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-position: center;
            mask-position: center;
    -webkit-mask-size: 40px auto;
            mask-size: 40px auto;
    background: #333;
    -webkit-transform: translate3d(-50%, -50%, 0);
            transform: translate3d(-50%, -50%, 0);
    -webkit-transition: background 0.2s ease-out, -webkit-transform 0.2s ease-out;
    transition: background 0.2s ease-out, -webkit-transform 0.2s ease-out;
    transition: transform 0.2s ease-out, background 0.2s ease-out;
    transition: transform 0.2s ease-out, background 0.2s ease-out, -webkit-transform 0.2s ease-out;
    will-change: transform, background;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
  }
  .infolist .bt01 a .bt01_text {
    display: none;
  }
  .bt01 a:hover::before {
    left: 50%;
    top: 50%;
    background: #fff;
    -webkit-transform: translate(-50%, -50%) scale(0.9);
            transform: translate(-50%, -50%) scale(0.9);
  }
  /* ここからハンバーガー全画面ナビメニュー */
  .nav_wrap {
    width: auto;
  }
  #nav-toggle {
    width: 90px;
    height: 60px;
    position: relative;
    background: transparent;
    padding: 0px;
    border: 1px solid #333;
  }
  #nav-toggle.change {
    border: 1px solid #fff;
  }
  #nav-toggle.change .hamburger .line {
    background: #fff;
  }
  #nav-toggle.change .hamburger .line:nth-child(2) {
    background: none;
    color: #fff;
  }
  .hamburger {
    width: 100%;
    height: 100%;
    position: absolute;
    display: block;
    top: 50%;
    left: 50%;
    cursor: pointer;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    -webkit-transition: -webkit-transform 0.2s ease;
    transition: -webkit-transform 0.2s ease;
    transition: transform 0.2s ease;
    transition: transform 0.2s ease, -webkit-transform 0.2s ease;
    background: transparent;
    border: none;
  }
  .hamburger:hover {
    background: #7a6955;
  }
  .hamburger:hover .line {
    color: #fff;
    background: #fff;
  }
  .hamburger:hover .line:nth-child(1) {
    top: 14px;
  }
  .hamburger:hover .line:nth-child(3) {
    bottom: 14px;
  }
  .hamburger .line {
    width: 35px;
    height: 2px;
    position: absolute;
    left: 50%;
    background: #333;
    display: block;
    text-align: center;
    font-size: 0.75rem;
    line-height: 1px;
    -webkit-transform: translateX(-50%) rotate(0deg);
            transform: translateX(-50%) rotate(0deg);
    -webkit-transition: top 0.1s ease, bottom 0.1s ease, -webkit-transform 0.1s ease;
    transition: top 0.1s ease, bottom 0.1s ease, -webkit-transform 0.1s ease;
    transition: top 0.1s ease, bottom 0.1s ease, transform 0.1s ease;
    transition: top 0.1s ease, bottom 0.1s ease, transform 0.1s ease, -webkit-transform 0.1s ease;
  }
  .hamburger .line:nth-child(1) {
    top: 12px;
  }
  .hamburger .line:nth-child(2) {
    top: 28px;
    background: none;
  }
  .hamburger .line:nth-child(3) {
    bottom: 12px;
  }
  body:not(.open) .hamburger:hover {
    background: #7a6955;
  }
  body:not(.open) .hamburger:hover .line {
    background: #fff;
  }
  body:not(.open) .hamburger:hover .line:nth-child(2) {
    background: none;
    color: #fff;
  }
  body.open .hamburger {
    background: #7a6955;
  }
  body.open .hamburger .line {
    background: #fff;
  }
  body.open .hamburger .line:nth-child(1) {
    top: 50%;
    left: 50%;
    width: 30px;
    -webkit-transform: translateX(-50%) rotate(-135deg);
            transform: translateX(-50%) rotate(-135deg);
  }
  body.open .hamburger .line:nth-child(2) {
    opacity: 0;
    pointer-events: none;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
  }
  body.open .hamburger .line:nth-child(3) {
    top: 50%;
    left: 50%;
    width: 30px;
    -webkit-transform: translateX(-50%) rotate(135deg);
            transform: translateX(-50%) rotate(135deg);
  }
  /* z-index */
  #nav-toggle {
    z-index: 1000;
  }
  #gnav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgb(255, 255, 255);
    z-index: 20;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    opacity: 0;
    -webkit-transition: left 0.2s ease, opacity 0.4s ease;
    transition: left 0.2s ease, opacity 0.4s ease;
  }
  #gnav .gnav_in {
    width: 100%;
  }
  #gnav .gnav_list {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    overflow: hidden;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 30px;
  }
  #gnav .gnav_list li {
    position: relative;
    margin: 0;
  }
  #gnav .gnav_list li::after {
    display: none;
  }
  #gnav .gnav_list li a {
    font-size: 1.0625rem;
    padding: 10px 20px;
    display: inline-block;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
  body.open {
    overflow: hidden;
    height: 100vh;
  }
  body.open #gnav {
    /* visibility: visible; */
    opacity: 0.95;
    left: 0%;
  }
  body.open #gnav .gnav_list li a {
    color: #333;
  }
  body.open #gnav .gnav_list li a:hover {
    color: #7a6955;
  }
  body.open #nav-toggle {
    border-color: #333;
  }
  body.open #nav-toggle .hamburger .line {
    background: #fff;
  }
  body.open #nav-toggle .hamburger:hover .line {
    background: #fff;
  }
}
@media screen and (max-width: 375px) {
  .infolist .bt01 {
    margin-right: 10px;
  }
  .infolist .bt01:last-child {
    margin-right: 10px;
  }
  .infolist .bt01 a {
    width: 76px;
    height: 54px;
  }
  #nav-toggle {
    width: 76px;
    height: 54px;
  }
  .hamburger:hover .line .hamburger:nth-child(1) {
    top: 16px;
  }
  .hamburger:nth-child(3) {
    bottom: 16px;
  }
  .hamburger .line:nth-child(1) {
    top: 10px;
  }
  .hamburger .line:nth-child(2) {
    top: 25px;
  }
  .hamburger .line:nth-child(3) {
    bottom: 10px;
  }
}
/*-------------------------
index.php（HOME） sp
visual_wrap
---------------------------*/
@media screen and (max-width: 960px) {
  /* ここからバナーsplide1 */
  .banner_splide_wrap {
    position: relative;
    width: 100%;
    margin: 0px auto 100px;
    height: 100vh;
  }
}
@media screen and (max-width: 768px) {
  .wave-container img {
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    height: 100vh;
    width: 100vw;
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  .banner_ttl .banner_text {
    font-size: 2.375rem;
    letter-spacing: 1.5px;
  }
}
@media screen and (max-width: 480px) {
  .wave-container img {
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    height: 100vh;
    width: 100vw;
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  .banner_ttl .banner_text {
    font-size: 2.25rem;
    letter-spacing: 1.5px;
  }
}
/* ここまでバナーsplide1 */
/* ここからsplide2 */
@media screen and (max-width: 768px) {
  .splide_wrap {
    -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;
    margin: 0;
    height: 80vh;
  }
  .splide_2 {
    width: 92%;
    height: 55vh; /* = 55vh */
    display: block;
  }
  .splide_2 .splide__track,
  .splide_2 .splide__list,
  .splide_2 .splide__slide {
    height: 100%;
  }
  .splide_2 .splide__slide img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: 50% 50%;
       object-position: 50% 50%; /* 左右の位置を中央に設定 */
  }
  .splide_ttl {
    position: absolute;
    top: auto;
    bottom: 30px;
    left: auto;
    -webkit-transform: none;
            transform: none;
    width: 92%;
    height: 25vh; /* 親Aの下と同じ絶対高さにする場合 */
    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: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .splide_ttl .splide_text {
    width: 100%;
    color: #333;
    text-align: left;
    font-size: 1.875rem;
    letter-spacing: 1.5px;
    line-height: 1.6;
    font-family: "Shippori Mincho", serif;
    font-weight: 500;
    margin: 0 auto;
    padding-left: 8%;
  }
}
@media screen and (max-width: 480px) {
  .splide_ttl .splide_text {
    font-size: 6.25vw;
  }
}
/* ここまでsplide2 */
/*-------------------------
index.php（HOME） sp
main
---------------------------*/
@media screen and (max-width: 960px) {
  .greeting_wrap::before {
    top: -180px;
    height: calc(100% + 180px);
  }
  .greeting {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 50px;
  }
  .greeting > *:first-child {
    -ms-flex-item-align: start;
        align-self: flex-start;
  }
  .greeting > *:last-child {
    -ms-flex-item-align: end;
        align-self: flex-end;
  }
}
@media screen and (max-width: 768px) {
  .greeting_wrap::before {
    top: -80px;
    height: calc(100% + 80px);
  }
  .greeting {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 30px;
  }
  .greeting > *:first-child {
    -ms-flex-item-align: auto;
        align-self: auto;
  }
  .greeting > *:last-child {
    -ms-flex-item-align: auto;
        align-self: auto;
  }
  .greeting_in {
    max-width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .home_news .home_news_in {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .home_news_list_wrap {
    width: 100%;
  }
  .home_news_item {
    padding: 15px 0;
  }
  .home_news_item a {
    gap: 10px;
  }
  .home_news_item a time {
    font-size: 0.875rem;
  }
  .home_news_item a .home_news_text {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 480px) {
  .home_measures_item a {
    padding: 15px 20px 15px 20px;
    gap: 10px;
  }
  .home_measures_item a img {
    width: 30%;
  }
  .home_measures_item a .home_measures_ttl {
    font-size: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .home_menu .home_menu_in {
    gap: 30px;
  }
  .home_menu_pict_cover .home_menu_sub_ttl {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 480px) {
  .home_menu::before {
    content: "";
    position: absolute;
    top: 12%;
    left: 20%;
    height: 60%;
  }
  .home_menu .home_menu_in {
    gap: 20px;
  }
}
@media screen and (max-width: 768px) {
  .home_column .home_column_in {
    gap: 30px;
  }
  .home_column_pict_cover .home_column_sub_ttl {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 480px) {
  .home_column::before {
    content: "";
    position: absolute;
    top: 12%;
    right: 20%;
    height: 60%;
  }
  .home_column .home_column_in {
    gap: 20px;
  }
}
@media screen and (max-width: 768px) {
  .home_rec_item_btn {
    margin-right: 30px;
  }
  .home_rec_list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .home_rec_list .home_rec_item {
    width: min(100%, 400px);
    padding-right: 0px;
  }
  .home_rec_list .home_rec_item:nth-child(even) {
    margin: 0 0 0 auto;
  }
  .home_voice_item {
    padding: 0 0 20px 0;
  }
  .home_info_in {
    -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: 60px;
  }
  .home_info_list_wrap {
    width: 100%;
  }
  .home_info_list_wrap .home_info_list {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .home_info_list_wrap .home_info_list .home_info_item {
    width: 100%;
    padding: 10px 0;
    border-bottom: 1px solid #ccc;
  }
  .home_gmap_wrap {
    width: 100%;
  }
  .home_gmap_wrap .home_gmap {
    aspect-ratio: 16/9;
    /* aspect-ratio 非対応ブラウザ用 fallback */
  }
  @supports not (aspect-ratio: 16/9) {
    .home_gmap_wrap .home_gmap {
      height: 0;
      padding-bottom: 56.25%;
    }
  }
}
/*-------------------------
index.php（HOME） sp
footer
---------------------------*/
@media screen and (max-width: 768px) {
  .footer_wrap {
    padding: 60px 0 20px;
  }
  .footer {
    width: min(92%, 1200px);
    margin: 0 auto;
  }
}
@media screen and (max-width: 480px) {
  .footer_bt_area {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
    padding: 0 15px;
  }
  .footer_bt_area .footer_nav,
  .footer_bt_area .footer_link,
  .footer_bt_area .footer_logo {
    width: calc((100% - 20px) / 2);
    background: transparent;
  }
  .footer_bt_area .footer_logo {
    margin-top: 20px;
    margin: 20px auto 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .copyright {
    text-align: center;
    font-family: "IBM Plex Serif", serif;
    font-weight: 400;
    font-size: 0.75rem;
    color: #333;
  }
  #page_top {
    bottom: 55px;
    right: 45px;
  }
}
/*-------------------------
menu.php sp

---------------------------*/
@media screen and (max-width: 768px) {
  .page_common_in {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch; /* ← これがポイント */
    margin-bottom: 100px;
  }
  .page_ttl_wrap {
    width: min(100%, 500px);
    height: 100%;
    margin-bottom: 20px;
  }
  .menu_image_wrap {
    width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .menu_list {
    font-size: 1.0625rem;
  }
}
/*-------------------------
salon.php sp

---------------------------*/
@media screen and (max-width: 768px) {
  #main-slider {
    width: 92%;
    height: 40vh;
    margin: 0 0 20px;
  }
  .salon_image_wrap {
    width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .salon_info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .salon_list_wrap {
    width: 100%;
    padding: 20px 30px;
  }
  .map_wrap {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 30px;
  }
  .map_wrap .map {
    width: min(100%, 500px);
  }
  .map_wrap .map img {
    width: 100%;
    height: auto;
  }
  .gmap_wrap {
    width: min(100%, 1000px);
    margin: 0 auto 3%;
  }
}
@media screen and (max-width: 480px) {
  .salon_list_wrap {
    width: 100%;
    padding: 15px 20px;
  }
}
/*-------------------------
voice.php sp

---------------------------*/
@media screen and (max-width: 768px) {
  .voice_image_wrap {
    width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .content {
    width: 100%;
  }
}
/*-------------------------
column.php（HOME） sp

---------------------------*/
@media screen and (max-width: 768px) {
  .infolist .bt01.column a::before {
    background: #fff;
  }
  .hamburger.column .line {
    background: #fff;
    color: #fff;
  }
  .hamburger.column .line:nth-child(2) {
    background: none;
  }
  .hamburger.column {
    border: 1px solid #fff;
  }
  #gnav.column_only_color ul li a {
    color: #333;
  }
  body.open .hamburger.column {
    border-color: #333;
  }
  body.open .hamburger.column .line {
    background: #333;
  }
  body.open #nav-toggle .hamburger.column .line {
    background: #fff;
  }
  body.open #nav-toggle .hamburger.column:hover .line {
    background: #fff;
  }
}
@media screen and (max-width: 768px) {
  .column_image_wrap {
    width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .column_ttl_wrap {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .column_ttl_in {
    width: 100%;
    text-align: left;
  }
  .column_book_wrap {
    width: 100%;
  }
}
/*-------------------------
concept.php sp

---------------------------*/
@media screen and (max-width: 768px) {
  .page_ttl_center {
    max-width: 650px;
    font-size: 1.75rem;
    padding: 18px 40px;
  }
}
/*-------------------------
infection-prevention.php sp
measuresのページです
---------------------------*/
@media screen and (max-width: 768px) {
  .measures_pict_wrap {
    width: min(100%, 450px);
    gap: 30px;
  }
  .measures_pict_wrap figure {
    width: calc((100% - 30px) / 2);
  }
}
/*-------------------------
cut.php sp

---------------------------*/
@media screen and (max-width: 768px) {
  .rec_pixt_wrap {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 60px;
    padding-bottom: 0px;
  }
  .rec_pixt_wrap:nth-child(2) {
    padding-top: 80px;
  }
  .rec_pict {
    width: 100%;
  }
  .rec_pict_inner {
    width: 92%;
    margin: 0 auto;
  }
  .rec_pict_inner.one {
    margin-left: 8%;
    -webkit-transform: none;
            transform: none;
  }
  .rec_pict_inner.two {
    margin-right: 8%;
    -webkit-transform: none;
            transform: none;
  }
  .rec_pict_ttl.align_left {
    padding-right: 4.35%;
  }
  .rec_pict_ttl.align_right {
    padding-left: 4.35%;
  }
  .rec_ttl_wrap.treat {
    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;
    gap: 0;
  }
}
/*-------------------------
columnの下の階層 sp
columnの各ページです

---------------------------*/
@media screen and (max-width: 768px) {
  .col_wrap {
    width: min(92%, 1000px);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .col_primary {
    width: 100%;
  }
  .col_text_wrap {
    margin-bottom: 0;
  }
  .col_secondary {
    width: 70%;
    margin: 50px auto 0;
  }
}
@media screen and (max-width: 480px) {
  .col_secondary {
    width: 100%;
  }
}/*# sourceMappingURL=mobile.css.map */