@charset "utf-8";
/*
Theme Name: one and only Original Theme
*/

/*----------------------------------------------------
	reset
----------------------------------------------------*/

body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td,img {
    padding: 0;
    margin: 0;
}

*, *::before, *::after {
    box-sizing: border-box;
}

fieldset,img {
    border: 0;
    vertical-align: middle;
}

address,caption,cite,code,dfn,th,var {
    font-weight: normal;
    font-style: normal;
}

ol,ul {
    list-style: none;
}

caption,th {
    text-align: left;
}

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

*:focus:not(:focus-visible) {
    outline: none;
}

button {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    appearance: none;
}


/*----------------------------------------------------
	基本設定・リンクカラーなど
----------------------------------------------------*/

html {
    font-size: 62.5%; /* 1rem = 10pxになる */
    -webkit-text-size-adjust: 100%;
    overflow-y: auto; 
    scrollbar-gutter: stable;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-family-base);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    letter-spacing: var(--letter-spacing);
    color: var(--font-color-base);
    background: #fff;
    font-variant-numeric: tabular-nums;
    overflow-wrap: break-word;
}

body,
.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100dvh; /* 100vh から 100dvh に変更 */
}

:root {
    --primary-color: #91def6;
    --secondary-color: #0099d7;
    --tertiary-color: #fbc400;
    --background-color1: #eff9ff;
    --background-color2: #fbfbfb;
    --font-color-base: #333;
    --font-color-gray: #888;
    --font-color-red: #d72630;
    --font-color-1: #61caeb;
    --border-color: #e2e2e2;
    --font-family-base: "YakuHanJP_Narrow", "Inter", "Zen Kaku Gothic New", sans-serif;
    --font-size-base: 1.7rem;
    --font-weight-base: 500;
    --line-height-base: 1.8;
    --letter-spacing: 1.5px;
    --max-width: 1200px;
}

input[type="image"] {
    -webkit-appearance: none;
    appearance: none;
    border-radius: 0;
}

.iframe-content {
    margin: 0 0 15px;
}

iframe[src^="https://www.google.com/maps/"] {
    width: 100%;
}

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

img.emoji {
    position: relative !important;
}

.border_radius {
    border-radius: 10px;
}

a {
    -webkit-tap-highlight-color: transparent;
}

a:link {
    color: var(--font-color-1);
    text-decoration: none;
}

a:visited {
    color: var(--font-color-1);
    text-decoration: none;
}

a:active {
    color: var(--font-color-1);
    text-decoration: none;
}

a:hover {
    color: var(--font-color-1);
    text-decoration: none;
    transition: 0.5s;
}

.op:hover {
    opacity: 0.7;
}

a.underline {
    display: inline-block;
    text-decoration: none;
    position: relative;
}

a.underline::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    -webkit-transition: -webkit-transform .3s cubic-bezier(.43,.05,.17,1);
    transition: -webkit-transform .3s cubic-bezier(.43,.05,.17,1);
    transition: transform .3s cubic-bezier(.43,.05,.17,1);
    transition: transform .3s cubic-bezier(.43,.05,.17,1),-webkit-transform .3s cubic-bezier(.43,.05,.17,1);
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: right;
    transform-origin: right;
    z-index: 10;
}

a.underline:hover {
    color: var(--font-color-1);
}

a.underline:hover::after {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transform-origin: left;
    transform-origin: left;
}

.none,
.none:hover {
    text-decoration: none !important;
}

.tel_sp a {
    border: none;
    cursor: default;
    pointer-events: none;
    text-decoration: none;
}

.pc_none,
.dis_none {
    display: none !important;
}


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

:root {
    --font-size-base: 1.6rem;
}

.iframe-content {
    position: relative;
    width: 100%;
    padding: 75% 0 0 0;
    margin: 0 0 5px;
}

.iframe-content iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.tel_sp a {
    cursor: pointer;
    pointer-events: auto;
}

.tel_sp a:hover {
    text-decoration: none;
}

.pc_none {
    display: block !important;
}

.sp_none {
    display: none !important;
}

}


/*--------------------------------------------------------
    フォント
----------------------------------------------------------*/

p {
    font-family: var(--font-family-base);
    line-height: var(--line-height-base);
    font-size: var(--font-size-base);
    letter-spacing: var(--letter-spacing);
    color: var(--font-color-base);
    margin-bottom: 20px;
    display: block;
    font-variant-numeric: tabular-nums;
}

.box_top_max p,
.box_max p {
    max-width: var(--max-width);
    margin: 0 auto 20px;
}

.tauri {
    font-family: "Tauri", sans-serif;
}

.bold {
    font-size: clamp(2.2rem, 3vw, 2.5rem);
    font-weight: var(--font-weight-base);
    margin-bottom: 25px;
}

.under {
    background: linear-gradient(transparent 60%, rgb(145 222 246 / 50%) 50%);
    padding: 0 5px 3px;
}

.f12 { font-size: 1.2rem !important; }
.f14 { font-size: 1.4rem !important; }
.f16 { font-size: 1.6rem !important; }
.f18 { font-size: 1.8rem !important; }

.tc { text-align: center !important; }
.tr { text-align: right !important; }
.tl { text-align: left !important; }
.pc_tc { text-align: center !important; }

.red { color: var(--font-color-red) !important; }
.blue { color: var(--font-color-1) !important; }

.ov { overflow: hidden !important; }
.wb { font-weight: 500; }
.dib { display: inline-block; }
.pc_dib { display: inline-block; }


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

p {
    font-size: var(--font-size-base);
}

.bold {
    font-size: 2.0rem;
}

.pc_tc { text-align: left !important; }

.db { display: block; }
.pc_dib { display: inline;  }

}


/*----------------------------------------------------
	Font Awesome icon
----------------------------------------------------*/

.fa-solid {
    display: inline-block;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-style: normal;
    line-height: 1;
    padding-left: 2px;
    padding-right: 2px !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


/* ----------------------------------------------------
	margin・padding
---------------------------------------------------- */

.mt0 { margin-top: 0 !important; }
.mt10 { margin-top: 10px !important; }
.mt15 { margin-top: 15px !important; }
.mt20 { margin-top: 20px !important; }
.mt35 { margin-top: 35px !important; }
.mt40 { margin-top: 40px !important; }
.mt50 { margin-top: 50px !important; }
.mt60 { margin-top: 60px !important; }

.mb0 { margin-bottom: 0 !important; }
.mb10 { margin-bottom: 10px !important; }
.mb20 { margin-bottom: 20px !important; }
.mb40 { margin-bottom: 40px !important; }
.mb50 { margin-bottom: 50px !important; }
.mb0-10 { margin-bottom: 0 !important; }
.mb0-20 { margin-bottom: 0 !important; }
.mb30-20 { margin-bottom: 30px !important; }

.pt90-60 { padding-top: 90px !important; }


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

.sp_mb20 { margin-bottom: 20px !important; }
.mb0-10 { margin-bottom: 10px !important; }
.mb0-20 { margin-bottom: 20px !important; }
.mb30-20 { margin-bottom: 20px !important; }

.pt90-60 { padding-top: 60px !important; }

}


/*----------------------------------------------------
	width
----------------------------------------------------*/

.w200 { width: 200px!important; }
.w25 { width: 25%!important; }


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

.w135 { width: 135px!important; }
.w25 { width: 100%!important; }

}


/*----------------------------------------------------
	wow
----------------------------------------------------*/

.wow {
    animation-duration: 1s !important; 
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}


/*----------------------------------------------------
	fancybox（画像ポップアップ）
----------------------------------------------------*/

.fancybox-content {
    margin: 0 40px !important;
}


.fancybox-close-small {
    width: 30px !important;
    height: 30px !important;
    background: rgba(30, 30, 30, .6) !important;
    border: 2px solid #fff !important;
    border-radius: 50% !important;
    color: #fff !important;
    opacity: 1 !important;
    padding: 1px !important;
    position: absolute !important;
    right: -15px !important;
    top: -15px !important;
}


@media (max-width: 768px) {

.fancybox-content {
    margin: 0 40px !important;
}

}


/*----------------------------------------------------
	scroll
----------------------------------------------------*/

.scroll_top {
    margin-top: -50px;
    padding-top: 50px;
}


/*----------------------------------------------------
	テーブル
----------------------------------------------------*/

table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    table-layout: fixed;
    margin-bottom: 20px;
    border-top: 1px solid var(--border-color);
}

tr {
    border-bottom: 1px solid var(--border-color);
}

th {
    width: 22%;
    border-collapse: collapse;
    text-align: left;
    font-size: 1.6rem;
    padding: 15px 20px;
    vertical-align: middle;
    background: var(--background-color2);
}

td {
    width: auto;
    border-collapse: collapse;
    font-size: 1.6rem;
    padding: 15px 20px;
    vertical-align: middle;
}

table.border {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    margin-bottom: 20px;
    table-layout: fixed;
    border: none;
}

table.border tr {
    border: none;
}

table.border th {
    width: 22%;
    border-collapse: collapse;
    text-align: left;
    font-size: 1.6rem;
    padding: 15px 20px;
    vertical-align: middle;
    background: var(--background-color2);
    border: 1px solid var(--border-color);
}

table.border td {
    width: auto;
    border-collapse: collapse;
    font-size: 1.6rem;
    padding: 15px 20px;
    vertical-align: middle;
    border: 1px solid var(--border-color);
}

.template_base table {
    border-top: none;
    margin-bottom: 35px;
}

.template_base tr {
    border-bottom: none;
}

.template_base th {
    width: 290px;
    border-collapse: collapse;
    text-align: left;
    font-size: 1.6rem;
    padding: 15px 20px;
    vertical-align: middle;
    background: var(--background-color2);
    border: 1px solid var(--border-color);
}

