@charset "utf-8";

/*||||||||||||||||||||||||||||||||||||||||||||||||||
----------------------------------------------------

			RESET

----------------------------------------------------
||||||||||||||||||||||||||||||||||||||||||||||||||||*/

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
legend,
input,
label,
textarea,
p,
blockquote,
table,
caption,
tbody,
tfoot,
thead,
th,
td,
option,
figure,
figcaption {
    margin: 0;
    padding: 0;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

fieldset,
img,
abbr,
acronym {
    border: 0;
}

address,
caption,
cite,
code,
dfn,
th,
var,
optgroup,
strong,
em,
b,
i {
    font-style: normal;
    font-weight: normal;
}

ol,
ul {
    list-style: none;
}

caption,
th {
    text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 100%;
}

a,
ins,
del {
    text-decoration: none;
}

a {
    display: inline-block;
    cursor: pointer;
    /*transition: all 0.3s ease-in-out;*/
    /*-moz-transition: all 0.3s ease-in-out;*/
    /*-webkit-transition: all 0.3s ease-in-out;*/
}

img {
    display: inline-block;
    width: 100%;
    max-width: 100%;
    height: 100%;
    border: 0;
    margin: 0;
    vertical-align: baseline;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    object-fit: cover;
}

object,
embed,
th,
td {
    vertical-align: top;
}

input,
textarea,
select {
    font-size: 1em;
}

picture,
figure,
audio {
    display: inline-block;
}

audio {
    max-width: 100%;
}


/***CLEAR FIX***/

.clf::after {
    content: "";
    display: block;
    clear: both;
}


/***NO iOS STYLE***/

input[type="submit"],
input[type="button"],
input[type="reset"] {
    border: unset;
    background-color: transparent;
    display: block;
    -webkit-appearance: none;
    appearance: none;
    font-family: 'Noto Sans JP', YuGothic, 'Yu Gothic';
    color: #fff;
    letter-spacing: 0.08em;
}

input[type="text"],
input[type="email"],
textarea {
    padding: 10px;
    height: 100%;
    background-color: #fff;
    border: 1px solid #d9d9d9;
    border-radius: unset;
}

textarea {
    width: 100% !important;
}


/*||||||||||||||||||||||||||||||||||||||||||||||||||
----------------------------------------------------

			COMMON

----------------------------------------------------
||||||||||||||||||||||||||||||||||||||||||||||||||||*/

* {
    box-sizing: border-box;
    outline: none;
    font-size: 15px;
    font-weight: 500;
    color: #481C21;
}

.en {
    font-family: 'Montserrat', serif;
}

.min {
    font-family: "Shippori Mincho", serif;
}

html {
    overflow: hidden;
    overflow-x: hidden;
    overflow-y: auto;
}

body {
    padding: 0;
    font-size: 14px;
    color: #333;
    position: relative;
    /*overflow: hidden;*/
    width: 100%;
    letter-spacing: 0.08em;
    font-family: "Noto Sans JP", sans-serif;
}

.all_wrapper {
    /*overflow: hidden;*/
}

.flex_contents {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.center {
    text-align: center;
}

.sp_none {
    display: block;
}

.pc_none,
.pc_none_480 {
    display: none;
}

input[type=checkbox],
input[type=radio] {
    display: none;
    appearance: none;
}

input,
textarea,
select {
    width: 100%;
    font-family: 'Noto Sans JP', "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}

.img img {
    height: 100%;
}


/*||||||||||||||||||||||||||||||||||||||||||||||||||
----------------------------------------------------

  header
----------------------------------------------------
||||||||||||||||||||||||||||||||||||||||||||||||||||*/

.js-header {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    z-index: 100;
    overflow: hidden;
    backdrop-filter: blur(12px);
}

.js-header:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: -1;
    opacity: 0.3;
}

.header_inner {
    padding: 25px;
    justify-content: space-between;
    align-items: center;
}

.header_inner .header_logo img {
    height: 100%;
    display: block;
}

.header_inner .header_logo {
    display: block;
    max-width: 320px;
}

.header_nav {
    flex-direction: column;
    row-gap: 10px;
    align-items: flex-end;
}

.header_upper_area {
    column-gap: 15px;
}

.tel_area {
    padding-left: 28px;
    position: relative;
}

.tel_area a {
    display: block;
    font-size: 22px;
    font-weight: bold;
    color: #F26377;
    letter-spacing: 0.08em;
}

.tel_area span,
.day_area {
    font-size: 12px;
    color: #333;
}

.tel_area::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 22px;
    height: 22px;
    background-image: url(../images/tel_icon.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.header_nav_list {
    column-gap: 15px;
    align-items: center;
}

.header_nav_list li a {
    color: #333;
    position: relative;
    padding-bottom: 5px;
    overflow: hidden;
}

.header_nav_list li a::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #333;
    transition: all 0.5s;
    transform: scale(0, 1);
    /*X方向0、Y方向1*/
    transform-origin: left top;
    /*左上基点*/
}

.header_nav_list li a:hover::before {
    transform: scale(1, 1);
}

.header_nav_list li.header_nav_contact a:before {
    content: unset;
}

.header_nav_list li.header_nav_contact a {
    display: block;
    padding: 10px 25px 10px 38px;
    background-color: #F26377;
    color: #fff;
    border-radius: 50px;
    border: 1px solid #F26377;
    transition: all 0.5s;
    position: relative;
}

.header_nav_list li.header_nav_contact a:hover {
    color: #F26377;
    background-color: #fff;
}

.header_nav_list li.header_nav_contact a::after {
    content: "";
    position: absolute;
    top: 0;
    left: 15px;
    bottom: 0;
    margin: auto;
    width: 16px;
    height: 13px;
    background-image: url(../images/mail_icon.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transition: all 0.5s;
}

.header_nav_list li.header_nav_contact a:hover::after {
    background-image: url(../images/mail_pink.svg);
}

.sp_nav_menu {
    transition: all 0.5s;
    z-index: -50;
    opacity: 0;
    position: fixed;
    top: 94px;
    left: 0;
    width: 100%;
    height: calc(100vh - 94px);
    padding: 100px 30px 30px 30px;
    background-color: #fff;
}


/*||||||||||||||||||||||||||||||||||||||||||||||||||
----------------------------------------------------

 mv
----------------------------------------------------
||||||||||||||||||||||||||||||||||||||||||||||||||||*/

.main_visual_area {
    width: 100%;
    height: 136vh;
    overflow: hidden;
    position: relative;
    z-index: 5;
}

.main_visual_area::after {
    content: "";
    position: absolute;
    bottom: -35px;
    left: 0;
    width: 100%;
    height: 150px;
    background-image: url(../images/wave.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.main_visual_img {
    width: 100%;
    height: 100%;
}

.main_visual_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.catch_copy_main_inner {
    position: absolute;
    left: 80px;
    bottom: 150px;
}

.main_copy{
    margin-bottom: 30px;
    font-size: 3.9vw;
    color: #ff5f08;
    font-family: "Shippori Mincho", serif;
    font-weight: 700;
    letter-spacing: .1em;
    line-height: 1.3;
}

.catch_copy_main_inner .main_copy:after {
    content: "";
    position: absolute;
    width: 265px;
    height: 48px;
    background-image: url(../images/beautiful_smile.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    top: -75px;
    left: -35px;
    transform: rotate(-13deg);
}

.catch_copy_main_inner .main_copy img {
    width: 100%;
    height: 100%;
}

.catch_price h2 {
    max-width: 480px;
    width: 100%;
}

.catch_price h2:last-child {
    max-width: 520px;
    width: 100%;
}

.catch_price h2:first-child {
    margin-bottom: 15px;
}

.catch_price h2 img {
    display: block;
    height: 100%;
    width: 100%;
    object-fit: contain;
}


/*||||||||||||||||||||||||||||||||||||||||||||||||||
----------------------------------------------------

   worries
----------------------------------------------------
||||||||||||||||||||||||||||||||||||||||||||||||||||*/

.worries_area .worries_inner {
    padding: 90px 20px 110px 20px;
    position: relative;
    background: transparent linear-gradient(0deg, #40b7f000 0%, #ffffff 100%) 0% 0% no-repeat padding-box;
    overflow: hidden;
}

.worries_area .worries_inner::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    background-image: url(../images/polygon_bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.worries_area .worries_box {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.worries_area .worries_box h3 {
    max-width: 980px;
    width: 100%;
    margin: 0 auto;
}

.worries_area .worries_box h3 img {
    height: 100%;
}

.worries_area .worries_list {
    flex-direction: column;
    row-gap: 25px;
    max-width: 500px;
    width: 100%;
    margin: 50px auto 0 auto;
    position: relative;
}

.worries_area .worries_list::before {
    content: "";
    position: absolute;
    right: -93px;
    bottom: -30px;
    width: 160px;
    height: 54px;
    background-image: url(../images/check_txt.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    transform: rotate(-18deg);
}

.worries_area .worries_item {
    font-size: 18px;
    letter-spacing: 0.08em;
    position: relative;
    padding-left: 30px;
    color: #333;
}

.worries_area .worries_item::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 20px;
    height: 14px;
    background-image: url(../images/check_icon.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}


/*||||||||||||||||||||||||||||||||||||||||||||||||||
----------------------------------------------------

   section 共通
----------------------------------------------------
||||||||||||||||||||||||||||||||||||||||||||||||||||*/

.sec_ttl {
    font-size: 28px;
    font-weight: 600;
    color: #481C21;
}

.sec_ttl span {
    display: block;
    font-size: 13px;
    color: #F26377;
}

.link_btn {
    display: block;
    padding: 20px 0;
    max-width: 240px;
    background-color: #481C21;
    border: 1px solid #481C21;
    color: #fff;
    width: 100%;
    margin: 0 auto;
    transition: all 0.5s;
}

.link_btn:hover {
    background-color: #fff;
    color: #481C21;
}

.scroll-up {
    opacity: 0;
    /* visibility: hidden; */
    transform: translateY(30px);
    transition: all 2s;
}


/*||||||||||||||||||||||||||||||||||||||||||||||||||
----------------------------------------------------

   feature
----------------------------------------------------
||||||||||||||||||||||||||||||||||||||||||||||||||||*/

.feature_area .feature_inner {
    padding: 120px 0 100px 0;
}

.feature_area .feature_inner:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    z-index: -3;
    background-image: url(../images/feature_bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.feature_area .feature_inner .sec_ttl {
    margin-bottom: 20px;
}

.feature_area .feature_block_box {
    margin: 70px 0;
    /* padding: 90px 0; */
    position: relative;
    overflow: hidden;
}

.feature_area .feature_block_box:after {
    /* content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
    background: #FFFFFF 0% 0% no-repeat padding-box;
    margin: 0 auto;
    opacity: 0.7; */
}

.feature_area .feature_block_box .box_inner {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 70px 0 120px 0;
    /* padding-right: 60px; */
    position: relative;
    /* overflow: hidden; */
}

.feature_area .feature_block_box .box_inner:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-color: white;
    margin: 0 auto;
    right: 0;
    bottom: 0;
    z-index: -2;
    opacity: 0.7;
}

.feature_detail.whitening {
    margin-bottom: 90px;
}

.feature_area .main_detail {
    justify-content: space-between;
    column-gap: 60px;
    align-items: center;
    margin-bottom: 65px;
    padding-right: 40px;
    position: relative;
}

.feature_area .ceramic .main_detail {
    flex-direction: row-reverse;
    padding-right: 0;
    padding-left: 40px;
}

.feature_area .main_detail .img:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-image: url(../images/whitening_main.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.feature_area .ceramic .main_detail .img:after {
    left: unset;
    right: 0;
    height: 100%;
    width: 100%;
    background-image: url(../images/ceramic_main.jpg);
}

.feature_area .main_detail .img {
    width: calc(59% - 30px);
    height: 500px;
    box-shadow: 0px 0px 30px rgb(0 0 0 / 4%);
    position: relative;
}

.feature_area .main_detail .img img {
    display: block;
}

.feature_area .main_detail .txt {
    width: calc(41% - 30px);
    position: relative;
    padding-bottom: 50px;
}

.feature_area .main_detail .txt:after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 190px;
    height: 130px;
    background-image: url(../images/01_bg.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.feature_area .ceramic .txt:after {
    background-image: url(../images/02_bg.svg);
}

.feature_area .main_detail h4 {
    font-weight: bold;
    font-size: 32px;
    padding-left: 120px;
    position: relative;
    margin-bottom: 50px;
}

.feature_area .main_detail h4::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    width: 100px;
    height: 100px;
    background-image: url(../images/point_1.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.feature_area .ceramic .main_detail h4::after {
    background-image: url(../images/point_2.svg);
}

.feature_area .main_detail .txt p {
    line-height: 1.8;
    letter-spacing: 0.08em;
}

.feature_area .sub_detail_list {
    column-gap: 30px;
    padding: 0 40px;
}

.feature_area .sub_detail_item {
    width: calc(33.33% - 20px);
}

.feature_area .sub_detail_item .img {
    box-shadow: 0px 0px 30px rgb(0 0 0 / 4%);
}

.feature_area .sub_detail_item .img img {
    display: block;
}

.feature_area .sub_detail_item h4 {
    margin: 12px 0;
    font-weight: bold;
    font-size: 18px;
    letter-spacing: 0.15em;
    line-height: 1.5;
}

.feature_area .sub_detail_item p {
    line-height: 1.8;
    letter-spacing: 0.08em;
}

.feature_area .feature_detail .link_btn {
    margin-top: 40px;
}


/*||||||||||||||||||||||||||||||||||||||||||||||||||
----------------------------------------------------

   flow
----------------------------------------------------
||||||||||||||||||||||||||||||||||||||||||||||||||||*/

.flow_area .flow_inner {
    padding: 90px 20px;
    position: relative;
}

.flow_area .flow_inner:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #FCF1F0;
    z-index: -3;
}

.flow_area .flow_block_box .box_inner {
    max-width: 1200px;
    width: 100%;
    margin: 90px auto;
    position: relative;
}

.flow_area .tab_list {
    column-gap: 30px;
}

.flow_area .tab_item {
    padding: 20px;
    width: calc(50% - 15px);
    font-size: 22px;
    font-weight: bold;
    background-color: #fff;
    transition: all 0.5s;
    cursor: pointer;
}

.flow_area .tab_item.open_active {
    background: transparent linear-gradient(119deg, #FE667B 0%, #FF958E 100%) 0% 0% no-repeat padding-box;
    color: #fff;
}

.flow_area .tab_panel {
    padding: 70px 20px;
    position: relative;
    transition: all 0.5s;
    display: none;
}

.flow_area .tab_panel.open_active {
    display: block;
}

.flow_area .tab_panel::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background-color: #fff;
}

.flow_area .tab_panel_block {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto 75px auto;
}

.flow_area .tab_panel_block:last-child {
    margin-bottom: 0;
}

.flow_area .tab_panel_block h4 {
    font-size: 18px;
    padding: 15px;
    background-color: #481C21;
    color: #fff;
    margin-bottom: 50px;

}

.flow_area .flow_list {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    column-gap: 50px;
    row-gap: 30px;
}

.flow_area .flow_item {
    gap: 15px;
    align-items: center;
    background-color: #fff;
    width: 100%;
}

.flow_area .flow_item .icon {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: transparent linear-gradient(180deg, #FE667B 0%, #FF958E 100%) 0% 0% no-repeat padding-box;
    position: relative;
}

/*.flow_area .flow_item .icon::after {*/
/*    content: "";*/
/*    position: absolute;*/
/*    top: 50%;*/
/*    left: 100px;*/
/*    width: 100%;*/
/*    height: 1px;*/
/*    background: transparent linear-gradient(180deg, #FE667B 0%, #FF958E 100%) 0% 0% no-repeat padding-box;*/
/*    z-index: -1;*/
/*}*/

/*.flow_area .flow_item:last-child .icon::after {*/
/*    content: unset;*/
/*}*/

.flow_area .flow_item .icon .img {
    max-width: 50px;
    height: auto;
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.flow_area .flow_item .icon .num {
    display: block;
    color: #fff;
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    font-weight: bold;
    letter-spacing: 0.08em;
}

.flow_area .flow_item .icon .img img {
    height: 100%;
    display: block;
    object-fit: contain;
}

.flow_area .flow_item .icon .num {
    display: block;
    color: #fff;
}

.flow_area .flow_item .txt .ttl {
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}
.flow_area .txt{
    width: 100%;
    max-width: 500px;
}








/*||||||||||||||||||||||||||||||||||||||||||||||||||
----------------------------------------------------

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

.price_area .price_inner {
    padding: 90px 20px 120px 20px;
    position: relative;
}

.price_area .price_inner:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    z-index: -3;
    background-image: url(../images/polygon_bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.price_area .price_block_box .box_inner {
    max-width: 880px;
    width: 100%;
    margin: 90px auto 0 auto;
    position: relative;
}

.price_area .price_detail {
    padding: 50px 40px 50px 40px;
    position: relative;
}

.price_area .price_detail.whitening {
    margin-bottom: 90px;
}

.price_area .price_detail:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: -2;
    border: 1px solid #481C21;
}

.price_area .price_detail h4 {
    font-size: 22px;
    letter-spacing: 0.08em;
    padding: 15px;
    max-width: 320px;
    width: 100%;
    margin: -80px auto 0 auto;
    background-color: #481C21;
    color: #fff;
    position: relative;
}

.price_area .price_detail h4::after,
.price_area .price_detail h4::before {
    content: "";
    position: absolute;
    top: 0;
    width: 0;
    height: 0;
}

.price_area .price_detail h4::before {
    border-style: solid;
    border-top: 31px solid transparent;
    border-bottom: 32px solid transparent;
    border-right: 21px solid #481c21;
    border-left: 0;
    left: -20px;
}

.price_area .price_detail h4::after {
    border-style: solid;
    border-top: 31px solid transparent;
    border-bottom: 32px solid transparent;
    border-left: 21px solid #481c21;
    right: -23px;
}

.price_area .price_list {
    padding: 50px 0 0 0;
    flex-direction: column;
    row-gap: 20px;
}

.price_area .price_item {
    justify-content: space-between;
    position: relative;
    align-items: center;
}

.price_area .price_item .ttl,
.price_area .price_item .num {
    background-color: #fff;
    padding: 8px;
}

.price_area .price_item .num .img {
    height: auto;
}

.price_area .price_item .num img {
    display: block;
    object-fit: contain;
}

.price_area .price_item .ttl {
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 0.15em;
}

.price_area .whitening .price_item:nth-child(2) .num .img:last-child {
    max-width: 150px;
    margin-top: 20px;
    margin-left: auto;
}

.price_area .ceramic .price_item:last-child .num .img:last-child {
    max-width: 240px;
    margin-left: auto;
}

.price_area .ceramic .price_item:nth-child(2) .num .img:last-child,
.price_area .ceramic .price_item:last-child .num .img:last-child {
    margin-top: 20px;
}

.price_area .price_item:after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: 2px;
    border-top: 1px dashed;
    z-index: -1;
}
.tax_name{
    font-size: 12px;
    font-family: "Noto Sans JP";
    font-weight: 700;
    color: #BD943C;
    margin-right: 5px;
    padding-bottom: 10px;
}
.tax_num{
    font-size: 52px;
    font-family: "Anton", sans-serif;
    color: #BD943C;
    background: #fff;
}
.tax_yen{
    font-size: 24px;
    color: #BD943C;
    font-family: "Noto Sans JP";
    font-weight: 700;
position: relative;
}
.tax_yen:after{
    position: absolute;
    font-size: 10px;
    display: block;
    content: "税別";
    right: 0;
    top: -14px;
}

.price_list .price_item:last-child .price_area .price_item:after {
    top: 28px;
    transform: unset;
}



    /*||||||||||||||||||||||||||||||||||||||||||||||||||
    ----------------------------------------------------

       CONTACT
    ----------------------------------------------------
    ||||||||||||||||||||||||||||||||||||||||||||||||||||*/

.contact_area .contact_inner {
    padding: 60px 20px;
    background-image: url(../images/contact_bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.contact_area .contact_block_box .box_inner {
    padding-top: 30px;
    max-width: 750px;
    width: 100%;
    margin: 0 auto;
}

.contact_area .contact_list {
    margin-top: 30px;
    column-gap: 20px;
    row-gap: 20px;
}

.contact_area .contact_item {
    width: calc(50% - 10px);
}

.contact_area .contact_item a {
    padding: 15px;
    flex-direction: column;
    row-gap: 5px;
    transition: all 0.5s;
    height: 100%;
    justify-content: center;
    align-items: center;
}

.contact_area .contact_item a.tel:hover,
.contact_area .contact_item a.mail:hover {
    background-color: #fff;
}

.contact_area .contact_item a.tel:hover span,
.contact_area .contact_item a.tel:hover p {
    color: #F26377;
}

.contact_area .contact_item a.mail:hover .mail_txt {
    color: #BD943C;
}

.contact_area .contact_item a.tel {
    background-color: #F26377;
    border: 1px solid #F26377;
}

.contact_area .contact_item a.mail {
    background-color: #BD943C;
    border: 1px solid #BD943C;
}

.contact_area .contact_item a.mail .mail_txt {
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 0.08em;
    padding-left: 32px;
}

.contact_area .contact_item a.mail .mail_txt::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    width: 25px;
    height: 18px;
    background-image: url(../images/mail_icon.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transition: all 0.5s;
}

.contact_area .contact_item a.mail:hover .mail_txt::after {
    background-image: url(../images/mail_icon_go.svg);
}

.contact_area .contact_item a.tel .num,
.contact_area .contact_item a.tel p,
.contact_area .contact_item a.mail .mail_txt {
    color: #fff;
    position: relative;
}

.contact_area .contact_item a.tel .num::after {
    content: "";
    position: absolute;
    top: 8px;
    left: 0;
    width: 22px;
    height: 22px;
    background-image: url(../images/tel_icon_wh.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.contact_area .contact_item a.tel:hover .num::after {
    background-image: url(../images/tel_icon.svg);
}

.contact_area .contact_item a span {
    display: block;
}

.contact_area .contact_item a .num {
    font-size: 32px;
    font-weight: bold;
    letter-spacing: 0.15em;
    padding-left: 28px;
}

.contact_area .contact_item a p {
    font-size: 13px;
}

.contact_area .contact_item a.tel p {
    font-family: "Noto Sans JP", sans-serif;
    letter-spacing: 0.08em;
    margin-top: 3px;
}

/*||||||||||||||||||||||||||||||||||||||||||||||||||
----------------------------------------------------

   office_image
----------------------------------------------------
||||||||||||||||||||||||||||||||||||||||||||||||||||*/

.office_image{
    padding: 80px 0 0;
    background: #fff;
}
.office_image_ttl{
    color: #481C21;
    font-size: 28px;
    margin-bottom: 20px;
}
.office_image_wrap{
    display: flex;
    justify-content: center;
    gap: 5vw;
}
.office_image_pic{
    width: 40vw;
    height: 300px;
    max-width: 600px;
    min-width: 300px;
}
.office_image_img{
    width: 100%;
    object-fit: cover;
}




/*||||||||||||||||||||||||||||||||||||||||||||||||||
----------------------------------------------------

   address
----------------------------------------------------
||||||||||||||||||||||||||||||||||||||||||||||||||||*/

.access_area .access_inner {
    padding: 100px 20px;
    background-color: #fff;
}

.access_area .access_block_box .box_inner {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    column-gap: 50px;
    row-gap: 30px;
}

.access_area .access_block_box .map {
    width: calc(100% - 500px - 25px);
}

.access_area .access_block_box .detail_txt {
    width: calc(500px - 25px);
}

.access_area .access_block_box .map iframe {
    width: 100%;
    height: 100%;
    display: block;
}

.access_area .access_block_box .detail_txt h3 {
    font-weight: 600;
    font-size: 24px;
    letter-spacing: 0.08em;
    line-height: 1;
}

.access_area .access_block_box .detail_txt .address {
    margin: 20px 0;
    line-height: 1.6;
}

/*.access_area table tr:nth-child(1) td:nth-child(2),*/
/*.access_area table tr:nth-child(1) td:nth-child(3),*/
/*.access_area table tr:nth-child(1) td:nth-child(4),*/
/*.access_area table tr:nth-child(1) td:nth-child(5),*/
/*.access_area table tr:nth-child(1) td:nth-child(6),*/
/*.access_area table tr:nth-child(1) td:nth-child(7),*/
/*.access_area table tr:nth-child(1) td:nth-child(8),*/
/*.access_area table tr:nth-child(2) td:nth-child(2),*/
/*.access_area table tr:nth-child(2) td:nth-child(3),*/
/*.access_area table tr:nth-child(2) td:nth-child(4),*/
/*.access_area table tr:nth-child(2) td:nth-child(5),*/
/*.access_area table tr:nth-child(2) td:nth-child(6),*/
/*.access_area table tr:nth-child(2) td:nth-child(7),*/
/*.access_area table tr:nth-child(2) td:nth-child(8),*/
/*.access_area table tr:nth-child(3) td:nth-child(2),*/
/*.access_area table tr:nth-child(3) td:nth-child(3),*/
/*.access_area table tr:nth-child(3) td:nth-child(4),*/
/*.access_area table tr:nth-child(3) td:nth-child(5),*/
/*.access_area table tr:nth-child(3) td:nth-child(6),*/
/*.access_area table tr:nth-child(3) td:nth-child(7),*/
/*.access_area table tr:nth-child(3) td:nth-child(8) {*/
/*    text-align: center;*/
/*    width: 60px;*/
/*    font-size: 13px;*/
/*}*/

.access_area table tbody tr td {

    text-align: center;
    width: 60px;
    font-size: 13px;
}
.access_area table tr td:first-child {
    border-left: unset;
    width: 110px;
    font-size: 13px;
}

/*.access_area table tr:nth-child(1) td:last-child,*/
/*.access_area table tr:nth-child(2) td:last-child,*/
/*.access_area table tr:nth-child(3) td:last-child,*/
/*.access_area table tr:nth-child(4) td:last-child{*/
/*    border-right: unset;*/
/*}*/

.access_area table tr td:last-child{
    border-right: unset;
}

.access_area table tr:last-child td {
    border-bottom: unset;
}

.access_area table,
.access_area td,
.access_area th {
    /* border: 1px solid #595959; */
    border-collapse: collapse;
}

.access_area table {
    width: 100%;
    border: unset;
}

.access_area td,
.access_area th {
    padding: 8px 3px;
    /* width: 30px;
    height: 25px; */
}

/*.access_area table tr:nth-child(1) td:nth-child(1),*/
/*.access_area table tr:nth-child(2) td:nth-child(1),*/
/*.access_area table tr:nth-child(3) td:nth-child(1),*/
/*.access_area table tr:nth-child(4) td:nth-child(1) {*/
/*    width: 110px;*/
/*    font-size: 13px;*/
/*}*/

/*.access_area table tr td:nth-child(1) {*/
/*    width: 110px;*/
/*    font-size: 13px;*/
/*}*/

.access_area td {
    border-bottom: 1px solid #481C21;
    border-right: 1px solid #481C21;
}

.access_area .kome_txt {
    display: block;
    font-size: 13px;
    margin: 10px 0 20px 0;
    font-weight: 500;
}

.access_area .link_btn {
    margin: unset;
}

/* footer */

footer {
    background-color: #481C21;
}

small.footer_copy {
    display: block;
    padding: 10px;
    font-size: 10px;
    color: #fff;
    line-height: 1.5;
}


/*||||||||||||||||||||||||||||||||||||||||||||||||||
----------------------------------------------------

   media min-width:1500px
----------------------------------------------------
||||||||||||||||||||||||||||||||||||||||||||||||||||*/

@media screen and (min-width:1500px) {
    .catch_copy_main_inner {
        bottom: 240px;
    }

    .main_visual_area::after {
        bottom: -35px;
        left: 0;
        height: 240px;
    }
}


/*||||||||||||||||||||||||||||||||||||||||||||||||||
----------------------------------------------------

   media min-width:1499px
----------------------------------------------------
||||||||||||||||||||||||||||||||||||||||||||||||||||*/

@media screen and (max-width:1499px) {
    .feature_area .feature_block_box .box_inner {
        max-width: unset;
    }

    .feature_area .feature_block_box .box_inner:after {
        left: unset;
        width: 90%;
    }
}


/*||||||||||||||||||||||||||||||||||||||||||||||||||
----------------------------------------------------

   media max-width:1000px
----------------------------------------------------
||||||||||||||||||||||||||||||||||||||||||||||||||||*/

@media screen and (max-width:1000px) {
    .header_nav {
        display: none;
    }

    .header_inner .header_logo {
        max-width: 280px;
    }

    .sp_menu_btn {
        display: block;
        width: 30px;
        height: 20px;
        position: relative;
        display: block;
    }

    .sp_menu_btn .openbtn1 {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        display: block;
    }

    .sp_menu_btn .openbtn1 span {
        display: block;
        width: 100%;
        height: 1px;
        position: absolute;
        left: 0;
        background-color: #F26377;
        transition: 0.2s;
    }

    .sp_menu_btn .openbtn1 span:nth-child(1) {
        top: 0;
    }

    .sp_menu_btn .openbtn1 span:nth-child(2) {
        top: 9px;
    }

    .sp_menu_btn .openbtn1 span:nth-child(3) {
        bottom: 0;
    }

    .sp_menu_btn .openbtn1.open span:nth-child(1) {
        transform: rotate(45deg);
        top: 10px;
    }

    .sp_menu_btn .openbtn1.open span:nth-child(2) {
        opacity: 0;
    }

    .sp_menu_btn .openbtn1.open span:nth-child(3) {
        transform: rotate(-45deg);
        margin-top: 0;
        bottom: 8px;
    }

    .navopen .sp_nav_menu {
        opacity: 1;
        z-index: 50;
    }

    .sp_nav_menu {
        top: 84px;
        height: calc(100vh - 84px);
    }

    .sp_nav_menu {
        transition: all 0.5s;
        z-index: -50;
        opacity: 0;
        position: fixed;
        top: 94px;
        left: 0;
        width: 100%;
        height: calc(100vh - 94px);
        padding: 100px 30px 30px 30px;
        background-color: #fff;
    }

    .sp_menu_list {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        row-gap: 20px;
    }

    /* mv 1000 */
    .catch_copy_main_inner {
        left: 40px;
    }



    .catch_price h2 {
        max-width: 420px;
    }

    .catch_price h2:last-child {
        max-width: 440px;
    }

    .flow_area .flow_list {
        column-gap: 30px;
    }



    .flow_area .flow_item .icon {
        width: 160px;
        height: 160px;
    }

    .flow_area .flow_item .icon .img {
        max-width: 50px;
    }
}


/*||||||||||||||||||||||||||||||||||||||||||||||||||
----------------------------------------------------

   media max-width:880px
----------------------------------------------------
||||||||||||||||||||||||||||||||||||||||||||||||||||*/

@media screen and (max-width:880px) {}


/*||||||||||||||||||||||||||||||||||||||||||||||||||
----------------------------------------------------

   media max-width:765px
----------------------------------------------------
||||||||||||||||||||||||||||||||||||||||||||||||||||*/

@media screen and (max-width:765px) {
    .sp_none {
        display: none;
    }

    .pc_none {
        display: block;
    }

    .header_inner {
        padding: 18px;
    }

    .header_inner .header_logo {
        max-width: 240px;
    }

    .sp_nav_menu {
        top: 77px;
        height: calc(100vh - 77px);
    }

    /*||||||||||||||||||||||||||||||||||||||||||||||||||
----------------------------------------------------

 mv 765
----------------------------------------------------
||||||||||||||||||||||||||||||||||||||||||||||||||||*/
    .main_visual_area {
        height: 700px;
    }

    .main_visual_img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: bottom left;
    }

    .catch_copy_main_inner {
        position: absolute;
        left: unset;
        width: 100%;
        bottom: 100px;
        padding: 0 40px;
    }

    .main_copy{
        font-size: 24px;
    }

    .catch_copy_main_inner .main_copy:after {
        top: -82px;
        left: -10px;
    }

    .catch_price h2 {
        max-width: 90%;
        width: 100%;
    }

    .catch_price h2:last-child {
        max-width: 95%;
        width: 100%;
    }

    .main_visual_area::after {
        bottom: -20px;
        height: 90px;
    }

    /*||||||||||||||||||||||||||||||||||||||||||||||||||
----------------------------------------------------

 worries 765
----------------------------------------------------
||||||||||||||||||||||||||||||||||||||||||||||||||||*/
    .worries_area .worries_box h3 {
        max-width: 480px;
    }

    .worries_area .worries_list {
        margin: 40px auto 0 auto;
        max-width: 350px;
    }

    .worries_area .worries_inner {
        padding: 90px 20px 70px 20px;
    }

    .worries_area .worries_item::after {
        top: 7px;
        bottom: unset;
        margin: auto;
    }

    .worries_area .worries_list::before {
        right: -35px;
        width: 120px;
        height: 34px;
    }

    /*||||||||||||||||||||||||||||||||||||||||||||||||||
----------------------------------------------------

   feature 765
----------------------------------------------------
||||||||||||||||||||||||||||||||||||||||||||||||||||*/
    .feature_area .feature_inner {
        padding: 90px 0;
    }

    .feature_area .feature_block_box .box_inner {
        padding-right: 0;
        padding: 50px 20px;
    }

    .feature_area .feature_block_box {
        padding: 0 20px;
    }

    .feature_area .feature_block_box .box_inner:after {
        left: 0;
        width: 100%;
    }

    .feature_area .main_detail {
        row-gap: 45px;
        flex-direction: column;
        padding: 0;
    }

    .feature_area .feature_detail .link_btn {
        margin-top: 30px;
    }

    .feature_area .ceramic .main_detail {
        padding-left: 0;
    }

    .feature_area .main_detail .img {
        width: 100%;
        height: auto;
    }

    .feature_area .main_detail .img:after {
        content: unset;
    }

    .feature_area .main_detail .txt {
        width: 100%;
    }

    .feature_area .main_detail h4 {
        font-weight: bold;
        font-size: 24px;
        padding-left: 100px;
        position: relative;
        margin-bottom: 35px;
    }

    .feature_area .main_detail h4::after {
        width: 80px;
        height: 80px;
    }

    .feature_area .sub_detail_list {
        padding-left: 0;
        flex-direction: column;
        row-gap: 50px;
        padding: 0;
    }

    .feature_area .sub_detail_item {
        width: 100%;
    }

    .feature_area .sub_detail_item h4 {
        font-size: 22px;
    }

    .feature_area .main_detail .txt:after {
        width: 140px;
        height: 100px;
    }

    /* flow 765 */
    .flow_area .flow_inner {
        padding: 90px 20px 0 20px;
    }

    .flow_area .tab_list {
        column-gap: 10px;
    }

    .flow_area .flow_item {
        width: 100%;
        padding: 10px;
    }

    .flow_area .flow_item .icon::after {
        top: 150px;
        left: 50%;
        width: 1px;
        height: 100%;
    }

    .flow_area .flow_item .icon {
        width: 170px;
        height: 170px;
    }

    .flow_area .tab_item {
        padding: 15px;
        font-size: 15px;
        width: calc(50% - 5px);

    }

    .flow_area .tab_panel_block h4 {
        font-size: 15px;
    }

    .flow_area .tab_panel {
        padding: 50px 20px;
    }

    .flow_area .flow_item .icon .img {
        max-width: 75px;
    }

 




    /* price 765 */
    .price_area .price_detail {
        padding: 35px 20px;
    }

    .price_area .price_block_box .box_inner {
        margin: 70px auto 0 auto;
    }

    .price_area .price_item .num .img {
        max-width: 150px;
    }

    .price_area .whitening .price_item:nth-child(2) .num .img:last-child {
        max-width: 100px;
    }

    .price_area .price_detail h4 {
        margin: -66px auto 0 auto;
    }

    .price_area .ceramic .price_item:nth-child(2) .num .img {
        max-width: 220px;
    }

    .price_area .ceramic .price_item:nth-child(3) .num .img {
        max-width: 260px;
    }

    .price_area .ceramic .price_item:last-child .num .img:last-child {
        max-width: 175px;
    }

    .price_area .ceramic .price_item:nth-child(1) .num .img {
        max-width: 130px;
    }

    .price_area .price_inner {
        padding: 90px 20px 100px 20px;
    }

    /* contact 765 */
    .contact_area .contact_list {
        flex-direction: column;
    }

    .contact_area .contact_item {
        width: 100%;
        max-width: 480px;
        margin: 0 auto;
    }

    .contact_area .contact_item a {
        min-height: 93px;
    }

    .office_image_wrap{
        flex-direction: column;
        align-items: center;
    }
    .office_image_pic{
        width: 70vw;
        min-width: 320px;
        height: 220px;
    }

    /* access 765 */
    .access_area .access_block_box .box_inner {
        flex-direction: column;
    }

    .access_area .access_inner {
        padding: 70px 20px;
    }

    .access_area .access_block_box .map {
        width: 100%;
        height: 350px;
    }

    .access_area .access_block_box .detail_txt {
        width: 100%;
    }

    .access_area table tr:nth-child(1) td:nth-child(1),
    .access_area table tr:nth-child(2) td:nth-child(1),
    .access_area table tr:nth-child(3) td:nth-child(1) {
        width: 90px;
        font-size: 10px;
    }

    .access_area table tr:nth-child(1) td:nth-child(2),
    .access_area table tr:nth-child(1) td:nth-child(3),
    .access_area table tr:nth-child(1) td:nth-child(4),
    .access_area table tr:nth-child(1) td:nth-child(5),
    .access_area table tr:nth-child(1) td:nth-child(6),
    .access_area table tr:nth-child(1) td:nth-child(7),
    .access_area table tr:nth-child(1) td:nth-child(8),
    .access_area table tr:nth-child(2) td:nth-child(2),
    .access_area table tr:nth-child(2) td:nth-child(3),
    .access_area table tr:nth-child(2) td:nth-child(4),
    .access_area table tr:nth-child(2) td:nth-child(5),
    .access_area table tr:nth-child(2) td:nth-child(6),
    .access_area table tr:nth-child(2) td:nth-child(7),
    .access_area table tr:nth-child(2) td:nth-child(8),
    .access_area table tr:nth-child(3) td:nth-child(2),
    .access_area table tr:nth-child(3) td:nth-child(3),
    .access_area table tr:nth-child(3) td:nth-child(4),
    .access_area table tr:nth-child(3) td:nth-child(5),
    .access_area table tr:nth-child(3) td:nth-child(6),
    .access_area table tr:nth-child(3) td:nth-child(7),
    .access_area table tr:nth-child(3) td:nth-child(8) {
        width: 40px;
        font-size: 10px;
    }
}

@media screen and (max-width:650px){
    .tax_num{
        font-size: 34px;
    }
}
/*||||||||||||||||||||||||||||||||||||||||||||||||||
----------------------------------------------------

   media max-width:580px
----------------------------------------------------
||||||||||||||||||||||||||||||||||||||||||||||||||||*/

@media screen and (max-width:580px) {


    .price_area .ceramic .price_item:nth-child(2) .num .img {
        max-width: 130px;
    }

    .price_area .ceramic .price_item:nth-child(3) .num .img {
        max-width: 160px;
        margin-left: auto;
    }

    .price_area .ceramic .price_item:last-child .num .img:last-child {
        max-width: 110px;
    }

    .price_area .ceramic .price_item:nth-child(1) .num .img {
        max-width: 100px;
    }
}


/*||||||||||||||||||||||||||||||||||||||||||||||||||
----------------------------------------------------

   media max-width:480px
----------------------------------------------------
||||||||||||||||||||||||||||||||||||||||||||||||||||*/

@media screen and (max-width:480px) {

    /* header 480 */
    .sp_nav_menu {
        top: 77px;
        height: calc(100vh - 77px);
    }

    .catch_copy_main_inner {
        bottom: 80px;
        padding: 0 20px;
    }

    .catch_copy_main_inner .main_copy:after {
        width: 180px;
        height: 42px;
        top: -53px;
        transform: rotate(-8deg);
    }

    .catch_copy_main_inner .main_copy {
        height: auto;
        max-width: 240px;
        margin-bottom: 15px;
    }

    .catch_price h2 {
        /* max-width: 200px; */
    }

    .catch_price h2:last-child {
        /* max-width: 220px; */
    }

    .worries_area .worries_box h3 {
        max-width: 350px;
    }

    .worries_area .worries_list {
        max-width: max-content;
    }

    .price_area .price_item .ttl {
        font-size: 15px;
    }

    .price_area .price_item .num .img {
        max-width: 100px;
    }

    .price_area .whitening .price_item:nth-child(2) .num .img:last-child {
        max-width: 80px;
        margin-top: 15px;
    }

    .price_area .price_list {
        padding: 30px 0 0 0;
        row-gap: 15px;
    }

    .price_area .price_item:after {
        top: 21px;
    }

    .price_area .price_detail h4 {
        padding: 15px;
        max-width: 250px;
    }

    .contact_area .contact_item a .num {
        font-size: 24px;
    }

    .access_area .access_block_box .detail_txt h3 {
        font-size: 18px;
        line-height: 1.2;
    }

    .access_area .access_block_box .detail_txt .address {
        margin: 10px 0;
        font-size: 13px;
    }

    .access_area .link_btn {
        max-width: 100%;
    }

    .access_area .access_block_box .map {
        height: 220px;
    }
    .price_area .price_item:after {
        display: none;
    }
    .price_item{
        flex-direction: column;
    }
    .price_item .ttl .pc_none{
        display: none;
    }
    .tax_num{

    }
    .tax_name{

    }
    .tax_yen{

    }
    .office_image_pic{
        height: 180px;
    }

}
