@charset "UTF-8";
@import url("css/index.css");
@import url("css/page.css");
@import url("css/blog.css");
@import url("css/wordpress.css");
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Zen+Old+Mincho&display=swap');

/*
  Theme Name: CTIアセンド玉野蒸留所
  Theme URI: https://tamano-ascend-distillery.jp/
  Description: WordPress Corporate Theme
  Version: 5.3.2
  Author: yumitakeno
  Author URI: https://tamano-ascend-distillery.jp/
*/

* { 
 box-sizing: border-box;
 color: #212E50;
}

/* color */
:root{
  --color: #212E50;
}

/* font */
body {
  font-family: source-han-sans-japanese, sans-serif;
  font-style: normal; 
  font-size: 15px;
  line-height: 1.6;
}
.m_font {
  font-family: source-han-serif-japanese, serif; 
  font-style: normal; 
  font-weight: 400;
}
.m_plus,
main section h3,
main section .title {
  font-family: "m-plus-1p", sans-serif;
  font-style: normal;
  /* font-weight: 400; */
  /* font-weight: 700; */
}

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, figure {
  margin: 0;
  padding: 0;
  outline: 0;
  border: 0;
  vertical-align: baseline;
}
html { 
  overflow-y: scroll;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 60px;
  height: 100%;
  width: 100%;
}
body {
  -webkit-text-size-adjust: 100%; 
  -moz-text-size-adjust: 100%; 
  -ms-text-size-adjust: 100%; 
  -o-text-size-adjust: 100%; 
  text-size-adjust: 100%;
  position: relative;
  width: 100%;
  overflow: hidden;
  
  background-image: url("images/back.png");
  background-size: 100%;
  background-repeat: repeat-y;
}
body.page {
  background-image: none;
}
img {
  vertical-align: top;
  width: 100%;
  height: auto;
}
a {
  outline: medium none;
  text-decoration: none;
  transition: all 0.3s ease-in-out 0s;
}
a:hover { opacity: 0.7; }
a img {
  border-style: none;
  transition: all 0.3s ease-in-out 0s;
}
a:hover img {
  border-style: none;
}
ul,li {
  list-style-type: none;
}

/* link */
.link a {
  letter-spacing: 5px;
  padding: 6px 4px;
  border: 1px solid #00000096;
  display: table;
  width: 100%;
  text-align: center;
  margin: 20px auto;
}
.link a:hover {
  background: var(--color);
  color: #fff;
  opacity: 1;
}
.link-a a {
  letter-spacing: 2px;
  font-weight: 500;
  text-align: center;
  border: 1px solid #00000096;
  padding: 7px 4px;
  background: #fff;
  display: table;
  max-width: 420px;
  width: 80%;
  margin: auto;
}
.link-a a:hover {
  background: var(--color);
  color: #fff;
  opacity: 1;
}
.link-b a {
  letter-spacing: 2px;
  font-weight: 500;
  text-align: center;
  border: 1px solid #00000096;
  padding: 7px 4px;
  display: table;
  max-width: 420px;
  width: 100%;
  margin: auto;
  background: var(--color);
  color: #fff;
}
.link-b a:hover {
  background: transparent;
  color: var(--color);
  opacity: 1;
}
.link-c {
  font-weight: 200;
  display: table;
  padding: 5px 0;
  border-bottom: 1px dashed #00000096;
  letter-spacing: 1px;
  transition : 0.4s;
  white-space: nowrap;
}
.link-c:hover {
  letter-spacing: 0.1em;
  transition : 0.4s;
}
.link-c::after {
  content: '';
  display: inline-block;
  width: 12px;
  height: 12px;
  background-image: url(images/icon_link.png);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
  position: relative;
  top: -2px;
  margin-left: 6px;
  z-index:1;
}
/* link */

br.res {
  display: none;
}
br.reson {
  display: block;
}

/* レスポンシブ*/
.navbar_toggle {
	display: none;
}

#logo {
  width: 140px;
  position: fixed;
  top: 40px;
  left: 40px;
  z-index: 8888;
  
  filter: blur(0);
  transition: .7s;
  display: inline-block;
}
#logo.off  {
	 opacity: 0;
  filter: blur(10px);
  transition: .4s;
}