.template_base td {
    width: calc(100% - 290px);
    border-collapse: collapse;
    font-size: 1.6rem;
    padding: 15px 20px;
    vertical-align: middle;
    background: #fff;
    border: 1px solid var(--border-color);
    border-left: none;
}



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

.template_base th {
    width: 235px;
}

}


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

table {
    width: 100%;
}

th,
table.border th {
    width: 120px;
    font-size: 1.4rem;
    padding: 15px 0 15px 18px;
}

td,
table.border td {
    font-size: 1.4rem;
    padding: 15px 5px 15px 18px;
}

.template_base table {
    margin-bottom: 0;
}

.template_base tr {
    display: block;
    margin-bottom: 25px;
}

.template_base th {
    width: 100%;
    display: block;
}

.template_base td {
    width: 100%;
    display: block;
    border: 1px solid var(--border-color);
    border-top: none;
}

}


/*----------------------------------------------------
    リスト
----------------------------------------------------*/

ul {
    margin-bottom: 20px;
}

li {
    line-height: 1.8;
}

li.de {
    list-style-type: decimal;
    margin-left: 25px;
}

li.di {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 15px;
}

ul.ti {
    padding-left: 1em;
}

ul.ti li {
    text-indent: -1em;
}


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

li.de {
    list-style-type: decimal;
    margin-left: 20px;
}

li.di {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 10px;
}

}


/*----------------------------------------------------
	ボックス
----------------------------------------------------*/

.color_area {
    width: 100%;
    background: var(--background-color1);
}

.color_area2 {
    width: 100%;
    background: var(--background-color2);
}

.box {
    clear: both;
    width: 95%;
    max-width: var(--max-width);
    height: auto;
    margin: 0 auto;
    padding: 70px 0 70px;
    position: relative;
}

.box_top {
    clear: both;
    width: 95%;
    max-width: var(--max-width);
    height: auto;
    margin: 0 auto;
    padding: 90px 0 70px;
    position: relative;
}

.box_tc {
    clear: both;
    width: 95%;
    max-width: var(--max-width);
    height: auto;
    margin: 0 auto;
    text-align: center;
    padding: 70px 0 70px;
    position: relative;
}

.box_top_max {
    clear: both;
    width: 95%;
    height: auto;
    margin: 0 auto;
    padding: 90px 0 70px;
    position: relative;
}

.box_max {
    clear: both;
    width: 95%;
    height: auto;
    margin: 0 auto;
    padding: 70px 0 70px;
    position: relative;
}

.gray_box {
    margin: 40px auto 30px;
    padding: 55px 70px 45px 80px;
    background: var(--background-color2);
    border-radius: 20px;
    text-align: left;
}

.box_bb {
    margin: 40px auto 30px;
    padding: 55px 70px 45px 80px;
    border: 1px solid var(--border-color);
    background: #fff;
    border-radius: 20px;
}

.box_lr {
    clear: both;
    width: 100%;
    max-width: var(--max-width);
    height: auto;
    overflow: hidden;
    margin: 0 auto;
}

.box_l40 {
    width: 35%;
    height: auto;
    float: left;
    overflow: hidden;
}

.box_l70 {
    width: 70%;
    height: auto;
    float: left;
    overflow: hidden;
}

.box_r30 {
    width: 25%;
    height: auto;
    float: right;
    overflow: hidden;
}

.box_r60 {
    width: 60%;
    height: auto;
    float: right;
    overflow: hidden;
}


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

.box,
.box_tc {
    width: 90%;
    height: auto;
    text-align: left;
    margin: 0 auto;
    padding: 50px 0 50px;
}

.box_top,
.box_top_max,
.box_max {
    width: 90%;
    height: auto;
    text-align: left;
    margin: 0 auto;
    padding: 60px 0 50px;
}

.gray_box {
    padding: 55px 40px 45px 50px;
}

.box_lr {
    margin-bottom: 0;
}

.box_l40,
.box_l70 {
    width: 100%;
    height: auto;
    float: none;
    margin: 0 auto;
}

.box_r30,
.box_r60 {
    width: 100%;
    height: auto;
    float: none;
    margin: 0 auto;
}

}


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

header {
    width: 100%;
    height: auto;
    margin: 0 auto;
    background: #fff;
    position: fixed;
    box-shadow: 0px 1px 2px rgb(0 0 0 / 20%);
    top: 0;
    z-index: 999;

}

.header-box {
    width: 100%;
    height: 80px;
    text-align: center;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.header-box .logo {
    width: 360px;
    margin-left: 10px;
    text-align: left;
}

.header-box .logo a {
    font-size: 2.4rem;
    font-weight: var(--font-weight-base);
    line-height: 1.4;
    text-decoration: none;
    color: var(--font-color-base);
    letter-spacing: 1px;
    position: relative;
    top: -4px;
}

.header-box .logo a .sub {
    font-size: 1.5rem;
    position: relative;
    top: 5px;
}

.header-box .logo a::before {
    content: "";
    background: url(/wp-content/uploads/logo.webp) no-repeat;
    background-size: 61px;
    width: 61px;
    height: 49px;
    float: left;
    margin: 0 10px 0 0;
    position: relative;
    top: 16px;
}

.header-box .logo a:hover {
    text-decoration: none;
    opacity: 0.7;
    transition: 0.5s;
}

.navi_header {
    width: calc(100% - 360px);
    height: 80px;
}

ul.menu-header-navi-pc {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 0;
}

ul.menu-header-navi-pc li {
    line-height: 1;
    text-decoration: none;
    position: relative;
}

ul.menu-header-navi-pc li a {
    width: 100%;
    height: 80px;
    display: inline-block;
    color: var(--font-color-base);
    text-decoration: none;
    padding: 30px 45px;
    font-size: 1.7rem;
    font-weight: var(--font-weight-base);
    line-height: 1;
    position: relative;
}

ul.menu-header-navi-pc li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    -webkit-transition: -webkit-transform .3s cubic-bezier(.43,.05,.17,1);
    transition: -webkit-transform .3s cubic-bezier(.43,.05,.17,1);
    transition: transform .3s cubic-bezier(.43,.05,.17,1);
    transition: transform .3s cubic-bezier(.43,.05,.17,1),-webkit-transform .3s cubic-bezier(.43,.05,.17,1);
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: right;
    transform-origin: right;
    z-index: 100;
}

ul.menu-header-navi-pc li a:hover {
    text-decoration: none;
}

ul.menu-header-navi-pc li a:hover::after {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transform-origin: left;
    transform-origin: left;
}

ul.menu-header-navi-pc li ul.sub-menu {
    visibility: hidden;
    opacity: 0;
    width: 100%;
    position: absolute;
}

ul.menu-header-navi-pc li:hover ul.sub-menu {
    visibility: visible;
    opacity: 1;
    z-index: 99;
}

ul.menu-header-navi-pc li ul.sub-menu li {
    width: 100%;
    height: 0;
    background: #fff;
    overflow: hidden;
    transition: height 0.6s;
}

ul.menu-header-navi-pc li:hover ul.sub-menu li {
    overflow: visible;
    height: 45px;
}

ul.menu-header-navi-pc li ul.sub-menu li a {
    width: 100%;
    height: 45px;
    background: #fff;
    padding: 0 0 0 15px;
    text-align: left;
    font-size: 1.3rem;
    letter-spacing: 0.5px;
    line-height: 1;
    display: inline-flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
}

ul.menu-header-navi-pc li ul.sub-menu li a::after {
    content: none;
}

ul.menu-header-navi-pc li ul.sub-menu li a:hover {
    color: #fff;
    background: var(--primary-color);
    transition: 0s;
}

.overlay,
nav.side-menu,
.side-menu-btn,
.sp_tel {
    display: none;
}


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

ul.menu-header-navi-pc li {
    width: 14%;
    min-width: 150px;
}

ul.menu-header-navi-pc li.long {
    width: 19%;
    min-width: 225px;
}

ul.menu-header-navi-pc li a {
    padding: 30px 0;
}

ul.menu-header-navi-pc li ul.sub-menu li a {
    padding: 13px 0 13px 10px;
    font-size: 1.2rem;
}

}


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

header {
    width: 100%;
    height: 60px;
    margin: 0 auto;
}

.side-open .header-box,
.navi_header {
    display: none;
}

.header-box {
    height: 60px;
    width: 100%;
    background: #fff;
    display: block;
    position: fixed;
    box-shadow: 0px 1px 2px rgb(0 0 0 / 40%);
    top: 0;
    z-index: 9999;
}

.side-menu-btn {
    width: 27px;
    height: 27px;
    position: fixed;
    top: 19px;
    right: 15px;
    z-index: 4;
    display: block;
    text-align: center;
}

.menu-btn-icon {
    width: 27px;
    height: 27px;
    position: relative;
    display: block;
}

.side-menu-btn .menu-btn-icon::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    width: 27px;
    z-index: 1;
    border-top: 2px solid var(--font-color-base);
    border-bottom: 2px solid var(--font-color-base);
    top: calc(50% - 13px);
    height: 13px;
}

.side-menu-btn .menu-btn-icon::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    width: 27px;
    z-index: 1;
    border-top: 2px solid var(--font-color-base);
    top: calc(50% - -9px);
    height: 0;
}

.side-menu-btn:hover {
    opacity: 0.7;
    text-decoration: none;
}

.header-box .logo {
    width: 275px;
    position: relative;
    margin: 0;
    top: 5px;
    left: 15px;
}

.header-box .logo a {
    font-size: 1.8rem;
    font-weight: var(--font-weight-base);
    letter-spacing: 1px;
    line-height: 1.3;
    display: block;
    text-decoration: none;
    color: var(--font-color-base);
    text-align: left;
    top: 0;
}

.header-box .logo a .sub {
    font-size: 1.3rem;
    top: 0;
}
 
.header-box .logo a::before {
    content: "";
    background: url(/wp-content/uploads/logo_sp.webp)no-repeat;
    background-size: 44px;
    width: 44px;
    height: 35px;
    float: left;
    text-align: center;
    display: block;
    margin: 0 8px 0 0;
    position: relative;
    top: 8px;
}

.header-box .logo a:hover {
    opacity: 0.7;
    text-decoration: none;
}

nav.side-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    text-align: left;
    font-size: 1.6rem;
    z-index: 5;
    background: #fff;
    overflow: auto;
    display: block;
    transform: translateX(100%);
    transition: transform 0.5s ease;
}

.side-open nav.side-menu {
    transform: translateX(0);
}

.side-open nav.side-menu {
    transform: translateX(0);
}

nav.side-menu ul {
    margin-bottom: 0;
}

.side-menu li {
    border-bottom: 1px solid var(--border-color);
}

.side-menu li a {
    color: var(--font-color-base);
    padding: 15px 5px 15px 20px;
    font-weight: var(--font-weight-base);
    display: block;
    text-decoration: none;
    position: relative;
}

.side-menu li ul.sub-menu {
    margin-left: 18px;
    padding: 0 0 5px 0;
    position: relative;
    top: -7px;
}

.side-menu li ul.sub-menu li {
    border-bottom: none;
}

.side-menu li ul.sub-menu li a {
    padding: 0 5px 5px 20px;
}

.side-menu li ul.sub-menu li a::before {
    content: "";
    display: block;
    width: 8px;
    height: 2px;
    background: #c7c7c7;
    position: absolute;
    left: 0;
    top: 14px;
}

.side-menu li a:hover {
    text-decoration: none;
    color: var(--primary-color);
}
.overlay {
    visibility: hidden;
    position: fixed;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0);
    transition: all .5s ease;
    z-index: 3;
}

.overlay::after {
    visibility: hidden;
    position: fixed;
    top: 40%;
    left: 0;
    display: block;
    width: 100%;
    height: 50px;
    color: rgba(255,255,255,0);
    font-size: 4.0rem;
    font-weight: bold;
    text-align: center;
    transition: all .5s ease;
}

.side-open .overlay {
    visibility: visible;
    cursor: pointer;
    background: rgba(0,0,0,.7);
}

.side-open .overlay::before {
    content: "";
    background: url(/wp-content/uploads/close_icon.webp)no-repeat;
    background-size: 32px;
    width: 32px;
    height: 32px;
    display: block;
    position: absolute;
    top: 10px;
    right: 10px;
}

.side-open .overlay::after {
    visibility: visible;
    color: rgba(255,255,255,.8);
}

.wrapper .side-open,
.side-open .overlay {
    transform: translate3d(-300px, 0, 0);
}

}


/*----------------------------------------------------
	main
----------------------------------------------------*/

main {
    clear: both;
    width: 100%;
    margin: 0 auto;
    text-align: left;
    height: auto;
    overflow: hidden;
    flex: 1;
}

main::after {
    content: "";
    display: block;
    visibility: hidden;
    height: 0;
    clear: both;
}


/*----------------------------------------------------
	メイン画像
----------------------------------------------------*/

#main_img {
    width: 100%;
    overflow: hidden;
    margin: 80px auto 0;
    position: relative;
}

#main_img .video_box {
    width: 100%;
    height: auto;
    padding: 30px 0;
    position: relative;
}

#main_img video {
    width: auto;
    height: 200%;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
}

#img_area {
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    position: relative;
    flex-direction: column;
}

#img_area img {
    width: 90%;
    max-width: 1200px;
    padding: 30px 0;
}


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

#main_img {
    margin-top: 60px;
}

}


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

#img_area img {
    padding: 10px 0 10px;
}

}


/*----------------------------------------------------
	サブページ・タイトル画像
----------------------------------------------------*/

#main_img-sub {
    width: 100%;
    height: 200px;
    background: url(/wp-content/uploads/main_sub_bg.webp) 0 45% no-repeat;
    position: relative;
    overflow: hidden;
    background-size: cover;
    margin-top: 80px;
}

#main_img-sub::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.8;
    background: #fff;
    transition: all ease 2s;
}

#img_area-sub {
    width: 100%;
    height: 200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
}

#img_area-sub h1,
#img_area-sub p {
    font-size: 3.6rem;
    font-weight: var(--font-weight-base);
    line-height: 1;
    color: var(--font-color-base);
    letter-spacing: 2px;
    margin: 0;
    text-align: center;
    z-index: 10;
    position: relative;
}

#img_area-sub h1 .sub_title,
#img_area-sub p .sub_title {
    font-size: 1.9rem;
}


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

#main_img-sub {
    height: 150px;
    margin-top: 60px;
    background: url(/wp-content/uploads/main_sub_bg.webp) right bottom no-repeat;
    background-size: cover;
}

#img_area-sub {
    height: 150px;
}

#img_area-sub h1,
#img_area-sub p {
    clear: both;
    width: 100%;
    height: auto;
    font-size: 2.6rem;
}

#img_area-sub h1 .sub_title,
#img_area-sub p .sub_title {
    font-size: 1.4rem;
}

}


/*----------------------------------------------------
	h2・h3・h4
----------------------------------------------------*/

h2 {
    font-size: 3.0rem;
    font-weight: var(--font-weight-base);
    line-height: 1.5;
    margin-bottom: 30px;
    position: relative;
}

h1.h2_top,
h2.h2_top {
    font-size: 3.7rem;
    font-weight: var(--font-weight-base);
    line-height: 1;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

h1.h2_top .sub_title,
h2.h2_top .sub_title {
    font-size: 1.6rem;
    font-weight: var(--font-weight-base);
    color: var(--font-color-gray);
}

h2.h2_top .sub_top {
    font-size: 2.6rem;
    position: relative;
    top: -12px;
    left: -5px;
}

h2.h2_top .sub_title {
    font-size: 1.6rem;
    color: var(--font-color-gray);
}

h2.h2_big {
    font-size: clamp(2.2rem,4vw,3.8rem);
    font-weight: var(--font-weight-base);
    line-height: 1.6;
    text-align: center;
    margin-top: -20px;
}

h2.h2_slash {
    width: auto;
    font-size: clamp(2.4rem, 4vw, 3.2rem);
    font-weight: 500;
    line-height: 150%;
    margin: 0 0 30px;
    display: inline-block;
    position: relative;
}

h2.h2_slash span {
    font-size: clamp(2.2rem, 3vw, 3.0rem);
}

h2.h2_slash::before {
    content: '';
    position: absolute;
    bottom: 30%;
    left: -50px;
    display: inline-block;
    width: 35px;
    height: 3px;
    background: var(--font-color-base);
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
}

h2.h2_slash::after {
    content: '';
    position: absolute;
    bottom: 30%;
    right: -50px;
    display: inline-block;
    width: 35px;
    height: 3px;
    background: var(--font-color-base);
    -webkit-transform: rotate(-60deg);
    transform: rotate(-60deg);
}

h3 {
    margin: 60px 0 20px;
    font-size: 2.7rem;
    font-weight: var(--font-weight-base);
    line-height: 1.5;
}

h3.h3_slash {
    margin: 0 auto 20px;
    text-align: center;
}

h3.h3_slash span {
    display: inline-block;
    font-size: clamp(2.0rem, 4vw, 2.6rem);
    position: relative;
    padding: 0 15px;
}

h3.h3_slash span::before {
    content: '';
    position: absolute;
    bottom: 38%;
    left: -15px;
    display: inline-block;
    width: 21px;
    height: 2px;
    background: #111;
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
}

h3.h3_slash span::after {
    content: '';
    position: absolute;
    bottom: 38%;
    right: -15px;
    display: inline-block;
    width: 21px;
    height: 2px;
    background: #111;
    -webkit-transform: rotate(-60deg);
    transform: rotate(-60deg);
}


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

h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

h1.h2_top,
h2.h2_top {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 20px;
}

h2.h2_top .sub_top {
    font-size: 1.9rem;
    position: relative;
    top: -3px;
    left: -4px;
}

h2.h2_big {
    margin-top: 0;
}

h2.h2_slash::before {
    left: -40px;
}

h2.h2_slash::after {
    right: -40px;
}

h3 {
    font-size: 2.2rem;
    line-height: 1.5;
}

}


/*----------------------------------------------------
	トップページ
----------------------------------------------------*/

.top_img {
    margin: 0 auto;
    text-align: center;
}

.top_after {
    font-size: clamp(2.2rem, 4vw, 3.8rem);
    line-height: 1.6;
    text-align: center;
    font-weight: var(--font-weight-base);
    margin: 30px 0 10px;
}

.top_bold {
    font-size: clamp(1.8rem, 2vw, 2.2rem);
    font-weight: var(--font-weight-base);
    text-align: center;
}


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

.top_bold {
    text-align: left;
}

}



/*----------------------------------------------------
	トップページ・サービス内容
----------------------------------------------------*/