header {
  position: absolute;
  width: 100vw;
  height: 100vh;
  z-index: 1;
}
header .nav_menu {
  height: auto;
}
header .nav_menu {
  position: absolute;
  bottom: 10px;
  left: 40px;
}
header .nav_menu ul {
  display: flex;
  gap: 40px;
}
header .nav_menu li {
  color: #fff;
  letter-spacing: 2px;
  cursor: pointer;
  position: relative;
  height: 50px;
  white-space: nowrap;
}
header .nav_menu ul.downlist {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: -100px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  height: 80px;
  width: 100%;  
  left: 66%;

  font-weight: normal;
  transition: all 0.3s ease-in-out 0s;
}
@media (min-width: 1101px) {
header .nav_menu .down:hover ul.downlist {
  visibility: visible;
  opacity: 1;
}
}
header .nav_menu ul.downlist li {
  height: auto;
  display: table;
  font-size: 14px;
  
  font-family: source-han-sans-japanese, sans-serif;
  font-weight: 400;
}
header .nav_menu ul.downlist li a {
  color: #fff;
}
header .nav_menu ul li { /* Right in Left */
  position: relative;
  display: inline-block;
  text-decoration: none;
  font-size: 15px;
  
  font-family: "m-plus-1p", sans-serif;
  font-weight: 700;
}
header .nav_menu ul li::after { /* Right in Left */
  content: '';
  display: block;
  position: absolute;
  bottom: 60px;
  width: 1px;
  height: 1px;
  background: #fff;
  transform-origin: bottom;
  transition: transform 0.3s;
  transform: scaleY(0);  
  left: 50%;
}
header .nav_menu ul li:hover::after { /* Right in Left */
	 transform: scaleY(1);
  height: 85px;
}
header .nav_menu ul.downlist li::after {
  bottom: -2px;
  width: 100%;
  height: 1px;
  left: 0;
  transform: scale(0, 1);
  transform-origin: left top;
}
header .nav_menu ul.downlist li:hover::after {
	 transform-origin: left top;
	 transform: scale(1, 1);
}
header .nav_menu ul.downlist li a:hover {
  opacity: 1;
}
header .nav_menu .res {
  display: none;
}

header .access {
  position: absolute;
  right: 40px;
  top: 40px;
}
header .access ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
header .access li {
  width: 20px;
}
header ul.res_menu,
header.page .nav_menu ul.res_menu,
header .cp {
  display: none;
}

footer {
  width: 100vw;
  margin: 0 calc(50% - 50vw) 0;
  background: #fff;
  padding-bottom: 14px;
}
footer .foot {
  max-width: 800px;
  width: 100%;
  margin: auto;
  padding: 60px 30px 0;
  
  display: flex;
  justify-content: space-between;
}
footer .foot nav {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}
footer p.tit {
  font-weight: 700 !important;
  font-size: 15px !important;
  margin-bottom: 30px;
}
footer .foot ul {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  height: 380px;
  gap: 18px 30px;
}
footer .foot ul li {
  line-height: 28px;
}
footer .foot ul .wb,
footer .foot ul .wb a {
  font-family: "m-plus-1p", sans-serif;
  font-weight: 700;
}
footer .foot ul a {
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 2px;
}
footer .foot ul .wb a {
  font-size: 15px;
}
footer .foot ul a { /* Right in Left */
  position: relative;
  display: inline-block;
  text-decoration: none;
  font-size: 14px;
}
footer .foot ul a::after { /* Right in Left */
  position: absolute;
  bottom: -2px;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: #00000096;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform .3s;
}
footer .foot ul a:hover::after { /* Right in Left */
	 transform-origin: left top;
	 transform: scale(1, 1);
}
footer .foot .address {
  display: flex;
  flex-direction: column;
}
footer .foot .address p b {
  letter-spacing: 2px;
  display: block;
  font-weight: 600;
  font-size: 15px;
}
footer .foot .address p {
  line-height: 1.6;
  font-size: 14px;
  font-weight: 200;
  letter-spacing: 1px;
}
footer .foot .address span {
  display: block;
}
footer .foot .address .link-a a {
  width: 100%;
  margin: 10px auto;
  font-weight: 200;
}
footer .foot .address .tit.sns {
  margin: 30px 0 0;
}
footer .foot .address .sns a { /* Right in Left */
  position: relative;
  display: inline-block;
  text-decoration: none;
  font-size: 14px;
}
footer .foot .address .sns a::after { /* Right in Left */
  position: absolute;
  bottom: -2px;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: #00000096;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform .3s;
}
footer .foot .address .sns a:hover::after { /* Right in Left */
	 transform-origin: left top;
	 transform: scale(1, 1);
}
footer .logo {
  width: 180px;
  margin: auto;
}
footer #cp {
  text-align: center;
  font-size: 12px;
}