.top_service {
    width: 102%;
    margin: 35px auto 0;
    padding: 0 0 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.top_service_in {
    display: flex;
    align-items: center;
    width: 31.3%;
    background: var(--background-color2);
    border: 1px solid var(--border-color);
    padding: 20px 30px;
    margin: 0 2% 2% 0;
    border-radius: 10px;
}

.service_point {
    text-align: left;
    flex-shrink: 1;
}

.top_service h3 {
    font-size: 1.9rem;
    margin: 0;
}

.top_service_in img {
    width: 40px;
    margin: 0 15px 0 0;
    flex-shrink: 0;
}

.top_service_in p {
    font-size: 1.4rem;
    margin: 0;
    letter-spacing: 0;
}


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

.top_service_in {
    padding: 35px 15px;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.top_service h3 {
    font-size: 1.7rem;
    margin-bottom: 5px;
    text-align: center;
}

.top_service_in img {
    margin: 0 0 15px;
}

.top_service_in p {
    line-height: 1.7;
    text-align: center;
}

}


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

.top_service {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.top_service_in {
    width: 48%;
    padding: 25px 30px 30px;
    margin: 0 0 20px;
}

.top_service h3 {
    font-size: 1.5rem;
}

.top_service_in p {
    font-size: 1.4rem;
}

}


/*----------------------------------------------------
	トップページ・テンプレートデザイン
----------------------------------------------------*/

.template_sample {
    width: 100%;
    margin: 40px auto -40px;
}

.template_sample ul {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.template_sample li {
    width: 33%;
    padding: 0 2% 50px;
}

.template_sample li h2,
.template_sample li h3 {
    margin: 0 0 25px;
    text-align: center;
    font-size: clamp(2.3rem, 2vw, 2.8rem);
}

.template_sample li a.more_btn {
    width: 70%;
    max-width: 240px;
    height: 40px;
    font-size: 1.5rem;
    margin: 25px auto 20px;
}


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

.template_sample {
    width: 100%;
    margin: 30px auto -20px;
}

.template_sample li {
    width: 100%;
    padding: 0 0 25px;
}

.template_sample li a.more_btn {
    width: 70%;
    max-width: 200px;
    min-width: auto;
    min-height: auto;
    font-size: 1.3rem;
    margin: 5px auto 40px;
}

}


/*----------------------------------------------------
	トップページ・制作料金
----------------------------------------------------*/

.price_top {
    margin: 40px auto 0;
    background: #fff;
    padding: 50px 0;
    border-radius: 20px;
}

.price_top .price {
    overflow: hidden;
}

.price_top_in {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: stretch;
}

.price_top .price_top_l {
    width: 45%;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: flex-end;
}

.price_top .price_top_l .title {
    width: 100px;
    height: 95px;
    font-size: 2.8rem;
    text-align: center;
    font-weight: var(--font-weight-base);
    line-height: 1.3;
    color: #fff;
    margin: 0 15px 0 0;
    background: var(--secondary-color);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.price_top .price_top_l .price {
    font-size: clamp(4.0rem, 4vw, 7.0rem);
    font-weight: var(--font-weight-base);
    margin-bottom: 0;
    line-height: 1.2;
}

.price_top span.plus {
    width: 8%;
    font-size: 4.0rem;
    font-weight: var(--font-weight-base);
    color: var(--font-color-gray);
    display: flex;
    justify-content: center;
    align-items: center;
}

.price_top .price_top_r {
    width: 45%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.price_top .price_top_r_in {
    width: 100%;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}

.price_top .price_top_r .title {
    width: 85px;
    height: 75px;
    font-size: 1.5rem;
    text-align: center;
    font-weight: var(--font-weight-base);
    line-height: 1.3;
    color: #fff;
    margin: 0 15px 0 0;
    background: var(--secondary-color);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.price_top .price_top_r .price {
    font-size: clamp(3.0rem, 4vw, 4.5rem);
    font-weight: var(--font-weight-base);
    margin-bottom: 0;
    line-height: 1.2;
}


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

.price_top {
    margin: 30px 0;
    padding: 40px 30px;
}

.price_top_in {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
}

.price_top .price_top_l {
    width: 300px;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: flex-start;
}

.price_top .price_top_l .title {
    width: 75px;
    height: 70px;
    font-size: 2.1rem;
}

.price_top span.plus {
    line-height: 1.5;
}

.price_top .price_top_r {
    width: 300px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.price_top .price_top_r .title {
    width: 75px;
    height: 70px;
    font-size: 1.3rem;
}

}


/*----------------------------------------------------
	トップページ・プランに含まれるページ内容
----------------------------------------------------*/

.plan_details {
    margin: 60px auto 30px;
    padding: 60px 70px 55px;
    background: #fff;
    border-radius: 20px;
}

.plan_details h3 {
    margin: 0 auto 30px;
    text-align: center;
}

.plan_details table {
    border: none;
    margin-bottom: 0;
}

.plan_details table tr:last-child {
    border: none;
}

.plan_details table th {
    width: 270px;
    font-size: 1.8rem;
    font-weight: var(--font-weight-base);
    background: #fff;
    vertical-align: top;
}

.plan_details table td {
    vertical-align: top;
}


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

.plan_details {
    padding: 60px 50px 55px;
}

.plan_details table th {
    width: 230px;
    font-size: 1.6rem;
}

}


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

.plan_details h3 {
    margin: 0 auto 20px;
}

.plan_details table {
    margin: 0 0 -20px;
}

.plan_details table th {
    width: 100%;
    display: block;
    font-size: 1.7rem;
    padding: 20px 5px 5px 10px;
}

.plan_details table td {
    width: 100%;
    display: block;
    padding: 0 5px 20px 10px;
}

}


/*----------------------------------------------------
	制作料金・表(色分け)
----------------------------------------------------*/

.price {
    overflow-x: auto;
}

.price table {
    min-width: 760px;
    border-bottom: none;
    margin-bottom: 20px;
}

#maintenance .price table {
    min-width: 580px;
}

.price table tr {
    border: none;
}

.price table thead th {
    width: auto;
    font-size: 2.3rem;
    font-weight: var(--font-weight-base);
    color: #fff;
    text-align: center;
    padding: 20px 5px;
    border: 1px solid var(--border-color);
    background: var(--background-color2);
}

.price table thead th .detail_top {
    font-size: 1.4rem;
    line-height: 1.5;
    display: block;
    padding: 5px;
}

.price table thead th .detail {
    font-size: 1.6rem;
    line-height: 1.5;
    display: block;
    padding-top: 5px;
}

.price table thead th:nth-child(2) {
    background: var(--primary-color);
    border-top: 1px solid var(--primary-color);
    border-bottom: 1px solid var(--primary-color);
    border-right: 1px solid #fff;
}

.price table thead th:nth-child(3) {
    background: var(--secondary-color);
    border-top: 1px solid var(--secondary-color);
    border-bottom: 1px solid var(--secondary-color);
    border-right: 1px solid #fff;
}

.price table thead tr:first-child th a span {
    width: 180px;
    position: relative;
    display: block;
    font-size: 1.4rem;
    color: var(--primary-color);
    background: #fff;
    line-height: 1;
    padding: 5px 5px 5px 20px;
    margin: 8px auto 4px;
    text-align: center;
    border-radius: 50px;
}

.price table thead tr:first-child th:nth-child(3) a span {
    color: var(--secondary-color);
}

.price table thead tr:first-child th a span i {
    font-size: 1.0rem;
    padding: 0 0 0 15px !important;
    position: relative;
    top: -1px;
}

.price table thead tr:first-child th a span:hover {
    opacity: 0.7;
}

.price table tbody th {
    width: auto;
    font-size: 1.8rem;
    font-weight: var(--font-weight-base);
    padding: 18px 5px 15px;
    text-align: center;
    background: #fbfbfb;
    border: 1px solid var(--border-color);
}

.price table tbody td {
    font-size: 1.9rem;
    padding: 18px 5px 15px;
    text-align: center;
    background: #fff;
    border: 1px solid var(--border-color);
}

.price table tbody tr:first-child td {
    font-size: 3.0rem;
    font-weight: var(--font-weight-base);
}

.price table tbody tr:first-child td:nth-child(2) {
    color: var(--primary-color);
}

.price table tbody tr:first-child td:nth-child(3) {
    color: var(--secondary-color);
}

.price table tbody .kome,
.price1 table tbody .kome {
    font-size: 1.2rem;
    position: relative;
    top: -4px;
    padding: 0 0 0 3px;
}


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

.price table thead th {
    font-size: 1.7rem;
}

.price table thead th .detail_top,
.price table thead th .detail {
    font-size: 1.2rem;
    line-height: 1.5;
    padding-top: 5px;
    display: block;
}

.price table thead tr:first-child th a span {
    width: 160px;
    position: relative;
    display: block;
    font-size: 1.2rem;
    color: var(--primary-color);
    background: #fff;
    line-height: 1;
    padding: 5px 5px 5px 20px;
    margin: 8px auto 4px;
    text-align: center;
    border-radius: 50px;
}

.price table thead th:nth-child(1),
.price table tbody th:nth-child(1) {
    max-width: 20%;
    min-width: 150px;
}

.price table tbody th,
.price table tbody td {
    font-size: 1.5rem;
}

.price table tbody tr:first-child td {
    font-size: 2.7rem;
    font-weight: var(--font-weight-base);
}

}


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

.price table tbody tr:first-child td {
    font-size: 2.4rem;
}

}


/*----------------------------------------------------
	トップページ・お客様の声
--------------------------------------------------- */

.top_voice {
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    text-align: left;
    flex-wrap: wrap;
    position: relative;
}

.top_voice::after {
    content: '';
    display: inline-block;
    width: 400px;
    height: 289px;
    background: url(/wp-content/uploads/voice_bg.webp) no-repeat;
    background-size: 400px;
    vertical-align: middle;
    position: absolute;
    bottom: -70px;
    right: -145px;
    z-index: 100;
    pointer-events: none;
}

.h3_slash {
    margin: 0 auto 20px;
    text-align: center;
}

.h3_slash span {
    display: inline-block;
    font-size: clamp(2.0rem, 4vw, 2.6rem);
    font-weight: var(--font-weight-base);
    position: relative;
    padding: 0 15px;
}

.h3_slash span::before {
    content: '';
    position: absolute;
    bottom: 45%;
    left: -15px;
    display: inline-block;
    width: 21px;
    height: 2px;
    background: #111;
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
}

.h3_slash span::after {
    content: '';
    position: absolute;
    bottom: 45%;
    right: -15px;
    display: inline-block;
    width: 21px;
    height: 2px;
    background: #111;
    -webkit-transform: rotate(-60deg);
    transform: rotate(-60deg);
}

.top_voice_in {
    width: 32%;
    height: auto;
    flex-direction: column;
    border: 1px solid var(--border-color);
    padding: 30px 30px 10px 30px;
    margin: 10px 0 20px;
    background: #fff;
    border-radius: 10px;
}

.top_voice_in h3 {
    font-size: 2.0rem;
    margin: 0 0 15px;
    padding: 0 0 15px;
    border-bottom: 1px solid var(--border-color);
    font-weight: var(--font-weight-base);
}


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

.top_voice::after {
    content: '';
    display: inline-block;
    width: 370px;
    height: 267px;
    background: url(/wp-content/uploads/voice_bg.webp) no-repeat;
    background-size: 370px;
    vertical-align: middle;
    position: absolute;
    bottom: -70px;
    right: -110px;
}

}


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

.top_voice {
    width: 90%;
    display: block;
}

.top_voice::after {
    content: '';
    display: inline-block;
    width: 345px;
    height: 249px;
    background: url(/wp-content/uploads/voice_bg.webp) no-repeat;
    background-size: 345px;
    vertical-align: middle;
    position: absolute;
    bottom: -90px;
    right: -90px;
}

.top_voice_in {
    width: 100%;
    height: auto;
    margin: 30px auto 20px;
}

}


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

.top_voice::after {
    content: '';
    display: inline-block;
    width: 285px;
    height: 206px;
    background: url(/wp-content/uploads/voice_bg.webp) no-repeat;
    background-size: 285px;
    vertical-align: middle;
    position: absolute;
    bottom: -90px;
    right: -75px;
}

}


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

.h3_slash span::before,
.h3_slash span::after {
    content: '';
    bottom: 25%;
}

}


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

.top_voice::after {
    content: '';
    display: inline-block;
    width: 215px;
    height: 155px;
    background: url(/wp-content/uploads/voice_bg.webp) no-repeat;
    background-size: 215px;
    vertical-align: middle;
    position: absolute;
    bottom: -70px;
    right: -45px;
}

}


/*----------------------------------------------------
	制作料金
----------------------------------------------------*/

.price1 table,
.price1 table tr {
    margin-bottom: 20px;
}

.price1 table tr {
    border: none;
}

.price1 table thead th {
    background: var(--background-color2);
}

.price1 table th {
    font-size: 1.8rem;
    font-weight: var(--font-weight-base);
    padding: 15px 5px;
    text-align: center;
    background: #fff;
    border: 1px solid var(--border-color);
}

.price1 table td {
    font-size: 1.9rem;
    padding: 18px 5px 15px;
    text-align: center;
    background: #fff;
    border: 1px solid var(--border-color);
}


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

.price1 table th,
.price1 table td {
    font-size: 1.5rem;
}

}


/*----------------------------------------------------
	オプション料金
----------------------------------------------------*/

.option table {
    border: none;
    margin: 0;
}

.option table tr {
    border: none;
}

.option table thead th {
    width: auto;
    font-size: 1.8rem;
    font-weight: var(--font-weight-base);
    padding: 18px 5px 15px;
    text-align: center;
    background: var(--background-color2);
    border: 1px solid var(--border-color);
}

.option table tbody th {
    width: auto;
    font-size: 1.8rem;
    font-weight: var(--font-weight-base);
    padding: 18px 10px 15px;
    text-align: center;
    background: #fff;
    border: 1px solid var(--border-color);
}

.option table td {
    font-size: 2.2rem;
    padding: 18px 10px 15px;
    text-align: center;
    background: #fff;
    border: 1px solid var(--border-color);
}

.option table td.note {
    font-size: 1.6rem;
    text-align: left;
    padding: 18px 10px 15px 15px;
}

.option table thead th:nth-child(1) {
    width: 25%;
}

.option table thead th:nth-child(3) {
    width: 25%;
}

.option table tbody p {
    font-size: 1.6rem;
    margin: 10px 0 0;
}

.option table tbody .kome {
    font-size: 1.2rem;
    position: relative;
    padding: 10px 0 0 3px;
    margin: 0;
}


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

.option table thead th,
.option table tbody th,
.option table th,
.option table td {
    font-size: 1.7rem;
}

}


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

.option table thead {
    display: none;
}

.option table tr {
    margin-bottom: 30px;
    display: block;
}

.option table tr:last-child {
    margin-bottom: 0;
}

.option table tbody tr:nth-child(2n) {
    background: #fff;
}

.option table td {
    display: block;
    font-size: 1.8rem;
    border-bottom: 1px solid var(--border-color);
}

.option table th.option {
    width: 100%;
    font-size: 1.7rem;
    display: block;
    font-weight: var(--font-weight-base);
    text-align: center;
    background: var(--background-color2);
}

.option table td.note {
    width: 100%;
    font-size: 1.5rem;
    border-top: none;
    border-bottom: none;
}

.option table tbody p {
    font-size: 1.5rem;
    margin: 10px 0 0;
}

}


/*----------------------------------------------------
	TOP・よくある質問
----------------------------------------------------*/

.top-accordion-area {
    list-style: none;
    margin: 0 0 70px;
}

.top-accordion-area dl {
    background: #fff;
    padding: 5px 30px 0;
    margin-bottom: 30px;
    border-radius: 10px;
    position: relative;
}

.top-accordion-area dl::before {
    content: "Q";
    color: var(--font-color-1);
    font-family: 'Didact Gothic', sans-serif;
    font-size: 3.2rem;
    font-weight: var(--font-weight-base);
    position: absolute;
    top: 18px;
    left: 34px;
}

dt.question .mark {
    height: 34px;
    width: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    border-radius: 50%;
    transition: all .5s ease;
    position: absolute;
    right: 5px;
    top: calc(50% - 17px);
}

dt.question .mark::before {
    position: absolute;
    content: '';
    width: 15px;
    height: 2px;
    background: #fff;
    transform: rotate(0deg);
    transition: transform .3s;
}

dt.question .mark:hover {
    background: var(--tertiary-color);
}

dt.question .mark::after {
    position: absolute;
    content: '';
    width: 15px;
    height: 2px;
    background: #fff;
    transform: rotate(90deg);
    transition: transform .3s;
}

dt.question.close .mark::before {
    transform: rotate(45deg);
}

dt.question.close .mark::after {
    transform: rotate(-45deg);
}

.top-accordion-area dt.question {
    position: relative;
    cursor: pointer;
    font-size: 2.0rem;
    font-weight: var(--font-weight-base);
    padding: 25px 70px 25px 40px;
    margin: 0;
    transition: all .5s ease;
}

.answer {
    display: none;
    padding: 0 70px 10px 40px;
    position: relative;
}

.answer::before {
    content: "A";
    color: var(--tertiary-color);
    font-family: 'Didact Gothic', sans-serif;
    font-size: 3.2rem;
    font-weight: var(--font-weight-base);
    position: absolute;
    top: -13px;
    left: 7px;
}

.answer p {
    margin-bottom: 20px;
}

.answer p a {
    display: inline-block;
    text-decoration: none;
    position: relative;
}

.answer p a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    -webkit-transition: -webkit-transform .3s cubic-bezier(.43,.05,.17,1);
    transition: -webkit-transform .3s cubic-bezier(.43,.05,.17,1);
    transition: transform .3s cubic-bezier(.43,.05,.17,1);
    transition: transform .3s cubic-bezier(.43,.05,.17,1),-webkit-transform .3s cubic-bezier(.43,.05,.17,1);
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: right;
    transform-origin: right;
    z-index: 10;
}

.answer p a:hover {
    color: var(--font-color-1);
}

.answer p a:hover::after {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transform-origin: left;
    transform-origin: left;
}


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

.top-accordion-area {
    margin: 0 0 50px;
}

.top-accordion-area dl {
    padding: 10px 20px 15px;
}

.top-accordion-area dl::before {
    content: "Q";
    color: #61caeb;
    font-family: 'Didact Gothic', sans-serif;
    font-size: 2.8rem;
    font-weight: var(--font-weight-base);
    position: absolute;
    top: 24px;
    left: 24px;
}

.top-accordion-area dl dt.question {
    font-size: 1.7rem;
    padding: 25px 55px 15px 35px;
}

.top-accordion-area dl .answer {
    display: none;
    padding: 0 15px 0 40px;
    position: relative;
}

.answer::before {
    content: "A";
    color: var(--tertiary-color);
    font-family: 'Didact Gothic', sans-serif;
    font-size: 2.7rem;
    font-weight: var(--font-weight-base);
    position: absolute;
    top: -8px;
    left: 5px;
}

}


/*----------------------------------------------------
	よくある質問
----------------------------------------------------*/

h2.faq {
    margin: 50px 0 20px;
    font-size: 2.7rem;
    font-weight: var(--font-weight-base);
    line-height: 1.5;
}

.accordion-area {
    list-style: none;
    margin: 0 0 70px;
}