@media (width < 1100px) {
/* レスポンシブ */
.navbar_toggle {
  display:inline-block;
  z-index:8000;
  position: fixed;
  width: 50px;
  height: 50px;
  right: 0;
  top: 0;
  margin: 0;
  padding: 14px 10px;
  background: #fff;
}
.navbar_toggle_icon {
  position: relative;
  display: block;
  height: 2px;
  width: 30px;
  background: #00000096;
  border-top: 1px solid #fff;
  -webkit-transition: ease .5s;
  transition: ease .5s;
}
.navbar_toggle_icon:nth-child(1) {
  top: 0;
}
.navbar_toggle_icon:nth-child(2) {
  margin: 9px 0;
}
.navbar_toggle_icon:nth-child(3) {
  top: 0;
}
.navbar_toggle.open .navbar_toggle_icon:nth-child(1) {
  top: 11px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  border: none;
  height: 1px;
}
.navbar_toggle.open .navbar_toggle_icon:nth-child(2) {
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 0;
  border: none;
}
.navbar_toggle.open .navbar_toggle_icon:nth-child(3) {
  top: -10px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  border: none;
  height: 1px;
}
header .nav_menu {
  background: #fff;
  display: none;
  height: 100vh;
  position: fixed;
  width: 100%;
  z-index: 500;
  top:0;
  left:0;
}
.nav_menu .menu_in {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
}
.nav_menu.open {
  -webkit-transform:translateX(0);
  transform:translateX(0);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

#logo {
  width: 110px;
  top: 0;
  left: 0;
}
header {
  position: absolute;
	 z-index: 9998;
  height: auto;
}
header .access {
  display: none;
}
header .nav_menu {
  position: fixed;
  bottom: 0;
  left: 0;
}
header .nav_menu .in {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 260px;
}
header .nav_menu ul {
  display: block;
  margin: 18px auto 25px;
  position: relative;
  bottom: 0;
  left: 0;
}
header .nav_menu li {
  color: var(--color);
  height: auto;
  font-weight: 500;
}
header .nav_menu ul li {
  display: block;
}
header .nav_menu ul.downlist {
  margin: 0;
  width: auto;
  position: relative;
  top: 0;
  left: 0;
  display: inherit;
  height: 0;
  background: #fff;
  border: none;
  transition: none;
  padding: 8px 10px 10px;
}
header .nav_menu .down.open .downlist {
  height: 100%;
  opacity: 1;
  display: block;
  visibility: inherit;
  position: relative;
}
header .nav_menu .down {
  position: relative;
}
header .nav_menu .down::before {
  content: '+';
  position: absolute;
  right: 0;
  top: 10px;
  transform: translateY(-50%) rotate(0deg);
  transition: transform 0.3s ease, content 0.3s ease;
  font-size: 24px;
  font-weight: 100;
}
header .nav_menu .down.open::before {
  content: '-';
  top: 18px;
  right: 5px;
  transform: translateY(-50%) rotate(180deg);
}
header .nav_menu ul.downlist li {  
  font-weight: 400;
  line-height: 26px;
}
header .nav_menu ul.downlist li a {
  color: var(--color);
}
header .nav_menu li.top {
  height: 42px;
}
header .nav_menu ul.downlist li::after {
  content: none;
}
header .nav_menu .res {
  display: block;
}
header ul.res_menu,
header.page .nav_menu ul.res_menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
header ul.res_menu li.link-a {
  width: 100%;
  margin-bottom: 16px;
}
header ul.res_menu li.link-a a {
  width: 100%;
  margin: 0;
  font-size: 14px;
  letter-spacing: 1px;
  padding: 12px 4px;
}
header ul.res_menu li.insta,
header ul.res_menu li.tel {
  width: 28px;
}
header .cp {
  display: block;
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 9px;
  font-weight: 200;
}

} /* 1100以下 */


@media (width < 800px) {
br.res {
  display: block;
}
br.reson {
  display: none;
}

footer .foot {
  display: table;
  margin: auto;
  width: auto;
  padding: 60px 20px 20px;
}
footer .foot ul {
  flex-wrap: nowrap;
  height: auto;
  margin-bottom: 20px;
}
footer .foot .address {
  margin: 20px 0 0;
}
footer .foot .logo {
  margin: auto;
  width: 160px;
}
footer .foot ul li {
  line-height: 20px;
}
footer .foot .address p {
  font-size: 12px;
}
footer .foot .address span {
  letter-spacing: 1;
}
} /* 800以下 */


@media (width < 450px) {

} /* 450以下 */