.accordion-area dl {
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

.accordion-area dl::before {
    content: "Q";
    color: var(--font-color-1);
    font-family: 'Didact Gothic', "Inter", "Zen Kaku Gothic New", sans-serif;
    font-size: 3.2rem;
    font-weight: var(--font-weight-base);
    position: absolute;
    top: 13px;
    left: 4px;
}

dt.question {
    position: relative;
    cursor: pointer;
    font-size: 2.0rem;
    font-weight: var(--font-weight-base);
    padding: 25px 40px;
    margin: 0;
    transition: all .5s ease;
}

dt.question .mark {
    height: 34px;
    width: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    border-radius: 50%;
    transition: all .5s ease;
    position: absolute;
    right: 5px;
    top: calc(50% - 17px);
}

dt.question .mark::before {
    position: absolute;
    content: '';
    width: 15px;
    height: 2px;
    background: #fff;
    transform: rotate(0deg);
    transition: transform .3s;
}

dt.question .mark:hover {
    background: var(--tertiary-color);
}

dt.question .mark::after {
    position: absolute;
    content: '';
    width: 15px;
    height: 2px;
    background: #fff;
    transform: rotate(90deg);
    transition: transform .3s;
}

dt.question.close .mark::before {
    transform: rotate(45deg);
}

dt.question.close .mark::after {
    transform: rotate(-45deg);
}

.answer {
    display: none;
    padding: 0 40px 10px 40px;
    position: relative;
}

.answer::before {
    content: "A";
    color: var(--tertiary-color);
    font-family: 'Didact Gothic', "Inter", "Zen Kaku Gothic New", sans-serif;
    font-size: 3.2rem;
    font-weight: var(--font-weight-base);
    position: absolute;
    top: -13px;
    left: 7px;
}

.answer p {
    margin-bottom: 20px;
}

.answer p a {
    display: inline-block;
    text-decoration: none;
    position: relative;
}

.answer p a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    -webkit-transition: -webkit-transform .3s cubic-bezier(.43,.05,.17,1);
    transition: -webkit-transform .3s cubic-bezier(.43,.05,.17,1);
    transition: transform .3s cubic-bezier(.43,.05,.17,1);
    transition: transform .3s cubic-bezier(.43,.05,.17,1),-webkit-transform .3s cubic-bezier(.43,.05,.17,1);
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: right;
    transform-origin: right;
    z-index: 10;
}

.answer p a:hover {
    color: var(--font-color-1);
}

.answer p a:hover::after {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transform-origin: left;
    transform-origin: left;
}


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

h2.faq {
    font-size: 2.2rem;
    line-height: 1.5;
}

.accordion-area dl::before {
    content: "Q";
    color: var(--font-color-1);
    font-family: 'Didact Gothic', "Inter", "Zen Kaku Gothic New", sans-serif;
    font-size: 2.8rem;
    font-weight: var(--font-weight-base);
    position: absolute;
    top: 14px;
    left: 4px;
}

dt.question {
    font-size: 1.7rem;
    padding: 25px 50px 15px 35px;
}

.answer {
    display: none;
    padding: 0 20px 0 40px;
    position: relative;
}

.answer::before {
    content: "A";
    color: var(--tertiary-color);
    font-family: 'Didact Gothic', "Inter", "Zen Kaku Gothic New", sans-serif;
    font-size: 2.7rem;
    font-weight: var(--font-weight-base);
    position: absolute;
    top: -8px;
    left: 5px;
}

}


/*----------------------------------------------------
	対応エリア
----------------------------------------------------*/

.box_area {
    width: 100%;
    background: var(--background-color1);
    margin: 0 auto;
    position: relative;
}

.box_area::after {
    content: "AREA";
    font-size: clamp(11.0rem,10vw,13.5rem);
    color: rgb(222 242 247 / 50%);
    line-height: 1;
    letter-spacing: 3px;
    font-family: 'Didact Gothic', "Inter", "Zen Kaku Gothic New", sans-serif;
    mix-blend-mode: multiply;
    position: absolute;
    bottom: -13px;
    right: 0;
}

.box_area_in {
    clear: both;
    width: 95%;
    max-width: 1200px;
    height: auto;
    margin: 0 auto;
    overflow: hidden;
    text-align: left;
    padding: 70px 0 70px;
    position: relative;
}

.box_area_in::after {
    content: "";
    background: url(/wp-content/uploads/japan.webp)no-repeat;
    background-size: 425px;
    width: 425px;
    height: 338px;
    mix-blend-mode: multiply;
    position: absolute;
    right: 0;
    bottom: 50px;
}

.box_area h2 {
    font-size: clamp(2.1rem,3vw,3.3rem);
    font-weight: var(--font-weight-base);
    line-height: 1.6;
    margin-bottom: 25px;
    position: relative;
}

.box_area table {
    margin: 0 0 0 3px;
    border: none;
}

.box_area tr {
    border-bottom: none;
}

.box_area th {
    width: 100px;
    font-size: 1.6rem;
    font-weight: var(--font-weight-base);
    padding: 0 0 3px;
    background: none;
}

.box_area td {
    font-size: 1.5rem;
    padding: 1px 0 3px;
}


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

.box_area_in::after {
    content: "";
    background: url(/wp-content/uploads/japan.webp)no-repeat;
    background-size: 300px;
    width: 300px;
    height: 241px;
    position: absolute;
    right: 0;
    bottom: 30px;
}

}


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

.box_area_in::after {
    content: "";
    background: url(/wp-content/uploads/japan.webp)no-repeat;
    background-size: 250px;
    width: 250px;
    height: 201px;
    position: absolute;
    right: 0;
    bottom: 30px;
}

}


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

.box_area::after {
    content: "AREA";
    font-size: 8.0rem;
    color: rgb(222 242 247 / 50%);
    line-height: 1;
    letter-spacing: 3px;
    font-family: 'Didact Gothic', "Inter", "Zen Kaku Gothic New", sans-serif;
    mix-blend-mode: multiply;
    position: absolute;
    bottom: -9px;
    right: 0;
}

.box_area_in {
    width: 90%;
    height: auto;
    text-align: left;
    margin: 0 auto;
    padding: 70px 0 180px;
}

.box_area_in::after {
    content: "";
    background: url(/wp-content/uploads/japan.webp)no-repeat;
    background-size: 250px;
    width: 250px;
    height: 200px;
    position: absolute;
    right: 0;
    bottom: 5%;
}

.box_area h2 {
    font-size: 2.1rem;
    margin-bottom: 25px;
}

}


/*----------------------------------------------------
	サイトマップ
----------------------------------------------------*/

#menu-sitemap-navi {
    margin-bottom: 30px;
}

#menu-sitemap-navi li {
    border-bottom: 1px solid var(--border-color);
}

#menu-sitemap-navi li a {
    font-size: 1.6rem;
    text-align: left;
    line-height: 1;
    list-style-type: none;
    color: var(--font-color-base);
    padding: 15px 5px 15px 15px;
    font-weight: var(--font-weight-base);
    display: block;
    text-decoration: none;
    position: relative;
}

#menu-sitemap-navi li ul.sub-menu {
    margin-left: 18px;
    padding: 5px 0 5px 0;
    margin-bottom: 0;
    position: relative;
    top: -7px;
}

#menu-sitemap-navi li ul.sub-menu li {
    border-bottom: none;
}

#menu-sitemap-navi li ul.sub-menu li a {
    padding: 8px 5px 8px 20px;
}

#menu-sitemap-navi li ul.sub-menu li a::before {
    content: "";
    display: block;
    width: 8px;
    height: 2px;
    background: #c7c7c7;
    position: absolute;
    left: 0;
    top: 13px;
}

#menu-sitemap-navi li a:hover {
    text-decoration: none;
    color: var(--primary-color);
}


/*----------------------------------------------------
	footer
----------------------------------------------------*/

footer {
    clear: both;
    height: auto;
    width: 100%;
    background: #fff;
    position: relative;
}

.footer_area {
    height: auto;
    width: 95%;
    max-width: var(--max-width);
    margin: 0 auto;
    overflow: hidden;
    padding: 85px 0 85px;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: nowrap;
}

.footer_logo {
    width: 270px;
    text-align: left;
    margin: 0 0 15px;
}

.footer_logo_area p {
    font-size: 1.4rem;
    padding-left: 3px;
    margin-bottom: 0;
}

.footer_logo a {
    font-family: 'Didact Gothic', "Inter", "Zen Kaku Gothic New", sans-serif;
    font-size: 3.3rem;
    font-weight: var(--font-weight-base);
    line-height: 0.9;
    text-decoration: none;
    color: var(--font-color-base);
    letter-spacing: 1px;
    position: relative;
    top: -5px;
}

.footer_logo a .sub {
    font-size: 1.5rem;
    position: relative;
    top: 5px;
}

.footer_logo a::before {
    content: "";
    background: url(/wp-content/uploads/logo.webp)no-repeat;
    background-size: 65px;
    width: 65px;
    height: 52px;
    float: left;
    margin: 0 10px 0 0;
    position: relative;
    top: 17px;
}

.footer_logo a:hover {
    text-decoration: none;
    opacity: 0.7;
    transition: 0.5s;
}

.footer_navi_area {
    width: calc(100% - 400px);
    max-width: 700px;
    display: flex;
    justify-content: space-between;
    padding-top: 5px;
}

.menu-footer-navi1-container {
    margin-right: 8%;
}

.menu-footer-navi2-container {
    margin-right: 5%;
}

.footer_navi_area ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 5px 0 0;
}

.footer_navi_area ul li {
    margin-bottom: 5px;
}

ul#menu-footer-navi1 li a,
ul#menu-footer-navi2 li a,
ul#menu-footer-navi3 li a {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: var(--font-weight-base);
    color: var(--font-color-base);
    text-decoration: none;
    position: relative;
}

ul#menu-footer-navi1 li ul.sub-menu,
ul#menu-footer-navi2 li ul.sub-menu,
ul#menu-footer-navi3 li ul.sub-menu {
    margin-left: 18px;
}

ul#menu-footer-navi1 li ul.sub-menu li a,
ul#menu-footer-navi2 li ul.sub-menu li a,
ul#menu-footer-navi3 li ul.sub-menu li a {
    font-size: 1.4rem;
}

ul#menu-footer-navi1 li ul.sub-menu li a::before,
ul#menu-footer-navi2 li ul.sub-menu li a::before,
ul#menu-footer-navi3 li ul.sub-menu li a::before {
    content: "";
    display: block;
    width: 8px;
    height: 2px;
    background: #c7c7c7;
    position: absolute;
    left: -17px;
    top: 13px;
}

ul#menu-footer-navi1 li a::after,
ul#menu-footer-navi2 li a::after,
ul#menu-footer-navi3 li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    -webkit-transition: -webkit-transform .3s cubic-bezier(.43,.05,.17,1);
    transition: -webkit-transform .3s cubic-bezier(.43,.05,.17,1);
    transition: transform .3s cubic-bezier(.43,.05,.17,1);
    transition: transform .3s cubic-bezier(.43,.05,.17,1),-webkit-transform .3s cubic-bezier(.43,.05,.17,1);
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: right;
    transform-origin: right;
    z-index: 10;
}

ul#menu-footer-navi1 li a:hover,
ul#menu-footer-navi2 li a:hover,
ul#menu-footer-navi3 li a:hover {
    text-decoration: none;
}

ul#menu-footer-navi1 li a:hover::after,
ul#menu-footer-navi2 li a:hover::after,
ul#menu-footer-navi3 li a:hover::after {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transform-origin: left;
    transform-origin: left;
}

.footer_navi_area .fa-solid {
    font-weight: 900;
    font-size: 1.3rem;
    padding: 0 0 0 5px;
    position: relative;
    top: -1px;
}

.footer_bottom {
    height: 50px;
    background: var(--secondary-color);
}

.footer_bottom_area {
    width: 95%;
    max-width: var(--max-width);
    height: 50px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.copyright {
    color: #fff;
    font-size: 1.2rem;
    line-height: 1;
    padding-left: 50px;
    text-align: left;
}


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

.footer_area {
    padding: 60px 0 50px;
}

.footer_navi_area {
    width: calc(100% - 360px);
}

}


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

.footer_area {
    width: 90%;
    max-width: 270px;
    margin: 0 auto;
    padding: 60px 0;
}

.footer_logo_area {
    width: 100%;
}

.footer_logo a::before {
    content: "";
    background: url(/wp-content/uploads/logo_sp.webp)no-repeat;
    background-size: 65px;
    width: 65px;
    height: 52px;
    float: left;
    margin: 0 10px 0 0;
    position: relative;
    top: 17px;
}

.footer_navi_area,
.menu-footer-navi4-container {
    display: none;
}

.footer_bottom_area {
    width: 95%;
    height: 50px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.copyright {
    padding-left: 0;
    text-align: center;
}

}


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

.footer_area {
    padding: 60px 0 35px;
}

.footer_bottom {
    height: auto;
    background: #fff;
    padding: 0 0 110px;
}

.footer_bottom_area {
    height: auto;
}

.copyright {
    padding-left: 0;
    text-align: center;
    color: var(--font-color-base);
}

}


/*----------------------------------------------------
	SP下部固定お問い合わせバナー
----------------------------------------------------*/

#contact_sp {
    display: none;
}


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

#contact_sp {
    width: 100%;
    height: 50px;
    display: block;
    position: fixed;
    bottom: 0;
    z-index: 10;
    background: #fff;
}

.contact_area_sp {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin: 0 auto;
    justify-content: space-between;
}

.contact_sp .contact_tel_sp {
    width: 50%;
    text-align: center;
}

.tel_contact_sp {
    width: 100%;
    height: 50px;
    margin: 0 auto;
    text-align: left;
    font-size: 1.5rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: #fff;
    border-right: 1px solid #fff;
}

.tel_contact_sp::before {
    content: "";
    background: url(/wp-content/uploads/footer_tel.webp) no-repeat;
    background-size: 24px;
    height: 24px;
    width: 24px;
    margin: 0 10px 0 0;
    display: inline-block;
}

.tel_contact_sp:hover {
    opacity: 0.7;
    transition: 0.5s;
}

.contact_tel_sp,
.contact_mail_sp {
    width: 50%;
    text-align: center;
}

.contact_more_btn_sp {
    width: 100%;
    height: 50px;
    margin: 0 auto;
    text-align: left;
    font-size: 1.5rem;
    line-height: 1;
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: center;
    background: var(--secondary-color);
    color: #fff;
}

.contact_more_btn_sp::before {
    content: "";
    background: url(/wp-content/uploads/footer_mail.webp) no-repeat;
    background-size: 21px;
    height: 21px;
    width: 21px;
    margin: 0 10px 0 0;
    display: inline-block;
}

.contact_more_btn_sp:hover {
    opacity: 0.7;
    transition: 0.5s;
}

}


/*----------------------------------------------------
	最下部実績
----------------------------------------------------*/

.box_results {
    width: 100%;
    height: 320px;
    overflow: hidden;
    position: relative;
}

.box_results .video_box {
    width: 100% !important;
    height: auto !important;
    padding: 40px 0 30px !important;
    position: relative !important;
}

.box_results .video_box video {
    width: 100% !important;
    height: auto !important;
    position: absolute !important;
    left: 0 !important;
    bottom: 0 !important;
    z-index: -1 !important;
}

ul.slider_results {
    width: 100%;
    height: 250px;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

ul.slider_results li {
    height: 250px;
}

ul.slider_results li img {
    height: 250px;
    width: auto;
    padding: 0 30px;
}


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

.box_results,
.box_results .video_box {
    height: 250px !important;
}

.box_results .video_box video {
    width: 200% !important;
    height: auto !important;
}

ul.slider_results,
ul.slider_results li {
    height: 180px;
}

ul.slider_results li img {
    height: 180px;
    padding: 0 10px;
}

}


/*----------------------------------------------------
	詳細を見るボタン
----------------------------------------------------*/

a.more_btn {
    width: 400px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary-color);
    color: #fff;
    font-size: 1.8rem;
    font-weight: var(--font-weight-base);
    padding-top: 1px;
    text-decoration: none;
    border: none;
    margin: 40px auto 20px;
    position: relative;
    overflow: hidden;
    z-index: 2;
    border-radius: 10px;
}

a.more_btn::before {
    content: "\f138";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 1.4rem;
    padding-right: 6px;
    vertical-align: middle;
}

a.more_btn::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    background: var(--primary-color);
    transform-origin: left;
    transform: scale(0, 1);
    transition: transform .3s;
}

a.more_btn:hover {
    text-decoration: none;
}

a.more_btn:hover::after {
    transform-origin: left bottom;
    transform: scale(1, 1);
}


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

a.more_btn {
    width: 85%;
    max-width: 350px;
    min-width: 270px;
    height: auto;
    min-height: 45px;
    font-size: 1.5rem;
    padding: 11px 25px 10px;
    line-height: 1.5;
    margin: 30px auto 30px;
}

}


/*----------------------------------------------------
	トップへ戻る
----------------------------------------------------*/

#page-top {
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 100;
    width: 51px;
    height: 50px;
    background: url(/wp-content/uploads/pagetop.webp);
    color: #fff;
    padding: 21px 0 0 27px;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s, background-color 0.3s;
    cursor: pointer;
}

#page-top svg {
    width: 20px;
    height: 28px;
    color: #fff;
}

#page-top.is-show {
    opacity: 1;
    visibility: visible;
}

#page-top:hover {
    text-decoration: none;
    opacity: 0.7;
    transition: 0.5s;
}


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

#page-top {
    position: fixed;
    width: 40px;
    height: 40px;
    bottom: 75px;
    right: 10px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    padding: 0;
}

}


/*----------------------------------------------------
	パンくずリスト
----------------------------------------------------*/

#breadcrumbs_area {
    clear: both;
    width: 100%;
}

.breadcrumbs {
    width: 95%;
    max-width: var(--max-width);
    margin: 0 auto;
    font-size: 1.2rem;
    padding: 10px 0 0;
}

.breadcrumbs ol {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}

.breadcrumbs li {
    display: inline-flex;
    align-items: center;
}

/* 区切り「›」を li の間にだけ表示 */
.breadcrumbs li + li::before {
    content: "›";
    margin: 0 5px;
    color: #999;
}

.breadcrumbs a {
    color: var(--font-color-base);
    text-decoration: none;
}

.breadcrumbs li:first-child a::before {
    content: "\f015";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    padding-right: 4px;
    position: relative;
    top: -1px;
}

.breadcrumbs a:hover {
    color: var(--font-color-1);
    text-decoration: none;
}


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

#breadcrumbs_area {
    display: none;
}

}


/*----------------------------------------------------
	お問い合わせ
----------------------------------------------------*/

.contact_tel {
    margin: 30px 0 0;
}

.contact_tel a {
    line-height: 1;
    color: var(--font-color-base);
    text-decoration: none;
    font-size: 5.3rem;
    font-weight: var(--font-weight-base);
    letter-spacing: -1px;
    position: relative;
    display: inline-block;
}

.contact_tel a::before {
    content: "\f095";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 3.9rem;
    padding-right: 9px;
    vertical-align: middle;
    position: relative;
    top: -4px;
    display: inline-block;
}

.contact_tel a:hover {
    text-decoration: none;
}

.contact_time {
    font-size: 1.8rem;
    font-weight: var(--font-weight-base);
    letter-spacing: 2px;
}

.box_form {
    padding: 10px 80px 60px;
    background: #fff;
    margin: 50px auto 25px;
    border: 1px solid var(--border-color);
    border-radius: 20px;
}

.wpcf7 {
    margin: 50px 0 50px !important;
}

table#contact_form {
    border-collapse: collapse;
    border-spacing: 0;
    margin: 30px auto 40px;
}

#contact_form tbody {
    border-collapse: collapse;
    border-spacing: 0;
}

#contact_form th {
    width: 30%;
    border-collapse: collapse;
    font-size: 1.7rem;
    font-weight: var(--font-weight-base);
    padding: 0;
    background: none;
    vertical-align: top;
}

#contact_form th label {
    padding: 30px 0 10px;
    display: block;
}

#contact_form td {
    border-collapse: collapse;
    padding: 15px 0 15px;
    display: block;
    background: none;
    text-align: left;
}

.kome {
    padding-top: 5px;
    margin-bottom: 0;
    font-size: 1.4rem;
}

textarea.wpcf7-form-control.wpcf7-textarea {
    font-family: var(--font-family-base);
    line-height: 1.5;
    border: 1px solid var(--background-color2);
    color: var(--font-color-base);
    width: 100%;
    font-size: 1.6rem;
    background: var(--background-color2);
    padding: 15px;
    overflow: hidden;
    border-radius: 5px;
    -webkit-appearance: none;
    appearance: none;
}

.wpcf7-list-item {
    margin: 5px 10px 5px 5px !important;
    display: block !important;
    border-radius: 0;
    -webkit-appearance: none;
    appearance: none;
    position: relative;
    top: -1px;
}

.wpcf7-acceptance .wpcf7-list-item {
    display: inline-block !important;
}

.wpcf7 form input[type="image"] {
    margin-bottom: 40px;
    border-radius: 0;
    -webkit-appearance: none;
    appearance: none;
}

.wpcf7 form input[type="text"],
.wpcf7 form input[type="tel"],
.wpcf7 form input[type="email"],
.wpcf7 form input[type="date"],
.wpcf7 form input[type="number"] {
    font-family: var(--font-family-base);
    line-height: 1.5;
    width: 100%;
    border: 1px solid var(--background-color2);
    color: var(--font-color-base);
    font-size: 1.6rem;
    background: var(--background-color2);
    padding: 15px;
    border-radius: 5px;
    -webkit-appearance: none;
    appearance: none;
 }

.wpcf7 form select {
    font-family: var(--font-family-base);
    line-height: 1.5;
    border: 1px solid var(--background-color2);
    color: var(--font-color-base);
    background: #fff;
    padding: 15px;
    font-size: 1.6rem;
    width: 100%;
    height: auto;
    border-radius: 0;
    -webkit-appearance: none;
    appearance: none;
    position: relative;
    outline: none;
}

.wpcf7 form .label {
    position: relative;
    display: block;
}

.wpcf7 form .label::after {
    display: block;
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 1.6rem;
    color: #666;
    position: absolute;
    line-height: 1.5;
    top: 17px;
    right: 3%;
    pointer-events: none;
}

.wpcf7 form input[type="file"] {
    font-family: var(--font-family-base);
    line-height: 1.5;
    width: 100%;
    border-radius: 0;
    -webkit-appearance: none;
    appearance: none;
}

.wpcf7 form input[type="textarea"]:focus,
.wpcf7 form input[type="text"]:focus,
.wpcf7 form input[type="tel"]:focus,
.wpcf7 form input[type="email"]:focus,
.wpcf7 form input[type="checkbox"]:focus,
.wpcf7 form input[type="radio"]:focus,
.wpcf7 form input[type="file"]:focus,
.wpcf7 form textarea:focus,
.wpcf7 form select:focus {
    border: 1px solid var(--border-color);
}

.wpcf7 form input[type="textarea"],
.wpcf7 form input[type="submit"],
.wpcf7 form input[type="text"],
.wpcf7 form input[type="tel"],
.wpcf7 form input[type="email"],
.wpcf7 form input[type="checkbox"],
.wpcf7 form input[type="radio"],
.wpcf7 form input[type="image"],
.wpcf7 form input[type="file"],
.wpcf7 form textarea {
    outline:none;
}

input[type="submit"] {
    outline:none;
    -webkit-appearance: none;
    appearance: none;
}

.wpcf7 form input[type="checkbox"],
.wpcf7 form input[type="radio"] {
    position: relative;
    top: 2px;
}

div.wpcf7 .ajax-loader,
.wpcf7-spinner {
    display: none !important;
}

.wpcf7-validation-errors {
    border: none !important;
    margin: 0 !important;
    padding: 0 !important;
    text-align: center;
}

span.wpcf7-not-valid-tip {
    color: var(--font-color-red); !important;
    font-weight: var(--font-weight-base);
    display: block;
    margin-top: 10px;
    text-align: left;
}

.wpcf7-response-output {
    padding: 0 !important;
    margin: 0 0 20px!important;
    color: var(--font-color-red); !important;
    font-weight: var(--font-weight-base);
    border: none !important;
    font-size: 1.8rem;
    text-align: center;
}

.wpcf7-mail-sent-ok,
.wpcf7-mail-sent-ng {
    border: none !important;
    text-align: center;
}

.acceptance {
    text-align: center;
    margin-top: 40px;
}

.acceptance span.wpcf7-list-item {
    margin: 0 12px 0 0 !important;
}


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

.box_form {
    padding: 10px 60px 60px;
}

}


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

.contact_tel {
    font-size: 2.0rem;
    line-height: 1.4;
    text-align: center;
    margin-top: 25px;
    margin-bottom: 3px;
}

.contact_tel a {
    font-size: 3.7rem;
    pointer-events: auto;
    text-decoration: none;
    cursor: pointer;
}

.contact_tel a::before {
    content: "\f095";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    padding-right: 6px;
    font-size: 2.5rem;
    vertical-align: middle;
    position: relative;
    top: -3px;
}

.contact_tel a:hover {
    opacity: 0.7;
}

.contact_time {
    font-size: 1.3rem;
    text-align: center;
    letter-spacing: 1px;
}

.box_form {
    padding: 0 30px 60px;
}

.wpcf7 {
    margin: 20px 0 40px !important;
}

table#contact_form {
    width: 100%;
    margin: 0 auto 30px;
    border: none;
}

#contact_form tr {
    border: none;
}

#contact_form th {
    width: 100%;
    font-size: 1.6rem;
    font-weight: var(--font-weight-base);
    text-align: left;
    display: block;
    border: none;
    padding: 10px 0 0;
}

#contact_form td {
    width: 100%;
    text-align: left;
    display: block;
    border: none;
    background: none;
    padding: 10px 0 10px;
}

.wpcf7 form input[type="image"] {
    margin-bottom: 30px;
}

.wpcf7 form input[type="checkbox"] {
    top: 1px;
}

input[type="radio"] {
    width: auto;
    top: -2px;
}

span.wpcf7-list-item {
    font-size: 1.6rem;
    display: block;
}

.wpcf7-acceptance .wpcf7-list-item {
    display: inline;
}

.android #contact_form input[type="file"] {
    font-size: 1.2rem;
}

#contact_form select {
    width: 100% !important;
    border-radius: 0;
    text-indent: 5px;
}

.wpcf7 form label::before,
.wpcf7 form label::after {
    display: none;
}

#contact_form input[type="text"],
#contact_form input[type="tel"],
#contact_form input[type="email"] {
    width: 100%;
}

.wpcf7-validation-errors {
    margin: 0 auto !important;
    padding: 0 0 20px 0 !important;
    text-align: center;
    width: 100%;
    max-width: 275px;
    line-height: 1.7;
}

.wpcf7-response-output {
    font-size: 1.4rem;
}

.acceptance {
    text-align: left;
    margin: 20px 0 40px;
}

}


/*----------------------------------------------------
	必須タグ
----------------------------------------------------*/

.tag.tag_imperative {
    width: 48px;
    height: 24px;
    background: var(--secondary-color);
    color: #fff;
    display: inline-flex;
    font-style: normal;
    margin-left: 10px;
    line-height: 1;
    font-size: 1.2rem;
    align-items: center;
    justify-content: center;
}


/*----------------------------------------------------
	送信ボタン
----------------------------------------------------*/

.submit {
    font-family: var(--font-family-base);
    width: 400px;
    height: 60px;
    font-size: 1.7rem;
    font-weight: var(--font-weight-base);
    letter-spacing: 1px;
    text-align: center;
    background: none;
    border: none;
    color: #fff;
    display: block;
}

.submit:hover {
    color: #fff;
    border: none;
    text-decoration: none;
}

.submit_btn {
    width: 400px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary-color);
    color: #fff;
    font-size: 1.8rem;
    font-weight: var(--font-weight-base);
    padding-top: 1px;
    text-decoration: none;
    border: none;
    margin: 40px auto 20px;
    position: relative;
    overflow: hidden;
    z-index: 2;
    border-radius: 10px;
}

.submit_btn::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    background: var(--primary-color);
    transform-origin: left;
    transform: scale(0, 1);
    transition: transform .3s;
}

.submit_btn:hover {
    text-decoration: none;
}

.submit_btn:hover::after {
    transform-origin: left bottom;
    transform: scale(1, 1);
}


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

.submit {
    width: 85%;
    max-width: 300px;
    min-width: 270px;
}

.submit_btn {
    width: 85%;
    max-width: 350px;
    min-width: 270px;
    height: 60px;
    font-size: 1.5rem;
    line-height: 1.5;
    margin: 30px auto 30px;
}

}